PKO8!yy!datapungibea/_NIPAIndentations.py''' Script that generates indentation information of NIPA tables. ''' import datapungibea as dpb import pandas as pd from datetime import datetime from datapungibea import drivers def whereIn(arr,entry): ''' a helper, given an array and an entry, return where it's located or -1 if not. ''' try: output = arr.index(entry) except: output = -1 return(output) def getIndentations(queryResults,all=[]): ''' From a query of NIPAVintage, get all indentations, and only include information if it was not previously available (hence, unsing tuples to be able to compare) If the result of a query and a previous indentation data (all) is passed, will include info to the output only if finds new information. ''' if all == []: allrest = [] else: allrest = [tup[1:] for tup in all] #drop table names of all for entry in queryResults: entry['Line'] = pd.to_numeric(entry['Line']) b = tuple([ tuple(entry['SeriesCode']), tuple(entry['Indentations']) ] ) test = whereIn(allrest,b) if test < 0: a = tuple([ tuple([entry['tableName'].iloc[0]]), tuple(entry['Line']),tuple(entry['SeriesCode']), tuple(entry['Indentations']) ] ) all.append(a) allrest.append(b) else: #include the name of the new table on the list of tables with given indentation a = tuple([ tuple(set(all[test][0] + tuple([entry['tableName'].iloc[0]]))), tuple(entry['Line']), tuple(entry['SeriesCode']), tuple(entry['Indentations']) ] ) all[test] = a return(all) def getIndentationsInVintage(releaseDate = datetime.now() ): ''' Fix a releaseDate, read all tables of that vintage and get its indentation tables. ''' nvDriver = drivers.getNIPAVintage() all = [] for section in range(1,10): v = nvDriver.NIPAVintage(type='main',Title = 'Section '+ str(section), releaseDate = releaseDate) all = getIndentations(v,all) return(all) def checkHaveAllTables(all): ''' After collecting all indentation tables of a vintage, check that have all tables in current NIPA on that list. ''' tableNamesWithIndention = [] discard = [tableNamesWithIndention.extend(x[0]) for x in all] tableNamesWithIndention = set(tableNamesWithIndention) #get name of current nipa tables driver = drivers.getGetParameterValues() pv = driver.getParameterValues('NIPA','TableName') pv = list(pv['TableName']) #check if got the indentation of all tables gotAllTables = set(pv).issubset(tableNamesWithIndention) return(gotAllTables) def modifyIndent(x,divideBy=2,firstZero=True): x = list(x) if divideBy > 1: canDiv = max( [e%divideBy for e in x]) if canDiv == 0: x = [int(e/2) for e in x] if firstZero == True: x[0] = 0 #cap increase in number of dashes by 1: for ii in range(1,len(x)): x[ii] = min(x[ii-1]+1,x[ii]) return(tuple(x)) def toDictionary(indentArrayTuples,divideBy=2,firstZero=True): ''' Given something in the format of the output of getIndentations, put in array of dictionaries with tuple entries. This is something do to at the end; it's hard to compare dictionaries. -divideBy = 2, indentations seem to be in multiples of 2, write as multiples of 1. TODO: check no fractions. -firstZero = first line of table should have zero indentation (apparently it's written as a title - centralized) ''' output = [ {'tableName':x[0], 'LineNumber':x[1],'SeriesCode':x[2],'Indentations':modifyIndent(x[3])} for x in indentArrayTuples] #for entry in indentArrayTuples: # output.append({'tableNames':list(set(entry[0])), 'structure':pd.DataFrame(list(zip( list(entry[1]), list(entry[2]) )),columns = ['SeriesCode','Indentation']).to_dict('records')} ) return(output) if __name__ == '__main__': ''' Get indentation information of NIPA tables using last available Vintage information. ''' all = getIndentationsInVintage(releaseDate = '2018-12-12') print('Got indentation tables for all current tables: ', checkHaveAllTables(all)) dict_out = toDictionary(all) PKbO ;Rdatapungibea/__init__.py"""Connects to Bureau of Economic Analysis (BEA) API and enriches data output; get vintage BEA data""" import pandas import requests from datapungibea.api import * import datapungibea.tests as tests __version__ = '0.9.5' #__all__ = ['api'] PKO8Tdatapungibea/api.pyimport pandas as pd import requests from datapungibea import generalSettings from datapungibea import drivers #TODO: improve delegation (want name of methods - getDatasetlis - to be _get... or be all in a loadedDrivers class etc. These shouldn't be # easy for user access) # only initialize a driver if it's being called class delegator(object): def __init__(self): self._lastCalledDriver = '' def __getattr__(self, called_method): self._lastCalledMethod = called_method def __raise_standard_exception(): raise AttributeError("'%s' object has no attribute '%s'" % (self.__class__.__name__, called_method)) def wrapper(*args, **kwargs): delegation_config = getattr(self, 'DELEGATED_METHODS', None) if not isinstance(delegation_config, dict): __raise_standard_exception() for delegate_object_str, delegated_methods in delegation_config.items(): if called_method in delegated_methods: break else: __raise_standard_error() delegate_object = getattr(self, delegate_object_str, None) self._lastCalledDriver = delegate_object #NOTE: could use this to track all loaded data etc. For now, will only use return(getattr(delegate_object, called_method)(*args, **kwargs)) return(wrapper) class data(delegator): ''' the purpose of this class is to provide an environment where the shared data needed to establish a connection is loaded and to be a one stop shop of listing all available drivers. :param connectionParameters: a dictionary with at least 'key', and 'url' {'key': 'your key', 'description': 'BEA data', 'url': 'https://apps.bea.gov/api/data/'} :param userSettings: settings saved in the packge pointing to a json containing the connection parameters ''' DELEGATED_METHODS = { 'getDatasetlist' : ['datasetlist'], 'getGetParameterList' : ['getParameterList'], 'getGetParameterValues' : ['getParameterValues'], 'getNIPA' : ['NIPA'], 'getMNE' : ['MNE'], 'getFixedAssets' : ['fixedAssets'], 'getITA' : ['ITA'], 'getIIP' : ['IIP'], 'getGDPbyIndustry' : ['GDPbyIndustry'], 'getRegionalIncome' : ['RegionalIncome'], #deprecated, use Regional instead 'getRegionalProduct' : ['RegionalProduct'], #deprecated, use Regional instead 'getInputOutput' : ['InputOutput'], 'getUnderlyingGDPbyIndustry' : ['UnderlyingGDPbyIndustry'], 'getIntlServTrade' : ['IntlServTrade'], 'getRegional' : ['Regional'], 'getNIPAVintageTables' : ['NIPAVintageTables'], 'getNIPAVintage' : ['NIPAVintage'], 'getNIPASummary' : ['NIPASummary'], } def __init__(self,connectionParameters = {}, userSettings = {}): self.__connectInfo = generalSettings.getGeneralSettings(connectionParameters = connectionParameters, userSettings = userSettings ) #TODO: inherit this, all drivers as well self._metadata = self.__connectInfo.packageMetadata self._help = self.__connectInfo.datasourceOverview #load drivers: loadInfo = {'baseRequest' : self.__connectInfo.baseRequest, 'connectionParameters' : self.__connectInfo.connectionParameters} self.getDatasetlist = drivers.getDatasetlist(**loadInfo) self.getGetParameterList = drivers.getGetParameterList(**loadInfo) self.getGetParameterValues = drivers.getGetParameterValues(**loadInfo) self.getNIPA = drivers.getNIPA(**loadInfo) self.getMNE = drivers.getMNE(**loadInfo) self.getFixedAssets = drivers.getFixedAssets(**loadInfo) self.getITA = drivers.getITA(**loadInfo) self.getIIP = drivers.getIIP(**loadInfo) self.getGDPbyIndustry = drivers.getGDPbyIndustry(**loadInfo) self.getRegionalIncome = drivers.getRegionalIncome(**loadInfo) self.getRegionalProduct = drivers.getRegionalProduct(**loadInfo) self.getInputOutput = drivers.getInputOutput(**loadInfo) self.getUnderlyingGDPbyIndustry = drivers.getUnderlyingGDPbyIndustry(**loadInfo) self.getIntlServTrade = drivers.getIntlServTrade(**loadInfo) self.getRegional = drivers.getRegional(**loadInfo) self.getNIPAVintageTables = drivers.getNIPAVintageTables(**loadInfo) self.getNIPAVintage = drivers.getNIPAVintage(**loadInfo) self.getNIPASummary = drivers.getNIPASummary(**loadInfo) #TODO: improve loading the drivers def __str__(self): print(pd.DataFrame.from_dict(self.DELEGATED_METHODS,orient='index',columns=['Shortcut to Driver'])) return('\nList of drivers and their shortcuts') def _clipcode(self): try: self._lastCalledDriver.clipcode() except: print('Get data using a driver first, eg: data.NIPA("T10101", verbose = True)') def _docDriver(self,driverName): ''' Given the delegated method name, get the __doc__ of its class. eg: _docDriver('NIPA') returns the __doc__ of getNIPA.NIPA ''' parentName = list(self.DELEGATED_METHODS.keys())[list(self.DELEGATED_METHODS.values()).index([driverName])] outhelp = getattr(getattr(self,parentName ),driverName).__doc__ return(outhelp) if __name__ == '__main__': #TODO TODO: Need to test MNE #TODO: harmonize the names - use the same as listed in the datasetlist, include the function entry names in the example below #TODO: transform this into tests d = data() print(d) #METADATA Functions: #print(d.datasetlist(verbose=True)['code']) #print(d.getParameterList('FixedAssets',verbose=True)) #print(d.getParameterValues('NIPA','Year',verbose=True)) #print(d.NIPA('T10101',verbose=True)['code']) #print(d.NIPA('T10101')) #print(d.fixedAssets('FAAt101','X')) #print(d.ITA('BalCurrAcct','Brazil','A','2010')) #print(d.IIP(TypeOfInvestment='DebtSecAssets',Component='All',Frequency='All',Year='All')) #NOTE: for IIP, either use All years of All TypeOfInvestment #print(d.IIP('All','All','All','2010')) #print(d.GDPbyIndustry('211','1','A','2018')) #RegionalIncome and RegionalOutput were deprecated - use Regional instead. #d.getRegionalIncome.RegionalIncome() #d.getRegionalProduct.RegionalProduct() #print(d.InputOutput(TableID='56',Year='2010')) #print(d.InputOutput('All','All')) #print(d.UnderlyingGDPbyIndustry('ALL','ALL','A','ALL',verbose=True)) #NOTE: PDF and query of getParameterValues say Frequency = Q, but actually it's A TODO: email BEA #print(d.IntlServTrade('ALL','ALL','ALL','AllCountries','All')) #print(d.Regional('00000','1','SAGDP5N', '2015,2016')) #print('Regional data test') #print(d.Regional('00000','1','SAGDP5N', 'All')) #print(d.NIPAVintageTables()) print(d.NIPA('T10101')) #print(d._docDriver('NIPA')) #print(d._docDriver('NIPASummary')) #print(d.NIPASummary('2018','Q')) #v = d.NIPAVintage(tableName = 'T10206', releaseDate = '2018-08-08') #print('table') #v = d.NIPAVintage(tableName = 'T10101', Title = 'Section 1',year = '2018', quarter ='Q1',vintage='Second') #print(v)PKO?ͻ++datapungibea/drivers.pyimport pandas as pd import requests import json from copy import deepcopy import pyperclip import math import re from datetime import datetime from datapungibea import generalSettings from datapungibea import vintage as vintageFns from datapungibea import utils from datapungibea.config import CFGnipaSummary # (1) Auxiliary functions ###################################################### def _getBaseRequest(baseRequest={},connectionParameters={},userSettings={}): ''' Write a base request. This is the information that gets used in most requests such as getting the userKey ''' if baseRequest =={}: connectInfo = generalSettings.getGeneralSettings(connectionParameters = connectionParameters, userSettings = userSettings ) return(connectInfo.baseRequest) else: return(baseRequest) def _getBaseCode(codeEntries): ''' The base format of a code that can be used to replicate a driver using Requests directly. ''' code = ''' import requests import json import pandas as pd #(1) get user API key (not advised but can just write key and url in the file) # file should contain: {{"BEA":{{"key":"YOUR KEY","url": "{}" }}}} apiKeysFile = "{}" with open(apiKeysFile) as jsonFile: apiInfo = json.load(jsonFile) url,key = apiInfo["BEA"]["url"], apiInfo["BEA"]["key"] '''.format(*codeEntries) return(code) def _getCode(query,userSettings={},pandasCode=""): #general code to all drivers: try: url = query['url'] if not userSettings: #if userSettings is empty dict apiKeyPath = generalSettings.getGeneralSettings( ).userSettings['ApiKeysPath'] else: apiKeyPath = userSettings['ApiKeysPath'] except: url = " incomplete connection information " apiKeyPath = " incomplete connection information " baseCode = _getBaseCode([url,apiKeyPath]) #specific code to this driver: queryClean = deepcopy(query) queryClean['url'] = 'url' queryClean['params']['UserID'] = 'key' queryCode = ''' query = {} retrivedData = requests.get(**query) {} #replace json by xml if this is the request format '''.format(json.dumps(queryClean),pandasCode) queryCode = queryCode.replace('"url": "url"', '"url": url') queryCode = queryCode.replace('"UserID": "key"', '"UserID": key') return(baseCode + queryCode) def _clipcode(self): ''' Copy the string to the user's clipboard (windows only) ''' try: pyperclip.copy(self._lastLoad['code']) except: print("Loaded session does not have a code entry. Re-run with verbose option set to True. eg: v.drivername(...,verbose=True)") # (2) Drivers ################################################################### class getDatasetlist(): def __init__(self,baseRequest={},connectionParameters={},userSettings={}): self._connectionInfo = generalSettings.getGeneralSettings(connectionParameters = connectionParameters, userSettings = userSettings ) self._baseRequest = _getBaseRequest(baseRequest,connectionParameters,userSettings) #TODO: could just pass the output of _connectionInfo here. self._lastLoad = {} #data stored here to assist functions such as clipcode def datasetlist(self,params = {},verbose=False): ''' Get the list of available datasets in the BEA API. Sample run - datasetlist() Args: verbose (bool): if returns that data in a pandas dataframe format or all available information; default to False Returns: output: either a pandas dataframe or a dictionary (verbose=True) with dataFrame, request, and code ''' query = deepcopy(self._baseRequest) query['params'].update({'method':'GETDATASETLIST'}) retrivedData = requests.get(**query) df_output = self._cleanOutput(query,retrivedData) if verbose == False: self._lastLoad = df_output return(df_output) else: code = _getCode(query,self._connectionInfo.userSettings,self._cleanCode) output = dict(dataFrame = df_output, request = retrivedData, code = code) self._lastLoad = output return(output) def _cleanOutput(self,query,retrivedData): if query['params']['ResultFormat'] == 'JSON': self._cleanCode = "df_output = pd.DataFrame( retrivedData.json()['BEAAPI']['Results']['Dataset'] )" df_output = pd.DataFrame( retrivedData.json()['BEAAPI']['Results']['Dataset'] ) df_output.meta = '' try: df_output.meta = retrivedData.json()['BEAAPI']['Results']['Notes'] except: pass else: self._cleanCode = "pd.DataFrame( retrivedData.json()['BEAAPI']['Results']['Dataset'] )" df_output = pd.DataFrame( retrivedData.xml()['BEAAPI']['Results']['Dataset'] ) #TODO: check this works df_output.meta = '' try: df_output.meta = retrivedData.json()['BEAAPI']['Results']['Notes'] except: pass return(df_output) def clipcode(self): _clipcode(self) def _driverMetadata(self): self.metadata = [{ "displayName":"List of Datasets", "method" :"datasetlist", #Name of driver main function - run with getattr(data,'datasetlist')() "params" :{}, }] class getNIPA(): ''' rest ''' def __init__(self,baseRequest={},connectionParameters={},userSettings={}): ''' the baseRequest contains user Key, url of datasource, and prefered output format (JSON vs XML) ''' self._connectionInfo = generalSettings.getGeneralSettings(connectionParameters = connectionParameters, userSettings = userSettings ) self._baseRequest = _getBaseRequest(baseRequest,connectionParameters,userSettings) self._lastLoad = {} #data stored here to asist other function as clipboard def NIPA(self, tableName, frequency = 'Q', year = 'X', payload = {'method': 'GETDATA', 'DATABASENAME': 'NIPA', 'datasetname': 'NIPA', 'ParameterName': 'TableID'}, outputFormat = "tablePretty", verbose = False, includeIndentations = True ): ''' Get National Income and Product Account (NIPA) data. Most parameters are set to deafault values; passing tableName will return a value of quarterly data in all available years. Sample run - NIPA('T10101') NIPA('T10101', frequency = 'A', year='X',verbose=True,includeIndentation=False) Args: tableName (str): name of NIPA table, for example T10101 frequency (str): frequency of data - Annual (A), quarterly (Q) or monthly (M); default to Q year (str): specific year or X for all years - eg, '2019' or 'X'; default to X payload (dict): this is the base request information of a BEA NIPA query; default - {'method': 'GETDATA', 'DATABASENAME': 'NIPA', 'datasetname': 'NIPA', 'ParameterName': 'TableID'} outputFormat (str): tablePretty will clean up data and return pandas of variable by date; else returns table of (variable,date) by data; default to tablePretty verbose (bool): If false just return a pandas table; else return table, the request result and the code used; default to False includeIndentations (bool): API does not include indentation of the table, indicate if should include it; default to True Returns: output: either a pandas dataframe or a dictionary (verbose=True) with dataFrame, request, and code ''' # TODO: put the payload ={} all data in lowercase, else may repeat the load (say frequency=A and Frquency = Q will load A and Q) # load user preferences defined in userSettings, use suggested parameters, override w fun entry query = deepcopy(self._baseRequest) query['params'].update({'TABLENAME': tableName}) query['params'].update({'FREQUENCY':frequency}) query['params'].update({'YEAR':year}) query['params'].update(payload) # TODO: try loading different frenquencies if no return # retrivedData = requests.get(**query) output = self._cleanOutput(query,retrivedData,outputFormat,includeIndentations) #a dict of a df or df and meta (tablePretty) if verbose == False: self._lastLoad = output['dataFrame'] return(self._lastLoad) else: output['code'] = _getCode(query,self._connectionInfo.userSettings,self._cleanCode) output['request'] = retrivedData self._lastLoad = output return(output) def _cleanOutput(self,query,retrivedData, outputFormat,includeIndentations): if query['params']['ResultFormat'] == 'JSON': self._cleanCode = "df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data'])" df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data']) df_output.meta = '' try: df_output.meta = retrivedData.json()['BEAAPI']['Results']['Notes'] except: pass else: self._cleanCode = "df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data'])" df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data']) #TODO: check this works df_output.meta = '' try: df_output.meta = retrivedData.json()['BEAAPI']['Results']['Notes'] except: pass output = {'dataFrame':df_output} if outputFormat == "tablePretty": df_output['LineNumber'] = pd.to_numeric(df_output['LineNumber']) df_output['DataValue'] = pd.to_numeric(df_output['DataValue'].apply(lambda x: x.replace(',',''))) meta = df_output.drop(['DataValue', 'TimePeriod'], axis=1).drop_duplicates() meta = meta.set_index(['LineNumber', 'SeriesCode', 'LineDescription']).reset_index() df_output = df_output[['LineNumber', 'SeriesCode', 'LineDescription', 'DataValue', 'TimePeriod']] df_output = pd.pivot_table(df_output, index=['LineNumber', 'SeriesCode', 'LineDescription'], columns='TimePeriod', values='DataValue', aggfunc='first') df_output = self._includeIndentations(df_output,query['params']['TABLENAME'],includeIndentations) df_output.meta = '' try: df_output.meta = retrivedData.json()['BEAAPI']['Results']['Notes'] except: pass output = {'dataFrame':df_output,'metadata':meta} #update the code string: self._cleanCode = self._cleanCode + "\ndf_output['LineNumber'] = pd.to_numeric(df_output['LineNumber']) \n" self._cleanCode = self._cleanCode + "df_output['DataValue'] = pd.to_numeric(df_output['DataValue'].apply(lambda x: x.replace(',',''))) \n" self._cleanCode = self._cleanCode + "df_output = df_output[['LineNumber', 'SeriesCode', 'LineDescription', 'DataValue', 'TimePeriod']] \n" self._cleanCode = self._cleanCode + "df_output = pd.pivot_table(df_output, index=['LineNumber', 'SeriesCode', 'LineDescription'], columns='TimePeriod', values='DataValue', aggfunc='first') \n" if includeIndentations: self._cleanCode = self._cleanCode + '\n#Including indentations:' self._cleanCode = self._cleanCode + '\nimport datapungibea as dpb \ndata = dpb.data() \ndf_output = data.getNIPA._includeIndentations(df_output,"'+query['params']['TABLENAME']+'")\n' self._cleanCode = self._cleanCode + '#can get all indentations running: from datapungibea.config.CFGindentations import indentations as cfgIndentations \n' return(output) def _includeIndentations(self,df_output,tableName,includeIndentations=True): #tableName = query['params']['TABLENAME'] if not includeIndentations: return(df_output) from datapungibea.config.CFGindentations import indentations as cfgIndentations #TODO: move this to __int__ cfgCases = list(filter(lambda x: tableName in x['tableName'], cfgIndentations)) if len(cfgCases) < 1: return(df_output) else: try: indentTable = cfgCases[0] indentTable = pd.DataFrame(list(zip(indentTable['LineNumber'],indentTable['SeriesCode'], indentTable['Indentations'])),columns=['LineNumber','SeriesCode','Indentations']) df_output.reset_index(inplace=True) df_output = df_output.merge(indentTable,on=['LineNumber','SeriesCode'],how='left') #merge will indentationTable, keep left cases that don't match with right df_output['Indentations'].fillna(0,inplace=True) df_output['LineDescription'] = df_output.apply(lambda x: '-'*x['Indentations'] + x['LineDescription'] , axis = 1) df_output.drop('Indentations',axis=1,inplace=True) df_output.set_index(['LineNumber', 'SeriesCode', 'LineDescription'],inplace=True) except: print('could not include indentations on table '+ tableName + ' returning table without indentation info') return(df_output) def clipcode(self): _clipcode(self) def _driverMetadata(self): self.metadata = [{ "displayName":"List of Datasets", "method" :"datasetlist", #Name of driver main function - run with getattr(data,'datasetlist')() "params" :{}, }] class getGetParameterList(): def __init__(self,baseRequest={},connectionParameters={},userSettings={}): self._connectionInfo = generalSettings.getGeneralSettings(connectionParameters = connectionParameters, userSettings = userSettings ) self._baseRequest = _getBaseRequest(baseRequest,connectionParameters,userSettings) self._lastLoad = {} #data stored here to asist other function as clipboard def getParameterList(self, datasetname, payload = {'method': 'GetParameterList'}, verbose = False ): ''' Get the list of parameter needed to get data from dataset. Sample run - getParameterList('NIPA') Args: datasetname (str): the name of the dataset eg, NIPA payload (dict): the request payload that is basic to this driver; default to {'method': 'GetParameterList'} verbose (bool): if returns that data in a pandas dataframe format or all available information; default to False Returns: output: either a pandas dataframe or a dictionary (verbose=True) with dataFrame, request, and code ''' # TODO: put the payload ={} all data in lowercase, else may repeat the load (say frequency=A and Frquency = Q will load A and Q) # load user preferences defined in userSettings, use suggested parameters, override w fun entry query = deepcopy(self._baseRequest) query['params'].update({'datasetname':datasetname}) query['params'].update(payload) retrivedData = requests.get(**query) output = self._cleanOutput(query,retrivedData) #a dict of a df or df and meta (tablePretty) if verbose == False: self._lastLoad = output['dataFrame'] return(output['dataFrame']) else: output['code'] = _getCode(query,self._connectionInfo.userSettings,self._cleanCode) output['request'] = retrivedData self._lastLoad = output return(output) def _cleanOutput(self,query,retrivedData): if query['params']['ResultFormat'] == 'JSON': self._cleanCode = "df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Parameter'])" df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Parameter']) else: self._cleanCode = "pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Parameter'])" df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Parameter']) #TODO: check this works df_output.meta = '' try: df_output.meta = retrivedData.json()['BEAAPI']['Results']['Notes'] except: pass output = {'dataFrame':df_output} return(output) def clipcode(self): _clipcode(self) def _driverMetadata(self): self.metadata = [{ "displayName":"Parameter of Dataset", "method" :"GetParameterList", #Name of driver main function - run with getattr(data,'datasetlist')() "params" :{}, }] class getGetParameterValues(): def __init__(self,baseRequest={},connectionParameters={},userSettings={}): ''' the baseRequest contains user Key, url of datasource, and prefered output format (JSON vs XML) ''' self._connectionInfo = generalSettings.getGeneralSettings(connectionParameters = connectionParameters, userSettings = userSettings ) self._baseRequest = _getBaseRequest(baseRequest,connectionParameters,userSettings) self._lastLoad = {} #data stored here to asist other function as clipboard def getParameterValues(self, datasetName, parameterName, payload = {'method': 'getParameterValues'}, verbose = False ): ''' Get the list of values of a parameter of a database. Sample run - getParameterValues('NIPA','tableName') Args: datasetname (str): the name of the dataset eg, NIPA parameterName (str): the name of the parameter you want to know the values of; eg 'tableName' payload (dict): the request payload that is basic to this driver; default to {'method': 'getParameterValues'} verbose (bool): if returns that data in a pandas dataframe format or all available information; default to False Returns: output: either a pandas dataframe or a dictionary (verbose=True) with dataFrame, request, and code ''' # TODO: put the payload ={} all data in lowercase, else may repeat the load (say frequency=A and Frquency = Q will load A and Q) # load user preferences defined in userSettings, use suggested parameters, override w fun entry query = deepcopy(self._baseRequest) query['params'].update({'datasetname':datasetName}) query['params'].update({'parameterName':parameterName}) query['params'].update(payload) retrivedData = requests.get(**query) output = self._cleanOutput(query,retrivedData) #a dict of a df or df and meta (tablePretty) if verbose == False: self._lastLoad = output['dataFrame'] return(output['dataFrame']) else: output['code'] = _getCode(query,self._connectionInfo.userSettings,self._cleanCode) output['request'] = retrivedData self._lastLoad = output return(output) def _cleanOutput(self,query,retrivedData): if query['params']['ResultFormat'] == 'JSON': self._cleanCode = "df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['ParamValue'])" df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['ParamValue']) else: self._cleanCode = "pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['ParamValue'])" df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['ParamValue']) #TODO: check this works df_output.meta = '' try: df_output.meta = retrivedData.json()['BEAAPI']['Results']['Notes'] except: pass output = {'dataFrame':df_output} return(output) def clipcode(self): _clipcode(self) def _driverMetadata(self): self.metadata = [{ "displayName":"Parameter of Dataset", "method" :"GetParameterList", #Name of driver main function - run with getattr(data,'datasetlist')() "params" :{}, }] class getMNE(): def __init__(self,baseRequest={},connectionParameters={},userSettings={}): ''' the baseRequest contains user Key, url of datasource, and prefered output format (JSON vs XML) ''' self._connectionInfo = generalSettings.getGeneralSettings(connectionParameters = connectionParameters, userSettings = userSettings ) self._baseRequest = _getBaseRequest(baseRequest,connectionParameters,userSettings) self._lastLoad = {} #data stored here to asist other function as clipboard def MNE(self, Frequency, TableID, DirectionOfInvestment, OwnershipLevel, NonbankAffiliatesOnly, Classification, Country, Industry, Year, State, SeriesID, GetFootnotes, Investment, ParentInvestment, payload = {'method': 'GETDATA', 'datasetname': 'MNE', 'ParameterName': 'TableID'}, outputFormat = "tablePretty", verbose = False ): ''' Query the MNE database Args: Frequency (str): TableID (str): DirectionOfInvestment (str): OwnershipLevel (str): NonbankAffiliatesOnly (str): Classification (str): Country (str): Industry (str): Year (str): State (str): SeriesID (str): GetFootnotes (str): Investment (str): ParentInvestment (str): payload (dict): default to {'method': 'GETDATA', 'datasetname': 'MNE', 'ParameterName': 'TableID'}, outputFormat (str): default to "tablePretty", verbose (bool): default to False Returns: output: either a pandas dataframe or a dictionary (verbose=True) with dataFrame, request, and code ''' # TODO: put the payload ={} all data in lowercase, else may repeat the load (say frequency=A and Frquency = Q will load A and Q) # load user preferences defined in userSettings, use suggested parameters, override w fun entry query = deepcopy(self._baseRequest) query['params'].update({ "Frequency" : Frequency }) query['params'].update({ "TableID" : TableID }) query['params'].update({ "DirectionOfInvestment" : DirectionOfInvestment }) query['params'].update({ "OwnershipLevel" : OwnershipLevel }) query['params'].update({ "NonbankAffiliatesOnly" : NonbankAffiliatesOnly }) query['params'].update({ "Classification" : Classification }) query['params'].update({ "Country" : Country }) query['params'].update({ "Industry" : Industry }) query['params'].update({ "Year" : Year }) query['params'].update({ "State" : State }) query['params'].update({ "SeriesID" : SeriesID }) query['params'].update({ "GetFootnotes" : GetFootnotes }) query['params'].update({ "Investment" : Investment }) query['params'].update({ "ParentInvestment" : ParentInvestment }) query['params'].update(payload) # TODO: try loading different frenquencies if no return # retrivedData = requests.get(**query) output = self._cleanOutput(query,retrivedData,outputFormat) #a dict of a df or df and meta (tablePretty) if verbose == False: self._lastLoad = output['dataFrame'] return(self._lastLoad) else: output['code'] = _getCode(query,self._connectionInfo.userSettings,self._cleanCode) output['request'] = retrivedData self._lastLoad = output return(output) def _cleanOutput(self,query,retrivedData, outputFormat): if query['params']['ResultFormat'] == 'JSON': self._cleanCode = "pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data'])" df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data']) else: self._cleanCode = "pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data'])" df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data']) #TODO: check this works df_output.meta = '' try: df_output.meta = retrivedData.json()['BEAAPI']['Results']['Notes'] except: pass output = {'dataFrame':df_output} if outputFormat == "tablePretty": df_output['LineNumber'] = pd.to_numeric(df_output['LineNumber']) df_output['DataValue'] = pd.to_numeric(df_output['DataValue'].apply(lambda x: x.replace(',',''))) meta = df_output.drop(['DataValue', 'TimePeriod'], axis=1).drop_duplicates() meta = meta.set_index(['LineNumber', 'SeriesCode', 'LineDescription']).reset_index() df_output = df_output[['LineNumber', 'SeriesCode', 'LineDescription', 'DataValue', 'TimePeriod']] df_output = pd.pivot_table(df_output, index=['LineNumber', 'SeriesCode', 'LineDescription'], columns='TimePeriod', values='DataValue', aggfunc='first') df_output.meta = '' try: df_output.meta = retrivedData.json()['BEAAPI']['Results']['Notes'] except: pass output = {'dataFrame':df_output,'metadata':meta} #update the code string: self._cleanCode = self._cleanCode + "\ndf_output['LineNumber'] = pd.to_numeric(df_output['LineNumber']) \n" self._cleanCode = self._cleanCode + "df_output['DataValue'] = pd.to_numeric(df_output['DataValue'].apply(lambda x: x.replace(',',''))) \n" self._cleanCode = self._cleanCode + "df_output = df_output[['LineNumber', 'SeriesCode', 'LineDescription', 'DataValue', 'TimePeriod']] \n" self._cleanCode = self._cleanCode + "df_output = pd.pivot_table(df_output, index=['LineNumber', 'SeriesCode', 'LineDescription'], columns='TimePeriod', values='DataValue', aggfunc='first') \n" return(output) def clipcode(self): _clipcode(self) def _driverMetadata(self): self.metadata = [{ "displayName":"List of Datasets", "method" :"datasetlist", #Name of driver main function - run with getattr(data,'datasetlist')() "params" :{}, }] class getFixedAssets(): def __init__(self,baseRequest={},connectionParameters={},userSettings={}): ''' the baseRequest contains user Key, url of datasource, and prefered output format (JSON vs XML) ''' self._connectionInfo = generalSettings.getGeneralSettings(connectionParameters = connectionParameters, userSettings = userSettings ) self._baseRequest = _getBaseRequest(baseRequest,connectionParameters,userSettings) self._lastLoad = {} #data stored here to asist other function as clipboard def fixedAssets(self, TableName, Year, payload = {'method': 'GETDATA', 'datasetname': 'FixedAssets'}, verbose = False ): ''' Query the fixed assets database (API query) Sample run - fixedAssets('T10101','2010') Args: tableName (str): the name of the NIPA table, eg 'T10101' Year (str): the year; eg 'X' for all years or '2018' payload (dict): the request payload that is basic to this driver; default to {'method': 'GETDATA', 'datasetname': 'FixedAssets'} verbose (bool): if returns that data in a pandas dataframe format or all available information; default to False Returns: output: either a pandas dataframe or a dictionary (verbose=True) with dataFrame, request, and code ''' # TODO: put the payload ={} all data in lowercase, else may repeat the load (say frequency=A and Frquency = Q will load A and Q) # load user preferences defined in userSettings, use suggested parameters, override w fun entry query = deepcopy(self._baseRequest) query['params'].update({'TableName':TableName}) query['params'].update({'Year':Year}) query['params'].update(payload) retrivedData = requests.get(**query) output = self._cleanOutput(query,retrivedData) #a dict of a df or df and meta (tablePretty) if verbose == False: self._lastLoad = output['dataFrame'] return(output['dataFrame']) else: output['code'] = _getCode(query,self._connectionInfo.userSettings,self._cleanCode) output['request'] = retrivedData self._lastLoad = output return(output) def _cleanOutput(self,query,retrivedData): if query['params']['ResultFormat'] == 'JSON': self._cleanCode = "df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data'])" df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data']) else: self._cleanCode = "df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data'])" df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data']) #TODO: check this works df_output.meta = '' try: df_output.meta = retrivedData.json()['BEAAPI']['Results']['Notes'] except: pass output = {'dataFrame':df_output} return(output) def clipcode(self): _clipcode(self) def _driverMetadata(self): self.metadata = [{ "displayName":"Parameter of Dataset", "method" :"GetParameterList", #Name of driver main function - run with getattr(data,'datasetlist')() "params" :{}, }] class getITA(): def __init__(self,baseRequest={},connectionParameters={},userSettings={}): ''' the baseRequest contains user Key, url of datasource, and prefered output format (JSON vs XML) ''' self._connectionInfo = generalSettings.getGeneralSettings(connectionParameters = connectionParameters, userSettings = userSettings ) self._baseRequest = _getBaseRequest(baseRequest,connectionParameters,userSettings) self._lastLoad = {} #data stored here to asist other function as clipboard def ITA(self, Indicator, AreaOrCountry, Frequency, Year, payload = {'method': 'GETDATA', 'datasetname': 'ITA'}, verbose = False ): ''' Query the ITA database (API query) Sample run - Args: Indicator (str): the name of the NIPA table, eg 'T10101' AreaOrCountry (str): the year; eg 'X' for all years or '2018' Frequency (str): eg Q Year (str): eg 2019 payload (dict): the request payload that is basic to this driver; default to {'method': 'GETDATA', 'datasetname': 'FixedAssets'} verbose (bool): if returns that data in a pandas dataframe format or all available information; default to False Returns: output: either a pandas dataframe or a dictionary (verbose=True) with dataFrame, request, and code ''' # TODO: put the payload ={} all data in lowercase, else may repeat the load (say frequency=A and Frquency = Q will load A and Q) # load user preferences defined in userSettings, use suggested parameters, override w fun entry query = deepcopy(self._baseRequest) query['params'].update({'Indicator':Indicator}) query['params'].update({'AreaOrCountry':AreaOrCountry}) query['params'].update({'Frequency':Frequency}) query['params'].update({'Year':Year}) query['params'].update(payload) retrivedData = requests.get(**query) output = self._cleanOutput(query,retrivedData) #a dict of a df or df and meta (tablePretty) if verbose == False: self._lastLoad = output['dataFrame'] return(output['dataFrame']) else: output['code'] = _getCode(query,self._connectionInfo.userSettings,self._cleanCode) output['request'] = retrivedData self._lastLoad = output return(output) def _cleanOutput(self,query,retrivedData): if query['params']['ResultFormat'] == 'JSON': try: #one line datasets will need to be transformed in an array self._cleanCode = "df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data'])" df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data']) except: try: self._cleanCode = "df_output = pd.DataFrame([retrivedData.json()['BEAAPI']['Results']['Data']])" df_output = pd.DataFrame([retrivedData.json()['BEAAPI']['Results']['Data']]) except: self._cleanCode = "df_output = pd.DataFrame([])" df_output = pd.DataFrame([]) else: try: #one line datasets will need to be transformed in an array self._cleanCode = "df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data'])" df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data']) except: try: self._cleanCode = "df_output = pd.DataFrame([retrivedData.json()['BEAAPI']['Results']['Data']])" df_output = pd.DataFrame([retrivedData.json()['BEAAPI']['Results']['Data']]) except: self._cleanCode = "df_output = pd.DataFrame([])" df_output = pd.DataFrame([]) df_output.meta = '' try: df_output.meta = retrivedData.json()['BEAAPI']['Results']['Notes'] except: pass output = {'dataFrame':df_output} return(output) def clipcode(self): _clipcode(self) def _driverMetadata(self): self.metadata = [{ "displayName":"Parameter of Dataset", "method" :"GetParameterList", #Name of driver main function - run with getattr(data,'datasetlist')() "params" :{}, }] class getIIP(): def __init__(self,baseRequest={},connectionParameters={},userSettings={}): ''' the baseRequest contains user Key, url of datasource, and prefered output format (JSON vs XML) ''' self._connectionInfo = generalSettings.getGeneralSettings(connectionParameters = connectionParameters, userSettings = userSettings ) self._baseRequest = _getBaseRequest(baseRequest,connectionParameters,userSettings) self._lastLoad = {} #data stored here to asist other function as clipboard def IIP(self, TypeOfInvestment, Component, Frequency, Year, payload = {'method': 'GETDATA', 'datasetname': 'IIP'}, verbose = False ): ''' Query the IIP database (API query) Sample run - Args: TypeOfInvestment (str): eg Component (str): eg Frequency (str): eg Q Year (str): eg 'X' for all or '2019' payload (dict): request default {'method': 'GETDATA', 'datasetname': 'IIP'}, verbose (bool): if returns that data in a pandas dataframe format or all available information; default to False Returns: output: either a pandas dataframe or a dictionary (verbose=True) with dataFrame, request, and code ''' # TODO: put the payload ={} all data in lowercase, else may repeat the load (say frequency=A and Frquency = Q will load A and Q) # load user preferences defined in userSettings, use suggested parameters, override w fun entry query = deepcopy(self._baseRequest) query['params'].update({'TypeOfInvestment':TypeOfInvestment}) query['params'].update({'Component':Component}) query['params'].update({'Frequency':Frequency}) query['params'].update({'Year':Year}) query['params'].update(payload) retrivedData = requests.get(**query) output = self._cleanOutput(query,retrivedData) #a dict of a df or df and meta (tablePretty) if verbose == False: self._lastLoad = output['dataFrame'] return(output['dataFrame']) else: output['code'] = _getCode(query,self._connectionInfo.userSettings,self._cleanCode) output['request'] = retrivedData self._lastLoad = output return(output) def _cleanOutput(self,query,retrivedData): if query['params']['ResultFormat'] == 'JSON': self._cleanCode = "df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Data'])" df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Data']) #NOTE: Not workings, works if use "Dimensions" instead of data, but not sure if this is the right thing. else: self._cleanCode = "df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Data'])" df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Data']) #TODO: check this works df_output.meta = '' try: df_output.meta = retrivedData.json()['BEAAPI']['Results']['Notes'] except: pass output = {'dataFrame':df_output} return(output) def clipcode(self): _clipcode(self) def _driverMetadata(self): self.metadata = [{ "displayName":"Parameter of Dataset", "method" :"GetParameterList", #Name of driver main function - run with getattr(data,'datasetlist')() "params" :{}, }] class getGDPbyIndustry(): def __init__(self,baseRequest={},connectionParameters={},userSettings={}): ''' the baseRequest contains user Key, url of datasource, and prefered output format (JSON vs XML) ''' self._connectionInfo = generalSettings.getGeneralSettings(connectionParameters = connectionParameters, userSettings = userSettings ) self._baseRequest = _getBaseRequest(baseRequest,connectionParameters,userSettings) self._lastLoad = {} #data stored here to asist other function as clipboard def GDPbyIndustry(self, Industry, TableID, Frequency, Year, payload = {'method': 'GETDATA', 'datasetname': 'GDPbyIndustry'}, verbose = False ): ''' Query the GDPbyIndustry database (API query) Sample run - Args: Industry (str): eg TableID (str): eg Frequency (str): eg Q Year (str): eg 'X' for all or '2019' payload (dict): request default {'method': 'GETDATA', 'datasetname': 'GDPbyIndustry'}, verbose (bool): if returns that data in a pandas dataframe format or all available information; default to False Returns: output: either a pandas dataframe or a dictionary (verbose=True) with dataFrame, request, and code ''' # TODO: put the payload ={} all data in lowercase, else may repeat the load (say frequency=A and Frquency = Q will load A and Q) # load user preferences defined in userSettings, use suggested parameters, override w fun entry query = deepcopy(self._baseRequest) query['params'].update({'Industry':Industry}) query['params'].update({'TableID':TableID}) query['params'].update({'Frequency':Frequency}) query['params'].update({'Year':Year}) query['params'].update(payload) retrivedData = requests.get(**query) output = self._cleanOutput(query,retrivedData) #a dict of a df or df and meta (tablePretty) if verbose == False: self._lastLoad = output['dataFrame'] return(output['dataFrame']) else: output['code'] = _getCode(query,self._connectionInfo.userSettings,self._cleanCode) output['request'] = retrivedData self._lastLoad = output return(output) def _cleanOutput(self,query,retrivedData): if query['params']['ResultFormat'] == 'JSON': self._cleanCode = "df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data'])" df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data']) else: self._cleanCode = "df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data'])" df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data']) #TODO: check this works df_output.meta = '' try: df_output.meta = retrivedData.json()['BEAAPI']['Results']['Notes'] except: pass output = {'dataFrame':df_output} return(output) def clipcode(self): _clipcode(self) def _driverMetadata(self): self.metadata = [{ "displayName":"Parameter of Dataset", "method" :"GetParameterList", #Name of driver main function - run with getattr(data,'datasetlist')() "params" :{}, }] class getRegionalIncome(): def __init__(self,baseRequest={},connectionParameters={},userSettings={}): ''' the baseRequest contains user Key, url of datasource, and prefered output format (JSON vs XML) ''' self._connectionInfo = generalSettings.getGeneralSettings(connectionParameters = connectionParameters, userSettings = userSettings ) self._baseRequest = _getBaseRequest(baseRequest,connectionParameters,userSettings) self._lastLoad = {} #data stored here to asist other function as clipboard def RegionalIncome(self): print("RegionalIncome and RegionalProduct were deprecated - use Regional instead - check https://apps.bea.gov/api/_pdf/bea_web_service_api_user_guide.pdf appendix I and J") output = {'dataFrame':pd.DataFrame(['Dataset deprecated - use Regional'])} return(output) class getRegionalProduct(): def __init__(self,baseRequest={},connectionParameters={},userSettings={}): ''' the baseRequest contains user Key, url of datasource, and prefered output format (JSON vs XML) ''' self._connectionInfo = generalSettings.getGeneralSettings(connectionParameters = connectionParameters, userSettings = userSettings ) self._baseRequest = _getBaseRequest(baseRequest,connectionParameters,userSettings) self._lastLoad = {} #data stored here to asist other function as clipboard def RegionalProduct(self): print("RegionalIncome and RegionalProduct were deprecated - use Regional instead - check https://apps.bea.gov/api/_pdf/bea_web_service_api_user_guide.pdf appendix I and J") output = {'dataFrame':pd.DataFrame(['Dataset deprecated - use Regional'])} return(output) class getInputOutput(): def __init__(self,baseRequest={},connectionParameters={},userSettings={}): ''' the baseRequest contains user Key, url of datasource, and prefered output format (JSON vs XML) ''' self._connectionInfo = generalSettings.getGeneralSettings(connectionParameters = connectionParameters, userSettings = userSettings ) self._baseRequest = _getBaseRequest(baseRequest,connectionParameters,userSettings) self._lastLoad = {} #data stored here to asist other function as clipboard def InputOutput(self, TableID, Year, payload = {'method': 'GETDATA', 'datasetname': 'InputOutput'}, verbose = False ): ''' Query the InputOutput database (API query) Sample run - Args: TableID (str): eg Year (str): eg 'X' for all or '2019' payload (dict): request default {'method': 'GETDATA', 'datasetname': 'InputOutput'}, verbose (bool): if returns that data in a pandas dataframe format or all available information; default to False Returns: output: either a pandas dataframe or a dictionary (verbose=True) with dataFrame, request, and code ''' # TODO: put the payload ={} all data in lowercase, else may repeat the load (say frequency=A and Frquency = Q will load A and Q) # load user preferences defined in userSettings, use suggested parameters, override w fun entry query = deepcopy(self._baseRequest) query['params'].update({'TableID':TableID}) query['params'].update({'Year':Year}) query['params'].update(payload) retrivedData = requests.get(**query) output = self._cleanOutput(query,retrivedData) #a dict of a df or df and meta (tablePretty) if verbose == False: self._lastLoad = output['dataFrame'] return(output['dataFrame']) else: output['code'] = _getCode(query,self._connectionInfo.userSettings,self._cleanCode) output['request'] = retrivedData self._lastLoad = output return(output) def _cleanOutput(self,query,retrivedData): if query['params']['ResultFormat'] == 'JSON': self._cleanCode = "df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data'])" df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data']) else: self._cleanCode = "df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data'])" df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data']) #TODO: check this works df_output.meta = '' try: df_output.meta = retrivedData.json()['BEAAPI']['Results']['Notes'] except: pass output = {'dataFrame':df_output} return(output) def clipcode(self): _clipcode(self) def _driverMetadata(self): self.metadata = [{ "displayName":"Parameter of Dataset", "method" :"GetParameterList", #Name of driver main function - run with getattr(data,'datasetlist')() "params" :{}, }] class getUnderlyingGDPbyIndustry(): def __init__(self,baseRequest={},connectionParameters={},userSettings={}): ''' the baseRequest contains user Key, url of datasource, and prefered output format (JSON vs XML) ''' self._connectionInfo = generalSettings.getGeneralSettings(connectionParameters = connectionParameters, userSettings = userSettings ) self._baseRequest = _getBaseRequest(baseRequest,connectionParameters,userSettings) self._lastLoad = {} #data stored here to asist other function as clipboard def UnderlyingGDPbyIndustry(self, Industry, TableID, Frequency, Year, payload = {'method': 'GETDATA', 'datasetname': 'UnderlyingGDPbyIndustry'}, verbose = False ): ''' Query the UnderlyingGDPbyIndustry database (API query) Sample run - Args: Industry (str): eg TableID (str): eg Frequency (str): eg Q Year (str): eg 'X' for all or '2019' payload (dict): request default {'method': 'GETDATA', 'datasetname': 'IIP'}, verbose (bool): if returns that data in a pandas dataframe format or all available information; default to False Returns: output: either a pandas dataframe or a dictionary (verbose=True) with dataFrame, request, and code ''' # TODO: put the payload ={} all data in lowercase, else may repeat the load (say frequency=A and Frquency = Q will load A and Q) # load user preferences defined in userSettings, use suggested parameters, override w fun entry query = deepcopy(self._baseRequest) query['params'].update({'Industry':Industry}) query['params'].update({'TableID':TableID}) query['params'].update({'Frequency':Frequency}) query['params'].update({'Year':Year}) query['params'].update(payload) retrivedData = requests.get(**query) output = self._cleanOutput(query,retrivedData) #a dict of a df or df and meta (tablePretty) if verbose == False: self._lastLoad = output['dataFrame'] return(output['dataFrame']) else: output['code'] = _getCode(query,self._connectionInfo.userSettings,self._cleanCode) output['request'] = retrivedData self._lastLoad = output return(output) def _cleanOutput(self,query,retrivedData): if query['params']['ResultFormat'] == 'JSON': self._cleanCode = "df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data'])" df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data']) else: self._cleanCode = "df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data'])" df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data']) #TODO: check this works df_output.meta = '' try: df_output.meta = retrivedData.json()['BEAAPI']['Results']['Notes'] except: pass output = {'dataFrame':df_output} return(output) def clipcode(self): _clipcode(self) def _driverMetadata(self): self.metadata = [{ "displayName":"Parameter of Dataset", "method" :"GetParameterList", #Name of driver main function - run with getattr(data,'datasetlist')() "params" :{}, }] class getIntlServTrade(): def __init__(self,baseRequest={},connectionParameters={},userSettings={}): ''' the baseRequest contains user Key, url of datasource, and prefered output format (JSON vs XML) ''' self._connectionInfo = generalSettings.getGeneralSettings(connectionParameters = connectionParameters, userSettings = userSettings ) self._baseRequest = _getBaseRequest(baseRequest,connectionParameters,userSettings) self._lastLoad = {} #data stored here to asist other function as clipboard def IntlServTrade(self, TypeOfService, TradeDirection, Affiliation, AreaOrCountry, Year, payload = {'method': 'GETDATA', 'datasetname': 'IntlServTrade'}, verbose = False ): ''' Query the IntlServTrade database (API query) Sample run - Args: TypeOfService (str): eg TradeDirection (str): eg Affiliation (str): eg AreaOrCountry (str): eg Year (str): eg 'X' for all or '2019' payload (dict): request default {'method': 'GETDATA', 'datasetname': 'IntlServTrade'}, verbose (bool): if returns that data in a pandas dataframe format or all available information; default to False Returns: output: either a pandas dataframe or a dictionary (verbose=True) with dataFrame, request, and code ''' # TODO: put the payload ={} all data in lowercase, else may repeat the load (say frequency=A and Frquency = Q will load A and Q) # load user preferences defined in userSettings, use suggested parameters, override w fun entry query = deepcopy(self._baseRequest) query['params'].update({"TypeOfService" : TypeOfService}) query['params'].update({"TradeDirection": TradeDirection}) query['params'].update({"Affiliation" : Affiliation}) query['params'].update({"AreaOrCountry" : AreaOrCountry}) query['params'].update({'Year':Year}) query['params'].update(payload) retrivedData = requests.get(**query) output = self._cleanOutput(query,retrivedData) #a dict of a df or df and meta (tablePretty) if verbose == False: self._lastLoad = output['dataFrame'] return(output['dataFrame']) else: output['code'] = _getCode(query,self._connectionInfo.userSettings,self._cleanCode) output['request'] = retrivedData self._lastLoad = output return(output) def _cleanOutput(self,query,retrivedData): if query['params']['ResultFormat'] == 'JSON': self._cleanCode = "df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data'])" df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data']) else: self._cleanCode = "df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data'])" df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data']) #TODO: check this works df_output.meta = '' try: df_output.meta = retrivedData.json()['BEAAPI']['Results']['Notes'] except: pass output = {'dataFrame':df_output} return(output) def clipcode(self): _clipcode(self) def _driverMetadata(self): self.metadata = [{ "displayName":"Parameter of Dataset", "method" :"GetParameterList", #Name of driver main function - run with getattr(data,'datasetlist')() "params" :{}, }] class getRegional(): def __init__(self,baseRequest={},connectionParameters={},userSettings={}): ''' the baseRequest contains user Key, url of datasource, and prefered output format (JSON vs XML) ''' self._connectionInfo = generalSettings.getGeneralSettings(connectionParameters = connectionParameters, userSettings = userSettings ) self._baseRequest = _getBaseRequest(baseRequest,connectionParameters,userSettings) self._lastLoad = {} #data stored here to asist other function as clipboard def Regional(self, GeoFips, LineCode, TableName, Year, payload = {'method': 'GETDATA', 'datasetname': 'Regional'}, verbose = False ): ''' Query the IntlServTrade database (API query) Sample run - Args: GeoFips (str): eg LineCode (str): eg TableName (str): eg Year (str): eg 'X' for all or '2019' payload (dict): request default {'method': 'GETDATA', 'datasetname': 'Regional'}, verbose (bool): if returns that data in a pandas dataframe format or all available information; default to False Returns: output: either a pandas dataframe or a dictionary (verbose=True) with dataFrame, request, and code ''' # TODO: put the payload ={} all data in lowercase, else may repeat the load (say frequency=A and Frquency = Q will load A and Q) # load user preferences defined in userSettings, use suggested parameters, override w fun entry query = deepcopy(self._baseRequest) query['params'].update({"GeoFips" : GeoFips }) query['params'].update({"LineCode" : LineCode }) query['params'].update({"TableName" : TableName }) query['params'].update({'Year':Year}) query['params'].update(payload) retrivedData = requests.get(**query) output = self._cleanOutput(query,retrivedData) #a dict of a df or df and meta (tablePretty) if verbose == False: self._lastLoad = output['dataFrame'] return(output['dataFrame']) else: output['code'] = _getCode(query,self._connectionInfo.userSettings,self._cleanCode) output['request'] = retrivedData self._lastLoad = output return(output) def _cleanOutput(self,query,retrivedData): if query['params']['ResultFormat'] == 'JSON': self._cleanCode = "df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data'])" df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data']) else: self._cleanCode = "df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data'])" df_output = pd.DataFrame(retrivedData.json()['BEAAPI']['Results']['Data']) #TODO: check this works df_output.meta = '' try: df_output.meta = retrivedData.json()['BEAAPI']['Results']['Notes'] except: pass output = {'dataFrame':df_output} return(output) def clipcode(self): _clipcode(self) def _driverMetadata(self): self.metadata = [{ "displayName":"Parameter of Dataset", "method" :"GetParameterList", #Name of driver main function - run with getattr(data,'datasetlist')() "params" :{}, }] class getNIPAVintageTables(): def __init__(self,baseRequest={},connectionParameters={},userSettings={}): ''' driver of list of NIPA vintage tables ''' #TODO: need to put a default url location #self._connectionInfo = generalSettings.getGeneralSettings(connectionParameters = connectionParameters, userSettings = userSettings ) #self._baseRequest = _getBaseRequest(baseRequest,connectionParameters,userSettings) self._lastLoad = {} #data stored here to asist other function as clipboard def NIPAVintageTables(self,verbose=False): ''' Get a list of NIPA Vintage tables (non-API) Sample run - NIPAVintageTables() Args: verbose (bool): if returns that data in a pandas dataframe format or all available information; default to False Returns: output: either a pandas dataframe or a dictionary (verbose=True) with dataFrame, request, and code (empty code for now) ''' # TODO: listTables = vintageFns.urlNIPAHistQYVintage( ) output = self._cleanOutput(listTables) #a dict of a df or df and meta (tablePretty) if verbose == False: self._lastLoad = output['dataFrame'] return(output['dataFrame']) else: output['request'] = listTables output['code'] = self._getCode() #TODO: write code as method in class self._lastLoad = output return(output) def _cleanOutput(self,listTables): #TODO: break year/quarter in first column into year and quarter columns df_output = listTables df_output['year'] = df_output['yearQuarter'].apply(lambda x: x.split(',')[0].strip()) df_output['quarter'] = df_output['yearQuarter'].apply(lambda x: x.split(',')[1].strip()) df_output.drop('yearQuarter',axis=1,inplace=True) df_output['releaseDate'] = pd.to_datetime(df_output['releaseDate'],errors='ignore') output = {'dataFrame':df_output} return(output) def clipcode(self): _clipcode(self) def _getCode(self): code = "to be written" return(code) def _driverMetadata(self): self.metadata = [{ "displayName":"NIPAVintageTables", "method" :"getNIPAVintageTables", #Name of driver main function - run with getattr(data,'datasetlist')() "params" :{}, }] class getNIPAVintage(): def __init__(self,baseRequest={},connectionParameters={},userSettings={}): ''' driver of list of NIPA vintage tables ''' #TODO: need to put a default url location #self._connectionInfo = generalSettings.getGeneralSettings(connectionParameters = connectionParameters, userSettings = userSettings ) #self._baseRequest = _getBaseRequest(baseRequest,connectionParameters,userSettings) self._lastLoad = {} #data stored here to asist other function as clipboard self._urlsOfQYRelease = pd.DataFrame() #a table of the url of data with same QY release. Will load via _getUrlsOfQYRelease if empty self._urlsOfQueryQYRelease = pd.DataFrame() #table of urls of data with same QY release restricted to query of interest. Load via _queryUrlsOfQYRelease self._urlsOfExcelTables = pd.DataFrame() #location of Excel tables of interest: type, Title, QY and ReleaseDate. Load with _getUrlsOfData def NIPAVintage(self,tableName='',frequency='',type = 'main', Title = '',year='',quarter='',vintage = '',releaseDate='',reload=False,verbose=False,beaAPIFormat=False): ''' Get a list of NIPA Vintage tables (non-API) Sample run - Args: tableName (str): the name of a NIPA table of interest; will return all tables otherwise. Default to '', all tables. frequency (str): A,Q or M. Returns all frequencies otherwise. Default to '', all frequencies type (str): main, underlyning, MilsOfDollars. Defaults to main. Title (str): Section 0, Section 1, etc. vintage (str): Third, Second, Advance year (str): string or numeric quarter (str): Q1,...,Q4 releaseDate (str): will pick the first release date prior or equal to this. string or datetime eg datetime.now(), '2019-04-05', '04-05-2019', 'Apr-05-2019' reload (bool): reloads getting the datatable by QY ReleaseDate verbose (bool): False just returns a table with all data. Else, returns cleaned data, code, and returned query Returns: output: either a pandas dataframe or a dictionary (verbose=True) with dataFrame, request, and code ''' self._getUrlsOfData( type, Title,year,quarter,vintage,releaseDate,reload) #get the url of excel sheets with data given type, Title etc self.array_output = vintageFns.getNIPADataFromListofLinks(self._urlsOfExcelTables) self.clean_array = self._cleanExcelQuery(self.array_output,tableName,frequency,beaAPIFormat) output = dict() output['dataFrame'] = [ x['Results']['Data'] for x in self.clean_array ] if not verbose: self._lastLoad = output['dataFrame'] return(output['dataFrame']) else: output['code'] = 'none' #TODO: fix code output['request'] = self.clean_array self._lastLoad = output return(output) def _getUrlsOfQYRelease(self,reload=False): if reload: self._urlsOfQYRelease = getNIPAVintageTables().NIPAVintageTables() elif self._urlsOfQYRelease.empty: self._urlsOfQYRelease = getNIPAVintageTables().NIPAVintageTables() def _queryUrlsOfQYRelease(self,year='',quarter='',vintage = '',releaseDate='',reload=False): self._getUrlsOfQYRelease(reload) df_output = self._urlsOfQYRelease.copy() if not year == '': year = str(year) df_output = df_output.loc[df_output['year']==year] if not quarter == '': quarter = quarter.upper() df_output = df_output.loc[df_output['quarter']==quarter] if not vintage =='': vintage = vintage.capitalize() df_output = df_output.loc[df_output['vintage']==vintage] if not releaseDate == '': firstDate = df_output.loc[ df_output['releaseDate'] <= releaseDate]['releaseDate'].max() df_output = df_output.loc[df_output['releaseDate'] == firstDate] self._urlsOfQueryQYRelease = df_output def _getURLsInQYRelease(self,tableLine): self._urlsInQYRelease = vintageFns.urlNIPAHistQYVintageMainOrUnderlSection( tableLine ) df_output = pd.DataFrame() for key,table in self._urlsInQYRelease.items(): table.insert(0,'type',key) df_output = pd.concat([df_output, table ]) return(df_output) def _getUrlsOfData(self,type = 'main', Title = '',year='',quarter='',vintage = '',releaseDate='',reload=False): df_output = pd.DataFrame() #get data the url inside the group with same QY and Release date, # restrict by the given conditions self._queryUrlsOfQYRelease(year,quarter,vintage,releaseDate,reload) #Get the URLs inside each entry above, these are pointers to Excel files for line in self._urlsOfQueryQYRelease.iterrows(): df_output = pd.concat([df_output, self._getURLsInQYRelease( line[1] ) ]) if not type == '': type = type.lower() df_output = df_output.loc[df_output['type']==type] if not Title == '': Title = Title.capitalize() df_output = df_output.loc[df_output['Title']==Title] self._urlsOfExcelTables = df_output def _cleanOutput(self,listTables): #TODO: break year/quarter in first column into year and quarter columns df_output = listTables df_output['year'] = df_output['yearQuarter'].apply(lambda x: x.split(',')[0].strip()) df_output['quarter'] = df_output['yearQuarter'].apply(lambda x: x.split(',')[1].strip()) df_output.drop('yearQuarter',axis=1,inplace=True) df_output['releaseDate'] = pd.to_datetime(df_output['releaseDate'],errors='ignore') output = {'dataFrame':df_output} return(output) def _cleanExcelQuery(self,arrayData,tableName='',frequency='',beaAPIFormat=False): ''' Given an array of dictionaries (array entry contains all data by year, quarter type Title) ''' clean_array = [] for entry in arrayData: baseInfo = {key:val for key, val in entry.items() if not key == 'data'} #data that is not sheet #restrict to cases containing tableName and frequency if tableName == '' and frequency == '': subset = entry['data'] else: subset = {key:val for key, val in entry['data'].items() if tableName.lower() in key.lower() and frequency.lower() in key.lower() } subset = vintageFns.formatBeaRaw( subset ) for sheetName, sheet in subset.items(): sName = sheetName.split('_') table = sName[0] try: frequency = sName[1] #covers the case sheetName = 'Contents' except: frequency = '' #add basic info to the pandas table: sheet['Data'].insert(0,'tableName',table) sheet['Data'].insert(1,'yearQuarterVintage','-'.join([entry['year'] , entry['quarter'],entry['vintage']])) sheet['Data'].insert(2,'releaseDate',entry['releaseDate'].strftime("%Y-%m-%d")) clean_array.append( {**baseInfo, **{'sheetName':sheetName,'tableID':table,'frequency':frequency}, **{'Results':sheet}} ) return(clean_array) def clipcode(self): _clipcode(self) def _getCode(self): code = "to be written" return(code) def _driverMetadata(self): self.metadata = [{ "displayName":"NIPAVintageTables", "method" :"getNIPAVintageTables", #Name of driver main function - run with getattr(data,'datasetlist')() "params" :{}, }] class getNIPASummary(): def __init__(self,baseRequest={},connectionParameters={},userSettings={}): ''' driver of list of NIPA Account Summary tables ''' self._connectionInfo = generalSettings.getGeneralSettings(connectionParameters = connectionParameters, userSettings = userSettings ) self._baseRequest = _getBaseRequest(baseRequest,connectionParameters,userSettings) self._lastLoad = {} #data stored here to asist other function as clipboard self.cfgSummary = CFGnipaSummary.tabparams self.queryNIPA = getNIPA(baseRequest,connectionParameters,userSettings) self.queryNIPAVintage = getNIPAVintage() def NIPASummary(self,year,frequency,verbose=False): ''' Overall view of NIPA data (non-API) Sample run - NIPASummary(2018,'Q') Args: frequency (str): A,Q or M. Returns all frequencies otherwise. Default to '', all frequencies year (str): string or numeric verbose (bool): False just returns a table with all data. Else, returns cleaned data, code, and returned query Returns: output: either a pandas dataframe or a dictionary (verbose=True) with dataFrame, request, and code ''' output = dict() output['request'] = self._getAccountTable(year,frequency) output['dataFrame'] = self._cleanRequest(output['request']) #will put Account # - source/use as column title to shorten the request output if verbose == False: return(output['dataFrame']) else: return(output) def _cleanRequest(self,requestResult): df_array = [] for key,entry in requestResult.items(): useTable = entry['uses'].copy() sourceTable = entry['source'].copy() useCol = list(useTable.columns) sourceCol = list(sourceTable.columns) useCol[0] = key + ' uses' sourceCol[0] = key + ' sources' useTable.columns = useCol sourceTable.columns = sourceCol df_array.append(useTable) df_array.append(sourceTable) return(df_array) def _getAccountTable(self,year,frequency): array_output = deepcopy(self.cfgSummary) #use the structure of cfgSummary to output for acct in self.cfgSummary: query = self.cfgSummary[acct]['source'] #TODO: query->queryUses querySources - one try - do source and uses at same time. if acct == 'Account 2': frequency = 'A' #Account 2 only have annual data query.update({'frequency':frequency,'year':year}) try: array_output[acct]['source'] = self._getAccountUseOrSource(**query) except: print( 'Could not find information of ' + acct +' on current NIPA. Trying to query historical annual data.' ) array_output[acct]['source'] = self._getAccountUseOrSourceVintage(**query) query = self.cfgSummary[acct]['uses'] query.update({'frequency':frequency,'year':year}) try: array_output[acct]['uses'] = self._getAccountUseOrSource(**query) except: print( 'Could not find information of ' + acct +' on current NIPA. Trying to query historical annual data.' ) array_output[acct]['source'] = self._getAccountUseOrSourceVintage(**query) return(array_output) def _getAccountUseOrSource(self,tableName,year,frequency,tableEntries): readTable = self.queryNIPA.NIPA(tableName = tableName, frequency = frequency, year = year ) readTable.reset_index(inplace=True) restrict = pd.DataFrame(tableEntries) output = pd.merge(restrict,readTable,on=['SeriesCode','SeriesCode']) output['LineDescription'] = output.apply(lambda x: x['indentation']*'-' + x['LineDescription'],axis=1) output.drop(['indentation','LineNumber'],axis=1,inplace=True) output.set_index(['LineDescription','SeriesCode'],inplace=True) #NOTE: this is just for sorting column order output.reset_index(inplace=True) return(output) def _getAccountUseOrSourceVintage(self,tableName,year,frequency,tableEntries,Title ='Section 1',releaseDate=datetime.now()): ''' Try to get vintage data (try annual). Default is to check the last available vintage datset from current date. ''' readTable = self.queryNIPAVintage.NIPAVintage(tableName = tableName, frequency = frequency, Title = Title, releaseDate = releaseDate ) readTable = readTable[0] year = str(min(year,int(readTable.columns[-1]))) #either use: the queried year or the last available year in dateset. The smallest of these. cols = [ 'Line', 'LineDescription', 'SeriesCode',year ] readTable = readTable[cols] #readTable.reset_index(inplace=True) restrict = pd.DataFrame(tableEntries) output = pd.merge(restrict,readTable,on=['SeriesCode','SeriesCode']) output['LineDescription'] = output.apply(lambda x: x['indentation']*'-' + x['LineDescription'],axis=1) output.drop(['indentation','Line'],axis=1,inplace=True) output.set_index(['LineDescription','SeriesCode'],inplace=True) #NOTE: this is just for sorting column order output.reset_index(inplace=True) return(output) if __name__ == '__main__': #from datapungibea.drivers import getNIPA #v = getNIPA() #v.NIPA('T10101') #from datapungibea.drivers import getNIPA #getDatasetlist #v = getNIPA() #getDatasetlist() #print(v.NIPA('T10101',verbose=True)) ##print(v._lastLoad['code']) #from datapungibea.drivers import getGetParameterList #getDatasetlist #v = getGetParameterList() #print(v.getParameterList('NIPA',verbose = True)['code']) # #from datapungibea.drivers import getGetParameterValues #getDatasetlist #v = getGetParameterValues() #print(v.getParameterValues('NIPA','TableID')) #from datapungibea.drivers import getNIPAVintageTables #v = getNIPAVintageTables() #print(v.NIPAVintageTables()) #listTables = vintageFns.urlNIPAHistQYVintage( ) #print(listTables) #from datapungibea.drivers import * #v = getNIPAVintage() ##print(v._queryUrlsOfQYRelease(releaseDate='2019-04-01')) ##print(v._getUrlsOfData(releaseDate='2019-04-01')) #cases = v.NIPAVintage(tableName='T10101',frequency='Q',releaseDate = '2018-03-20') #print(cases) #v = getNIPASummary() #print(v.NIPASummary(2018,'Q')) #table indentations v = getNIPA() #print(v.NIPA('T11000',includeIndentations=False)) print(v.NIPA('T11000')) PKOo((datapungibea/generalSettings.py''' .generalSettings ~~~~~~~~~~~~~~~~~ Loads general information: metadata of the datasource, metadata of the package's database drives (methods connecting to the databases of the datasource), and the datasource url and user api key. ''' from . import utils class getGeneralSettings(): #NOTE: write as a mixin? def __init__(self,connectionParameters={},userSettings={}): ''' sessionParameters - API key and the url (most used) of the datasource entry should look like: {'key': 'your key', 'description': 'BEA data', 'address': 'https://apps.bea.gov/api/data/'} userSettings - containg things like the path to api keys, preferred output format (json vs xml) datasourceOverview - a quick description of the datasource and its license packageMetadata - basic info on the package - to be used in a GUI or catalog of methods that read data. Also, "databases" will get automaticall updated with info on the methods that get specific dataset from the datasource. A typical entry should look like: { "displayName":"List of Datasets", "method" :"datasetlist", #NOTE run with getattr(data,'datasetlist')() "params" :{}, #No parameters in this case. } ''' #Load, for example, API Key and the (most used) path to the datasource self.userSettings = utils.getUserSettings(userSettings=userSettings) self.connectionParameters = utils.getConnectionParameters(connectionParameters,userSettings) self.baseRequest = getBaseRequest(self.connectionParameters,self.userSettings) self.datasourceOverview = getDatasourceOverview() self.packageMetadata = getPackageMetadata() def getBaseRequest(connectionParameters={},userSettings={}): ''' translate the connection parameters, a flat dictionary, to the format used by requests (or other connector), also, translate names to ones used by the datasource. ''' if userSettings == {}: userSettings = dict(ResultFormat = 'JSON') print("result format was set to JSON since none could be found or was passed as a 'ResultFormat' in userSettings") output = { #this is, for example, the base of a requests' request - the drivers add to this. 'url' : connectionParameters['url'], 'params' :{ 'UserID' : connectionParameters['key'], 'ResultFormat': userSettings["ResultFormat"] } } return(output) def getDatasourceOverview(): output = ''' Userguides: NOTE: Datasets RegionalIncome and RegionalProduct were deprecated, use Regional instead. https://apps.bea.gov/api/_pdf/bea_web_service_api_user_guide.pdf https://www.bea.gov/tools/ or https://apps.bea.gov/API/signup/index.cfm Basically, there are three types of meta (the first three tabs): (1) GETDATASETLIST top level, get the name of all tables. (2) GetParameterList given a table, what parameters it needs to download (eg. NIPA) (3) GetParameterValues given a parameter of a table, which values you can choose. (eg. TableID) Use them to get: name of datasets, their paramaters, and the values of the parameters. These can be used in the searches of individual datasets (in the other tabs) Sample python code (getting the list of datasets): import requests payload = { 'UserID': ENTER YOUR BEA API Key Here, 'method': 'GETDATASETLIST', 'ResultFormat': "JSON" } beaDatasets = requests.get( 'https://apps.bea.gov/api/data/', params = payload ) Licenses (always check with the data provider): Data used is sourced from the Bureau of Economic Analysis As stated on the Bureau of Economic Analysis website: - Unless stated otherwise, information published on this site is in the public domain and may be used or reproduced without specific permission. - As a U.S. government agency, BEA does not endorse or recommend any commercial products or services. - Any reference or link to the BEA Web site must not contain information that suggests an endorsement or recommendation by BEA. For more information, see: https://www.bea.gov/help/guidelines-for-citing-bea ''' return(output) def getPackageMetadata(): output = { "name": "datapungibea", "loadPackageAs" : "dpbea", "apiClass": "data", "displayName": "BEA", "description": "Acess data from Bureau of Economic Analysis (BEA)", "databases": [ #TODO: pass this to the driver, load the individual drivers metdata in the api. { "displayName":"List of Datasets", "method" :"datasetlist", #NOTE run with getattr(data,'datasetlist')() "params" :{}, }, { "displayName":"Parameter List", "method" :"getParameterList", "params" :{'datasetname':'NIPA'}, #Parameters and default options. }, { "displayName":"Parameter Values", "method" :"getParameterValues", "params" :{'datasetName':'NIPA','parameterName':'TableID'}, #Parameters and default options. }, { "displayName":"NIPA", "method" :"NIPA", "params" :{'tableName':'T10101','year':'X','frequency':'Q'}, #Parameters and default options. }, { "displayName":"MNE", "method" :"MNE", "params" :{ "Frequency" :"Q", "TableID" :"T10101", "DirectionOfInvestment" :"inward" , "OwnershipLevel" :"0" , "NonbankAffiliatesOnly" :"0" , "Classification" :"Country" , "Country" :"all" , "Industry" :"all" , "Year" :"all" , "State" :"all" , "SeriesID" :"0" , "GetFootnotes" :"no" , "Investment" :"all" , "ParentInvestment" :"all" , }, #Parameters and default options. }, { "displayName":"Fixed Assets", "method" :"fixedAssets", "params" :{'TableName':'NIPA','Year':'Year'}, #Parameters and default options. }, { "displayName":"ITA", "method" :"ITA", "params" :{"Indicator":"","AreaOrCountry":"","Frequency":"","Year":""}, #Parameters and default options. }, { "displayName":"IIP", "method" :"IIP", "params" :{"TypeOfInvestment":"","Component":"","Frequency":"","Year":""}, #Parameters and default options. }, { "displayName":"GDP by Industry", "method" :"GDPbyIndustry", "params" :{"Industry":"","TableID":"","Frequency":"","Year":""}, #Parameters and default options. }, #{ #RegionalIncome and RegionalProduct were deprecated - use Regional Instead. # "displayName":"RegionalIncome", # "method" :"RegionalIncome", # "params" :{"GeoFips":"","LineCode":"","TableName":"","Year":""}, #Parameters and default options. #}, #{ # "displayName":"RegionalProduct", # "method" :"RegionalProduct", # "params" :{"GeoFips":"","Component":"","IndustryId":"","Year":""}, #Parameters and default options. #}, { "displayName":"InputOutput", "method" :"InputOutput", "params" :{"TableID":"","Year":""}, #Parameters and default options. }, { "displayName":"Under. GDP by Industry", "method" :"UnderlyingGDPbyIndustry", "params" :{"Industry":"Industry", "TableID":"","Frequency":"", "Year":""}, #Parameters and default options. }, { "displayName":"Intl Serv Trade", "method" :"IntlServTrade", "params" :{"TypeOfService":"","TradeDirection":"","Affiliation":"","AreaOrCountry":"", "Year":""}, #Parameters and default options. }, { "displayName":"Regional", "method" :"Regional", "params" :{"GeoFips" :"","LineCode" :"","TableName" :"", "Year":""}, #Parameters and default options. }, { "displayName":"NIPA Vintage Tbls List (not API)", "method" :"NIPAVintageTables", "params" :{}, #Parameters and default options. }, { "displayName":"NIPA Vintage Data (not API)", "method" :"NIPAVintage", "params" :{"tableName":'',"frequency":'',"year":'',"quarter":'',"vintage": '',"releaseDate":''}, #Parameters and default options. }, { "displayName":"NIPA Summary Tables (not API)", "method" :"NIPASummary", "params" :{"year":'',"frequency":''}, #Parameters and default options. }, ], } return(output)PKO<datapungibea/utils.py''' datapungibea.utils ~~~~~~~~~~~~~~~~~~ This module provides utility functions that are used within datapungibea and by the users when they want to update internal configs. ''' import json import pkg_resources import yaml import os def getConnectionParameters(connectionParameters = {}, userSettings = {}): ''' :param userSettings: (optional) dictionary of ``'ApiKeysPath': a path to json with API Keys`` and ``'ApiKeyLabel': label (key) of JSON entry containing the key`` If userSettings is an empty dictionary (default option), method will try to load it from saved userSettings. output, a dictionary with user key and datasource url ''' if not connectionParameters == {}: if isinstance(connectionParameters,str): #in this case, user only passes a key, no url pkgcfgPath = getResourcePath("/config/pkgConfig.yaml") with open(pkgcfgPath, 'r') as stream: pkgCfg = yaml.safe_load(stream) connectionParameters = {'url':pkgCfg['url'],'key':connectionParameters} return(connectionParameters) if userSettings == {}: userSettings = getUserSettings() try: storingMethod = userSettings['ApiKeysPath'].split('.')[-1] labelName = userSettings['ApiKeyLabel'] if storingMethod == 'json': with open(userSettings['ApiKeysPath']) as jsonFile: connectionParameters = (json.load(jsonFile))[labelName] elif storingMethod == 'yaml': with open(userSettings['ApiKeysPath'], 'r') as stream: pkgCfg = yaml.safe_load(stream) connectionParameters = pkgCfg[labelName] elif storingMethod =='env': #look for an environment variable called something like BEA_url url = os.getenv(labelName+'_url') if url == None: #if can't find it, load from the package config pkgcfgPath = getResourcePath("/config/pkgConfig.yaml") with open(pkgcfgPath, 'r') as stream: pkgCfg = yaml.safe_load(stream) url = pkgCfg['url'] connectionParameters = {'key':os.getenv(labelName),'url':url} return(connectionParameters) except: print('Could not find dictionary key ' + labelName + ' in \n '+ userSettings['ApiKeysPath']) return def getResourcePath(relativePath, resource_package = __name__): ''' Given relative, get its full path eg: relative path: /config/userSettings.json will return datapungibea path + relative path note: can replace resource_package with package name: eg: 'datapungibea' ''' fullPath = pkg_resources.resource_filename(resource_package, relativePath) return(fullPath) def getUserSettings(userSettings = {}): ''' loads the userSettings file. ''' if not userSettings == {}: return(userSettings) userSettingsPath = getResourcePath('/config/userSettings.json','datapungibea') #TODO: remove package name. try: with open(userSettingsPath) as jsonFile: userSettings = json.load(jsonFile) return(userSettings) except: print('.utils.py: Could not open the userSettings: \n ./config/userSettings.json \n returning empty dictionary') return({}) def setPkgConfig(newUrl): ''' save the default url of the BEA api ''' if not isinstance(newUrl,str): print('Provide a string of the BEA URL') pass pkgcfgPath = getResourcePath("/config/pkgConfig.yaml") with open(pkgcfgPath, 'r') as stream: pkgCfg = yaml.safe_load(stream) pkgCfg['url'] = newUrl with open(pkgcfgPath, 'w') as outfile: yaml.dump(pkgCfg,outfile, default_flow_style=False) def setUserSettings(newPath): #TODO: check if still valid ''' sets the api key path in the package config file. eg: import datapungibea as dpb dpb.utils.setUserSettings('myPath') ''' userSettingsPath = getResourcePath('/config/userSettings.json') try: with open(userSettingsPath) as jsonFile: config = json.load(jsonFile) except: print('Could not open the configuration file: \n datapungi/config/userSettings.json') pass config['ApiKeysPath'] = newPath try: with open(userSettingsPath,'w') as jsonFile: json.dump(config,jsonFile) print('Path to the API Keys updated! New Path: \n' + config['ApiKeysPath']) except: print('Could not save the configuration to file: \n datapungibea/config/userSettings.json \n Path API Key not updated') pass def setKeyName(newName): #TODO: check if still valid ''' sets the api key name in the package config file. eg: import datapungibea as dpb dpb.utils.setKeyName('BEA_Secrete') ''' userSettingsPath = getResourcePath('/config/userSettings.json') try: with open(userSettingsPath) as jsonFile: config = json.load(jsonFile) except: print('Could not open the configuration file: \n datapungi/config/userSettings.json') pass config["ApiKeyLabel"] = newName try: with open(userSettingsPath,'w') as jsonFile: json.dump(config,jsonFile) print('Name of the API Keys updated! New Name: \n' + config["ApiKeyLabel"]) except: print('Could not save the configuration to file: \n datapungibea/config/userSettings.json \n API Key Name not updated') pass def setTestFolder(newTestsPath): userSettingsPath = getResourcePath('/config/userSettings.json') try: with open(userSettingsPath) as jsonFile: config = json.load(jsonFile) except: print('Could not open the configuration file: \n datapungi/config/userSettings.json') pass config['TestsOutputPath'] = newTestsPath try: with open(userSettingsPath,'w') as jsonFile: json.dump(config,jsonFile) print('Path to the Tests Output Folder updated! New Path: \n' + config['TestsOutputPath']) except: print('Could not save the configuration to file: \n datapungibea/config/userSettings.json \n Path to the Tests Output not updated') pass if __name__ == '__main__': setTestFolder('U:/Tests')PKOݖy}C}Cdatapungibea/vintage.pyimport pandas as pd # import numpy as np # import requests as rq # get json import bs4 as bs # scraping websites import urllib.request # work/connect to url import html5lib import re # regular expression from datetime import datetime import json import sys def urlNIPAHistQYVintage( NIPAHistUrl = 'https://apps.bea.gov/histdata/histChildLevels.cfm?HMI=7', #location of table of historical databases histUrl = 'https://apps.bea.gov/histdata/', #missing part of the historical database https replaceSpaceWith = "%20" ): ''' Table of the url of the Quarter Year Vintage Data Inputs: NIPAUrl a string poiting to the site of NIPA historical data. For each quater, vintage, release data, it gives a link to the historical NIPA data (missing the mainUrl part) replaceSpaceWith %20 is because certain pages will load open without this correction Output: Returns a table listing the name, vintage, time units of the historical data and their http links These are not links to data, but a place that points to excel tables (the output of interest). ''' #connect to main BEA Historical table and get tables source = urllib.request.urlopen( NIPAHistUrl ).read() soup = bs.BeautifulSoup( source, 'lxml' ) htable = soup.table #get the main table and standardize its entries ('1. Advance' vs 'Advance' in lines etc) dfUrlQYVintage = pd.read_html( str( htable ), encoding='utf-8',header = 0)[1] #get the table entries, could go to the html directly. dfUrlQYVintage.columns = ['yearQuarter','vintage','releaseDate'] dfUrlQYVintage['vintage'] = dfUrlQYVintage['vintage'].apply( lambda x: re.sub('.\. ','',x) ) dfUrlQYVintage['vintage'] = dfUrlQYVintage['vintage'].apply( lambda x: re.sub('Final','Third',x) ) dfUrlQYVintage['vintage'] = dfUrlQYVintage['vintage'].apply( lambda x: re.sub('Preliminary','Second',x) ) dfUrlQYVintage['vintage'] = dfUrlQYVintage['vintage'].apply( lambda x: re.sub('Initial','Advance',x) ) #get hrefs from the loaded table links = [] for link in htable.table.find_all('tr'): #links.append(link) aux = link.a if aux != None: links.append(aux.get('href')) else: pass #NOTE: maybe the most stable way is to work #df['href'] = [np.where(tag.has_attr('href'),tag.get('href'),"no link") for tag in tb.find_all('a')] try: dfUrlQYVintage['vintageLink'] = links except: try: dfUrlQYVintage.drop(dfUrlQYVintage.index[0],inplace=True) #merging tables of different sizes - maybe table heading is dupilcated on the table - try dropping it. dfUrlQYVintage['vintageLink'] = links except: print('datapungibea.vintage.py: could not match tables - merging panda tables of different sizes.') dfUrlQYVintage['vintageLink'] = dfUrlQYVintage['vintageLink'].apply( lambda x: (histUrl+x).replace(" ", replaceSpaceWith) ) #appends the main url bc the link given misses this part return( dfUrlQYVintage ) def urlNIPAHistQYVintageMainOrUnderlSection( LineOfdfUrlQYVintage, #a line of the table output of urlNIPAHistQYVintage beaUrl = 'https://apps.bea.gov/' ): ''' From the url of quarter year vintage data (see urlNIPAHistQYVintage) make a table of the url of the quarter year vintage type (main/underlying etc) and section The output urls point to excel tables. ''' source = urllib.request.urlopen( LineOfdfUrlQYVintage['vintageLink'] ).read() soup = bs.BeautifulSoup( source, 'lxml' ) htable = soup.body.find_all('table') outValues = [] for table in htable: #this will skip tables that don't have headings try: dftab = pd.read_html( str(table) , header = 0 )[0] auxlink = list( map( lambda x: x.get('href'), table.find_all('a') )) #links.append( [auxlink] ) dftab['excelLink'] = list(map(lambda x: beaUrl+x ,auxlink)) #here replace " " with %20 if not dftab.empty: for key, entry in LineOfdfUrlQYVintage.items(): dftab[key] = entry outValues.append(dftab) except: pass if len(outValues) == 3: #Varies a lot, some years have three tables (main, FA / Millions, underlying, other years 1 (main) output = dict(zip( ['main','FAorMillions','underlying'], outValues )) elif len(outValues) == 2: output = dict(zip( ['main','underlying'], outValues )) else: output = dict(zip( ['main'], outValues )) return(output) def getAllLinksToHistTables(): ''' Concatenate the tables of the excel data urls. If readSaved = True, will read the pre-saved data ''' #Get the location of the datasets with same Q-Y dfUrlQYVintage = urlNIPAHistQYVintage() #Load all data in the given location urlOfExcelTables = pd.DataFrame() for line in range(len(dfUrlQYVintage)): LineOfdfUrlQYVintage = dfUrlQYVintage.to_dict('records')[line] out = urlNIPAHistQYVintageMainOrUnderlSection( LineOfdfUrlQYVintage ) for type in out: out[type]['type'] = type urlOfExcelTables = pd.concat([urlOfExcelTables] + list(out.values()),sort=False) return( urlOfExcelTables ) def getNIPADataFromListofLinks( tableOfLinks , asJson = False): ''' ''' nipaData = tableOfLinks.to_dict(orient='records') count = 0 for row in nipaData: link = row['excelLink'] if asJson == False: try: row['data'] = pd.read_excel(link.replace(" ","%20"), sheet_name=None) except: print("cannot read: " + link) else: try: row['data'] = pd.read_excel(link.replace(" ","%20"), sheet_name=None).to_dict(orient='records') except: print('cannot read: ' + link) count = count + 1 if count%250 == 0: print( 'got item '+ str(count) ) return( nipaData ) def formatBeaRaw( rawIn , beaAPIFormat = False): ''' Raw is the pandas reading of the BEA excel table (has all sheets). output a dictionary (Results) keys are tableName and Frequency (eg T10101_Q) values of Results are dictionaries with: - Data (a panda df, if beaAPIFormat = True, then vertical table) - Statistic (a str = "NIPA Table"), - UTCProductionTime (a date = now), - Notes (comments found in the excel table, the structure of the table. this is not part of BEA API) - Dimensions (similar to BEA API) ''' #fix table names: raw = dict(zip( [re.sub(" |-", "_", entry).replace('Qtr', 'Q').replace('Month', 'M').replace('Ann', 'A').strip() for entry in list(rawIn)], list(rawIn.values()) )) #raw = { newRawKeys[entry] : rawIn[entry] for entry in newRawKeys } Results = {} for x in raw: if x == 'Contents': continue Results[x] = {} table = raw[x].copy() #fix the case when the quarter or month is listed on a separated line (2019 // 1 -> 2019M1) if table.iloc[7,:].isna()[0] == True and table.iloc[7,:].isna()[1] == True: freq = x[-1] #Q, A, or M table.iloc[6, 3:] = [ (str(x[0]) + freq + str(x[1])).replace('.0','') for x in zip(table.iloc[6, 3:], table.iloc[7, 3:])] table.drop(table.index[7],inplace = True) #TODO: check if need to reindex #Results has the following: # -- Data, Statistic (NIPA Table), UTCProductionTime (now), Notes, and Dimensions # #(1)NOTES Results[x]['Notes'] = { 'NoteRef': re.sub('-.$|Qrt$|Annual|A$|M$','',x).strip(" "), #TODO remove -A, Qtr, -Q etc -M 'NoteText': " - ".join( [table.columns[0]] + [ str(entry) for entry in list(table.iloc[:5,0])] ) #TODO: replace nan with '' } #main data and footnote comments rowWithTitles = table.index[table.iloc[:,0] == 'Line'].min() dataTab = table.iloc[rowWithTitles+1:].reset_index(drop=True) #TODO: check when quarters are indicated in the next line #column names colNames = list(table.iloc[rowWithTitles]) colNames[1] = 'LineDescription' colNames[2] = 'SeriesCode' colNames = list(map(lambda x: str(int(x)) if not isinstance(x,str) else x , colNames) ) #all columns as strings. dataTab.columns = colNames dataTab.reset_index(drop=True,inplace=True) #store footnotes on the notes part of the results footnotes = list( dataTab.loc[dataTab['LineDescription'].isnull() & dataTab['Line'].notnull()].iloc[:, 0] ) Results[x]['Notes']['Footnotes'] = dict(zip(range(1,1+len(footnotes)),footnotes)) dataTab = dataTab.loc[dataTab['LineDescription'].notnull()] #include graph structure: indents = dataTab.LineDescription.map(lambda x: len(x) - len(x.lstrip(' '))) indents[dataTab.SeriesCode.notnull()] = indents.loc[dataTab.SeriesCode.notnull()] - indents.loc[dataTab.SeriesCode.notnull()].min() dataTab.insert(3, 'Indentations', indents) #save table structure Results[x]['Notes']['TableStructure'] = dataTab.reset_index().iloc[:,:5].fillna('').to_dict('list') #clean up table #remove subsection headings (these have no data) dataTab = dataTab.loc[dataTab['SeriesCode'].notna()] dataTab.LineDescription = dataTab.LineDescription.map(lambda x: re.sub('\\\\.\\\\', '', x) ) dataTab.LineDescription = dataTab.LineDescription.map(lambda x: re.sub('[\w]*:','',x)) #removes Less:, Equals:... dataTab.LineDescription = dataTab.LineDescription.map(lambda x : x.lstrip(" ")) #do this last to avoid the case when space is created #reshape data (more like in BEA API) if longTable = True if not beaAPIFormat: outData = dataTab else: outData = pd.melt(dataTab, id_vars=['Line', 'LineDescription', 'SeriesCode', 'Indentations'],var_name= 'TimePeriod',value_name = 'DataValue' ) outData.DataValue = pd.to_numeric(outData.DataValue, errors = 'coerce').map(lambda x: str(x)) #values are as strings, here removed non numbers as ..... #outData.rename(index=str, columns={'Line': 'LineNumber'},inplace=True) #outData.insert(0, 'TableName', re.sub('_.$|Qrt$|Annual|A$|M$','',x).strip(" ") ) #outData.insert(len(outData.keys()),'UNIT_MULT',0) #TODO check T10101, always 0, as in many other cases. Bit costly to save these UNIT_Mult, CL data. #outData.insert(len(outData.keys()), 'CL_UNIT', table.iloc[0,0]) # TODO check, T10101: CL_UNIT Percent change, annual rate #outData.insert(len(outData.keys()), 'CL_UNIT', 0) # check TODO: this is missing example of T10101: METRIC_NAME Fisher Quantity Index #the following is just to include info that comes with a query to BEA NIPA API Results[x]['Data'] = outData Results[x]['UTCProductionTime'] = str(datetime.now()).replace(" ","T") Results[x]['Statistic'] = "NIPA Table" Results[x]['Dimensions'] = [ {'Ordinal': '1', 'Name': 'TableName', 'DataType': 'string', 'IsValue': '0'}, {'Ordinal': '2', 'Name': 'SeriesCode', 'DataType': 'string', 'IsValue': '0'}, {'Ordinal': '3', 'Name': 'LineNumber', 'DataType': 'numeric', 'IsValue': '0'}, {'Ordinal': '4', 'Name': 'LineDescription', 'DataType': 'string', 'IsValue': '0'}, {'Ordinal': '5', 'Name': 'Indentations', 'DataType': 'numeric', 'IsValue': '0'}, {'Ordinal': '6', 'Name': 'TimePeriod', 'DataType': 'string', 'IsValue': '0'}, #{'Ordinal': '7', 'Name': 'CL_UNIT', 'DataType': 'string', 'IsValue': '0'}, {'Ordinal': '8', 'Name': 'UNIT_MULT', 'DataType': 'numeric', 'IsValue': '0'}, {'Ordinal': '9', 'Name': 'METRIC_NAME', 'DataType': 'string', 'IsValue': '0'}, {'Ordinal': '10', 'Name': 'DataValue', 'DataType': 'numeric', 'IsValue': '1'} ] return(Results) if __name__ == '__main__': listTables = urlNIPAHistQYVintage( ) print(listTables) urlData = urlNIPAHistQYVintageMainOrUnderlSection( listTables.iloc[0] ) print(urlData) allLinks = getAllLinksToHistTables() print(allLinks) ''' def saveResults(Results,outputFormat = 'dict', save = 'no', saveAs = '' ): #Put in final format (and save or return) #TODO: refactor this part, also,include the option of saving the tables separateldy if outputFormat == 'dict': output = Results if save == 'block': #with open( saveAs, 'w') as outfile: # outfile.write(output) print("Not Saved! Choose pickle to save.") pass elif save == "tablewise": #for entry in output: # with open( saveAs + entry.replace("-","_"), 'w') as outfile: # outfile.write(output) print("Not Saved! Choose pickle to save.") pass else: return(output) if outputFormat == 'dictPandas': output = Results if save == 'block': #with open( saveAs, 'w') as outfile: # outfile.write(output) print("Not Saved! Choose pickle to save.") pass elif save == "tablewise": #for entry in output: # with open( saveAs + entry.replace("-","_"), 'w') as outfile: # outfile.write(output) print("Not Saved! Choose pickle to save.") pass else: return(output) if outputFormat == 'zlib64': output = Results if save == 'block': outputF = json.dumps(output) outputF = zlib.compress(outputF.encode('utf-8')) outputF = b64encode(outputF) outputF = outputF.decode('ascii') with open( saveAs, 'w') as outfile: outfile.write(outputF) pass elif save == "tablewise": for entry in output: outputF = json.dumps(output[entry]) outputF = zlib.compress(outputF.encode('utf-8')) outputF = b64encode(outputF) outputF = outputF.decode('ascii') with open( saveAs + entry.replace("-","_"), 'w') as outfile: outfile.write(outputF) pass else: outputF = json.dumps(output) outputF = zlib.compress(outputF.encode('utf-8')) outputF = b64encode(outputF) outputF = outputF.decode('ascii') return(outputF) if outputFormat == 'gzip': output = Results if save == 'block': outputF = json.dumps(output) outputF = bytes(outputF,'utf-8') with gzip.open( saveAs+'.txt.gz', 'wb') as outfile: outfile.write(outputF) pass elif save == "tablewise": for entry in output: outputF = json.dumps(output[entry]) outputF = bytes(outputF,'utf-8') with gzip.open( saveAs + entry.replace("-","_")+".txt.gz", 'wb') as outfile: outfile.write(outputF) pass else: outputF = json.dumps(output) outputF = bytes(outputF,'utf-8') return(gzip.compress(outputF)) if outputFormat == 'json': output = Results if save == 'block': outputF = json.dumps(output) with open( saveAs+'.json', 'w') as outfile: outfile.write(outputF) pass elif save == "tablewise": for entry in output: outputF = json.dumps(output[entry]) with open( saveAs + entry.replace("-","_")+".json", 'w') as outfile: outfile.write(outputF) pass else: outputF = json.dumps(output) return(outputF) if outputFormat == 'pickle': output = Results if save == 'block': outputF = output with open( saveAs+'.pickle', 'wb') as outfile: pickle.dump(outputF,outfile,protocol=pickle.HIGHEST_PROTOCOL) pass elif save == "tablewise": for entry in output: outputF = output[entry] with open( saveAs + entry.replace("-","_")+".pickle", 'wb') as outfile: pickle.dump(outputF,outfile,protocol=pickle.HIGHEST_PROTOCOL) pass else: outputF = pickle.dumps(output,protocol=pickle.HIGHEST_PROTOCOL) return(outputF) '''PKO$&datapungibea/config/CFGindentations.pyindentations = [{'tableName': ('T10101',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27), 'SeriesCode': ('A191RL', 'DPCERL', 'DGDSRL', 'DDURRL', 'DNDGRL', 'DSERRL', 'A006RL', 'A007RL', 'A008RL', 'A009RL', 'Y033RL', 'Y001RL', 'A011RL', 'ZZZZZZ', 'ZZZZZZ', 'A020RL', 'A253RL', 'A646RL', 'A021RL', 'A255RL', 'A656RL', 'A822RL', 'A823RL', 'A824RL', 'A825RL', 'A829RL', 'A191RP'), 'Indentations': (0, 0, 1, 2, 2, 1, 0, 1, 2, 3, 3, 3, 2, 1, 0, 1, 2, 2, 1, 2, 2, 0, 1, 2, 2, 1, 1)}, {'tableName': ('T10102',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26), 'SeriesCode': ('A191RL', 'DPCERY', 'DGDSRY', 'DDURRY', 'DNDGRY', 'DSERRY', 'A006RY', 'A007RY', 'A008RY', 'A009RY', 'Y033RY', 'Y001RY', 'A011RY', 'A014RY', 'A019RY', 'A020RY', 'A253RY', 'A646RY', 'A021RY', 'A255RY', 'A656RY', 'A822RY', 'A823RY', 'A824RY', 'A825RY', 'A829RY'), 'Indentations': (0, 0, 1, 2, 2, 1, 0, 1, 2, 3, 3, 3, 2, 1, 0, 1, 2, 2, 1, 2, 2, 0, 1, 2, 2, 1)}, {'tableName': ('T10103',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26), 'SeriesCode': ('A191RA', 'DPCERA', 'DGDSRA', 'DDURRA', 'DNDGRA', 'DSERRA', 'A006RA', 'A007RA', 'A008RA', 'B009RA', 'Y033RA', 'Y001RA', 'A011RA', 'ZZZZZZ', 'ZZZZZZ', 'B020RA', 'B253RA', 'B646RA', 'B021RA', 'B255RA', 'B656RA', 'B822RA', 'B823RA', 'B824RA', 'B825RA', 'B829RA'), 'Indentations': (0, 0, 1, 2, 2, 1, 0, 1, 2, 3, 3, 3, 2, 1, 0, 1, 2, 2, 1, 2, 2, 0, 1, 2, 2, 1)}, {'tableName': ('T10104',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26), 'SeriesCode': ('A191RG', 'DPCERG', 'DGDSRG', 'DDURRG', 'DNDGRG', 'DSERRG', 'B006RG', 'B007RG', 'B008RG', 'B009RG', 'Y033RG', 'Y001RG', 'B011RG', 'ZZZZZZ', 'ZZZZZZ', 'B020RG', 'B253RG', 'B646RG', 'B021RG', 'B255RG', 'B656RG', 'B822RG', 'B823RG', 'B824RG', 'B825RG', 'B829RG'), 'Indentations': (0, 0, 1, 2, 2, 1, 0, 1, 2, 3, 3, 3, 2, 1, 0, 1, 2, 2, 1, 2, 2, 0, 1, 2, 2, 1)}, {'tableName': ('T10105',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26), 'SeriesCode': ('A191RC', 'DPCERC', 'DGDSRC', 'DDURRC', 'DNDGRC', 'DSERRC', 'A006RC', 'A007RC', 'A008RC', 'B009RC', 'Y033RC', 'Y001RC', 'A011RC', 'A014RC', 'A019RC', 'B020RC', 'A253RC', 'A646RC', 'B021RC', 'A255RC', 'B656RC', 'A822RC', 'A823RC', 'A824RC', 'A825RC', 'A829RC'), 'Indentations': (0, 0, 1, 2, 2, 1, 0, 1, 2, 3, 3, 3, 2, 1, 0, 1, 2, 2, 1, 2, 2, 0, 1, 2, 2, 1)}, {'tableName': ('T10106',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27), 'SeriesCode': ('A191RX', 'DPCERX', 'DGDSRX', 'DDURRX', 'DNDGRX', 'DSERRX', 'A006RX', 'A007RX', 'A008RX', 'B009RX', 'Y033RX', 'Y001RX', 'A011RX', 'A014RX', 'A019RX', 'A020RX', 'A253RX', 'A646RX', 'A021RX', 'A255RX', 'B656RX', 'A822RX', 'A823RX', 'A824RX', 'A825RX', 'A829RX', 'A960RX'), 'Indentations': (0, 0, 1, 2, 2, 1, 0, 1, 2, 3, 3, 3, 2, 1, 0, 1, 2, 2, 1, 2, 2, 0, 1, 2, 2, 1, 0)}, {'tableName': ('T10107',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29), 'SeriesCode': ('A191RV', 'DPCERV', 'DGDSRV', 'DDURRV', 'DNDGRV', 'DSERRV', 'A006RV', 'A007RV', 'A008RV', 'A009RV', 'Y033RV', 'Y001RV', 'A011RV', 'ZZZZZZ', 'ZZZZZZ', 'A020RV', 'A253RV', 'A646RV', 'A021RV', 'A255RV', 'A656RV', 'A822RV', 'A823RV', 'A824RV', 'A825RV', 'A829RV', 'A001RV', 'A191RI', 'A001RI'), 'Indentations': (0, 0, 1, 2, 2, 1, 0, 1, 2, 3, 3, 3, 2, 1, 0, 1, 2, 2, 1, 2, 2, 0, 1, 2, 2, 1, 1, 2, 2)}, {'tableName': ('T10108',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26), 'SeriesCode': ('A191RV', 'DPCERJ', 'DGDSRJ', 'DDURRJ', 'DNDGRJ', 'DSERRJ', 'A006RJ', 'A007RJ', 'A008RJ', 'B009RJ', 'Y033RJ', 'Y001RJ', 'A011RJ', 'A014RJ', 'A019RJ', 'A020RJ', 'A253RJ', 'A646RJ', 'A021RJ', 'A255RJ', 'B656RJ', 'A822RJ', 'A823RJ', 'A824RJ', 'A825RJ', 'A829RJ'), 'Indentations': (0, 0, 1, 2, 2, 1, 0, 1, 2, 3, 3, 3, 2, 1, 0, 1, 2, 2, 1, 2, 2, 0, 1, 2, 2, 1)}, {'tableName': ('T10109',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27), 'SeriesCode': ('A191RD', 'DPCERD', 'DGDSRD', 'DDURRD', 'DNDGRD', 'DSERRD', 'A006RD', 'A007RD', 'A008RD', 'A009RD', 'Y033RD', 'Y001RD', 'A011RD', 'ZZZZZZ', 'ZZZZZZ', 'A020RD', 'A253RD', 'A646RD', 'A021RD', 'A255RD', 'A656RD', 'A822RD', 'A823RD', 'A824RD', 'A825RD', 'A829RD', 'A001RD'), 'Indentations': (0, 0, 1, 2, 2, 1, 0, 1, 2, 3, 3, 3, 2, 1, 0, 1, 2, 2, 1, 2, 2, 0, 1, 2, 2, 1, 1)}, {'tableName': ('T10110',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26), 'SeriesCode': ('A191RE', 'DPCERE', 'DGDSRE', 'DDURRE', 'DNDGRE', 'DSERRE', 'A006RE', 'A007RE', 'A008RE', 'B009RE', 'Y033RE', 'Y001RE', 'A011RE', 'A014RE', 'A019RE', 'B020RE', 'A253RE', 'A646RE', 'B021RE', 'A255RE', 'B656RE', 'A822RE', 'A823RE', 'A824RE', 'A825RE', 'A829RE'), 'Indentations': (0, 0, 1, 2, 2, 1, 0, 1, 2, 3, 3, 3, 2, 1, 0, 1, 2, 2, 1, 2, 2, 0, 1, 2, 2, 1)}, {'tableName': ('T10111',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42), 'SeriesCode': ('A191RO', 'DPCERO', 'DGDSRO', 'DDURRO', 'DNDGRO', 'DSERRO', 'B006RO', 'A007RO', 'A008RO', 'A009RO', 'Y033RO', 'Y001RO', 'A011RO', 'ZZZZZZ', 'ZZZZZZ', 'A020RO', 'A253RO', 'A646RO', 'A021RO', 'A255RO', 'A656RO', 'A822RO', 'A823RO', 'A824RO', 'A825RO', 'A829RO', 'A190RO', 'A712RO', 'A713RO', 'PE000003', 'A261RO', 'PE000009', 'A001RO', 'A067RO', 'B712RO', 'B983RO', 'B191RO', 'BB03RO', 'BPCERO', 'BPCCRO', 'BPCMRO', 'BPCXRO'), 'Indentations': (0, 0, 1, 2, 2, 1, 0, 1, 2, 3, 3, 3, 2, 1, 0, 1, 2, 2, 1, 2, 2, 0, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2)}, {'tableName': ('T10201',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22), 'SeriesCode': ('A191RL', 'A190RL', 'ZZZZZZ', 'A353RL', 'A325RL', 'ZZZZZZ', 'A354RL', 'A326RL', 'ZZZZZZ', 'A356RL', 'A334RL', 'ZZZZZZ', 'A341RL', 'A755RL', 'A953RL', 'A962RL', 'BB01RL', 'BB00RL', 'BB05RL', 'Y694RL', 'Y695RL', 'A190RP'), 'Indentations': (0, 1, 2, 0, 1, 2, 2, 3, 4, 2, 3, 4, 0, 0, 1, 2, 2, 2, 2, 2, 2, 2)}, {'tableName': ('T10202',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20), 'SeriesCode': ('A191RL', 'A190RY', 'A014RY', 'A353RY', 'A325RY', 'A014RY', 'A354RY', 'A326RY', 'A355RY', 'A356RY', 'A334RY', 'A357RY', 'A341RY', 'A755RY', 'A953RY', 'A962RY', 'BB01RY', 'BB00RY', 'Y694RY', 'Y695RY'), 'Indentations': (0, 1, 2, 0, 1, 2, 2, 3, 4, 2, 3, 4, 0, 0, 1, 2, 2, 2, 2, 2)}, {'tableName': ('T10203',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21), 'SeriesCode': ('A191RA', 'A190RA', 'ZZZZZZ', 'A353RA', 'A325RA', 'ZZZZZZ', 'A354RA', 'A326RA', 'ZZZZZZ', 'A356RA', 'A334RA', 'ZZZZZZ', 'A341RA', 'A755RA', 'A953RA', 'A962RA', 'BB01RA', 'BB00RA', 'BB05RA', 'Y694RA', 'Y695RA'), 'Indentations': (0, 1, 2, 0, 1, 2, 2, 3, 4, 2, 3, 4, 0, 0, 1, 2, 2, 2, 2, 2, 2)}, {'tableName': ('T10204',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21), 'SeriesCode': ('A191RG', 'B190RG', 'ZZZZZZ', 'A353RG', 'A325RG', 'ZZZZZZ', 'A354RG', 'A326RG', 'ZZZZZZ', 'A356RG', 'A334RG', 'ZZZZZZ', 'A341RG', 'A755RG', 'A953RG', 'A962RG', 'BB01RG', 'BB00RG', 'A190RD', 'Y694RG', 'Y695RG'), 'Indentations': (0, 1, 2, 0, 1, 2, 2, 3, 4, 2, 3, 4, 0, 0, 1, 2, 2, 2, 2, 2, 2)}, {'tableName': ('T10205',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20), 'SeriesCode': ('A191RC', 'A190RC', 'A014RC', 'A353RC', 'A325RC', 'A014RC', 'A354RC', 'A326RC', 'A355RC', 'A356RC', 'A334RC', 'A357RC', 'A341RC', 'A755RC', 'A953RC', 'A962RC', 'BB01RC', 'BB00RC', 'Y694RC', 'Y695RC'), 'Indentations': (0, 1, 2, 0, 1, 2, 2, 3, 4, 2, 3, 4, 0, 0, 1, 2, 2, 2, 2, 2)}, {'tableName': ('T10206',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22), 'SeriesCode': ('A191RX', 'A190RX', 'A014RX', 'A958RX', 'A353RX', 'A325RX', 'A014RX', 'A354RX', 'A326RX', 'A355RX', 'A356RX', 'A334RX', 'A357RX', 'A341RX', 'A755RX', 'A959RX', 'A953RX', 'A962RX', 'BB01RX', 'BB00RX', 'Y694RX', 'Y695RX'), 'Indentations': (0, 1, 2, 3, 0, 1, 2, 2, 3, 4, 2, 3, 4, 0, 0, 0, 1, 2, 2, 2, 2, 2)}, {'tableName': ('T10301',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11), 'SeriesCode': ('A191RL', 'A195RL', 'A358RL', 'B359RL', 'A193RL', 'B701RL', 'B702RL', 'A765RL', 'A766RL', 'A767RL', 'A2009L'), 'Indentations': (0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1)}, {'tableName': ('T10303',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11), 'SeriesCode': ('A191RA', 'B195RA', 'B358RA', 'B359RA', 'B193RA', 'B701RA', 'B702RA', 'B765RA', 'B766RA', 'B767RA', 'A2009A'), 'Indentations': (0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1)}, {'tableName': ('T10304',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11), 'SeriesCode': ('A191RG', 'B195RG', 'B358RG', 'B359RG', 'B193RG', 'B701RG', 'B702RG', 'B765RG', 'B766RG', 'B767RG', 'A2009G'), 'Indentations': (0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1)}, {'tableName': ('T10305',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11), 'SeriesCode': ('A191RC', 'A195RC', 'A358RC', 'B359RC', 'A193RC', 'B701RC', 'B702RC', 'A765RC', 'A766RC', 'A767RC', 'A2009C'), 'Indentations': (0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1)}, {'tableName': ('T10306',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12), 'SeriesCode': ('A191RX', 'A195RX', 'A358RX', 'B359RX', 'A193RX', 'B701RX', 'B702RX', 'A765RX', 'A766RX', 'A767RX', 'A961RX', 'A2009X'), 'Indentations': (0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1)}, {'tableName': ('T10401',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11), 'SeriesCode': ('A191RL', 'A020RL', 'A021RL', 'A712RL', 'ZZZZZZ', 'A713RL', 'A190RL', 'PB000003', 'A712RP', 'A713RP', 'PA000003'), 'Indentations': (0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1)}, {'tableName': ('T10403',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8), 'SeriesCode': ('A191RA', 'B020RA', 'B021RA', 'B712RA', 'ZZZZZZ', 'B713RA', 'A190RA', 'IB000003'), 'Indentations': (0, 0, 0, 0, 0, 0, 1, 1)}, {'tableName': ('T10404',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9), 'SeriesCode': ('A191RG', 'B020RG', 'B021RG', 'B712RG', 'ZZZZZZ', 'B713RG', 'B190RG', 'IA000003', 'A713RD'), 'Indentations': (0, 0, 0, 0, 0, 0, 1, 1, 1)}, {'tableName': ('T10405',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8), 'SeriesCode': ('A191RC', 'B020RC', 'B021RC', 'A712RC', 'A014RC', 'A713RC', 'A190RC', 'LA000003'), 'Indentations': (0, 0, 0, 0, 0, 0, 1, 1)}, {'tableName': ('T10406',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8), 'SeriesCode': ('A191RX', 'A020RX', 'A021RX', 'A712RX', 'A014RX', 'A713RX', 'A190RX', 'LB000003'), 'Indentations': (0, 0, 0, 0, 0, 0, 1, 1)}, {'tableName': ('T10501',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62), 'SeriesCode': ('A191RL', 'DPCERL', 'DGDSRL', 'DDURRL', 'DMOTRL', 'DFDHRL', 'DREQRL', 'DODGRL', 'DNDGRL', 'DFXARL', 'DCLORL', 'DGOERL', 'DONGRL', 'DSERRL', 'DHCERL', 'DHUTRL', 'DHLCRL', 'DTRSRL', 'DRCARL', 'DFSARL', 'DIFSRL', 'DOTSRL', 'DNPIRL', 'DNPERL', 'DNPSRL', 'A006RL', 'A007RL', 'A008RL', 'A009RL', 'Y033RL', 'Y034RL', 'B935RL', 'A937RL', 'A680RL', 'A681RL', 'A862RL', 'Y001RL', 'B985RL', 'Y006RL', 'Y020RL', 'A011RL', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'A020RL', 'A253RL', 'A646RL', 'A021RL', 'A255RL', 'A656RL', 'A822RL', 'A823RL', 'A824RL', 'A997RL', 'A788RL', 'A825RL', 'A542RL', 'A798RL', 'A829RL', 'A991RL', 'A799RL'), 'Indentations': (0, 0, 1, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 1, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 0, 1, 2, 3, 3, 4, 5, 5, 4, 4, 4, 3, 4, 4, 4, 2, 1, 2, 2, 0, 1, 2, 2, 1, 2, 2, 0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2)}, {'tableName': ('T10502',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62), 'SeriesCode': ('A191RL', 'DPCERY', 'DGDSRY', 'DDURRY', 'DMOTRY', 'DFDHRY', 'DREQRY', 'DODGRY', 'DNDGRY', 'DFXARY', 'DCLORY', 'DGOERY', 'DONGRY', 'DSERRY', 'DHCERY', 'DHUTRY', 'DHLCRY', 'DTRSRY', 'DRCARY', 'DFSARY', 'DIFSRY', 'DOTSRY', 'DNPIRY', 'DNPERY', 'DNPSRY', 'A006RY', 'A007RY', 'A008RY', 'A009RY', 'Y033RY', 'Y034RY', 'B935RY', 'A937RY', 'A680RY', 'A681RY', 'A862RY', 'Y001RY', 'B985RY', 'Y006RY', 'Y020RY', 'A011RY', 'A014RY', 'B018RY', 'A015RY', 'A019RY', 'A020RY', 'A253RY', 'A646RY', 'A021RY', 'A255RY', 'A656RY', 'A822RY', 'A823RY', 'A824RY', 'A997RY', 'A788RY', 'A825RY', 'A542RY', 'A798RY', 'A829RY', 'A991RY', 'A799RY'), 'Indentations': (0, 0, 1, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 1, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 0, 1, 2, 3, 3, 4, 5, 5, 4, 4, 4, 3, 4, 4, 4, 2, 1, 2, 2, 0, 1, 2, 2, 1, 2, 2, 0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2)}, {'tableName': ('T10503',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62), 'SeriesCode': ('A191RA', 'DPCERA', 'DGDSRA', 'DDURRA', 'DMOTRA', 'DFDHRA', 'DREQRA', 'DODGRA', 'DNDGRA', 'DFXARA', 'DCLORA', 'DGOERA', 'DONGRA', 'DSERRA', 'DHCERA', 'DHUTRA', 'DHLCRA', 'DTRSRA', 'DRCARA', 'DFSARA', 'DIFSRA', 'DOTSRA', 'DNPIRA', 'DNPERA', 'DNPSRA', 'A006RA', 'A007RA', 'A008RA', 'B009RA', 'Y033RA', 'Y034RA', 'B935RA', 'A937RA', 'A680RA', 'A681RA', 'A862RA', 'Y001RA', 'B985RA', 'Y006RA', 'Y020RA', 'A011RA', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'B020RA', 'B253RA', 'B646RA', 'B021RA', 'B255RA', 'B656RA', 'B822RA', 'B823RA', 'B824RA', 'A997RA', 'B788RA', 'B825RA', 'A542RA', 'B798RA', 'B829RA', 'A991RA', 'B799RA'), 'Indentations': (0, 0, 1, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 1, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 0, 1, 2, 3, 3, 4, 5, 5, 4, 4, 4, 3, 4, 4, 4, 2, 1, 2, 2, 0, 1, 2, 2, 1, 2, 2, 0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2)}, {'tableName': ('T10504',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62), 'SeriesCode': ('A191RG', 'DPCERG', 'DGDSRG', 'DDURRG', 'DMOTRG', 'DFDHRG', 'DREQRG', 'DODGRG', 'DNDGRG', 'DFXARG', 'DCLORG', 'DGOERG', 'DONGRG', 'DSERRG', 'DHCERG', 'DHUTRG', 'DHLCRG', 'DTRSRG', 'DRCARG', 'DFSARG', 'DIFSRG', 'DOTSRG', 'DNPIRG', 'DNPERG', 'DNPSRG', 'B006RG', 'B007RG', 'B008RG', 'B009RG', 'Y033RG', 'Y034RG', 'B935RG', 'A937RG', 'A680RG', 'A681RG', 'A862RG', 'Y001RG', 'B985RG', 'Y006RG', 'Y020RG', 'B011RG', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'B020RG', 'B253RG', 'B646RG', 'B021RG', 'B255RG', 'B656RG', 'B822RG', 'B823RG', 'B824RG', 'A997RG', 'B788RG', 'B825RG', 'A542RG', 'B798RG', 'B829RG', 'A991RG', 'B799RG'), 'Indentations': (0, 0, 1, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 1, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 0, 1, 2, 3, 3, 4, 5, 5, 4, 4, 4, 3, 4, 4, 4, 2, 1, 2, 2, 0, 1, 2, 2, 1, 2, 2, 0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2)}, {'tableName': ('T10505',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62), 'SeriesCode': ('A191RC', 'DPCERC', 'DGDSRC', 'DDURRC', 'DMOTRC', 'DFDHRC', 'DREQRC', 'DODGRC', 'DNDGRC', 'DFXARC', 'DCLORC', 'DGOERC', 'DONGRC', 'DSERRC', 'DHCERC', 'DHUTRC', 'DHLCRC', 'DTRSRC', 'DRCARC', 'DFSARC', 'DIFSRC', 'DOTSRC', 'DNPIRC', 'DNPERC', 'DNPSRC', 'A006RC', 'A007RC', 'A008RC', 'B009RC', 'Y033RC', 'Y034RC', 'B935RC', 'A937RC', 'A680RC', 'A681RC', 'A862RC', 'Y001RC', 'B985RC', 'Y006RC', 'Y020RC', 'A011RC', 'A014RC', 'B018RC', 'A015RC', 'A019RC', 'B020RC', 'A253RC', 'A646RC', 'B021RC', 'A255RC', 'B656RC', 'A822RC', 'A823RC', 'A824RC', 'A997RC', 'A788RC', 'A825RC', 'A542RC', 'A798RC', 'A829RC', 'A991RC', 'A799RC'), 'Indentations': (0, 0, 1, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 1, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 0, 1, 2, 3, 3, 4, 5, 5, 4, 4, 4, 3, 4, 4, 4, 2, 1, 2, 2, 0, 1, 2, 2, 1, 2, 2, 0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2)}, {'tableName': ('T10506',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63), 'SeriesCode': ('A191RX', 'DPCERX', 'DGDSRX', 'DDURRX', 'DMOTRX', 'DFDHRX', 'DREQRX', 'DODGRX', 'DNDGRX', 'DFXARX', 'DCLORX', 'DGOERX', 'DONGRX', 'DSERRX', 'DHCERX', 'DHUTRX', 'DHLCRX', 'DTRSRX', 'DRCARX', 'DFSARX', 'DIFSRX', 'DOTSRX', 'DNPIRX', 'DNPERX', 'DNPSRX', 'A006RX', 'A007RX', 'A008RX', 'B009RX', 'Y033RX', 'Y034RX', 'B935RX', 'A937RX', 'A680RX', 'A681RX', 'A862RX', 'Y001RX', 'B985RX', 'Y006RX', 'Y020RX', 'A011RX', 'A014RX', 'B018RX', 'A015RX', 'A019RX', 'A020RX', 'A253RX', 'A646RX', 'A021RX', 'A255RX', 'B656RX', 'A822RX', 'A823RX', 'A824RX', 'A997RX', 'A788RX', 'A825RX', 'A542RX', 'A798RX', 'A829RX', 'A991RX', 'A799RX', 'AR05RX'), 'Indentations': (0, 0, 1, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 1, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 0, 1, 2, 3, 3, 4, 5, 5, 4, 4, 4, 3, 4, 4, 4, 2, 1, 2, 2, 0, 1, 2, 2, 1, 2, 2, 0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2, 0)}, {'tableName': ('T10604',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66), 'SeriesCode': ('B712RG', 'DPCERG', 'DGDSRG', 'DDURRG', 'DMOTRG', 'DFDHRG', 'DREQRG', 'DODGRG', 'DNDGRG', 'DFXARG', 'DCLORG', 'DGOERG', 'DONGRG', 'DSERRG', 'DHCERG', 'DHUTRG', 'DHLCRG', 'DTRSRG', 'DRCARG', 'DFSARG', 'DIFSRG', 'DOTSRG', 'DNPIRG', 'B006RG', 'B007RG', 'B008RG', 'B009RG', 'Y033RG', 'Y034RG', 'B935RG', 'A937RG', 'A680RG', 'A681RG', 'A862RG', 'Y001RG', 'B985RG', 'Y006RG', 'Y020RG', 'B011RG', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'B822RG', 'B823RG', 'B824RG', 'A997RG', 'B788RG', 'B825RG', 'A542RG', 'B798RG', 'B829RG', 'A991RG', 'B799RG', 'W489RG', 'BB05RG', 'B981RG', 'B982RG', 'B983RG', 'A191RG', 'BB00RG', 'BB10RG', 'BB11RG', 'BB03RG', 'B190RG', 'B713RG', 'A712RD'), 'Indentations': (0, 0, 1, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 1, 2, 3, 3, 3, 3, 3, 3, 3, 2, 0, 1, 2, 3, 3, 4, 5, 5, 4, 4, 4, 3, 4, 4, 4, 2, 1, 2, 2, 0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 1, 1, 1, 1, 1, 1, 2, 3, 3, 3, 1, 1, 1)}, {'tableName': ('T10607',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67), 'SeriesCode': ('A712RV', 'DPCERV', 'DGDSRV', 'DDURRV', 'DMOTRV', 'DFDHRV', 'DREQRV', 'DODGRV', 'DNDGRV', 'DFXARV', 'DCLORV', 'DGOERV', 'DONGRV', 'DSERRV', 'DHCERV', 'DHUTRV', 'DHLCRV', 'DTRSRV', 'DRCARV', 'DFSARV', 'DIFSRV', 'DOTSRV', 'DNPIRV', 'A006RV', 'A007RV', 'A008RV', 'A009RV', 'Y033RV', 'Y034RV', 'B935RV', 'A937RV', 'A680RV', 'A681RV', 'A862RV', 'Y001RV', 'B985RV', 'Y006RV', 'Y020RV', 'A011RV', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'A822RV', 'A823RV', 'A824RV', 'A997RV', 'A788RV', 'A825RV', 'A542RV', 'A798RV', 'A829RV', 'A991RV', 'A799RV', 'W489RV', 'BB05RV', 'B981RV', 'B982RV', 'B983RV', 'A191RV', 'BB00RV', 'BB10RV', 'BB11RV', 'BB03RV', 'A190RV', 'A713RV', 'PC000003', 'A712RI'), 'Indentations': (0, 0, 1, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 1, 2, 3, 3, 3, 3, 3, 3, 3, 2, 0, 1, 2, 3, 3, 4, 5, 5, 4, 4, 4, 3, 4, 4, 4, 2, 1, 2, 2, 0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 1, 1, 1, 1, 1, 1, 2, 3, 3, 3, 1, 1, 1, 1)}, {'tableName': ('T10608',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58), 'SeriesCode': ('A712RV', 'DPCERS', 'DGDSRS', 'DDURRS', 'DMOTRS', 'DFDHRS', 'DREQRS', 'DODGRS', 'DNDGRS', 'DFXARS', 'DCLORS', 'DGOERS', 'DONGRS', 'DSERRS', 'DHCERS', 'DHUTRS', 'DHLCRS', 'DTRSRS', 'DRCARS', 'DFSARS', 'DIFSRS', 'DOTSRS', 'DNPIRS', 'A006RS', 'A007RS', 'A008RS', 'A009RS', 'Y033RS', 'Y034RS', 'B935RS', 'A937RS', 'A680RS', 'A681RS', 'A862RS', 'Y001RS', 'B985RS', 'Y006RS', 'Y020RS', 'A011RS', 'A014RS', 'B018RS', 'A015RS', 'A822RS', 'A823RS', 'A824RS', 'A997RS', 'A788RS', 'A825RS', 'A542RS', 'A798RS', 'A829RS', 'A991RS', 'A799RS', 'W489RS', 'BB05RS', 'B981RS', 'B982RS', 'B983RS'), 'Indentations': (0, 0, 1, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 1, 2, 3, 3, 3, 3, 3, 3, 3, 2, 0, 1, 2, 3, 3, 4, 5, 5, 4, 4, 4, 3, 4, 4, 4, 2, 1, 2, 2, 0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 1, 1, 1, 1, 1)}, {'tableName': ('T10701',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19), 'SeriesCode': ('A191RL', 'B645RL', 'A655RL', 'A001RL', 'A262RL', 'A024RL', 'A264RL', 'A265RL', 'A266RL', 'A027RL', 'A261RL', 'PB000009', 'A023RL', 'A362RL', 'W256RL', 'W367RL', 'A001RP', 'PA000011', 'PA000009'), 'Indentations': (0, 0, 0, 0, 0, 1, 1, 2, 2, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1)}, {'tableName': ('T10703',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12), 'SeriesCode': ('A191RA', 'B645RA', 'A655RA', 'B001RA', 'A262RA', 'A024RA', 'A264RA', 'A265RA', 'A266RA', 'A027RA', 'A362RA', 'W367RA'), 'Indentations': (0, 0, 0, 0, 0, 1, 1, 2, 2, 0, 1, 1)}, {'tableName': ('T10704',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12), 'SeriesCode': ('A191RG', 'B645RG', 'A655RG', 'A001RG', 'A262RG', 'A024RG', 'A264RG', 'A265RG', 'A266RG', 'A027RG', 'A362RG', 'W367RG'), 'Indentations': (0, 0, 0, 0, 0, 1, 1, 2, 2, 0, 1, 1)}, {'tableName': ('T10705',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34), 'SeriesCode': ('A191RC', 'B645RC', 'A655RC', 'A001RC', 'A262RC', 'A024RC', 'W276RC', 'Y0000C', 'Y0004C', 'W279RC', 'A264RC', 'A265RC', 'A266RC', 'A027RC', 'A030RC', 'A032RC', 'A051RC', 'W254RC', 'A061RC', 'W255RC', 'B029RC', 'A108RC', 'W210RC', 'A577RC', 'A065RC', 'A261RC', 'LA000009', 'A023RC', 'X023RC', 'A362RC', 'W256RC', 'X032RC', 'W367RC', 'SB000008'), 'Indentations': (0, 0, 0, 0, 0, 1, 2, 3, 3, 2, 1, 2, 2, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1)}, {'tableName': ('T10706',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16), 'SeriesCode': ('A191RX', 'A645RX', 'A655RX', 'A001RX', 'A262RX', 'A024RX', 'A264RX', 'A265RX', 'A266RX', 'A027RX', 'A261RX', 'LB000009', 'A023RX', 'A362RX', 'W256RX', 'W367RX'), 'Indentations': (0, 0, 0, 0, 0, 1, 1, 2, 2, 0, 1, 1, 1, 1, 1, 1)}, {'tableName': ('T10803',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18), 'SeriesCode': ('A191RA', 'B020RA', 'B021RA', 'B712RA', 'C020RA', 'C021RA', 'C191RA', 'C645RA', 'C655RA', 'CB22RA', 'C362RA', 'A362RA', 'C027RA', 'A027RA', 'A191RL', 'C191RL', 'A001RL', 'CB22RL'), 'Indentations': (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2)}, {'tableName': ('T10806',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18), 'SeriesCode': ('A191RX', 'A020RX', 'A021RX', 'A712RX', 'C020RX', 'C021RX', 'C191RX', 'C645RX', 'C655RX', 'CB22RX', 'C362RX', 'A362RX', 'C027RX', 'A027RX', 'W368RG', 'W369RG', 'W370RG', 'W371RG'), 'Indentations': (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 3, 3)}, {'tableName': ('T10903',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10), 'SeriesCode': ('A362RA', 'A363RA', 'A364RA', 'A365RA', 'W503RA', 'W504RA', 'W505RA', 'A194RA', 'B568RA', 'B251RA'), 'Indentations': (0, 0, 1, 1, 0, 1, 1, 0, 1, 1)}, {'tableName': ('T10904',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10), 'SeriesCode': ('A362RG', 'A363RG', 'A364RG', 'A365RG', 'W503RG', 'W504RG', 'W505RG', 'A194RG', 'B568RG', 'B251RG'), 'Indentations': (0, 0, 1, 1, 0, 1, 1, 0, 1, 1)}, {'tableName': ('T10905',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10), 'SeriesCode': ('A362RC', 'A363RC', 'A364RC', 'A365RC', 'W503RC', 'W504RC', 'W505RC', 'A194RC', 'B568RC', 'B251RC'), 'Indentations': (0, 0, 1, 1, 0, 1, 1, 0, 1, 1)}, {'tableName': ('T10906',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11), 'SeriesCode': ('A362RX', 'A363RX', 'A364RX', 'A365RX', 'W503RX', 'W504RX', 'W505RX', 'A194RX', 'B568RX', 'B251RX', 'A966RX'), 'Indentations': (0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0)}, {'tableName': ('T11000',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24), 'SeriesCode': ('A261RC', 'A4002C', 'A4102C', 'W270RC', 'B4189C', 'A038RC', 'W056RC', 'A107RC', 'W271RC', 'W260RC', 'W272RC', 'B029RC', 'A041RC', 'A048RC', 'A445RC', 'A054RC', 'W273RC', 'A449RC', 'W274RC', 'A108RC', 'A262RC', 'A024RC', 'A264RC', 'A030RC'), 'Indentations': (0, 0, 1, 2, 3, 1, 0, 0, 0, 1, 2, 2, 2, 2, 2, 3, 3, 4, 4, 1, 0, 1, 1, 1)}, {'tableName': ('T11100',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23), 'SeriesCode': ('A261RE', 'A4002E', 'A4102E', 'W270RE', 'B4189E', 'A038RE', 'W056RE', 'A107RE', 'W271RE', 'W260RE', 'W272RE', 'B029RE', 'A041RE', 'A048RE', 'A445RE', 'A054RE', 'W273RE', 'A449RE', 'W274RE', 'A108RE', 'A262RE', 'A024RE', 'A264RE'), 'Indentations': (0, 0, 1, 2, 3, 1, 0, 0, 0, 1, 2, 2, 2, 2, 2, 3, 3, 4, 4, 1, 0, 1, 1)}, {'tableName': ('T11200',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49), 'SeriesCode': ('A032RC', 'A033RC', 'A034RC', 'B202RC', 'A132RC', 'A038RC', 'B040RC', 'B039RC', 'A041RC', 'B042RC', 'A045RC', 'A048RC', 'A051RC', 'A054RC', 'A551RC', 'B056RC', 'A127RC', 'W255RC', 'W056RC', 'A107RC', 'B029RC', 'B931RC', 'W061RC', 'W237RC', 'A108RC', 'A904RC', 'A127RC', 'A438RC', 'W976RC', 'A041RC', 'B042RC', 'A043RC', 'B044RC', 'A045RC', 'B046RC', 'B179RC', 'B047RC', 'A048RC', 'B049RC', 'B050RC', 'A051RC', 'A052RC', 'A053RC', 'A054RC', 'A055RC', 'B056RC', 'B057RC', 'B058RC', 'A059RC'), 'Indentations': (0, 0, 1, 2, 2, 1, 2, 2, 0, 1, 1, 0, 0, 1, 1, 2, 2, 0, 0, 0, 0, 1, 1, 1, 0, 1, 2, 2, 2, 1, 2, 3, 3, 2, 3, 3, 3, 1, 2, 2, 1, 2, 3, 4, 4, 5, 5, 3, 2)}, {'tableName': ('T11300',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81), 'SeriesCode': ('A032RC', 'A368RC', 'A439RC', 'A442RC', 'A443RC', 'A444RC', 'A445RC', 'A453RC', 'W460RC', 'W461RC', 'W462RC', 'W463RC', 'W464RC', 'A041RC', 'W155RC', 'W468RC', 'W469RC', 'A108RC', 'A1641C', 'A1642C', 'B1643C', 'B1644C', 'A1645C', 'B042RC', 'A1646C', 'B1649C', 'W471RC', 'A1650C', 'A1651C', 'B1652C', 'B1653C', 'A1654C', 'W155RC', 'B1657C', 'W473RC', 'W474RC', 'A1658C', 'B1659C', 'B1660C', 'A108RC', 'W503RC', 'W504RC', 'W151RC', 'B1661C', 'B1662C', 'B1156C', 'A2015C', 'W478RC', 'W505RC', 'W152RC', 'W481RC', 'W482RC', 'W159RC', 'B1131C', 'B1320C', 'A194RC', 'A194RC', 'B1663C', 'B1664C', 'A192RC', 'A4187C', 'B394RC', 'A1627C', 'A445RC', 'E561RC', 'B058RC', 'A059RC', 'A1645C', 'B042RC', 'A043RC', 'B044RC', 'A1646C', 'A1647C', 'B179RC', 'A2205C', 'A1654C', 'B1207C', 'B1411C', 'W155RC', 'W488RC', 'B050RC'), 'Indentations': (0, 0, 1, 2, 3, 3, 2, 2, 2, 1, 2, 3, 3, 2, 2, 2, 2, 2, 2, 3, 4, 4, 3, 4, 4, 3, 3, 2, 3, 4, 4, 3, 3, 3, 3, 2, 3, 4, 4, 3, 0, 1, 2, 3, 3, 2, 2, 2, 1, 2, 3, 3, 2, 2, 2, 0, 1, 2, 2, 0, 1, 1, 1, 2, 3, 3, 3, 2, 3, 4, 4, 3, 4, 4, 4, 2, 3, 3, 2, 3, 3)}, {'tableName': ('T11400',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43), 'SeriesCode': ('A451RC', 'A438RC', 'A439RC', 'A442RC', 'A443RC', 'A444RC', 'W321RC', 'W322RC', 'A453RC', 'W323RC', 'A445RC', 'A054RC', 'W273RC', 'A449RC', 'W274RC', 'A454RC', 'A455RC', 'B456RC', 'A457RC', 'A460RC', 'B461RC', 'B462RC', 'W325RC', 'W326RC', 'B471RC', 'W327RC', 'A463RC', 'B465RC', 'W328RC', 'B467RC', 'W332RC', 'A446RC', 'A448RC', 'A450RC', 'B058RC', 'A059RC', 'A464RC', 'A466RC', 'B058RC', 'B470RC', 'B455RX', 'N456RX', 'A457RX'), 'Indentations': (0, 0, 0, 1, 2, 2, 1, 1, 2, 2, 2, 3, 3, 4, 4, 2, 2, 0, 0, 1, 2, 2, 1, 1, 2, 2, 2, 3, 3, 4, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3)}, {'tableName': ('T11500',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9), 'SeriesCode': ('A455RD', 'A460RD', 'A467RD', 'A456RD', 'W330RD', 'A471RD', 'A463RD', 'A465RD', 'A466RD'), 'Indentations': (0, 0, 0, 1, 1, 1, 0, 1, 1)}, {'tableName': ('T11600',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24), 'SeriesCode': ('W259RC', 'W260RC', 'W261RC', 'W262RC', 'B3375C', 'B3475C', 'W263RC', 'W264RC', 'W265RC', 'B3376C', 'B3476C', 'B029RC', 'B931RC', 'W061RC', 'W237RC', 'A041RC', 'A048RC', 'A051RC', 'A054RC', 'W025RC', 'B930RC', 'A551RC', 'B056RC', 'A127RC'), 'Indentations': (0, 0, 0, 1, 1, 1, 2, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 2, 2, 1, 2, 2)}, {'tableName': ('T11701',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16), 'SeriesCode': ('A191RL', 'A261RL', 'PB000009', 'A362RL', 'W256RL', 'A001RL', 'A023RL', 'A027RL', 'A712RL', 'A713RL', 'PB000003', 'C191RL', 'C362RL', 'CB22RL', 'C027RL', 'A067RL'), 'Indentations': (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)}, {'tableName': ('T11705',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13), 'SeriesCode': ('A191RC', 'A261RC', 'LA000009', 'A362RC', 'W256RC', 'A001RC', 'A023RC', 'A027RC', 'A032RC', 'A712RC', 'A713RC', 'LA000003', 'A067RC'), 'Indentations': (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)}, {'tableName': ('T11706',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16), 'SeriesCode': ('A191RX', 'A261RX', 'LB000009', 'A362RX', 'W256RX', 'A001RX', 'A023RX', 'A027RX', 'A712RX', 'A713RX', 'LB000003', 'C191RX', 'C362RX', 'CB22RX', 'C027RX', 'A067RX'), 'Indentations': (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)}, {'tableName': ('T20100',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42), 'SeriesCode': ('A065RC', 'A033RC', 'A034RC', 'A132RC', 'B202RC', 'A038RC', 'B040RC', 'B039RC', 'A041RC', 'B042RC', 'A045RC', 'A048RC', 'W210RC', 'A064RC', 'B703RC', 'A577RC', 'A063RC', 'W823RC', 'W824RC', 'W729RC', 'W825RC', 'W826RC', 'W827RC', 'B931RC', 'A061RC', 'W055RC', 'A067RC', 'A068RC', 'DPCERC', 'B069RC', 'W211RC', 'W062RC', 'B070RC', 'A071RC', 'A072RC', 'W875RX', 'A067RX', 'A229RC', 'A229RX', 'B230RC', 'A067RP', 'A067RL'), 'Indentations': (0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2, 1, 1, 2, 2, 1, 2, 3, 3, 3, 3, 3, 3, 2, 1, 0, 0, 0, 1, 1, 1, 2, 2, 0, 1, 1, 2, 3, 3, 1, 2, 2)}, {'tableName': ('T20200A', 'T20700A'), 'LineNumber': (1, 2, 3, 4, 5, 6, 7), 'SeriesCode': ('A034RC', 'A132RC', 'A206RC', 'A552RC', 'A212RC', 'A218RC', 'B202RC'), 'Indentations': (0, 0, 1, 2, 1, 1, 0)}, {'tableName': ('T20200B', 'T20700B'), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8), 'SeriesCode': ('A034RC', 'A132RC', 'N231RC', 'N552RC', 'N233RC', 'N234RC', 'N235RC', 'B202RC'), 'Indentations': (0, 0, 1, 2, 1, 2, 2, 0)}, {'tableName': ('T20301',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28), 'SeriesCode': ('DPCERL', 'DGDSRL', 'DDURRL', 'DMOTRL', 'DFDHRL', 'DREQRL', 'DODGRL', 'DNDGRL', 'DFXARL', 'DCLORL', 'DGOERL', 'DONGRL', 'DSERRL', 'DHCERL', 'DHUTRL', 'DHLCRL', 'DTRSRL', 'DRCARL', 'DFSARL', 'DIFSRL', 'DOTSRL', 'DNPIRL', 'DNPERL', 'DNPSRL', 'DPCCRL', 'DNRGRL', 'DPCMRL', 'DPCXRL'), 'Indentations': (0, 0, 1, 2, 2, 2, 2, 1, 2, 2, 2, 2, 0, 1, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 1, 1, 1, 1)}, {'tableName': ('T20302',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28), 'SeriesCode': ('DPCERL', 'DGDSRZ', 'DDURRZ', 'DMOTRZ', 'DFDHRZ', 'DREQRZ', 'DODGRZ', 'DNDGRZ', 'DFXARZ', 'DCLORZ', 'DGOERZ', 'DONGRZ', 'DSERRZ', 'DHCERZ', 'DHUTRZ', 'DHLCRZ', 'DTRSRZ', 'DRCARZ', 'DFSARZ', 'DIFSRZ', 'DOTSRZ', 'DNPIRZ', 'DNPERZ', 'DNPSRZ', 'DPCCRZ', 'DNRGRZ', 'DPCMRZ', 'DPCXRZ'), 'Indentations': (0, 0, 1, 2, 2, 2, 2, 1, 2, 2, 2, 2, 0, 1, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 1, 1, 1, 1)}, {'tableName': ('T20303',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28), 'SeriesCode': ('DPCERA', 'DGDSRA', 'DDURRA', 'DMOTRA', 'DFDHRA', 'DREQRA', 'DODGRA', 'DNDGRA', 'DFXARA', 'DCLORA', 'DGOERA', 'DONGRA', 'DSERRA', 'DHCERA', 'DHUTRA', 'DHLCRA', 'DTRSRA', 'DRCARA', 'DFSARA', 'DIFSRA', 'DOTSRA', 'DNPIRA', 'DNPERA', 'DNPSRA', 'DPCCRA', 'DNRGRA', 'DPCMRA', 'DPCXRA'), 'Indentations': (0, 0, 1, 2, 2, 2, 2, 1, 2, 2, 2, 2, 0, 1, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 1, 1, 1, 1)}, {'tableName': ('T20304',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28), 'SeriesCode': ('DPCERG', 'DGDSRG', 'DDURRG', 'DMOTRG', 'DFDHRG', 'DREQRG', 'DODGRG', 'DNDGRG', 'DFXARG', 'DCLORG', 'DGOERG', 'DONGRG', 'DSERRG', 'DHCERG', 'DHUTRG', 'DHLCRG', 'DTRSRG', 'DRCARG', 'DFSARG', 'DIFSRG', 'DOTSRG', 'DNPIRG', 'DNPERG', 'DNPSRG', 'DPCCRG', 'DNRGRG', 'DPCMRG', 'DPCXRG'), 'Indentations': (0, 0, 1, 2, 2, 2, 2, 1, 2, 2, 2, 2, 0, 1, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 1, 1, 1, 1)}, {'tableName': ('T20305',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28), 'SeriesCode': ('DPCERC', 'DGDSRC', 'DDURRC', 'DMOTRC', 'DFDHRC', 'DREQRC', 'DODGRC', 'DNDGRC', 'DFXARC', 'DCLORC', 'DGOERC', 'DONGRC', 'DSERRC', 'DHCERC', 'DHUTRC', 'DHLCRC', 'DTRSRC', 'DRCARC', 'DFSARC', 'DIFSRC', 'DOTSRC', 'DNPIRC', 'DNPERC', 'DNPSRC', 'DPCCRC', 'DNRGRC', 'DPCMRC', 'DPCXRC'), 'Indentations': (0, 0, 1, 2, 2, 2, 2, 1, 2, 2, 2, 2, 0, 1, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 1, 1, 1, 1)}, {'tableName': ('T20306',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29), 'SeriesCode': ('DPCERX', 'DGDSRX', 'DDURRX', 'DMOTRX', 'DFDHRX', 'DREQRX', 'DODGRX', 'DNDGRX', 'DFXARX', 'DCLORX', 'DGOERX', 'DONGRX', 'DSERRX', 'DHCERX', 'DHUTRX', 'DHLCRX', 'DTRSRX', 'DRCARX', 'DFSARX', 'DIFSRX', 'DOTSRX', 'DNPIRX', 'DNPERX', 'DNPSRX', 'D236RX', 'DPCCRX', 'DNRGRX', 'DPCMRX', 'DPCXRX'), 'Indentations': (0, 0, 1, 2, 2, 2, 2, 1, 2, 2, 2, 2, 0, 1, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 0, 1, 1, 1, 1)}, {'tableName': ('T20307',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28), 'SeriesCode': ('DPCERV', 'DGDSRV', 'DDURRV', 'DMOTRV', 'DFDHRV', 'DREQRV', 'DODGRV', 'DNDGRV', 'DFXARV', 'DCLORV', 'DGOERV', 'DONGRV', 'DSERRV', 'DHCERV', 'DHUTRV', 'DHLCRV', 'DTRSRV', 'DRCARV', 'DFSARV', 'DIFSRV', 'DOTSRV', 'DNPIRV', 'DNPERV', 'DNPSRV', 'DPCCRV', 'DNRGRV', 'DPCMRV', 'DPCXRV'), 'Indentations': (0, 0, 1, 2, 2, 2, 2, 1, 2, 2, 2, 2, 0, 1, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 1, 1, 1, 1)}, {'tableName': ('T20403',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113), 'SeriesCode': ('DPCERA', 'DGDSRA', 'DDURRA', 'DMOTRA', 'DNMVRA', 'DNPVRA', 'DMVPRA', 'DFDHRA', 'DFFFRA', 'DAPPRA', 'DUTERA', 'DTOORA', 'DREQRA', 'DVAPRA', 'DSPGRA', 'DWHLRA', 'DRBKRA', 'DMSCRA', 'DODGRA', 'DJRYRA', 'DTAERA', 'DEBKRA', 'DLUGRA', 'DTCERA', 'DNDGRA', 'DFXARA', 'DTFDRA', 'DAOPRA', 'DFFDRA', 'DCLORA', 'DGARRA', 'DWGCRA', 'DMBCRA', 'DCICRA', 'DOCCRA', 'DGOERA', 'DMFLRA', 'DFULRA', 'DONGRA', 'DPHMRA', 'DREIRA', 'DHOURA', 'DOPCRA', 'DTOBRA', 'DNEWRA', 'ZZZZZZ', 'DSERRA', 'DHCERA', 'DHUTRA', 'DHSGRA', 'DTENRA', 'DOWNRA', 'DFARRA', 'DGRHRA', 'DUTLRA', 'DWRSRA', 'DELGRA', 'DELCRA', 'DGHERA', 'DHLCRA', 'DOUTRA', 'DPHYRA', 'DDENRA', 'DPMSRA', 'DHPNRA', 'DHSPRA', 'DNRSRA', 'DTRSRA', 'DMVSRA', 'DVMRRA', 'DOVSRA', 'DPUBRA', 'DGRDRA', 'DAITRA', 'DWATRA', 'DRCARA', 'DRLSRA', 'DAVPRA', 'DGAMRA', 'DOTRRA', 'DFSARA', 'DFSERA', 'DPMBRA', 'DFOORA', 'DACCRA', 'DIFSRA', 'DFNLRA', 'DIMPRA', 'DOFIRA', 'DINSRA', 'DLIFRA', 'DFINRA', 'DHINRA', 'DTINRA', 'DOTSRA', 'DCOMRA', 'DTCSRA', 'DPSSRA', 'DINTRA', 'DTEDRA', 'DHEDRA', 'DNEHRA', 'DVEDRA', 'DPRSRA', 'DPERRA', 'DSOCRA', 'DHHMRA', 'ZZZZZZ', 'DFTRRA', 'DEXFRA', 'DNPIRA', 'DNPERA', 'DNPSRA'), 'Indentations': (0, 0, 1, 2, 3, 3, 3, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 1, 2, 3, 3, 3, 2, 3, 4, 4, 4, 3, 2, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 0, 1, 2, 3, 4, 4, 4, 4, 3, 4, 4, 5, 5, 2, 3, 4, 4, 4, 3, 4, 4, 2, 3, 4, 4, 3, 4, 4, 4, 2, 3, 3, 3, 3, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3, 4, 4, 4, 4, 2, 3, 4, 4, 4, 3, 4, 4, 4, 3, 3, 3, 3, 3, 4, 4, 1, 2, 2)}, {'tableName': ('T20404',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113), 'SeriesCode': ('DPCERG', 'DGDSRG', 'DDURRG', 'DMOTRG', 'DNMVRG', 'DNPVRG', 'DMVPRG', 'DFDHRG', 'DFFFRG', 'DAPPRG', 'DUTERG', 'DTOORG', 'DREQRG', 'DVAPRG', 'DSPGRG', 'DWHLRG', 'DRBKRG', 'DMSCRG', 'DODGRG', 'DJRYRG', 'DTAERG', 'DEBKRG', 'DLUGRG', 'DTCERG', 'DNDGRG', 'DFXARG', 'DTFDRG', 'DAOPRG', 'DFFDRG', 'DCLORG', 'DGARRG', 'DWGCRG', 'DMBCRG', 'DCICRG', 'DOCCRG', 'DGOERG', 'DMFLRG', 'DFULRG', 'DONGRG', 'DPHMRG', 'DREIRG', 'DHOURG', 'DOPCRG', 'DTOBRG', 'DNEWRG', 'ZZZZZZ', 'DSERRG', 'DHCERG', 'DHUTRG', 'DHSGRG', 'DTENRG', 'DOWNRG', 'DFARRG', 'DGRHRG', 'DUTLRG', 'DWRSRG', 'DELGRG', 'DELCRG', 'DGHERG', 'DHLCRG', 'DOUTRG', 'DPHYRG', 'DDENRG', 'DPMSRG', 'DHPNRG', 'DHSPRG', 'DNRSRG', 'DTRSRG', 'DMVSRG', 'DVMRRG', 'DOVSRG', 'DPUBRG', 'DGRDRG', 'DAITRG', 'DWATRG', 'DRCARG', 'DRLSRG', 'DAVPRG', 'DGAMRG', 'DOTRRG', 'DFSARG', 'DFSERG', 'DPMBRG', 'DFOORG', 'DACCRG', 'DIFSRG', 'DFNLRG', 'DIMPRG', 'DOFIRG', 'DINSRG', 'DLIFRG', 'DFINRG', 'DHINRG', 'DTINRG', 'DOTSRG', 'DCOMRG', 'DTCSRG', 'DPSSRG', 'DINTRG', 'DTEDRG', 'DHEDRG', 'DNEHRG', 'DVEDRG', 'DPRSRG', 'DPERRG', 'DSOCRG', 'DHHMRG', 'ZZZZZZ', 'DFTRRG', 'DEXFRG', 'DNPIRG', 'DNPERG', 'DNPSRG'), 'Indentations': (0, 0, 1, 2, 3, 3, 3, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 1, 2, 3, 3, 3, 2, 3, 4, 4, 4, 3, 2, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 0, 1, 2, 3, 4, 4, 4, 4, 3, 4, 4, 5, 5, 2, 3, 4, 4, 4, 3, 4, 4, 2, 3, 4, 4, 3, 4, 4, 4, 2, 3, 3, 3, 3, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3, 4, 4, 4, 4, 2, 3, 4, 4, 4, 3, 4, 4, 4, 3, 3, 3, 3, 3, 4, 4, 1, 2, 2)}, {'tableName': ('T20405',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113), 'SeriesCode': ('DPCERC', 'DGDSRC', 'DDURRC', 'DMOTRC', 'DNMVRC', 'DNPVRC', 'DMVPRC', 'DFDHRC', 'DFFFRC', 'DAPPRC', 'DUTERC', 'DTOORC', 'DREQRC', 'DVAPRC', 'DSPGRC', 'DWHLRC', 'DRBKRC', 'DMSCRC', 'DODGRC', 'DJRYRC', 'DTAERC', 'DEBKRC', 'DLUGRC', 'DTCERC', 'DNDGRC', 'DFXARC', 'DTFDRC', 'DAOPRC', 'DFFDRC', 'DCLORC', 'DGARRC', 'DWGCRC', 'DMBCRC', 'DCICRC', 'DOCCRC', 'DGOERC', 'DMFLRC', 'DFULRC', 'DONGRC', 'DPHMRC', 'DREIRC', 'DHOURC', 'DOPCRC', 'DTOBRC', 'DNEWRC', 'DNFRRC', 'DSERRC', 'DHCERC', 'DHUTRC', 'DHSGRC', 'DTENRC', 'DOWNRC', 'DFARRC', 'DGRHRC', 'DUTLRC', 'DWRSRC', 'DELGRC', 'DELCRC', 'DGHERC', 'DHLCRC', 'DOUTRC', 'DPHYRC', 'DDENRC', 'DPMSRC', 'DHPNRC', 'DHSPRC', 'DNRSRC', 'DTRSRC', 'DMVSRC', 'DVMRRC', 'DOVSRC', 'DPUBRC', 'DGRDRC', 'DAITRC', 'DWATRC', 'DRCARC', 'DRLSRC', 'DAVPRC', 'DGAMRC', 'DOTRRC', 'DFSARC', 'DFSERC', 'DPMBRC', 'DFOORC', 'DACCRC', 'DIFSRC', 'DFNLRC', 'DIMPRC', 'DOFIRC', 'DINSRC', 'DLIFRC', 'DFINRC', 'DHINRC', 'DTINRC', 'DOTSRC', 'DCOMRC', 'DTCSRC', 'DPSSRC', 'DINTRC', 'DTEDRC', 'DHEDRC', 'DNEHRC', 'DVEDRC', 'DPRSRC', 'DPERRC', 'DSOCRC', 'DHHMRC', 'DFORRC', 'DFTRRC', 'DEXFRC', 'DNPIRC', 'DNPERC', 'DNPSRC'), 'Indentations': (0, 0, 1, 2, 3, 3, 3, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 1, 2, 3, 3, 3, 2, 3, 4, 4, 4, 3, 2, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 0, 1, 2, 3, 4, 4, 4, 4, 3, 4, 4, 5, 5, 2, 3, 4, 4, 4, 3, 4, 4, 2, 3, 4, 4, 3, 4, 4, 4, 2, 3, 3, 3, 3, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3, 4, 4, 4, 4, 2, 3, 4, 4, 4, 3, 4, 4, 4, 3, 3, 3, 3, 3, 4, 4, 1, 2, 2)}, {'tableName': ('T20406',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114), 'SeriesCode': ('DPCERX', 'DGDSRX', 'DDURRX', 'DMOTRX', 'DNMVRX', 'DNPVRX', 'DMVPRX', 'DFDHRX', 'DFFFRX', 'DAPPRX', 'DUTERX', 'DTOORX', 'DREQRX', 'DVAPRX', 'DSPGRX', 'DWHLRX', 'DRBKRX', 'DMSCRX', 'DODGRX', 'DJRYRX', 'DTAERX', 'DEBKRX', 'DLUGRX', 'DTCERX', 'DNDGRX', 'DFXARX', 'DTFDRX', 'DAOPRX', 'DFFDRX', 'DCLORX', 'DGARRX', 'DWGCRX', 'DMBCRX', 'DCICRX', 'DOCCRX', 'DGOERX', 'DMFLRX', 'DFULRX', 'DONGRX', 'DPHMRX', 'DREIRX', 'DHOURX', 'DOPCRX', 'DTOBRX', 'DNEWRX', 'DNFRRX', 'DSERRX', 'DHCERX', 'DHUTRX', 'DHSGRX', 'DTENRX', 'DOWNRX', 'DFARRX', 'DGRHRX', 'DUTLRX', 'DWRSRX', 'DELGRX', 'DELCRX', 'DGHERX', 'DHLCRX', 'DOUTRX', 'DPHYRX', 'DDENRX', 'DPMSRX', 'DHPNRX', 'DHSPRX', 'DNRSRX', 'DTRSRX', 'DMVSRX', 'DVMRRX', 'DOVSRX', 'DPUBRX', 'DGRDRX', 'DAITRX', 'DWATRX', 'DRCARX', 'DRLSRX', 'DAVPRX', 'DGAMRX', 'DOTRRX', 'DFSARX', 'DFSERX', 'DPMBRX', 'DFOORX', 'DACCRX', 'DIFSRX', 'DFNLRX', 'DIMPRX', 'DOFIRX', 'DINSRX', 'DLIFRX', 'DFINRX', 'DHINRX', 'DTINRX', 'DOTSRX', 'DCOMRX', 'DTCSRX', 'DPSSRX', 'DINTRX', 'DTEDRX', 'DHEDRX', 'DNEHRX', 'DVEDRX', 'DPRSRX', 'DPERRX', 'DSOCRX', 'DHHMRX', 'DFORRX', 'DFTRRX', 'DEXFRX', 'DNPIRX', 'DNPERX', 'DNPSRX', 'A965RX'), 'Indentations': (0, 0, 1, 2, 3, 3, 3, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 1, 2, 3, 3, 3, 2, 3, 4, 4, 4, 3, 2, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 0, 1, 2, 3, 4, 4, 4, 4, 3, 4, 4, 5, 5, 2, 3, 4, 4, 4, 3, 4, 4, 2, 3, 4, 4, 3, 4, 4, 4, 2, 3, 3, 3, 3, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3, 4, 4, 4, 4, 2, 3, 4, 4, 4, 3, 4, 4, 4, 3, 3, 3, 3, 3, 4, 4, 1, 2, 2, 0)}, {'tableName': ('T20503',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134), 'SeriesCode': ('DPCERA', 'DPHCRA', 'DFXARA', 'DTFDRA', 'DAOPRA', 'DFFDRA', 'DCAFRA', 'DCLTRA', 'DGARRA', 'DWGCRA', 'DMBCRA', 'DCICRA', 'DOCMRA', 'DCRCRA', 'DDRYRA', 'DLGRRA', 'DFTWRA', 'DHUFRA', 'DHSGRA', 'DTENRA', 'DOWNRA', 'DFARRA', 'DGRHRA', 'DUTFRA', 'DWRSRA', 'DEGFRA', 'DELCRA', 'DGHERA', 'DFULRA', 'DFHHRA', 'DFURRA', 'DTEXRA', 'DHAPRA', 'DUTERA', 'DTOORA', 'DOGSRA', 'DHLTRA', 'DMPARA', 'DPHMRA', 'DPNPRA', 'DOMPRA', 'DTAERA', 'DOUTRA', 'DPHYRA', 'DDENRA', 'DPMSRA', 'DHHCRA', 'DMLBRA', 'DOMDRA', 'DHPNRA', 'DHSPRA', 'DNRSRA', 'DTRNRA', 'DMTRRA', 'DNMVRA', 'DNPVRA', 'DMVORA', 'DMVPRA', 'DMFLRA', 'DVMRRA', 'DOVSRA', 'DPUBRA', 'DGRDRA', 'DAITRA', 'DWATRA', 'DCMCRA', 'DTCERA', 'DPSSRA', 'DPSTRA', 'DODSRA', 'DTCSRA', 'DINTRA', 'DRRLRA', 'DVPIRA', 'DVAARA', 'DIPERA', 'DSVCRA', 'DODRRA', 'DWHLRA', 'DORIRA', 'DRRERA', 'DRLSRA', 'DMDFRA', 'DORSRA', 'DADMRA', 'DMOVRA', 'DLIGRA', 'DSPERA', 'DMUSRA', 'DNBSRA', 'DGAMRA', 'DPETRA', 'DPHORA', 'DXHLRA', 'DEDURA', 'DEBKRA', 'DHEDRA', 'DNEHRA', 'DVEDRA', 'DFSARA', 'DFSERA', 'DPMBRA', 'DFOORA', 'DACCRA', 'DIFSRA', 'DFNLRA', 'DIMPRA', 'DOFIRA', 'DINSRA', 'DLIFRA', 'DFINRA', 'DHINRA', 'DMINRA', 'DIINRA', 'DPWCRA', 'DTINRA', 'DOISRA', 'DPCRRA', 'DPEORA', 'DSOCRA', 'DPRSRA', 'DGALRA', 'DPRORA', 'DUNSRA', 'DAXSRA', 'DFUNRA', 'DTOBRA', 'ZZZZZZ', 'DFTRRA', 'DEXFRA', 'ZZZZZZ', 'DNPIRA', 'DNPERA', 'DNPSRA'), 'Indentations': (0, 0, 1, 2, 2, 2, 1, 2, 3, 4, 4, 4, 3, 3, 4, 4, 2, 1, 2, 3, 3, 3, 3, 2, 3, 3, 4, 4, 4, 1, 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, 4, 3, 2, 3, 3, 3, 4, 4, 4, 2, 3, 3, 1, 2, 3, 3, 2, 3, 3, 3, 3, 2, 3, 3, 3, 1, 2, 2, 3, 3, 2, 2, 1, 2, 3, 3, 3, 2, 3, 3, 3, 2, 3, 3, 3, 4, 4, 4, 3, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 1, 2, 3, 3, 2, 1, 2, 3, 3, 2, 3, 3, 3, 4, 4, 4, 3, 1, 2, 2, 2, 2, 3, 3, 3, 3, 3, 2, 1, 2, 2, 2, 0, 1, 1)}, {'tableName': ('T20504',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134), 'SeriesCode': ('DPCERG', 'DPHCRG', 'DFXARG', 'DTFDRG', 'DAOPRG', 'DFFDRG', 'DCAFRG', 'DCLTRG', 'DGARRG', 'DWGCRG', 'DMBCRG', 'DCICRG', 'DOCMRG', 'DCRCRG', 'DDRYRG', 'DLGRRG', 'DFTWRG', 'DHUFRG', 'DHSGRG', 'DTENRG', 'DOWNRG', 'DFARRG', 'DGRHRG', 'DUTFRG', 'DWRSRG', 'DEGFRG', 'DELCRG', 'DGHERG', 'DFULRG', 'DFHHRG', 'DFURRG', 'DTEXRG', 'DHAPRG', 'DUTERG', 'DTOORG', 'DOGSRG', 'DHLTRG', 'DMPARG', 'DPHMRG', 'DPNPRG', 'DOMPRG', 'DTAERG', 'DOUTRG', 'DPHYRG', 'DDENRG', 'DPMSRG', 'DHHCRG', 'DMLBRG', 'DOMDRG', 'DHPNRG', 'DHSPRG', 'DNRSRG', 'DTRNRG', 'DMTRRG', 'DNMVRG', 'DNPVRG', 'DMVORG', 'DMVPRG', 'DMFLRG', 'DVMRRG', 'DOVSRG', 'DPUBRG', 'DGRDRG', 'DAITRG', 'DWATRG', 'DCMCRG', 'DTCERG', 'DPSSRG', 'DPSTRG', 'DODSRG', 'DTCSRG', 'DINTRG', 'DRRLRG', 'DVPIRG', 'DVAARG', 'DIPERG', 'DSVCRG', 'DODRRG', 'DWHLRG', 'DORIRG', 'DRRERG', 'DRLSRG', 'DMDFRG', 'DORSRG', 'DADMRG', 'DMOVRG', 'DLIGRG', 'DSPERG', 'DMUSRG', 'DNBSRG', 'DGAMRG', 'DPETRG', 'DPHORG', 'DXHLRG', 'DEDURG', 'DEBKRG', 'DHEDRG', 'DNEHRG', 'DVEDRG', 'DFSARG', 'DFSERG', 'DPMBRG', 'DFOORG', 'DACCRG', 'DIFSRG', 'DFNLRG', 'DIMPRG', 'DOFIRG', 'DINSRG', 'DLIFRG', 'DFINRG', 'DHINRG', 'DMINRG', 'DIINRG', 'DPWCRG', 'DTINRG', 'DOISRG', 'DPCRRG', 'DPEORG', 'DSOCRG', 'DPRSRG', 'DGALRG', 'DPRORG', 'DUNSRG', 'DAXSRG', 'DFUNRG', 'DTOBRG', 'ZZZZZZ', 'DFTRRG', 'DEXFRG', 'ZZZZZZ', 'DNPIRG', 'DNPERG', 'DNPSRG'), 'Indentations': (0, 0, 1, 2, 2, 2, 1, 2, 3, 4, 4, 4, 3, 3, 4, 4, 2, 1, 2, 3, 3, 3, 3, 2, 3, 3, 4, 4, 4, 1, 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, 4, 3, 2, 3, 3, 3, 4, 4, 4, 2, 3, 3, 1, 2, 3, 3, 2, 3, 3, 3, 3, 2, 3, 3, 3, 1, 2, 2, 3, 3, 2, 2, 1, 2, 3, 3, 3, 2, 3, 3, 3, 2, 3, 3, 3, 4, 4, 4, 3, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 1, 2, 3, 3, 2, 1, 2, 3, 3, 2, 3, 3, 3, 4, 4, 4, 3, 1, 2, 2, 2, 2, 3, 3, 3, 3, 3, 2, 1, 2, 2, 2, 0, 1, 1)}, {'tableName': ('T20505',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134), 'SeriesCode': ('DPCERC', 'DPHCRC', 'DFXARC', 'DTFDRC', 'DAOPRC', 'DFFDRC', 'DCAFRC', 'DCLTRC', 'DGARRC', 'DWGCRC', 'DMBCRC', 'DCICRC', 'DOCMRC', 'DCRCRC', 'DDRYRC', 'DLGRRC', 'DFTWRC', 'DHUFRC', 'DHSGRC', 'DTENRC', 'DOWNRC', 'DFARRC', 'DGRHRC', 'DUTFRC', 'DWRSRC', 'DEGFRC', 'DELCRC', 'DGHERC', 'DFULRC', 'DFHHRC', 'DFURRC', 'DTEXRC', 'DHAPRC', 'DUTERC', 'DTOORC', 'DOGSRC', 'DHLTRC', 'DMPARC', 'DPHMRC', 'DPNPRC', 'DOMPRC', 'DTAERC', 'DOUTRC', 'DPHYRC', 'DDENRC', 'DPMSRC', 'DHHCRC', 'DMLBRC', 'DOMDRC', 'DHPNRC', 'DHSPRC', 'DNRSRC', 'DTRNRC', 'DMTRRC', 'DNMVRC', 'DNPVRC', 'DMVORC', 'DMVPRC', 'DMFLRC', 'DVMRRC', 'DOVSRC', 'DPUBRC', 'DGRDRC', 'DAITRC', 'DWATRC', 'DCMCRC', 'DTCERC', 'DPSSRC', 'DPSTRC', 'DODSRC', 'DTCSRC', 'DINTRC', 'DRRLRC', 'DVPIRC', 'DVAARC', 'DIPERC', 'DSVCRC', 'DODRRC', 'DWHLRC', 'DORIRC', 'DRRERC', 'DRLSRC', 'DMDFRC', 'DORSRC', 'DADMRC', 'DMOVRC', 'DLIGRC', 'DSPERC', 'DMUSRC', 'DNBSRC', 'DGAMRC', 'DPETRC', 'DPHORC', 'DXHLRC', 'DEDURC', 'DEBKRC', 'DHEDRC', 'DNEHRC', 'DVEDRC', 'DFSARC', 'DFSERC', 'DPMBRC', 'DFOORC', 'DACCRC', 'DIFSRC', 'DFNLRC', 'DIMPRC', 'DOFIRC', 'DINSRC', 'DLIFRC', 'DFINRC', 'DHINRC', 'DMINRC', 'DIINRC', 'DPWCRC', 'DTINRC', 'DOISRC', 'DPCRRC', 'DPEORC', 'DSOCRC', 'DPRSRC', 'DGALRC', 'DPRORC', 'DUNSRC', 'DAXSRC', 'DFUNRC', 'DTOBRC', 'DNFTRC', 'DFTRRC', 'DEXFRC', 'DNFRRC', 'DNPIRC', 'DNPERC', 'DNPSRC'), 'Indentations': (0, 0, 1, 2, 2, 2, 1, 2, 3, 4, 4, 4, 3, 3, 4, 4, 2, 1, 2, 3, 3, 3, 3, 2, 3, 3, 4, 4, 4, 1, 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, 4, 3, 2, 3, 3, 3, 4, 4, 4, 2, 3, 3, 1, 2, 3, 3, 2, 3, 3, 3, 3, 2, 3, 3, 3, 1, 2, 2, 3, 3, 2, 2, 1, 2, 3, 3, 3, 2, 3, 3, 3, 2, 3, 3, 3, 4, 4, 4, 3, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 1, 2, 3, 3, 2, 1, 2, 3, 3, 2, 3, 3, 3, 4, 4, 4, 3, 1, 2, 2, 2, 2, 3, 3, 3, 3, 3, 2, 1, 2, 2, 2, 0, 1, 1)}, {'tableName': ('T20506',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135), 'SeriesCode': ('DPCERX', 'DPHCRX', 'DFXARX', 'DTFDRX', 'DAOPRX', 'DFFDRX', 'DCAFRX', 'DCLTRX', 'DGARRX', 'DWGCRX', 'DMBCRX', 'DCICRX', 'DOCMRX', 'DCRCRX', 'DDRYRX', 'DLGRRX', 'DFTWRX', 'DHUFRX', 'DHSGRX', 'DTENRX', 'DOWNRX', 'DFARRX', 'DGRHRX', 'DUTFRX', 'DWRSRX', 'DEGFRX', 'DELCRX', 'DGHERX', 'DFULRX', 'DFHHRX', 'DFURRX', 'DTEXRX', 'DHAPRX', 'DUTERX', 'DTOORX', 'DOGSRX', 'DHLTRX', 'DMPARX', 'DPHMRX', 'DPNPRX', 'DOMPRX', 'DTAERX', 'DOUTRX', 'DPHYRX', 'DDENRX', 'DPMSRX', 'DHHCRX', 'DMLBRX', 'DOMDRX', 'DHPNRX', 'DHSPRX', 'DNRSRX', 'DTRNRX', 'DMTRRX', 'DNMVRX', 'DNPVRX', 'DMVORX', 'DMVPRX', 'DMFLRX', 'DVMRRX', 'DOVSRX', 'DPUBRX', 'DGRDRX', 'DAITRX', 'DWATRX', 'DCMCRX', 'DTCERX', 'DPSSRX', 'DPSTRX', 'DODSRX', 'DTCSRX', 'DINTRX', 'DRRLRX', 'DVPIRX', 'DVAARX', 'DIPERX', 'DSVCRX', 'DODRRX', 'DWHLRX', 'DORIRX', 'DRRERX', 'DRLSRX', 'DMDFRX', 'DORSRX', 'DADMRX', 'DMOVRX', 'DLIGRX', 'DSPERX', 'DMUSRX', 'DNBSRX', 'DGAMRX', 'DPETRX', 'DPHORX', 'DXHLRX', 'DEDURX', 'DEBKRX', 'DHEDRX', 'DNEHRX', 'DVEDRX', 'DFSARX', 'DFSERX', 'DPMBRX', 'DFOORX', 'DACCRX', 'DIFSRX', 'DFNLRX', 'DIMPRX', 'DOFIRX', 'DINSRX', 'DLIFRX', 'DFINRX', 'DHINRX', 'DMINRX', 'DIINRX', 'DPWCRX', 'DTINRX', 'DOISRX', 'DPCRRX', 'DPEORX', 'DSOCRX', 'DPRSRX', 'DGALRX', 'DPRORX', 'DUNSRX', 'DAXSRX', 'DFUNRX', 'DTOBRX', 'DNFTRX', 'DFTRRX', 'DEXFRX', 'DNFRRX', 'DNPIRX', 'DNPERX', 'DNPSRX', 'A964RX'), 'Indentations': (0, 0, 1, 2, 2, 2, 1, 2, 3, 4, 4, 4, 3, 3, 4, 4, 2, 1, 2, 3, 3, 3, 3, 2, 3, 3, 4, 4, 4, 1, 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, 4, 3, 2, 3, 3, 3, 4, 4, 4, 2, 3, 3, 1, 2, 3, 3, 2, 3, 3, 3, 3, 2, 3, 3, 3, 1, 2, 2, 3, 3, 2, 2, 1, 2, 3, 3, 3, 2, 3, 3, 3, 2, 3, 3, 3, 4, 4, 4, 3, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 1, 2, 3, 3, 2, 1, 2, 3, 3, 2, 3, 3, 3, 4, 4, 4, 3, 1, 2, 2, 2, 2, 3, 3, 3, 3, 3, 2, 1, 2, 2, 2, 0, 1, 1, 0)}, {'tableName': ('T20600',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40), 'SeriesCode': ('A065RC', 'A033RC', 'A034RC', 'A132RC', 'B202RC', 'A038RC', 'B040RC', 'B039RC', 'A041RC', 'B042RC', 'A045RC', 'A048RC', 'W210RC', 'A064RC', 'B703RC', 'A577RC', 'A063RC', 'W823RC', 'W824RC', 'W729RC', 'W825RC', 'W826RC', 'W827RC', 'B931RC', 'A061RC', 'W055RC', 'A067RC', 'A068RC', 'DPCERC', 'B069RC', 'W211RC', 'W062RC', 'B070RC', 'A071RC', 'A072RC', 'W875RX', 'A067RX', 'A229RC', 'A229RX', 'B230RC'), 'Indentations': (0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2, 1, 1, 2, 2, 1, 2, 3, 3, 3, 3, 3, 3, 2, 1, 0, 0, 0, 1, 1, 1, 2, 2, 0, 1, 1, 2, 3, 3, 1)}, {'tableName': ('T20801',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10), 'SeriesCode': ('DPCERAM', 'DGDSRAM', 'DDURRAM', 'DNDGRAM', 'DSERRAM', 'DPCCRAM', 'DFXARAM', 'DNRGRAM', 'DPCMRAM', 'DPCXRAM'), 'Indentations': (0, 0, 1, 1, 0, 1, 1, 1, 1, 1)}, {'tableName': ('T20803',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10), 'SeriesCode': ('DPCERA', 'DGDSRA', 'DDURRA', 'DNDGRA', 'DSERRA', 'DPCCRA', 'DFXARA', 'DNRGRA', 'DPCMRA', 'DPCXRA'), 'Indentations': (0, 0, 1, 1, 0, 1, 1, 1, 1, 1)}, {'tableName': ('T20804',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10), 'SeriesCode': ('DPCERG', 'DGDSRG', 'DDURRG', 'DNDGRG', 'DSERRG', 'DPCCRG', 'DFXARG', 'DNRGRG', 'DPCMRG', 'DPCXRG'), 'Indentations': (0, 0, 1, 1, 0, 1, 1, 1, 1, 1)}, {'tableName': ('T20805',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10), 'SeriesCode': ('DPCERC', 'DGDSRC', 'DDURRC', 'DNDGRC', 'DSERRC', 'DPCCRC', 'DFXARC', 'DNRGRC', 'DPCMRC', 'DPCXRC'), 'Indentations': (0, 0, 1, 1, 0, 1, 1, 1, 1, 1)}, {'tableName': ('T20806',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10), 'SeriesCode': ('DPCERX', 'DGDSRX', 'DDURRX', 'DNDGRX', 'DSERRX', 'DPCCRX', 'DFXARX', 'DNRGRX', 'DPCMRX', 'DPCXRX'), 'Indentations': (0, 0, 1, 1, 0, 1, 1, 1, 1, 1)}, {'tableName': ('T20807',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10), 'SeriesCode': ('DPCERGM', 'DGDSRGM', 'DDURRGM', 'DNDGRGM', 'DSERRGM', 'DPCCRGM', 'DFXARGM', 'DNRGRGM', 'DPCMRGM', 'DPCXRGM'), 'Indentations': (0, 0, 1, 1, 0, 1, 1, 1, 1, 1)}, {'tableName': ('T20900',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86), 'SeriesCode': ('A065RC', 'A033RC', 'A041RC', 'A048RC', 'W210RC', 'A064RC', 'B703RC', 'A577RC', 'A063RC', 'B931RC', 'A061RC', 'W055RC', 'A067RC', 'A068RC', 'DPCERC', 'B069RC', 'W211RC', 'W062RC', 'B070RC', 'A071RC', 'A072RC', 'W380RC', 'A033RC', 'A041RC', 'W381RC', 'W382RC', 'W383RC', 'W384RC', 'W385RC', 'W401RC', 'W379RC', 'W386RC', 'A061RC', 'W055RC', 'W388RC', 'W389RC', 'DPHCRC', 'W391RC', 'DNPSRC', 'B069RC', 'W394RC', 'W395RC', 'W396RC', 'W397RC', 'W398RC', 'W399RC', 'W400RC', 'W159RC', 'W402RC', 'W403RC', 'W404RC', 'W405RC', 'W406RC', 'W407RC', 'Q397RC', 'W412RC', 'DNPIRC', 'DNPERC', 'DHLGRC', 'DRCGRC', 'DEDGRC', 'DSSGRC', 'DREORC', 'DFXORC', 'DSAORC', 'DCIORC', 'DSNGRC', 'DNPSRC', 'DHLRRC', 'DRCRRC', 'DEDRRC', 'DSSRRC', 'DRELRC', 'DGIVRC', 'DSASRC', 'DCISRC', 'DSNRRC', 'W419RC', 'W420RC', 'W421RC', 'Q386RC', 'W422RC', 'W423RC', 'W424RC', 'W426RC', 'W442RC'), 'Indentations': (0, 1, 1, 1, 1, 2, 2, 1, 2, 2, 1, 0, 0, 0, 1, 1, 1, 2, 2, 0, 1, 0, 1, 1, 1, 1, 2, 2, 1, 2, 2, 2, 1, 0, 0, 0, 1, 2, 2, 1, 1, 2, 2, 2, 0, 1, 0, 1, 1, 2, 2, 1, 2, 2, 2, 0, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 2, 2, 2, 0, 1, 1, 1, 1)}, {'tableName': ('T30100',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43), 'SeriesCode': ('W021RC', 'W054RC', 'W055RC', 'W056RC', 'W025RC', 'W008RC', 'W782RC', 'A061RC', 'W781RC', 'W058RC', 'W059RC', 'Y703RC', 'Y704RC', 'W065RC', 'W060RC', 'W061RC', 'W062RC', 'LA000014', 'A108RC', 'W022RC', 'A955RC', 'A084RC', 'W063RC', 'A063RC', 'W016RC', 'W017RC', 'A180RC', 'A204RC', 'Y712RC', 'A107RC', 'A922RC', 'A221RC', 'A391RC', 'W066RC', 'W021RC', 'W067RC', 'W068RC', 'W022RC', 'A782RC', 'W069RC', 'AD07RC', 'A264RC', 'AD01RC'), 'Indentations': (0, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 2, 2, 1, 0, 1, 1, 1, 0, 1, 0, 0, 1, 2, 2, 1, 0, 1, 1, 0, 1, 0, 0, 1, 2, 2, 1, 2, 2, 2, 2, 2, 1)}, {'tableName': ('T30200',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49), 'SeriesCode': ('W005RC', 'W006RC', 'A074RC', 'W007RC', 'B234RC', 'B235RC', 'LA000237', 'B075RC', 'W008RC', 'W780RC', 'LA000012', 'W781RC', 'W009RC', 'B094RC', 'W053RC', 'LA000248', 'LA000249', 'B1040C', 'W011RC', 'W012RC', 'B233RC', 'LA000028', 'B097RC', 'W013RC', 'A957RC', 'W014RC', 'W015RC', 'B087RC', 'W016RC', 'W010RC', 'B089RC', 'W017RC', 'A091RC', 'B092RC', 'B093RC', 'B096RC', 'A923RC', 'B243RC', 'B244RC', 'W018RC', 'W005RC', 'B232RC', 'W019RC', 'W013RC', 'A787RC', 'W020RC', 'AD08RC', 'A918RC', 'AD02RC'), 'Indentations': (0, 0, 1, 1, 2, 2, 2, 1, 1, 0, 1, 1, 0, 1, 1, 2, 2, 1, 0, 1, 1, 1, 0, 1, 0, 0, 1, 2, 2, 1, 2, 2, 0, 1, 1, 0, 1, 0, 0, 1, 2, 2, 1, 2, 2, 2, 2, 2, 1)}, {'tableName': ('T30300',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44), 'SeriesCode': ('W023RC', 'W070RC', 'W071RC', 'B245RC', 'B247RC', 'W072RC', 'B248RC', 'LA000239', 'LA000355', 'LA000357', 'B102RC', 'B104RC', 'W074RC', 'B112RC', 'B081RC', 'S23054', 'W075RC', 'B089RC', 'W076RC', 'B246RC', 'LA000016', 'B115RC', 'W024RC', 'A991RC', 'LA000017', 'B109RC', 'LA000015', 'B111RC', 'Y705RC', 'Y706RC', 'B114RC', 'A924RC', 'B118RC', 'B119RC', 'W077RC', 'W023RC', 'W969RC', 'W079RC', 'W024RC', 'A799RC', 'W080RC', 'AD09RC', 'A919RC', 'AD03RC'), 'Indentations': (0, 0, 1, 2, 2, 1, 2, 2, 2, 2, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 2, 2, 1, 2, 2, 2, 2, 2, 1)}, {'tableName': ('T30400',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12), 'SeriesCode': ('W055RC', 'A074RC', 'B231RC', 'PTN018', 'PTN100', 'PTN200', 'B035RC', 'W071RC', 'B245RC', 'S21030', 'S21040', 'S21050'), 'Indentations': (0, 0, 1, 2, 2, 2, 1, 0, 1, 1, 1, 1)}, {'tableName': ('T30500',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43), 'SeriesCode': ('W056RC', 'W007RC', 'LA000236', 'B234RC', 'B2000C', 'B2001C', 'B2002C', 'B2003C', 'B2004C', 'Y700RC', 'Y701RC', 'Y702RC', 'B2005C', 'B2006C', 'B235RC', 'B036RC', 'LA000237', 'W072RC', 'LA000238', 'B248RC', 'A1666C', 'A1667C', 'LA000239', 'LA000240', 'LA000241', 'LA000242', 'LA000243', 'L30517', 'LA000244', 'L30519', 'LA000246', 'L30522', 'LA000370', 'S23043', 'LA000363', 'LA000367', 'LA000365', 'LA000355', 'S23055', 'LA000356', 'LA000371', 'LA000361', 'LA000362'), 'Indentations': (0, 0, 1, 2, 3, 4, 5, 6, 6, 6, 6, 6, 6, 6, 4, 4, 2, 0, 1, 2, 3, 4, 4, 5, 6, 7, 8, 8, 8, 8, 6, 7, 8, 4, 4, 4, 1, 2, 3, 4, 4, 4, 1)}, {'tableName': ('T30600',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32), 'SeriesCode': ('W782RC', 'B039RC', 'A1580C', 'CON110', 'L30605', 'L30606', 'A1581C', 'CON120', 'CON150', 'CON160', 'CONBFE', 'CON170', 'B1043C', 'CON210', 'CON220', 'B1606C', 'A744RC', 'S25210', 'S25300', 'B228RC', 'A1585C', 'A1586C', 'A1587C', 'L30622', 'L30623', 'CON520', 'CON530', 'CON544', 'CON550', 'CON574', 'B738RC', 'W781RC'), 'Indentations': (0, 0, 1, 2, 3, 3, 2, 3, 3, 3, 3, 2, 2, 2, 2, 2, 1, 2, 2, 0, 1, 2, 3, 4, 4, 3, 2, 2, 2, 2, 1, 0)}, {'tableName': ('T30700',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17), 'SeriesCode': ('W060RC', 'W061RC', 'W012RC', 'B1041C', 'B1042C', 'W076RC', 'S23056', 'W098RC', 'S23057', 'W062RC', 'B233RC', 'B246RC', 'S21066', 'S21067', 'LA000014', 'LA000028', 'LA000016'), 'Indentations': (0, 0, 1, 2, 2, 1, 2, 2, 2, 0, 1, 1, 2, 2, 0, 1, 1)}, {'tableName': ('T30800',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15), 'SeriesCode': ('A108RC', 'B097RC', 'L31210', 'L31212', 'L31213', 'L31214', 'B115RC', 'L31218', 'L31219', 'L31220', 'L31221', 'L31222', 'L31223', 'L31224', 'L31225'), 'Indentations': (0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1)}, {'tableName': ('T30901',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40), 'SeriesCode': ('A822RL', 'A955RL', 'A782RL', 'A760RL', 'Y054RL', 'Y055RL', 'Y056RL', 'Y057RL', 'A823RL', 'A957RL', 'A787RL', 'A801RL', 'Y058RL', 'Y059RL', 'Y060RL', 'Y061RL', 'A824RL', 'A997RL', 'A788RL', 'A808RL', 'Y050RL', 'Y052RL', 'Y053RL', 'Y076RL', 'A825RL', 'A542RL', 'A798RL', 'A830RL', 'Y066RL', 'Y067RL', 'Y068RL', 'Y069RL', 'A829RL', 'A991RL', 'A799RL', 'A842RL', 'Y070RL', 'Y071RL', 'Y072RL', 'Y073RL'), 'Indentations': (0, 1, 2, 3, 4, 4, 5, 5, 0, 1, 2, 3, 3, 3, 4, 4, 1, 2, 2, 3, 3, 3, 4, 4, 1, 2, 2, 3, 3, 3, 4, 4, 0, 1, 1, 2, 2, 2, 3, 3)}, {'tableName': ('T30902',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40), 'SeriesCode': ('A822RL', 'A955RZ', 'A782RZ', 'A760RZ', 'Y054RZ', 'Y055RZ', 'Y056RZ', 'Y057RZ', 'A823RZ', 'A957RZ', 'A787RZ', 'A801RZ', 'Y058RZ', 'Y059RZ', 'Y060RZ', 'Y061RZ', 'A824RZ', 'A997RZ', 'A788RZ', 'A808RZ', 'Y050RZ', 'Y052RZ', 'Y053RZ', 'Y076RZ', 'A825RZ', 'A542RZ', 'A798RZ', 'A830RZ', 'Y066RZ', 'Y067RZ', 'Y068RZ', 'Y069RZ', 'A829RZ', 'A991RZ', 'A799RZ', 'A842RZ', 'Y070RZ', 'Y071RZ', 'Y072RZ', 'Y073RZ'), 'Indentations': (0, 1, 2, 3, 4, 4, 5, 5, 0, 1, 2, 3, 3, 3, 4, 4, 1, 2, 2, 3, 3, 3, 4, 4, 1, 2, 2, 3, 3, 3, 4, 4, 0, 1, 1, 2, 2, 2, 3, 3)}, {'tableName': ('T30903',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40), 'SeriesCode': ('B822RA', 'A955RA', 'A782RA', 'A760RA', 'Y054RA', 'Y055RA', 'Y056RA', 'Y057RA', 'B823RA', 'A957RA', 'B787RA', 'B801RA', 'Y058RA', 'Y059RA', 'Y060RA', 'Y061RA', 'B824RA', 'A997RA', 'B788RA', 'B808RA', 'Y050RA', 'Y052RA', 'Y053RA', 'Y076RA', 'B825RA', 'A542RA', 'B798RA', 'B830RA', 'Y066RA', 'Y067RA', 'Y068RA', 'Y069RA', 'B829RA', 'A991RA', 'B799RA', 'B842RA', 'Y070RA', 'Y071RA', 'Y072RA', 'Y073RA'), 'Indentations': (0, 1, 2, 3, 4, 4, 5, 5, 0, 1, 2, 3, 3, 3, 4, 4, 1, 2, 2, 3, 3, 3, 4, 4, 1, 2, 2, 3, 3, 3, 4, 4, 0, 1, 1, 2, 2, 2, 3, 3)}, {'tableName': ('T30904',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40), 'SeriesCode': ('B822RG', 'A955RG', 'A782RG', 'A760RG', 'Y054RG', 'Y055RG', 'Y056RG', 'Y057RG', 'B823RG', 'A957RG', 'B787RG', 'B801RG', 'Y058RG', 'Y059RG', 'Y060RG', 'Y061RG', 'B824RG', 'A997RG', 'B788RG', 'B808RG', 'Y050RG', 'Y052RG', 'Y053RG', 'Y076RG', 'B825RG', 'A542RG', 'B798RG', 'B830RG', 'Y066RG', 'Y067RG', 'Y068RG', 'Y069RG', 'B829RG', 'A991RG', 'B799RG', 'B842RG', 'Y070RG', 'Y071RG', 'Y072RG', 'Y073RG'), 'Indentations': (0, 1, 2, 3, 4, 4, 5, 5, 0, 1, 2, 3, 3, 3, 4, 4, 1, 2, 2, 3, 3, 3, 4, 4, 1, 2, 2, 3, 3, 3, 4, 4, 0, 1, 1, 2, 2, 2, 3, 3)}, {'tableName': ('T30905',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40), 'SeriesCode': ('A822RC', 'A955RC', 'A782RC', 'A760RC', 'Y054RC', 'Y055RC', 'Y056RC', 'Y057RC', 'A823RC', 'A957RC', 'A787RC', 'A801RC', 'Y058RC', 'Y059RC', 'Y060RC', 'Y061RC', 'A824RC', 'A997RC', 'A788RC', 'A808RC', 'Y050RC', 'Y052RC', 'Y053RC', 'Y076RC', 'A825RC', 'A542RC', 'A798RC', 'A830RC', 'Y066RC', 'Y067RC', 'Y068RC', 'Y069RC', 'A829RC', 'A991RC', 'A799RC', 'A842RC', 'Y070RC', 'Y071RC', 'Y072RC', 'Y073RC'), 'Indentations': (0, 1, 2, 3, 4, 4, 5, 5, 0, 1, 2, 3, 3, 3, 4, 4, 1, 2, 2, 3, 3, 3, 4, 4, 1, 2, 2, 3, 3, 3, 4, 4, 0, 1, 1, 2, 2, 2, 3, 3)}, {'tableName': ('T30906',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41), 'SeriesCode': ('A822RX', 'A955RX', 'A782RX', 'A760RX', 'Y054RX', 'Y055RX', 'Y056RX', 'Y057RX', 'A823RX', 'A957RX', 'A787RX', 'A801RX', 'Y058RX', 'Y059RX', 'Y060RX', 'Y061RX', 'A824RX', 'A997RX', 'A788RX', 'A808RX', 'Y050RX', 'Y052RX', 'Y053RX', 'Y076RX', 'A825RX', 'A542RX', 'A798RX', 'A830RX', 'Y066RX', 'Y067RX', 'Y068RX', 'Y069RX', 'A829RX', 'A991RX', 'A799RX', 'A842RX', 'Y070RX', 'Y071RX', 'Y072RX', 'Y073RX', 'A979RX'), 'Indentations': (0, 1, 2, 3, 4, 4, 5, 5, 0, 1, 2, 3, 3, 3, 4, 4, 1, 2, 2, 3, 3, 3, 4, 4, 1, 2, 2, 3, 3, 3, 4, 4, 0, 1, 1, 2, 2, 2, 3, 3, 0)}, {'tableName': ('T31001',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60), 'SeriesCode': ('A955RL', 'W101RL', 'W102RL', 'A194RL', 'A265RL', 'W104RL', 'W105RL', 'W106RL', 'W107RL', 'W108RL', 'W109RL', 'A957RL', 'W110RL', 'W111RL', 'B568RL', 'B995RL', 'W113RL', 'W114RL', 'W115RL', 'W116RL', 'W117RL', 'W118RL', 'A997RL', 'W085RL', 'W086RL', 'B237RL', 'B432RL', 'W087RL', 'A998RL', 'A725RL', 'A489RL', 'W088RL', 'W089RL', 'A542RL', 'W128RL', 'W129RL', 'W130RL', 'B546RL', 'W131RL', 'A543RL', 'ZZZZZZ', 'ZZZZZZ', 'B828RL', 'A544RL', 'W136RL', 'W137RL', 'A991RL', 'W138RL', 'W139RL', 'B251RL', 'B986RL', 'W140RL', 'B989RL', 'B337RL', 'A988RL', 'W144RL', 'W145RL', 'B1065L', 'B1066L', 'W146RL'), 'Indentations': (0, 1, 2, 3, 4, 5, 6, 6, 6, 4, 4, 0, 1, 2, 3, 4, 4, 5, 5, 5, 3, 3, 2, 3, 4, 5, 5, 4, 5, 5, 5, 3, 3, 2, 3, 4, 5, 5, 4, 5, 5, 6, 6, 5, 3, 3, 0, 1, 2, 3, 4, 4, 5, 5, 5, 3, 3, 4, 4, 4)}, {'tableName': ('T31003',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60), 'SeriesCode': ('A955RA', 'W101RA', 'W102RA', 'A194RA', 'A265RA', 'W104RA', 'W105RA', 'W106RA', 'W107RA', 'W108RA', 'W109RA', 'A957RA', 'W110RA', 'W111RA', 'B568RA', 'B995RA', 'W113RA', 'W114RA', 'W115RA', 'W116RA', 'W117RA', 'W118RA', 'A997RA', 'W085RA', 'W086RA', 'B237RA', 'B432RA', 'W087RA', 'A998RA', 'A725RA', 'A489RA', 'W088RA', 'W089RA', 'A542RA', 'W128RA', 'W129RA', 'W130RA', 'B546RA', 'W131RA', 'A543RA', 'ZZZZZZ', 'ZZZZZZ', 'B828RA', 'A544RA', 'W136RA', 'W137RA', 'A991RA', 'W138RA', 'W139RA', 'B251RA', 'B986RA', 'W140RA', 'B989RA', 'B337RA', 'A988RA', 'W144RA', 'W145RA', 'B1065A', 'B1066A', 'W146RA'), 'Indentations': (0, 1, 2, 3, 4, 5, 6, 6, 6, 4, 4, 0, 1, 2, 3, 4, 4, 5, 5, 5, 3, 3, 2, 3, 4, 5, 5, 4, 5, 5, 5, 3, 3, 2, 3, 4, 5, 5, 4, 5, 5, 6, 6, 5, 3, 3, 0, 1, 2, 3, 4, 4, 5, 5, 5, 3, 3, 4, 4, 4)}, {'tableName': ('T31004',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60), 'SeriesCode': ('A955RG', 'W101RG', 'W102RG', 'A194RG', 'A265RG', 'W104RG', 'W105RG', 'W106RG', 'W107RG', 'W108RG', 'W109RG', 'A957RG', 'W110RG', 'W111RG', 'B568RG', 'B995RG', 'W113RG', 'W114RG', 'W115RG', 'W116RG', 'W117RG', 'W118RG', 'A997RG', 'W085RG', 'W086RG', 'B237RG', 'B432RG', 'W087RG', 'A998RG', 'A725RG', 'A489RG', 'W088RG', 'W089RG', 'A542RG', 'W128RG', 'W129RG', 'W130RG', 'B546RG', 'W131RG', 'A543RG', 'ZZZZZZ', 'ZZZZZZ', 'B828RG', 'A544RG', 'W136RG', 'W137RG', 'A991RG', 'W138RG', 'W139RG', 'B251RG', 'B986RG', 'W140RG', 'B989RG', 'B337RG', 'A988RG', 'W144RG', 'W145RG', 'B1065G', 'B1066G', 'W146RG'), 'Indentations': (0, 1, 2, 3, 4, 5, 6, 6, 6, 4, 4, 0, 1, 2, 3, 4, 4, 5, 5, 5, 3, 3, 2, 3, 4, 5, 5, 4, 5, 5, 5, 3, 3, 2, 3, 4, 5, 5, 4, 5, 5, 6, 6, 5, 3, 3, 0, 1, 2, 3, 4, 4, 5, 5, 5, 3, 3, 4, 4, 4)}, {'tableName': ('T31005',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60), 'SeriesCode': ('A955RC', 'W101RC', 'W102RC', 'A194RC', 'A265RC', 'W104RC', 'W105RC', 'W106RC', 'W107RC', 'W108RC', 'W109RC', 'A957RC', 'W110RC', 'W111RC', 'B568RC', 'B995RC', 'W113RC', 'W114RC', 'W115RC', 'W116RC', 'W117RC', 'W118RC', 'A997RC', 'W085RC', 'W086RC', 'B237RC', 'B432RC', 'W087RC', 'A998RC', 'A725RC', 'A489RC', 'W088RC', 'W089RC', 'A542RC', 'W128RC', 'W129RC', 'W130RC', 'B546RC', 'W131RC', 'A543RC', 'A729RC', 'B826RC', 'B828RC', 'A544RC', 'W136RC', 'W137RC', 'A991RC', 'W138RC', 'W139RC', 'B251RC', 'B986RC', 'W140RC', 'B989RC', 'B337RC', 'A988RC', 'W144RC', 'W145RC', 'B1065C', 'B1066C', 'W146RC'), 'Indentations': (0, 1, 2, 3, 4, 5, 6, 6, 6, 4, 4, 0, 1, 2, 3, 4, 4, 5, 5, 5, 3, 3, 2, 3, 4, 5, 5, 4, 5, 5, 5, 3, 3, 2, 3, 4, 5, 5, 4, 5, 5, 6, 6, 5, 3, 3, 0, 1, 2, 3, 4, 4, 5, 5, 5, 3, 3, 4, 4, 4)}, {'tableName': ('T31006',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61), 'SeriesCode': ('A955RX', 'W101RX', 'W102RX', 'A194RX', 'A265RX', 'W104RX', 'W105RX', 'W106RX', 'W107RX', 'W108RX', 'W109RX', 'A957RX', 'W110RX', 'W111RX', 'B568RX', 'B995RX', 'W113RX', 'W114RX', 'W115RX', 'W116RX', 'W117RX', 'W118RX', 'A997RX', 'W085RX', 'W086RX', 'B237RX', 'B432RX', 'W087RX', 'A998RX', 'A725RX', 'A489RX', 'W088RX', 'W089RX', 'A542RX', 'W128RX', 'W129RX', 'W130RX', 'B546RX', 'W131RX', 'A543RX', 'A729RX', 'B826RX', 'B828RX', 'A544RX', 'W136RX', 'W137RX', 'A991RX', 'W138RX', 'W139RX', 'B251RX', 'B986RX', 'W140RX', 'B989RX', 'B337RX', 'A988RX', 'W144RX', 'W145RX', 'B1065X', 'B1066X', 'W146RX', 'W100RX'), 'Indentations': (0, 1, 2, 3, 4, 5, 6, 6, 6, 4, 4, 0, 1, 2, 3, 4, 4, 5, 5, 5, 3, 3, 2, 3, 4, 5, 5, 4, 5, 5, 5, 3, 3, 2, 3, 4, 5, 5, 4, 5, 5, 6, 6, 5, 3, 3, 0, 1, 2, 3, 4, 4, 5, 5, 5, 3, 3, 4, 4, 4, 0)}, {'tableName': ('T31101',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40), 'SeriesCode': ('A824RL', 'A997RL', 'W085RL', 'W086RL', 'B237RL', 'B4080L', 'W090RL', 'B432RL', 'W087RL', 'A998RL', 'B999RL', 'B277RL', 'B278RL', 'B288RL', 'B388RL', 'B389RL', 'A725RL', 'B780RL', 'B781RL', 'B783RL', 'A489RL', 'B911RL', 'B912RL', 'B913RL', 'B786RL', 'B785RL', 'W088RL', 'W089RL', 'A788RL', 'A808RL', 'Y050RL', 'B874RL', 'B875RL', 'B876RL', 'B877RL', 'Y051RL', 'B879RL', 'Y052RL', 'Y053RL', 'Y076RL'), 'Indentations': (0, 0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 3, 4, 4, 4, 4, 4, 1, 1, 0, 1, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2)}, {'tableName': ('T31102',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40), 'SeriesCode': ('A824RL', 'A997RN', 'W085RN', 'W086RN', 'B237RN', 'B408RN', 'W090RN', 'B432RN', 'W087RN', 'A998RN', 'B999RN', 'B277RN', 'B278RN', 'B288RN', 'B388RN', 'B389RN', 'A725RN', 'B780RN', 'B781RN', 'B783RN', 'A489RN', 'B911RN', 'B912RN', 'B913RN', 'B786RN', 'B785RN', 'W088RN', 'W089RN', 'A788RN', 'A808RN', 'Y050RN', 'B874RN', 'B875RN', 'B876RN', 'B877RN', 'Y051RN', 'B879RN', 'Y052RN', 'Y053RN', 'Y076RN'), 'Indentations': (0, 0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 3, 4, 4, 4, 4, 4, 1, 1, 0, 1, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2)}, {'tableName': ('T31103',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40), 'SeriesCode': ('B824RA', 'A997RA', 'W085RA', 'W086RA', 'B237RA', 'B4080A', 'W090RA', 'B432RA', 'W087RA', 'A998RA', 'B999RA', 'B277RA', 'B278RA', 'B288RA', 'B388RA', 'B389RA', 'A725RA', 'B780RA', 'B781RA', 'B783RA', 'A489RA', 'B911RA', 'B912RA', 'B913RA', 'B786RA', 'B785RA', 'W088RA', 'W089RA', 'B788RA', 'B808RA', 'Y050RA', 'B874RA', 'B875RA', 'B876RA', 'B877RA', 'Y051RA', 'B879RA', 'Y052RA', 'Y053RA', 'Y076RA'), 'Indentations': (0, 0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 3, 4, 4, 4, 4, 4, 1, 1, 0, 1, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2)}, {'tableName': ('T31104',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40), 'SeriesCode': ('B824RG', 'A997RG', 'W085RG', 'W086RG', 'B237RG', 'B4080G', 'W090RG', 'B432RG', 'W087RG', 'A998RG', 'B999RG', 'B277RG', 'B278RG', 'B288RG', 'B388RG', 'B389RG', 'A725RG', 'B780RG', 'B781RG', 'B783RG', 'A489RG', 'B911RG', 'B912RG', 'B913RG', 'B786RG', 'B785RG', 'W088RG', 'W089RG', 'B788RG', 'B808RG', 'Y050RG', 'B874RG', 'B875RG', 'B876RG', 'B877RG', 'Y051RG', 'B879RG', 'Y052RG', 'Y053RG', 'Y076RG'), 'Indentations': (0, 0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 3, 4, 4, 4, 4, 4, 1, 1, 0, 1, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2)}, {'tableName': ('T31105',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40), 'SeriesCode': ('A824RC', 'A997RC', 'W085RC', 'W086RC', 'B237RC', 'B4080C', 'W090RC', 'B432RC', 'W087RC', 'A998RC', 'B999RC', 'B277RC', 'B278RC', 'B288RC', 'B388RC', 'B389RC', 'A725RC', 'B780RC', 'B781RC', 'B783RC', 'A489RC', 'B911RC', 'B912RC', 'B913RC', 'B786RC', 'B785RC', 'W088RC', 'W089RC', 'A788RC', 'A808RC', 'Y050RC', 'B874RC', 'B875RC', 'B876RC', 'B877RC', 'Y051RC', 'B879RC', 'Y052RC', 'Y053RC', 'Y076RC'), 'Indentations': (0, 0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 3, 4, 4, 4, 4, 4, 1, 1, 0, 1, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2)}, {'tableName': ('T31106',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41), 'SeriesCode': ('A824RX', 'A997RX', 'W085RX', 'W086RX', 'B237RX', 'B4080X', 'W090RX', 'B432RX', 'W087RX', 'A998RX', 'B999RX', 'B277RX', 'B278RX', 'B288RX', 'B388RX', 'B389RX', 'A725RX', 'B780RX', 'B781RX', 'B783RX', 'A489RX', 'B911RX', 'B912RX', 'B913RX', 'B786RX', 'B785RX', 'W088RX', 'W089RX', 'A788RX', 'A808RX', 'Y050RX', 'B874RX', 'B875RX', 'B876RX', 'B877RX', 'Y051RX', 'B879RX', 'Y052RX', 'Y053RX', 'Y076RX', 'A975RX'), 'Indentations': (0, 0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 3, 4, 4, 4, 4, 4, 1, 1, 0, 1, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, 0)}, {'tableName': ('T31200',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43), 'SeriesCode': ('W063RC', 'A063RC', 'B087RC', 'A1588C', 'W823RC', 'W824RC', 'A1589C', 'L31107', 'TRP200', 'W874RC', 'B1590C', 'TRP250', 'B1044C', 'TRP350', 'TRP375', 'B1606C', 'A1594C', 'TRP450', 'TRP500', 'TRP570', 'TRP600', 'TRP650', 'TRP700', 'TRP730', 'W811RC', 'W812RC', 'B109RC', 'A1595C', 'S12200', 'S12300', 'A1596C', 'B1597C', 'W729RC', 'TRP810', 'B1598C', 'B1599C', 'B1600C', 'B1601C', 'B1602C', 'B1603C', 'B1604C', 'B1605C', 'W016RC'), 'Indentations': (0, 0, 1, 2, 3, 3, 3, 4, 4, 4, 4, 3, 3, 3, 3, 3, 2, 3, 3, 3, 2, 2, 2, 2, 2, 2, 1, 2, 3, 3, 2, 3, 4, 4, 3, 3, 3, 3, 3, 2, 2, 2, 0)}, {'tableName': ('T31300',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8), 'SeriesCode': ('A107RC', 'B096RC', 'L31204', 'L31205', 'L31206', 'L31207', 'L31208', 'B114RC'), 'Indentations': (0, 0, 1, 1, 1, 1, 1, 0)}, {'tableName': ('T31400',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26), 'SeriesCode': ('A2046C', 'W780RC', 'A1585C', 'A1580C', 'L31305', 'L31306', 'W781RC', 'L31307', 'W798RC', 'A1670C', 'L31309', 'W026RC', 'A1588C', 'W872RC', 'B243RC', 'A743RC', 'B104RC', 'B738RC', 'A744RC', 'B739RC', 'B740RC', 'B746RC', 'A745RC', 'B741RC', 'B742RC', 'B118RC'), 'Indentations': (0, 0, 1, 1, 2, 2, 1, 0, 0, 1, 0, 0, 1, 1, 2, 2, 0, 1, 1, 2, 2, 0, 1, 0, 0, 1)}, {'tableName': ('T31501',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42), 'SeriesCode': ('A822RL', 'W575RL', 'A824RL', 'W579RL', 'W584RL', 'W589RL', 'W595RL', 'W596RL', 'W597RL', 'W598RL', 'W599RL', 'W600RL', 'W605RL', 'A823RL', 'W611RL', 'A824RL', 'W615RL', 'W620RL', 'W625RL', 'W631RL', 'W632RL', 'W633RL', 'W634RL', 'W635RL', 'W636RL', 'W640RL', 'A829RL', 'W646RL', 'W650RL', 'W655RL', 'W660RL', 'W665RL', 'W666RL', 'W671RL', 'Y650RL', 'Y651RL', 'W672RL', 'W673RL', 'W674RL', 'W675RL', 'W677RL', 'W678RL'), 'Indentations': (0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0)}, {'tableName': ('T31502',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42), 'SeriesCode': ('A822RL', 'W575RZ', 'A824RZ', 'W579RZ', 'W584RZ', 'W589RZ', 'W595RZ', 'W596RZ', 'W597RZ', 'W598RZ', 'W599RZ', 'W600RZ', 'W605RZ', 'A823RZ', 'W611RZ', 'A824RZ', 'W615RZ', 'W620RZ', 'W625RZ', 'W631RZ', 'W632RZ', 'W633RZ', 'W634RZ', 'W635RZ', 'W636RZ', 'W640RZ', 'A829RZ', 'W646RZ', 'W650RZ', 'W655RZ', 'W660RZ', 'W665RZ', 'W666RZ', 'W671RZ', 'Y650RZ', 'Y651RZ', 'W672RZ', 'W673RZ', 'W674RZ', 'W675RZ', 'W677RZ', 'W678RZ'), 'Indentations': (0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0)}, {'tableName': ('T31503',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42), 'SeriesCode': ('B822RA', 'W575RA', 'B824RA', 'W579RA', 'W584RA', 'W589RA', 'W595RA', 'W596RA', 'W597RA', 'W598RA', 'W599RA', 'W600RA', 'W605RA', 'B823RA', 'W611RA', 'B824RA', 'W615RA', 'W620RA', 'W625RA', 'W631RA', 'W632RA', 'W633RA', 'W634RA', 'W635RA', 'W636RA', 'W640RA', 'B829RA', 'W646RA', 'W650RA', 'W655RA', 'W660RA', 'W665RA', 'W666RA', 'W671RA', 'Y650RA', 'Y651RA', 'W672RA', 'W673RA', 'W674RA', 'W675RA', 'W677RA', 'W678RA'), 'Indentations': (0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0)}, {'tableName': ('T31504',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42), 'SeriesCode': ('B822RG', 'W575RG', 'B824RG', 'W579RG', 'W584RG', 'W589RG', 'W595RG', 'W596RG', 'W597RG', 'W598RG', 'W599RG', 'W600RG', 'W605RG', 'B823RG', 'W611RG', 'B824RG', 'W615RG', 'W620RG', 'W625RG', 'W631RG', 'W632RG', 'W633RG', 'W634RG', 'W635RG', 'W636RG', 'W640RG', 'B829RG', 'W646RG', 'W650RG', 'W655RG', 'W660RG', 'W665RG', 'W666RG', 'W671RG', 'Y650RG', 'Y651RG', 'W672RG', 'W673RG', 'W674RG', 'W675RG', 'W677RG', 'W678RG'), 'Indentations': (0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0)}, {'tableName': ('T31505',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117), 'SeriesCode': ('A822RC', 'W575RC', 'W576RC', 'W577RC', 'W578RC', 'A824RC', 'W579RC', 'W580RC', 'W581RC', 'W582RC', 'W583RC', 'W584RC', 'W589RC', 'W590RC', 'W591RC', 'W592RC', 'W593RC', 'W595RC', 'W596RC', 'W585RC', 'W586RC', 'W587RC', 'W588RC', 'W594RC', 'W684RC', 'W597RC', 'W598RC', 'W599RC', 'W600RC', 'W601RC', 'W602RC', 'W682RC', 'W603RC', 'W604RC', 'W605RC', 'W606RC', 'W607RC', 'W608RC', 'W609RC', 'W610RC', 'A823RC', 'W611RC', 'W612RC', 'W613RC', 'W614RC', 'A824RC', 'W615RC', 'W616RC', 'W617RC', 'W618RC', 'W619RC', 'W620RC', 'W625RC', 'W626RC', 'W627RC', 'W628RC', 'W629RC', 'W631RC', 'W632RC', 'W621RC', 'W622RC', 'W623RC', 'W624RC', 'W630RC', 'W633RC', 'W634RC', 'W635RC', 'W636RC', 'W637RC', 'W638RC', 'W639RC', 'W640RC', 'W641RC', 'W642RC', 'W643RC', 'W644RC', 'W645RC', 'A829RC', 'W646RC', 'W647RC', 'W648RC', 'W649RC', 'W650RC', 'W651RC', 'W652RC', 'W653RC', 'W654RC', 'W655RC', 'W660RC', 'W661RC', 'W662RC', 'W663RC', 'W664RC', 'W665RC', 'W656RC', 'W657RC', 'W658RC', 'W659RC', 'W686RC', 'W666RC', 'W667RC', 'W668RC', 'W669RC', 'W670RC', 'W671RC', 'Y650RC', 'Y651RC', 'W672RC', 'W673RC', 'W674RC', 'W675RC', 'W677RC', 'W676RC', 'W683RC', 'W678RC', 'W679RC', 'W680RC'), 'Indentations': (0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 1, 1, 1, 2, 2, 0, 1, 1, 1, 1, 1, 2, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 2, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 2, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 0, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 2, 2, 0, 1, 1)}, {'tableName': ('T31506',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43), 'SeriesCode': ('A822RX', 'W575RX', 'A824RX', 'W579RX', 'W584RX', 'W589RX', 'W595RX', 'W596RX', 'W597RX', 'W598RX', 'W599RX', 'W600RX', 'W605RX', 'A823RX', 'W611RX', 'A824RX', 'W615RX', 'W620RX', 'W625RX', 'W631RX', 'W632RX', 'W633RX', 'W634RX', 'W635RX', 'W636RX', 'W640RX', 'A829RX', 'W646RX', 'W650RX', 'W655RX', 'W660RX', 'W665RX', 'W666RX', 'W671RX', 'Y650RX', 'Y651RX', 'W672RX', 'W673RX', 'W674RX', 'W675RX', 'W677RX', 'W678RX', 'W687RX'), 'Indentations': (0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0, 0)}, {'tableName': ('T31600',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114), 'SeriesCode': ('W022RC', 'G16002', 'G16003', 'G16004', 'G16005', 'G16006', 'G16007', 'G16008', 'G16009', 'G16010', 'G16011', 'G16012', 'G16013', 'G16018', 'G16019', 'G16020', 'G16021', 'G16022', 'G16024', 'W690RC', 'G16014', 'G16015', 'G16016', 'G16017', 'G16023', 'G16025', 'G16026', 'G16027', 'G16028', 'G16029', 'G16030', 'G16031', 'W691RC', 'G16032', 'G16033', 'G16034', 'G16035', 'G16036', 'G16037', 'G16038', 'G16039', 'W013RC', 'G16041', 'G16042', 'G16043', 'G16044', 'G16045', 'G16046', 'G16047', 'G16048', 'G16049', 'G16050', 'G16051', 'G16052', 'G16057', 'G16058', 'G16059', 'G16060', 'G16061', 'G16063', 'W692RC', 'G16053', 'G16054', 'G16055', 'G16056', 'G16062', 'G16065', 'G16066', 'G16067', 'G16068', 'G16069', 'G16070', 'G16071', 'G16072', 'G16073', 'G16074', 'G16075', 'G16076', 'G16077', 'W024RC', 'G16079', 'G16080', 'G16081', 'G16082', 'G16083', 'G16084', 'G16085', 'G16086', 'G16087', 'G16088', 'G16089', 'G16094', 'G16095', 'G16098', 'W693RC', 'G16090', 'G16091', 'G16092', 'G16093', 'G16099', 'G16100', 'G16105', 'Y652RC', 'Y651RC', 'G16106', 'G16107', 'G16108', 'G16109', 'W694RC', 'G16110', 'G16111', 'G16112', 'G16113', 'G16114'), 'Indentations': (0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 1, 1, 1, 2, 2, 0, 1, 1, 1, 1, 1, 2, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 2, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 2, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 2, 2, 1, 2, 2, 2, 2, 2, 0, 0, 1, 1, 0, 0, 1, 1, 1, 2, 2, 0, 1, 1)}, {'tableName': ('T31700',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159), 'SeriesCode': ('A955RC', 'G17002', 'A997RC', 'G17004', 'G17005', 'G17006', 'G17007', 'G17008', 'G17009', 'G17010', 'A957RC', 'G17012', 'A997RC', 'G17014', 'G17015', 'G17016', 'G17017', 'G17018', 'G17019', 'G17020', 'A991RC', 'G17022', 'G17023', 'G17024', 'G17025', 'G17026', 'Y654RC', 'Y651RC', 'G17027', 'G17028', 'G17029', 'W063RC', 'G17031', 'G17032', 'G17033', 'G17034', 'G17035', 'G17036', 'G17037', 'G17038', 'W015RC', 'G17040', 'G17041', 'G17042', 'G17043', 'G17044', 'G17045', 'G17046', 'G17047', 'B109RC', 'G17049', 'G17050', 'G17051', 'G17052', 'G17053', 'G17054', 'B089RC', 'G17056', 'G17057', 'G17058', 'G17059', 'G17064', 'G17065', 'W695RC', 'G17060', 'G17061', 'G17062', 'G17063', 'G17066', 'G17067', 'G17068', 'G17069', 'G17070', 'G17071', 'G17073', 'G17074', 'G17075', 'A107RC', 'LA000215', 'G17079', 'G17084', 'W696RC', 'G17080', 'G17081', 'G17082', 'G17083', 'G17087', 'LA000216', 'B096RC', 'LA000212', 'G17091', 'G17096', 'W697RC', 'G17092', 'G17093', 'LA000213', 'G17095', 'G17098', 'LA000214', 'B114RC', 'G17100', 'G17102', 'G17101', 'G17104', 'A782RC', 'G17106', 'A788RC', 'G17108', 'G17109', 'G17110', 'G17111', 'G17112', 'G17113', 'G17114', 'A787RC', 'G17116', 'A788RC', 'G17118', 'G17119', 'G17120', 'G17121', 'G17122', 'G17123', 'G17124', 'A799RC', 'G17126', 'G17127', 'G17128', 'G17129', 'G17130', 'G17131', 'G17132', 'G17133', 'W069RC', 'W800RC', 'W801RC', 'W802RC', 'W803RC', 'W804RC', 'W805RC', 'W806RC', 'W807RC', 'W808RC', 'W809RC', 'W810RC', 'W020RC', 'W698RC', 'G17136', 'G17137', 'G17138', 'G17139', 'W813RC', 'G17141', 'W699RC', 'G17142', 'G17143', 'G17144', 'W080RC', 'W080RC'), 'Indentations': (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 2, 2, 2, 2, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 0, 0, 1, 1, 2, 2, 2, 2, 0, 0, 1, 0, 0, 1, 1, 2, 2, 2, 2, 0, 0, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 2, 2, 2, 2, 1, 0, 0, 0, 1, 0, 0, 1, 2, 2, 2, 2, 1, 0, 0, 0, 1, 0)}, {'tableName': ('T32000',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46), 'SeriesCode': ('W730RC', 'W731RC', 'W732RC', 'W733RC', 'W734RC', 'W7735C', 'W736RC', 'LA000374', 'W737RC', 'W738RC', 'W739RC', 'W740RC', 'W741RC', 'W742RC', 'W743RC', 'W744RC', 'W745RC', 'W746RC', 'W747RC', 'W748RC', 'W749RC', 'LA000020', 'W750RC', 'W751RC', 'W752RC', 'W753RC', 'W754RC', 'W755RC', 'LA000019', 'W756RC', 'Y707RC', 'Y708RC', 'W757RC', 'W759RC', 'W760RC', 'W761RC', 'W762RC', 'W730RC', 'W764RC', 'W765RC', 'W751RC', 'W767RC', 'W080RC', 'W768RC', 'W769RC', 'W770RC'), 'Indentations': (0, 0, 1, 2, 2, 1, 2, 2, 2, 2, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 2, 2, 1, 2, 2, 2, 2, 2, 1)}, {'tableName': ('T32100',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46), 'SeriesCode': ('W830RC', 'W831RC', 'W832RC', 'W833RC', 'W834RC', 'W8735C', 'W836RC', 'LA000373', 'W837RC', 'W838RC', 'W839RC', 'ZZZZZZ', 'W841RC', 'W842RC', 'ZZZZZZ', 'W844RC', 'W845RC', 'W846RC', 'W847RC', 'W848RC', 'W849RC', 'LA000022', 'W850RC', 'W851RC', 'W852RC', 'W853RC', 'W854RC', 'W855RC', 'LA000021', 'W856RC', 'Y709RC', 'Y710RC', 'W857RC', 'W859RC', 'ZZZZZZ', 'W859RC', 'W862RC', 'W830RC', 'W864RC', 'W865RC', 'W851RC', 'W867RC', 'ZZZZZZ', 'W868RC', 'W869RC', 'W870RC'), 'Indentations': (0, 0, 1, 2, 2, 1, 2, 2, 2, 2, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 2, 2, 1, 2, 2, 2, 2, 2, 1)}, {'tableName': ('T40100',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36), 'SeriesCode': ('A1073C', 'B020RC', 'A253RC', 'A332RC', 'A339RC', 'A646RC', 'B645RC', 'B4188C', 'W160RC', 'A2067C', 'B3375C', 'B3475C', 'LA000035', 'LA000036', 'LA000029', 'LA000037', 'W163RC', 'B021RC', 'A255RC', 'A333RC', 'A340RC', 'B656RC', 'A655RC', 'B4189C', 'W161RC', 'B1869C', 'B3376C', 'B3476C', 'A123RC', 'LA000002', 'B088RC', 'W164RC', 'A124RC', 'W162RC', 'A124RC', 'W167RC'), 'Indentations': (0, 0, 1, 2, 2, 1, 0, 1, 1, 2, 2, 2, 0, 1, 1, 1, 2, 0, 1, 2, 2, 1, 0, 1, 1, 2, 2, 2, 0, 1, 1, 1, 2, 1, 2, 2)}, {'tableName': ('T40201',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55), 'SeriesCode': ('A020RL', 'A253RL', 'B638RL', 'A639RL', 'B686RL', 'B687RL', 'PB000006', 'PB000005', 'A640RL', 'B688RL', 'B850RL', 'B689RL', 'B641RL', 'A642RL', 'B690RL', 'B691RL', 'A643RL', 'A646RL', 'Y800RL', 'Y801RL', 'B684RL', 'Y802RL', 'Y803RL', 'B980RL', 'A021RL', 'A255RL', 'B647RL', 'PB000004', 'A820RL', 'PB000007', 'B648RL', 'B696RL', 'A650RL', 'B932RL', 'B852RL', 'B853RL', 'B651RL', 'A652RL', 'B697RL', 'B698RL', 'A653RL', 'A656RL', 'Y804RL', 'Y805RL', 'B908RL', 'Y806RL', 'Y807RL', 'B910RL', 'A332RL', 'A339RL', 'B181RL', 'A182RL', 'A333RL', 'A340RL', 'A187RL'), 'Indentations': (0, 0, 1, 1, 2, 2, 3, 3, 1, 2, 2, 2, 1, 1, 2, 2, 1, 0, 1, 1, 1, 1, 1, 1, 2, 0, 1, 1, 2, 2, 3, 3, 1, 2, 2, 2, 1, 1, 2, 2, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)}, {'tableName': ('T40202',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48), 'SeriesCode': ('A020RL', 'A253RZ', 'B638RZ', 'A639RZ', 'B686RZ', 'B687RZ', 'CB000006', 'CB000005', 'A640RZ', 'B688RZ', 'B850RZ', 'B689RZ', 'B641RZ', 'A642RZ', 'B690RZ', 'B691RZ', 'A643RZ', 'A646RZ', 'Y800RZ', 'Y801RZ', 'B684RZ', 'Y802RZ', 'Y803RZ', 'B980RZ', 'A021RL', 'A255RZ', 'B647RZ', 'CB000004', 'A820RZ', 'CB000007', 'B648RZ', 'B696RZ', 'A650RZ', 'B932RZ', 'B852RZ', 'B853RZ', 'B651RZ', 'A652RZ', 'B697RZ', 'B698RZ', 'A653RZ', 'B656RZ', 'Y804RZ', 'Y805RZ', 'B908RZ', 'Y806RZ', 'Y807RZ', 'B910RZ'), 'Indentations': (0, 0, 1, 1, 2, 2, 3, 3, 1, 2, 2, 2, 1, 1, 2, 2, 1, 0, 1, 1, 1, 1, 1, 1, 2, 0, 1, 1, 2, 2, 3, 3, 1, 2, 2, 2, 1, 1, 2, 2, 1, 0, 1, 1, 1, 1, 1, 1)}, {'tableName': ('T40203',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55), 'SeriesCode': ('B020RA', 'B253RA', 'B638RA', 'B639RA', 'B686RA', 'B687RA', 'IB000006', 'IB000005', 'B640RA', 'B688RA', 'B850RA', 'B689RA', 'B641RA', 'B642RA', 'B690RA', 'B691RA', 'B643RA', 'B646RA', 'Y800RA', 'Y801RA', 'B684RA', 'Y802RA', 'Y803RA', 'B980RA', 'B021RA', 'B255RA', 'B647RA', 'IB000004', 'B820RA', 'IB000007', 'B648RA', 'B696RA', 'B650RA', 'B932RA', 'B852RA', 'B853RA', 'B651RA', 'B652RA', 'B697RA', 'B698RA', 'B653RA', 'B656RA', 'Y804RA', 'Y805RA', 'B908RA', 'Y806RA', 'Y807RA', 'B910RA', 'B332RA', 'B339RA', 'B181RA', 'B182RA', 'B333RA', 'B340RA', 'B187RA'), 'Indentations': (0, 0, 1, 1, 2, 2, 3, 3, 1, 2, 2, 2, 1, 1, 2, 2, 1, 0, 1, 1, 1, 1, 1, 1, 2, 0, 1, 1, 2, 2, 3, 3, 1, 2, 2, 2, 1, 1, 2, 2, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)}, {'tableName': ('T40204',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55), 'SeriesCode': ('B020RG', 'B253RG', 'B638RG', 'B639RG', 'B686RG', 'B687RG', 'IA000006', 'IA000005', 'B640RG', 'B688RG', 'B850RG', 'B689RG', 'B641RG', 'B642RG', 'B690RG', 'B691RG', 'B643RG', 'B646RG', 'Y800RG', 'Y801RG', 'B684RG', 'Y802RG', 'Y803RG', 'B980RG', 'B021RG', 'B255RG', 'B647RG', 'IA000004', 'B820RG', 'IA000007', 'B648RG', 'B696RG', 'B650RG', 'B932RG', 'B852RG', 'B853RG', 'B651RG', 'B652RG', 'B697RG', 'B698RG', 'B653RG', 'B656RG', 'Y804RG', 'Y805RG', 'B908RG', 'Y806RG', 'Y807RG', 'B910RG', 'B332RG', 'B339RG', 'B181RG', 'B182RG', 'B333RG', 'B340RG', 'B187RG'), 'Indentations': (0, 0, 1, 1, 2, 2, 3, 3, 1, 2, 2, 2, 1, 1, 2, 2, 1, 0, 1, 1, 1, 1, 1, 1, 2, 0, 1, 1, 2, 2, 3, 3, 1, 2, 2, 2, 1, 1, 2, 2, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)}, {'tableName': ('T40205',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55), 'SeriesCode': ('B020RC', 'A253RC', 'B638RC', 'A639RC', 'B686RC', 'B687RC', 'LA000006', 'LA000005', 'A640RC', 'B688RC', 'B850RC', 'B689RC', 'B641RC', 'A642RC', 'B690RC', 'B691RC', 'A643RC', 'A646RC', 'Y800RC', 'Y801RC', 'B684RC', 'Y802RC', 'Y803RC', 'B980RC', 'B021RC', 'A255RC', 'B647RC', 'LA000004', 'A820RC', 'LA000007', 'B648RC', 'B696RC', 'A650RC', 'B932RC', 'B852RC', 'B853RC', 'B651RC', 'A652RC', 'B697RC', 'B698RC', 'A653RC', 'B656RC', 'Y804RC', 'Y805RC', 'B908RC', 'Y806RC', 'Y807RC', 'B910RC', 'A332RC', 'A339RC', 'B181RC', 'A182RC', 'A333RC', 'A340RC', 'A187RC'), 'Indentations': (0, 0, 1, 1, 2, 2, 3, 3, 1, 2, 2, 2, 1, 1, 2, 2, 1, 0, 1, 1, 1, 1, 1, 1, 2, 0, 1, 1, 2, 2, 3, 3, 1, 2, 2, 2, 1, 1, 2, 2, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)}, {'tableName': ('T40206',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57), 'SeriesCode': ('A020RX', 'A253RX', 'B638RX', 'A639RX', 'B686RX', 'B687RX', 'LB000006', 'LB000005', 'A640RX', 'B688RX', 'B850RX', 'B689RX', 'B641RX', 'A642RX', 'B690RX', 'B691RX', 'A643RX', 'A646RX', 'Y800RX', 'Y801RX', 'B684RX', 'Y802RX', 'Y803RX', 'B980RX', 'A977RX', 'A021RX', 'A255RX', 'B647RX', 'LB000004', 'A820RX', 'LB000007', 'B648RX', 'B696RX', 'A650RX', 'B932RX', 'B852RX', 'B853RX', 'B651RX', 'A652RX', 'B697RX', 'B698RX', 'A653RX', 'B656RX', 'Y804RX', 'Y805RX', 'B908RX', 'Y806RX', 'Y807RX', 'B910RX', 'A978RX', 'A332RX', 'A339RX', 'B181RX', 'A182RX', 'A333RX', 'A340RX', 'A187RX'), 'Indentations': (0, 0, 1, 1, 2, 2, 3, 3, 1, 2, 2, 2, 1, 1, 2, 2, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 2, 2, 3, 3, 1, 2, 2, 2, 1, 1, 2, 2, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1)}, {'tableName': ('T4030A',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39), 'SeriesCode': ('B1229C', 'B1087C', 'B1086C', 'B1085C', 'B920RC', 'B1607C', 'W320RC', 'B2628C', 'B1237C', 'A1073C', 'B1231C', 'B1095C', 'B1094C', 'B1093C', 'B1091C', 'B921RC', 'W370RC', 'QQ12441', 'B1092C', 'A1074C', 'B1260C', 'A2031C', 'A2032C', 'A2033C', 'A1608C', 'A2034C', 'A1072C', 'LA000038', 'LA000039', 'LA000040', 'B1097C', 'LA000041', 'B1265C', 'A2031C', 'A2032C', 'A2036C', 'A2037C', 'A1610C', 'A124RC'), 'Indentations': (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)}, {'tableName': ('T4030B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59), 'SeriesCode': ('B1232C', 'B1087C', 'B1233C', 'B1234C', 'A253RC', 'B1235C', 'B1236C', 'B1237C', 'B1238C', 'B1607C', 'A646RC', 'B1239C', 'B1240C', 'B1241C', 'W320RC', 'B645RC', 'LA000042', 'LA000033', 'LA000034', 'LA000035', 'B1242C', 'B1095C', 'B1243C', 'B1091C', 'B1244C', 'A255RC', 'B1245C', 'B1246C', 'B1247C', 'B656RC', 'B1248C', 'B1249C', 'B1250C', 'W370RC', 'A655RC', 'B1089C', 'B1264C', 'B1655C', 'A123RC', 'B1260C', 'A2031C', 'A2033C', 'B1237C', 'A1608C', 'A1072C', 'LA000038', 'LA000039', 'LA000040', 'LA000041', 'B1265C', 'A2031C', 'A2036C', 'B1237C', 'A1610C', 'A124RC', 'W371RC', 'W372RC', 'W373RC', 'W167RC'), 'Indentations': (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)}, {'tableName': ('T50100',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64), 'SeriesCode': ('A929RC', 'W201RC', 'W202RC', 'A127RC', 'B057RC', 'B058RC', 'A059RC', 'W986RC', 'A071RC', 'A922RC', 'A923RC', 'A924RC', 'A262RC', 'A024RC', 'W276RC', 'W279RC', 'A264RC', 'A918RC', 'A919RC', 'A928RC', 'W170RC', 'A006RC', 'W987RC', 'W988RC', 'A782RC', 'A787RC', 'A799RC', 'W167RC', 'W999RC', 'W989RC', 'W990RC', 'W991RC', 'W992RC', 'W993RC', 'W162RC', 'W994RC', 'W995RC', 'W996RC', 'AD01RC', 'AD02RC', 'AD03RC', 'A030RC', 'A126RC', 'W997RC', 'W998RC', 'A927RC', 'A926RC', 'A925RC', 'W171RC', 'A557RC', 'W790RC', 'W791RC', 'A889RC', 'A890RC', 'A893RC', 'W206RC', 'W207RC', 'W771RC', 'W772RC', 'W773RC', 'W774RC', 'W775RC', 'W776RC', 'W777RC'), 'Indentations': (0, 0, 1, 2, 3, 3, 3, 2, 3, 1, 2, 2, 0, 1, 2, 2, 1, 2, 2, 2, 0, 1, 2, 2, 1, 2, 2, 0, 1, 2, 2, 1, 2, 2, 0, 1, 2, 2, 1, 2, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 3, 3, 2, 3, 3, 1, 1, 1, 2, 3, 3, 2, 3, 3)}, {'tableName': ('T50203',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56), 'SeriesCode': ('W170RA', 'A262RA', 'W171RA', 'A006RA', 'A024RA', 'A557RA', 'A007RA', 'A024RA', 'A560RA', 'A008RA', 'A753RA', 'A593RA', 'B009RA', 'B188RA', 'A594RA', 'Y033RA', 'Y080RA', 'Y081RA', 'Y001RA', 'Y083RA', 'Y084RA', 'A011RA', 'A754RA', 'A748RA', 'ZZZZZZ', 'A782RA', 'A264RA', 'A889RA', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'B893RA', 'A760RA', 'B894RA', 'A895RA', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'B899RA', 'Y054RA', 'Y085RA', 'Y086RA', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'Y090RA', 'Y055RA', 'Y091RA', 'Y092RA', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'Y096RA', 'W172RA', 'A262RA', 'W173RA'), 'Indentations': (0, 1, 2, 0, 0, 0, 1, 1, 1, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 2, 1, 0, 0, 0, 1, 2, 3, 2, 1, 1, 1, 2, 3, 4, 3, 1, 1, 1, 2, 3, 4, 3, 1, 1, 1, 2, 3, 4, 3, 1, 1, 1)}, {'tableName': ('T50205',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56), 'SeriesCode': ('W170RC', 'A262RC', 'W171RC', 'A006RC', 'A024RC', 'A557RC', 'A007RC', 'A024RC', 'A560RC', 'A008RC', 'A753RC', 'A593RC', 'B009RC', 'B188RC', 'A594RC', 'Y033RC', 'Y080RC', 'Y081RC', 'Y001RC', 'Y083RC', 'Y084RC', 'A011RC', 'A754RC', 'A748RC', 'A014RC', 'A782RC', 'A264RC', 'A889RC', 'A890RC', 'B891RC', 'B892RC', 'A893RC', 'A760RC', 'A894RC', 'A895RC', 'A896RC', 'B897RC', 'B898RC', 'B899RC', 'Y054RC', 'Y085RC', 'Y086RC', 'Y087RC', 'Y088RC', 'Y089RC', 'Y090RC', 'Y055RC', 'Y091RC', 'Y092RC', 'Y093RC', 'Y094RC', 'Y095RC', 'Y096RC', 'W172RC', 'A262RC', 'W173RC'), 'Indentations': (0, 1, 2, 0, 0, 0, 1, 1, 1, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 2, 1, 0, 0, 0, 1, 2, 3, 2, 1, 1, 1, 2, 3, 4, 3, 1, 1, 1, 2, 3, 4, 3, 1, 1, 1, 2, 3, 4, 3, 1, 1, 1)}, {'tableName': ('T50206',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56), 'SeriesCode': ('W170RX', 'A262RX', 'W171RX', 'A006RX', 'A024RX', 'A557RX', 'A007RX', 'A024RX', 'A560RX', 'A008RX', 'A753RX', 'A593RX', 'B009RX', 'B188RX', 'A594RX', 'Y033RX', 'Y080RX', 'Y081RX', 'Y001RX', 'Y083RX', 'Y084RX', 'A011RX', 'A754RX', 'A748RX', 'A014RX', 'A782RX', 'A264RX', 'A889RX', 'A890RX', 'B891RX', 'B892RX', 'B893RX', 'A760RX', 'B894RX', 'A895RX', 'A896RX', 'B897RX', 'B898RX', 'B899RX', 'Y054RX', 'Y085RX', 'Y086RX', 'Y087RX', 'Y088RX', 'Y089RX', 'Y090RX', 'Y055RX', 'Y091RX', 'Y092RX', 'Y093RX', 'Y094RX', 'Y095RX', 'Y096RX', 'W172RX', 'A262RX', 'W173RX'), 'Indentations': (0, 1, 2, 0, 0, 0, 1, 1, 1, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 2, 1, 0, 0, 0, 1, 2, 3, 2, 1, 1, 1, 2, 3, 4, 3, 1, 1, 1, 2, 3, 4, 3, 1, 1, 1, 2, 3, 4, 3, 1, 1, 1)}, {'tableName': ('T50301',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31), 'SeriesCode': ('A007RL', 'A008RL', 'A009RL', 'W001RL', 'C307RL', 'W003RL', 'E318RL', 'W004RL', 'Y033RL', 'Y034RL', 'B935RL', 'A937RL', 'A680RL', 'A681RL', 'A862RL', 'Y001RL', 'B985RL', 'Y006RL', 'Y020RL', 'A011RL', 'A012RL', 'A943RL', 'A944RL', 'C292RL', 'A863RL', 'B013RL', 'A349RL', 'W040RL', 'A771RL', 'A756RL', 'A679RL'), 'Indentations': (0, 0, 1, 2, 2, 2, 2, 2, 1, 2, 3, 3, 2, 2, 2, 1, 2, 2, 2, 0, 1, 2, 3, 3, 2, 1, 1, 1, 2, 2, 1)}, {'tableName': ('T50302',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31), 'SeriesCode': ('A007RL', 'A008RZ', 'B009RZ', 'W001RZ', 'C307RZ', 'W003RZ', 'E318RZ', 'W004RZ', 'Y033RZ', 'Y034RZ', 'B935RZ', 'A937RZ', 'A680RZ', 'A681RZ', 'A862RZ', 'Y001RZ', 'B985RZ', 'Y006RZ', 'Y020RZ', 'A011RZ', 'A012RZ', 'A943RZ', 'A944RZ', 'C292RZ', 'A863RZ', 'B013RZ', 'A349RZ', 'W040RZ', 'A771RZ', 'A756RZ', 'A679RZ'), 'Indentations': (0, 0, 1, 2, 2, 2, 2, 2, 1, 2, 3, 3, 2, 2, 2, 1, 2, 2, 2, 0, 1, 2, 3, 3, 2, 1, 1, 1, 2, 2, 1)}, {'tableName': ('T50303',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31), 'SeriesCode': ('A007RA', 'A008RA', 'B009RA', 'W001RA', 'B307RA', 'W003RA', 'E318RA', 'W004RA', 'Y033RA', 'Y034RA', 'B935RA', 'A937RA', 'A680RA', 'A681RA', 'A862RA', 'Y001RA', 'B985RA', 'Y006RA', 'Y020RA', 'A011RA', 'B012RA', 'B943RA', 'B944RA', 'B292RA', 'A863RA', 'B013RA', 'A349RA', 'W040RA', 'A771RA', 'A756RA', 'B679RA'), 'Indentations': (0, 0, 1, 2, 2, 2, 2, 2, 1, 2, 3, 3, 2, 2, 2, 1, 2, 2, 2, 0, 1, 2, 3, 3, 2, 1, 1, 1, 2, 2, 1)}, {'tableName': ('T50304',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31), 'SeriesCode': ('B007RG', 'B008RG', 'B009RG', 'W001RG', 'B307RG', 'W003RG', 'E318RG', 'W004RG', 'Y033RG', 'Y034RG', 'B935RG', 'A937RG', 'A680RG', 'A681RG', 'A862RG', 'Y001RG', 'B985RG', 'Y006RG', 'Y020RG', 'B011RG', 'B012RG', 'B943RG', 'B944RG', 'B292RG', 'A863RG', 'B013RG', 'A349RG', 'W040RG', 'A771RG', 'A756RG', 'B679RG'), 'Indentations': (0, 0, 1, 2, 2, 2, 2, 2, 1, 2, 3, 3, 2, 2, 2, 1, 2, 2, 2, 0, 1, 2, 3, 3, 2, 1, 1, 1, 2, 2, 1)}, {'tableName': ('T50305',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31), 'SeriesCode': ('A007RC', 'A008RC', 'B009RC', 'W001RC', 'C307RC', 'W003RC', 'E318RC', 'W004RC', 'Y033RC', 'Y034RC', 'B935RC', 'A937RC', 'A680RC', 'A681RC', 'A862RC', 'Y001RC', 'B985RC', 'Y006RC', 'Y020RC', 'A011RC', 'A012RC', 'A943RC', 'A944RC', 'C292RC', 'A863RC', 'B013RC', 'A349RC', 'W040RC', 'A771RC', 'A756RC', 'A679RC'), 'Indentations': (0, 0, 1, 2, 2, 2, 2, 2, 1, 2, 3, 3, 2, 2, 2, 1, 2, 2, 2, 0, 1, 2, 3, 3, 2, 1, 1, 1, 2, 2, 1)}, {'tableName': ('T50306',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32), 'SeriesCode': ('A007RX', 'A008RX', 'B009RX', 'W001RX', 'C307RX', 'W003RX', 'E318RX', 'W004RX', 'Y033RX', 'Y034RX', 'B935RX', 'A937RX', 'A680RX', 'A681RX', 'A862RX', 'Y001RX', 'B985RX', 'Y006RX', 'Y020RX', 'A011RX', 'A012RX', 'A943RX', 'A944RX', 'C292RX', 'A863RX', 'B013RX', 'A972RX', 'A349RX', 'W040RX', 'A771RX', 'A756RX', 'A679RX'), 'Indentations': (0, 0, 1, 2, 2, 2, 2, 2, 1, 2, 3, 3, 2, 2, 2, 1, 2, 2, 2, 0, 1, 2, 3, 3, 2, 1, 0, 1, 1, 2, 2, 1)}, {'tableName': ('T50401',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47), 'SeriesCode': ('A349RL', 'A009RL', 'W001RL', 'W031RL', 'W032RL', 'C311RL', 'W033RL', 'W034RL', 'W035RL', 'W036RL', 'W037RL', 'W038RL', 'W039RL', 'C307RL', 'W003RL', 'W028RL', 'C571RL', 'W029RL', 'C314RL', 'E318RL', 'C319RL', 'C320RL', 'W004RL', 'C309RL', 'W044RL', 'W045RL', 'W046RL', 'W047RL', 'W048RL', 'W049RL', 'C316RL', 'W050RL', 'C321RL', 'ZZZZZZ', 'A012RL', 'A943RL', 'A944RL', 'C292RL', 'A863RL', 'A945RL', 'C295RL', 'A946RL', 'A758RL', 'ZZZZZZ', 'W040RL', 'A771RL', 'A756RL'), 'Indentations': (0, 0, 1, 2, 2, 3, 4, 4, 3, 2, 2, 2, 2, 1, 1, 2, 3, 3, 2, 1, 2, 2, 1, 2, 2, 2, 2, 2, 3, 3, 2, 2, 2, 2, 0, 1, 2, 2, 1, 2, 2, 2, 2, 2, 1, 2, 2)}, {'tableName': ('T50402',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47), 'SeriesCode': ('A349RL', 'B009RW', 'W001RW', 'W031RW', 'W032RW', 'C311RW', 'W033RW', 'W034RW', 'W035RW', 'W036RW', 'W037RW', 'W038RW', 'W039RW', 'C307RW', 'W003RW', 'W028RW', 'C571RW', 'W029RW', 'C314RW', 'E318RW', 'C319RW', 'C320RW', 'W004RW', 'C309RW', 'W044RW', 'W045RW', 'W046RW', 'W047RW', 'W048RW', 'W049RW', 'C316RW', 'W050RW', 'C321RW', 'E322RW', 'A012RW', 'A943RW', 'A944RW', 'C292RW', 'A863RW', 'A945RW', 'C295RW', 'A946RW', 'A758RW', 'A759RW', 'W040RW', 'A771RW', 'A756RW'), 'Indentations': (0, 0, 1, 2, 2, 3, 4, 4, 3, 2, 2, 2, 2, 1, 1, 2, 3, 3, 2, 1, 2, 2, 1, 2, 2, 2, 2, 2, 3, 3, 2, 2, 2, 2, 0, 1, 2, 2, 1, 2, 2, 2, 2, 2, 1, 2, 2)}, {'tableName': ('T50403',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47), 'SeriesCode': ('A349RA', 'B009RA', 'W001RA', 'W031RA', 'W032RA', 'C311RA', 'W033RA', 'W034RA', 'W035RA', 'W036RA', 'W037RA', 'W038RA', 'W039RA', 'B307RA', 'W003RA', 'W028RA', 'B571RA', 'W029RA', 'B314RA', 'E318RA', 'B319RA', 'B320RA', 'W004RA', 'C309RA', 'W044RA', 'W045RA', 'W046RA', 'W047RA', 'W048RA', 'W049RA', 'B316RA', 'W050RA', 'B321RA', 'ZZZZZZ', 'B012RA', 'B943RA', 'B944RA', 'B292RA', 'A863RA', 'B945RA', 'B295RA', 'B946RA', 'B758RA', 'ZZZZZZ', 'W040RA', 'A771RA', 'A756RA'), 'Indentations': (0, 0, 1, 2, 2, 3, 4, 4, 3, 2, 2, 2, 2, 1, 1, 2, 3, 3, 2, 1, 2, 2, 1, 2, 2, 2, 2, 2, 3, 3, 2, 2, 2, 2, 0, 1, 2, 2, 1, 2, 2, 2, 2, 2, 1, 2, 2)}, {'tableName': ('T50404',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47), 'SeriesCode': ('A349RG', 'B009RG', 'W001RG', 'W031RG', 'W032RG', 'C311RG', 'W033RG', 'W034RG', 'W035RG', 'W036RG', 'W037RG', 'W038RG', 'W039RG', 'B307RG', 'W003RG', 'W028RG', 'B571RG', 'W029RG', 'B314RG', 'E318RG', 'B319RG', 'B320RG', 'W004RG', 'C309RG', 'W044RG', 'W045RG', 'W046RG', 'W047RG', 'W048RG', 'W049RG', 'B316RG', 'W050RG', 'B321RG', 'ZZZZZZ', 'B012RG', 'B943RG', 'B944RG', 'B292RG', 'A863RG', 'B945RG', 'B295RG', 'B946RG', 'B758RG', 'ZZZZZZ', 'W040RG', 'A771RG', 'A756RG'), 'Indentations': (0, 0, 1, 2, 2, 3, 4, 4, 3, 2, 2, 2, 2, 1, 1, 2, 3, 3, 2, 1, 2, 2, 1, 2, 2, 2, 2, 2, 3, 3, 2, 2, 2, 2, 0, 1, 2, 2, 1, 2, 2, 2, 2, 2, 1, 2, 2)}, {'tableName': ('T50405',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47), 'SeriesCode': ('A349RC', 'B009RC', 'W001RC', 'W031RC', 'W032RC', 'C311RC', 'W033RC', 'W034RC', 'W035RC', 'W036RC', 'W037RC', 'W038RC', 'W039RC', 'C307RC', 'W003RC', 'W028RC', 'C571RC', 'W029RC', 'C314RC', 'E318RC', 'C319RC', 'C320RC', 'W004RC', 'C309RC', 'W044RC', 'W045RC', 'W046RC', 'W047RC', 'W048RC', 'W049RC', 'C316RC', 'W050RC', 'C321RC', 'E322RC', 'A012RC', 'A943RC', 'A944RC', 'C292RC', 'A863RC', 'A945RC', 'C295RC', 'A946RC', 'A758RC', 'A759RC', 'W040RC', 'A771RC', 'A756RC'), 'Indentations': (0, 0, 1, 2, 2, 3, 4, 4, 3, 2, 2, 2, 2, 1, 1, 2, 3, 3, 2, 1, 2, 2, 1, 2, 2, 2, 2, 2, 3, 3, 2, 2, 2, 2, 0, 1, 2, 2, 1, 2, 2, 2, 2, 2, 1, 2, 2)}, {'tableName': ('T50406',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48), 'SeriesCode': ('A349RX', 'B009RX', 'W001RX', 'W031RX', 'W032RX', 'C311RX', 'W033RX', 'W034RX', 'W035RX', 'W036RX', 'W037RX', 'W038RX', 'W039RX', 'C307RX', 'W003RX', 'W028RX', 'C571RX', 'W029RX', 'C314RX', 'E318RX', 'C319RX', 'C320RX', 'W004RX', 'C309RX', 'W044RX', 'W045RX', 'W046RX', 'W047RX', 'W048RX', 'W049RX', 'C316RX', 'W050RX', 'C321RX', 'E322RX', 'A012RX', 'A943RX', 'A944RX', 'C292RX', 'A863RX', 'A945RX', 'C295RX', 'A946RX', 'A758RX', 'A759RX', 'A971RX', 'W040RX', 'A771RX', 'A756RX'), 'Indentations': (0, 0, 1, 2, 2, 3, 4, 4, 3, 2, 2, 2, 2, 1, 1, 2, 3, 3, 2, 1, 2, 2, 1, 2, 2, 2, 2, 2, 3, 3, 2, 2, 2, 2, 0, 1, 2, 2, 1, 2, 2, 2, 2, 2, 0, 1, 2, 2)}, {'tableName': ('T50501',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34), 'SeriesCode': ('Y032RL', 'Y033RL', 'Y034RL', 'B935RL', 'C275RL', 'W176RL', 'W177RL', 'C285RL', 'B936RL', 'A680RL', 'C263RL', 'A668RL', 'C271RL', 'C272RL', 'C273RL', 'C276RL', 'A681RL', 'C279RL', 'W178RL', 'W179RL', 'C280RL', 'C281RL', 'C282RL', 'C283RL', 'A682RL', 'A667RL', 'C268RL', 'C269RL', 'C270RL', 'C570RL', 'A670RL', 'C286RL', 'C287RL', 'B013RL'), 'Indentations': (0, 0, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 1, 2, 3, 3, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 1, 0)}, {'tableName': ('T50502',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34), 'SeriesCode': ('Y032RL', 'Y033RW', 'Y034RW', 'B935RW', 'C275RW', 'W176RW', 'W177RW', 'C285RW', 'B936RW', 'A680RW', 'C263RW', 'A668RW', 'C271RW', 'C272RW', 'C273RW', 'C276RW', 'A681RW', 'C279RW', 'W178RW', 'W179RW', 'C280RW', 'C281RW', 'C282RW', 'C283RW', 'A682RW', 'A667RW', 'C268RW', 'C269RW', 'C270RW', 'C570RW', 'A670RW', 'C286RW', 'C287RW', 'B013RW'), 'Indentations': (0, 0, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 1, 2, 3, 3, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 1, 0)}, {'tableName': ('T50503',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34), 'SeriesCode': ('Y032RA', 'Y033RA', 'Y034RA', 'B935RA', 'B275RA', 'W176RA', 'W177RA', 'B285RA', 'B936RA', 'A680RA', 'B263RA', 'B668RA', 'B271RA', 'B272RA', 'B273RA', 'B276RA', 'A681RA', 'B279RA', 'W178RA', 'W179RA', 'B280RA', 'B281RA', 'B282RA', 'B283RA', 'B682RA', 'B667RA', 'B268RA', 'B269RA', 'B270RA', 'B570RA', 'B670RA', 'B286RA', 'B287RA', 'B013RA'), 'Indentations': (0, 0, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 1, 2, 3, 3, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 1, 0)}, {'tableName': ('T50504',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34), 'SeriesCode': ('Y032RG', 'Y033RG', 'Y034RG', 'B935RG', 'B275RG', 'W176RG', 'W177RG', 'B285RG', 'B936RG', 'A680RG', 'B263RG', 'B668RG', 'B271RG', 'B272RG', 'B273RG', 'B276RG', 'A681RG', 'B279RG', 'W178RG', 'W179RG', 'B280RG', 'B281RG', 'B282RG', 'B283RG', 'B682RG', 'B667RG', 'B268RG', 'B269RG', 'B270RG', 'B570RG', 'B670RG', 'B286RG', 'B287RG', 'B013RG'), 'Indentations': (0, 0, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 1, 2, 3, 3, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 1, 0)}, {'tableName': ('T50505',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41), 'SeriesCode': ('Y032RC', 'Y033RC', 'Y034RC', 'B935RC', 'C275RC', 'W176RC', 'W177RC', 'C285RC', 'B936RC', 'A680RC', 'C263RC', 'A668RC', 'C271RC', 'C272RC', 'C273RC', 'C276RC', 'A681RC', 'C279RC', 'W178RC', 'W179RC', 'C280RC', 'C281RC', 'C282RC', 'C283RC', 'A682RC', 'A667RC', 'C268RC', 'C269RC', 'C270RC', 'C570RC', 'A670RC', 'C286RC', 'C287RC', 'B013RC', 'Y032RC', 'B549RC', 'B550RC', 'B554RC', 'B555RC', 'B556RC', 'Y035RC'), 'Indentations': (0, 0, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 1, 2, 3, 3, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 1, 0, 1, 1, 1, 1, 1, 1, 1)}, {'tableName': ('T50506',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35), 'SeriesCode': ('Y032RX', 'Y033RX', 'Y034RX', 'B935RX', 'C275RX', 'W176RX', 'W177RX', 'C285RX', 'B936RX', 'A680RX', 'C263RX', 'A668RX', 'C271RX', 'C272RX', 'C273RX', 'C276RX', 'A681RX', 'C279RX', 'W178RX', 'W179RX', 'C280RX', 'C281RX', 'C282RX', 'C283RX', 'A682RX', 'A667RX', 'C268RX', 'C269RX', 'C270RX', 'C570RX', 'A670RX', 'C286RX', 'C287RX', 'B013RX', 'Y036RX'), 'Indentations': (0, 0, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 1, 2, 3, 3, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 1, 0, 0)}, {'tableName': ('T50601',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27), 'SeriesCode': ('Y001RL', 'B985RL', 'Y003RL', 'Y004RL', 'Y005RL', 'Y006RL', 'Y007RL', 'Y027RL', 'Y009RL', 'Y010RL', 'Y012RL', 'Y013RL', 'Y014RL', 'Y015RL', 'Y016RL', 'Y028RL', 'Y029RL', 'Y008RL', 'Y017RL', 'Y018RL', 'Y019RL', 'Y020RL', 'Y021RL', 'Y022RL', 'Y023RL', 'Y024RL', 'Y025RL'), 'Indentations': (0, 0, 1, 1, 1, 0, 1, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 1, 2, 2, 0, 1, 1, 1, 1, 1)}, {'tableName': ('T50602',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27), 'SeriesCode': ('Y001RL', 'B985RW', 'Y003RW', 'Y004RW', 'Y005RW', 'Y006RW', 'Y007RW', 'Y027RW', 'Y009RW', 'Y010RW', 'Y012RW', 'Y013RW', 'Y014RW', 'Y015RW', 'Y016RW', 'Y028RW', 'Y029RW', 'Y008RW', 'Y017RW', 'Y018RW', 'Y019RW', 'Y020RW', 'Y021RW', 'Y022RW', 'Y023RW', 'Y024RW', 'Y025RW'), 'Indentations': (0, 0, 1, 1, 1, 0, 1, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 1, 2, 2, 0, 1, 1, 1, 1, 1)}, {'tableName': ('T50603',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27), 'SeriesCode': ('Y001RA', 'B985RA', 'Y003RA', 'Y004RA', 'Y005RA', 'Y006RA', 'Y007RA', 'Y027RA', 'Y009RA', 'Y010RA', 'Y012RA', 'Y013RA', 'Y014RA', 'Y015RA', 'Y016RA', 'Y028RA', 'Y029RA', 'Y008RA', 'Y017RA', 'Y018RA', 'Y019RA', 'Y020RA', 'Y021RA', 'Y022RA', 'Y023RA', 'Y024RA', 'Y025RA'), 'Indentations': (0, 0, 1, 1, 1, 0, 1, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 1, 2, 2, 0, 1, 1, 1, 1, 1)}, {'tableName': ('T50604',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27), 'SeriesCode': ('Y001RG', 'B985RG', 'Y003RG', 'Y004RG', 'Y005RG', 'Y006RG', 'Y007RG', 'Y027RG', 'Y009RG', 'Y010RG', 'Y012RG', 'Y013RG', 'Y014RG', 'Y015RG', 'Y016RG', 'Y028RG', 'Y029RG', 'Y008RG', 'Y017RG', 'Y018RG', 'Y019RG', 'Y020RG', 'Y021RG', 'Y022RG', 'Y023RG', 'Y024RG', 'Y025RG'), 'Indentations': (0, 0, 1, 1, 1, 0, 1, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 1, 2, 2, 0, 1, 1, 1, 1, 1)}, {'tableName': ('T50605',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27), 'SeriesCode': ('Y001RC', 'B985RC', 'Y003RC', 'Y004RC', 'Y005RC', 'Y006RC', 'Y007RC', 'Y027RC', 'Y009RC', 'Y010RC', 'Y012RC', 'Y013RC', 'Y014RC', 'Y015RC', 'Y016RC', 'Y028RC', 'Y029RC', 'Y008RC', 'Y017RC', 'Y018RC', 'Y019RC', 'Y020RC', 'Y021RC', 'Y022RC', 'Y023RC', 'Y024RC', 'Y025RC'), 'Indentations': (0, 0, 1, 1, 1, 0, 1, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 1, 2, 2, 0, 1, 1, 1, 1, 1)}, {'tableName': ('T50606',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28), 'SeriesCode': ('Y001RX', 'B985RX', 'Y003RX', 'Y004RX', 'Y005RX', 'Y006RX', 'Y007RX', 'Y027RX', 'Y009RX', 'Y010RX', 'Y012RX', 'Y013RX', 'Y014RX', 'Y015RX', 'Y016RX', 'Y028RX', 'Y029RX', 'Y008RX', 'Y017RX', 'Y018RX', 'Y019RX', 'Y020RX', 'Y021RX', 'Y022RX', 'Y023RX', 'Y024RX', 'Y025RX', 'Y026RX'), 'Indentations': (0, 0, 1, 1, 1, 0, 1, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 1, 2, 2, 0, 1, 1, 1, 1, 1, 0)}, {'tableName': ('T50705A',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25), 'SeriesCode': ('A014RC', 'B018RC', 'A015RC', 'B016RC', 'B017RC', 'A150RC', 'A624RC', 'A625RC', 'A658RC', 'A661RC', 'A664RC', 'A151RC', 'A626RC', 'A627RC', 'A152RC', 'A628RC', 'A629RC', 'A153RC', 'A630RC', 'A631RC', 'A632RC', 'A633RC', 'A154RC', 'A636RC', 'A637RC'), 'Indentations': (0, 0, 0, 1, 2, 1, 2, 2, 1, 2, 2, 3, 4, 4, 3, 4, 4, 1, 2, 3, 3, 2, 1, 2, 2)}, {'tableName': ('T50705B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26), 'SeriesCode': ('A014RC', 'B018RC', 'N541RC', 'N150RC', 'N624RC', 'N625RC', 'N658RC', 'N661RC', 'N664RC', 'N153RC', 'N631RC', 'N542RC', 'N543RC', 'N558RC', 'N154RC', 'A014RC', 'N355RC', 'N357RC', 'A015RC', 'B016RC', 'B017RC', 'N658RC', 'N151RC', 'N626RC', 'N627RC', 'N152RC'), 'Indentations': (0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 2, 2, 1, 2, 2, 1, 2, 3, 3, 2)}, {'tableName': ('T50706A',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24), 'SeriesCode': ('A014RX', 'B018RX', 'A015RX', 'A150RX', 'C624RX', 'C625RX', 'A658RX', 'A661RX', 'A664RX', 'A151RX', 'C626RX', 'C627RX', 'A152RX', 'C628RX', 'C629RX', 'A153RX', 'C630RX', 'C631RX', 'A632RX', 'C633RX', 'A154RX', 'C636RX', 'C637RX', 'A969RX'), 'Indentations': (0, 0, 0, 1, 2, 2, 1, 2, 2, 3, 4, 4, 3, 4, 4, 1, 2, 3, 3, 2, 1, 2, 2, 0)}, {'tableName': ('T50706B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25), 'SeriesCode': ('A014RX', 'B018RX', 'N541RX', 'N150RX', 'N624RX', 'N625RX', 'N658RX', 'N661RX', 'N664RX', 'N153RX', 'N631RX', 'N542RX', 'N543RX', 'N558RX', 'N154RX', 'N969RX', 'A014RX', 'N355RX', 'N357RX', 'A015RX', 'N658RX', 'N151RX', 'N626RX', 'N627RX', 'N152RX'), 'Indentations': (0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 2, 2, 1, 1, 2, 3, 3, 2)}, {'tableName': ('T50805A',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30), 'SeriesCode': ('A371RC', 'B372RC', 'A373RC', 'A374RC', 'A375RC', 'A376RC', 'B377RC', 'B378RC', 'A379RC', 'A380RC', 'A381RC', 'A802RC', 'B803RC', 'B804RC', 'A805RC', 'B806RC', 'B807RC', 'A382RC', 'B383RC', 'B864RC', 'A865RC', 'B384RC', 'A385RC', 'B386RC', 'B387RC', 'A809RC', 'A810RC', 'A811RC', 'A812RC', 'A813RC'), 'Indentations': (0, 0, 0, 1, 2, 1, 2, 2, 1, 2, 2, 3, 4, 4, 3, 4, 4, 1, 2, 3, 3, 2, 1, 2, 2, 2, 2, 1, 1, 1)}, {'tableName': ('T50805B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29), 'SeriesCode': ('A371RC', 'B372RC', 'N238RC', 'N376RC', 'N377RC', 'N378RC', 'N379RC', 'N380RC', 'N381RC', 'N382RC', 'N864RC', 'N239RC', 'N240RC', 'N865RC', 'N385RC', 'A371RC', 'N241RC', 'N242RC', 'A373RC', 'N379RC', 'N802RC', 'N803RC', 'N804RC', 'N805RC', 'A809RC', 'A810RC', 'A811RC', 'A812RC', 'A813RC'), 'Indentations': (0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 2, 2, 1, 1, 2, 3, 3, 2, 2, 2, 2, 2, 2)}, {'tableName': ('T50806A',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31), 'SeriesCode': ('A371RX', 'B372RX', 'A373RX', 'A374RX', 'A375RX', 'A376RX', 'B377RX', 'B378RX', 'A379RX', 'A380RX', 'A381RX', 'A802RX', 'B803RX', 'B804RX', 'A805RX', 'B806RX', 'B807RX', 'A382RX', 'B383RX', 'B864RX', 'A865RX', 'B384RX', 'A385RX', 'B386RX', 'B387RX', 'A968RX', 'A809RX', 'A810RX', 'A811RX', 'A812RX', 'A813RX'), 'Indentations': (0, 0, 0, 1, 2, 1, 2, 2, 1, 2, 2, 3, 4, 4, 3, 4, 4, 1, 2, 3, 3, 2, 1, 2, 2, 0, 1, 2, 1, 1, 1)}, {'tableName': ('T50806B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30), 'SeriesCode': ('A371RX', 'B372RX', 'N238RX', 'N376RX', 'N377RX', 'N378RX', 'N379RX', 'N380RX', 'N381RX', 'N382RX', 'N864RX', 'N239RX', 'N240RX', 'N865RX', 'N385RX', 'N968RX', 'A371RX', 'N241RX', 'N242RX', 'A373RX', 'N379RX', 'N802RX', 'N803RX', 'N804RX', 'N805RX', 'A809RX', 'A810RX', 'A811RX', 'A812RX', 'A813RX'), 'Indentations': (0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 2, 2, 1, 1, 2, 3, 3, 2, 2, 2, 1, 1, 1)}, {'tableName': ('T50809A',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25), 'SeriesCode': ('A371RD', 'A372RD', 'A373RD', 'A374RD', 'A375RD', 'A376RD', 'A377RD', 'A378RD', 'A379RD', 'A380RD', 'A381RD', 'A802RD', 'A803RD', 'A804RD', 'A805RD', 'A806RD', 'A807RD', 'A382RD', 'A383RD', 'A864RD', 'A865RD', 'A384RD', 'A385RD', 'A386RD', 'A387RD'), 'Indentations': (0, 0, 0, 1, 2, 1, 2, 2, 1, 2, 2, 3, 4, 4, 3, 4, 4, 1, 2, 3, 3, 2, 1, 2, 2)}, {'tableName': ('T50809B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24), 'SeriesCode': ('A371RD', 'A372RD', 'N238RD', 'N376RD', 'N377RD', 'N378RD', 'N379RD', 'N380RD', 'N381RD', 'N382RD', 'N864RD', 'N239RD', 'N240RD', 'N865RD', 'N385RD', 'A371RD', 'N241RD', 'N242RD', 'A373RD', 'N379RD', 'N802RD', 'N803RD', 'N804RD', 'N805RD'), 'Indentations': (0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 2, 2, 1, 1, 2, 3, 3, 2)}, {'tableName': ('T50903',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76), 'SeriesCode': ('A782RA', 'B787RA', 'B788RA', 'B798RA', 'B799RA', 'A760RA', 'B801RA', 'B808RA', 'B814RA', 'B816RA', 'B817RA', 'B818RA', 'ZZZZZZ', 'B830RA', 'B831RA', 'ZZZZZZ', 'W182RA', 'W183RA', 'W184RA', 'W185RA', 'W186RA', 'W187RA', 'W188RA', 'W189RA', 'W190RA', 'W191RA', 'W192RA', 'ZZZZZZ', 'B842RA', 'B843RA', 'W147RA', 'W193RA', 'W194RA', 'W195RA', 'W148RA', 'W196RA', 'W197RA', 'W198RA', 'W199RA', 'W149RA', 'W150RA', 'W168RA', 'W169RA', 'W200RA', 'B870RA', 'Y054RA', 'Y058RA', 'Y050RA', 'B874RA', 'B875RA', 'B876RA', 'B877RA', 'Y051RA', 'B879RA', 'Y066RA', 'Y070RA', 'Y055RA', 'Y059RA', 'Y052RA', 'Y053RA', 'Y076RA', 'Y067RA', 'Y068RA', 'Y069RA', 'Y071RA', 'Y072RA', 'Y073RA', 'A882RA', 'A883RA', 'B884RA', 'Y074RA', 'Y075RA', 'A886RA', 'B887RA', 'Y077RA', 'Y078RA'), 'Indentations': (0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 4, 4, 3, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 0, 1, 2, 3, 3, 3, 3, 3, 3, 2, 1, 0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2, 1, 2, 3, 3, 3, 2, 3, 3, 3)}, {'tableName': ('T50904',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76), 'SeriesCode': ('A782RG', 'B787RG', 'B788RG', 'B798RG', 'B799RG', 'A760RG', 'B801RG', 'B808RG', 'B814RG', 'B816RG', 'B817RG', 'B818RG', 'ZZZZZZ', 'B830RG', 'B831RG', 'ZZZZZZ', 'W182RG', 'W183RG', 'W184RG', 'W185RG', 'W186RG', 'W187RG', 'W188RG', 'W189RG', 'W190RG', 'W191RG', 'W192RG', 'ZZZZZZ', 'B842RG', 'B843RG', 'W147RG', 'W193RG', 'W194RG', 'W195RG', 'W148RG', 'W196RG', 'W197RG', 'W198RG', 'W199RG', 'W149RG', 'W150RG', 'W168RG', 'W169RG', 'W200RG', 'B870RG', 'Y054RG', 'Y058RG', 'Y050RG', 'B874RG', 'B875RG', 'B876RG', 'B877RG', 'Y051RG', 'B879RG', 'Y066RG', 'Y070RG', 'Y055RG', 'Y059RG', 'Y052RG', 'Y053RG', 'Y076RG', 'Y067RG', 'Y068RG', 'Y069RG', 'Y071RG', 'Y072RG', 'Y073RG', 'A882RG', 'A883RG', 'B884RG', 'Y074RG', 'Y075RG', 'A886RG', 'B887RG', 'Y077RG', 'Y078RG'), 'Indentations': (0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 4, 4, 3, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 0, 1, 2, 3, 3, 3, 3, 3, 3, 2, 1, 0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2, 1, 2, 3, 3, 3, 2, 3, 3, 3)}, {'tableName': ('T50905',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76), 'SeriesCode': ('A782RC', 'A787RC', 'A788RC', 'A798RC', 'A799RC', 'A760RC', 'A801RC', 'A808RC', 'A814RC', 'B816RC', 'B817RC', 'B818RC', 'B819RC', 'A830RC', 'A831RC', 'ZZZZZZ', 'W182RC', 'W183RC', 'W184RC', 'W185RC', 'W186RC', 'W187RC', 'W188RC', 'W189RC', 'W190RC', 'W191RC', 'W192RC', 'B841RC', 'A842RC', 'A843RC', 'W147RC', 'W193RC', 'W194RC', 'W195RC', 'W148RC', 'W196RC', 'W197RC', 'W198RC', 'W199RC', 'W149RC', 'W150RC', 'W168RC', 'W169RC', 'W200RC', 'B870RC', 'Y054RC', 'Y058RC', 'Y050RC', 'B874RC', 'B875RC', 'B876RC', 'B877RC', 'Y051RC', 'B879RC', 'Y066RC', 'Y070RC', 'Y055RC', 'Y059RC', 'Y052RC', 'Y053RC', 'Y076RC', 'Y067RC', 'Y068RC', 'Y069RC', 'Y071RC', 'Y072RC', 'Y073RC', 'A882RC', 'A883RC', 'B884RC', 'Y074RC', 'Y075RC', 'A886RC', 'B887RC', 'Y077RC', 'Y078RC'), 'Indentations': (0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 4, 4, 3, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 0, 1, 2, 3, 3, 3, 3, 3, 3, 2, 1, 0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2, 1, 2, 3, 3, 3, 2, 3, 3, 3)}, {'tableName': ('T50906',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77), 'SeriesCode': ('A782RX', 'A787RX', 'A788RX', 'A798RX', 'A799RX', 'A760RX', 'A801RX', 'A808RX', 'A814RX', 'B816RX', 'B817RX', 'B818RX', 'B819RX', 'A830RX', 'A831RX', 'ZZZZZZ', 'W182RX', 'W183RX', 'W184RX', 'W185RX', 'W186RX', 'W187RX', 'W188RX', 'W189RX', 'W190RX', 'W191RX', 'W192RX', 'B841RX', 'A842RX', 'A843RX', 'W147RX', 'W193RX', 'W194RX', 'W195RX', 'W148RX', 'W196RX', 'W197RX', 'W198RX', 'W199RX', 'W149RX', 'W150RX', 'W168RX', 'W169RX', 'W200RX', 'B870RX', 'Y054RX', 'Y058RX', 'Y050RX', 'B874RX', 'B875RX', 'B876RX', 'B877RX', 'Y051RX', 'B879RX', 'Y066RX', 'Y070RX', 'Y055RX', 'Y059RX', 'Y052RX', 'Y053RX', 'Y076RX', 'Y067RX', 'Y068RX', 'Y069RX', 'Y071RX', 'Y072RX', 'Y073RX', 'A967RX', 'A882RX', 'A883RX', 'B884RX', 'Y074RX', 'Y075RX', 'A886RX', 'B887RX', 'Y077RX', 'Y078RX'), 'Indentations': (0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 4, 4, 3, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 0, 1, 2, 3, 3, 3, 3, 3, 3, 2, 1, 0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2, 0, 1, 2, 3, 3, 3, 2, 3, 3, 3)}, {'tableName': ('T51000',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75), 'SeriesCode': ('K10001', 'K10002', 'K10003', 'K10004', 'K10005', 'K10006', 'K10007', 'W172RC', 'A007RC', 'A008RC', 'B009RC', 'Y033RC', 'Y001RC', 'A011RC', 'A782RC', 'A760RC', 'Y054RC', 'Y055RC', 'K10019', 'K10020', 'K10021', 'K10022', 'K10023', 'K10024', 'K10025', 'C287RC', 'K10027', 'K10028', 'K10029', 'K10030', 'K10031', 'A262RC', 'A024RC', 'A753RC', 'B188RC', 'Y080RC', 'Y083RC', 'A754RC', 'A264RC', 'A894RC', 'Y085RC', 'Y091RC', 'A014RC', 'K10044', 'K10045', 'K10046', 'K10047', 'K10048', 'K10049', 'K10050', 'K10051', 'K10052', 'K10053', 'K10054', 'K10055', 'K10056', 'K10057', 'K10058', 'K10059', 'K10060', 'K10061', 'K10062', 'K10063', 'K10064', 'K10065', 'K10066', 'K10067', 'K10068', 'K10069', 'K10070', 'K10071', 'K10072', 'K10073', 'K10074', 'A371RC'), 'Indentations': (0, 1, 2, 3, 3, 2, 1, 0, 1, 2, 3, 3, 3, 2, 1, 2, 2, 2, 0, 1, 2, 3, 3, 3, 3, 3, 3, 2, 1, 2, 2, 0, 1, 2, 3, 3, 3, 2, 1, 2, 2, 2, 0, 0, 1, 2, 3, 3, 3, 2, 1, 2, 2, 0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 3, 4, 4, 3, 2, 0, 1, 2, 3, 3, 2, 1)}, {'tableName': ('T51100',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58), 'SeriesCode': ('W940RC', 'W941RC', 'W942RC', 'W943RC', 'W944RC', 'W945RC', 'W946RC', 'W947RC', 'W020RC', 'AD11RC', 'W949RC', 'W950RC', 'W951RC', 'W027RC', 'AD10RC', 'W080RC', 'W080RC', 'W953RC', 'LA000372', 'S21020', 'W954RC', 'W955RC', 'W956RC', 'W957RC', 'W958RC', 'W959RC', 'W960RC', 'W961RC', 'W962RC', 'W963RC', 'W964RC', 'W965RC', 'W966RC', 'W967RC', 'W968RC', 'B232RC', 'LA000372', 'LA000366', 'W969RC', 'W970RC', 'S21020', 'AD11RC', 'W937RC', 'W971RC', 'W972RC', 'W688RC', 'W973RC', 'AD10RC', 'LA000368', 'W974RC', 'W975RC', 'W976RC', 'W977RC', 'W978RC', 'W979RC', 'W980RC', 'W981RC', 'W982RC'), 'Indentations': (0, 1, 2, 3, 3, 2, 2, 1, 2, 3, 3, 3, 3, 3, 3, 2, 3, 1, 2, 2, 1, 2, 2, 0, 1, 2, 3, 3, 2, 3, 3, 2, 3, 3, 1, 2, 3, 3, 2, 3, 3, 3, 3, 1, 2, 2, 1, 2, 2, 2, 1, 2, 2, 1, 2, 2, 1, 1)}, {'tableName': ('T60100B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19), 'SeriesCode': ('A422RC', 'A423RC', 'A736RC', 'J424RC', 'J734RC', 'J735RC', 'J426RC', 'J428RC', 'J427RC', 'J737RC', 'J429RC', 'J430RC', 'J431RC', 'J433RC', 'J434RC', 'J435RC', 'J437RC', 'B436RC', 'A192RC'), 'Indentations': (0, 0, 1, 2, 2, 2, 2, 3, 3, 2, 3, 3, 3, 2, 2, 2, 2, 1, 0)}, {'tableName': ('T60100C',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19), 'SeriesCode': ('A422RC', 'A423RC', 'A736RC', 'B424RC', 'B734RC', 'B735RC', 'A426RC', 'B428RC', 'B427RC', 'A737RC', 'B429RC', 'B430RC', 'B431RC', 'B433RC', 'B434RC', 'B435RC', 'B437RC', 'B436RC', 'A192RC'), 'Indentations': (0, 0, 1, 2, 2, 2, 2, 3, 3, 2, 3, 3, 3, 2, 2, 2, 2, 1, 0)}, {'tableName': ('T60100D',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21), 'SeriesCode': ('A422RC', 'A423RC', 'A736RC', 'N5004C', 'N5005C', 'N5006C', 'N5007C', 'N5008C', 'N5009C', 'N5010C', 'N5011C', 'N5012C', 'N5013C', 'N5014C', 'N5015C', 'N5016C', 'N5017C', 'N5018C', 'N5019C', 'B436RC', 'A192RC'), 'Indentations': (0, 0, 1, 2, 2, 2, 2, 2, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 0)}, {'tableName': ('T60200A',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84), 'SeriesCode': ('A033RC', 'A4002C', 'A4003C', 'H4004C', 'H4005C', 'H4006C', 'H4007C', 'B4008C', 'B4092C', 'H4009C', 'H4010C', 'B4011C', 'H4012C', 'H4013C', 'H4014C', 'H4015C', 'H4016C', 'H4017C', 'H4018C', 'H4019C', 'H4020C', 'H4021C', 'H4022C', 'H4023C', 'H4025C', 'H4026C', 'H4027C', 'B4028C', 'H4029C', 'H4030C', 'B4031C', 'H4032C', 'H4033C', 'H4034C', 'H4035C', 'H4036C', 'A4037C', 'A4038C', 'B4039C', 'H4040C', 'B4041C', 'H4042C', 'H4043C', 'B4044C', 'H4045C', 'A4046C', 'B4047C', 'B4048C', 'B4049C', 'B4093C', 'B4094C', 'H4050C', 'H4051C', 'H4052C', 'B4053C', 'H4055C', 'H4054C', 'B4056C', 'H4057C', 'H4058C', 'H4060C', 'B4061C', 'B4062C', 'B4095C', 'H4063C', 'B4065C', 'B4066C', 'B4067C', 'H4068C', 'B4069C', 'H4070C', 'H4071C', 'H4074C', 'W151RC', 'A4076C', 'B4077C', 'B568RC', 'A4081C', 'B4082C', 'B251RC', 'B4086C', 'A4187C', 'W506RC', 'A4091C'), 'Indentations': (0, 0, 1, 2, 3, 3, 2, 3, 3, 3, 3, 3, 2, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 3, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 3, 4, 4, 2, 2, 2, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 2, 3, 3, 2, 3, 3, 0, 1, 1)}, {'tableName': ('T60200B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91), 'SeriesCode': ('A033RC', 'A4002C', 'A4003C', 'A4004BC', 'B4005BC', 'J4006C', 'A4007BC', 'Q4008BC', 'J4009C', 'J4010C', 'Q4011BC', 'B4012BC', 'A4013BC', 'A4014BC', 'J4015C', 'J4016C', 'J4017C', 'J4018C', 'J4019C', 'J4020C', 'J4021C', 'J4022C', 'J4023C', 'J4024C', 'J4025C', 'A4026BC', 'J4027C', 'Q4028BC', 'J4029C', 'J4030C', 'J4031BC', 'J4032C', 'J4033C', 'J4034C', 'J4035C', 'J4036C', 'Q4037BC', 'J4038BC', 'Q4039BC', 'J4040C', 'Q4041BC', 'J4042C', 'J4043C', 'Q4044BC', 'J4045C', 'J4046BC', 'J4047BC', 'J4048BC', 'J4049BC', 'B4050BC', 'B4051BC', 'A4052BC', 'J4053C', 'J4054C', 'J4055C', 'Q4056BC', 'J4057C', 'J4058C', 'B4059BC', 'A4060BC', 'Q4061BC', 'J4062BC', 'J4063C', 'B4064BC', 'Q4065BC', 'J4066BC', 'J4067BC', 'J4068C', 'J4069C', 'J4070C', 'J4071C', 'B4072BC', 'B4073BC', 'J4074C', 'W151RC', 'A4076C', 'B4077C', 'B568RC', 'B4079C', 'W4080C', 'A4081C', 'B4082C', 'B251RC', 'B4084C', 'B4085C', 'B4086C', 'A4187C', 'B4188C', 'B4189C', 'W506RC', 'A4091C'), 'Indentations': (0, 0, 1, 2, 3, 4, 4, 5, 6, 6, 6, 4, 4, 5, 6, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 5, 6, 7, 8, 8, 8, 8, 8, 6, 7, 8, 6, 4, 4, 4, 5, 6, 6, 6, 6, 6, 6, 4, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 8, 6, 6, 2, 3, 4, 5, 6, 6, 4, 5, 6, 7, 6, 0, 1, 2, 1, 1)}, {'tableName': ('T60200C',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91), 'SeriesCode': ('A033RC', 'A4002C', 'A4003C', 'A4004C', 'B4005C', 'B4006C', 'A4007C', 'Q4008C', 'B4009C', 'B4010C', 'Q4011C', 'B4012C', 'A4013C', 'A4014C', 'B4015C', 'B4016C', 'B4017C', 'B4018C', 'B4019C', 'B4020C', 'B4021C', 'B4022C', 'B4023C', 'B4024C', 'B4025C', 'A4026C', 'B4027C', 'Q4028C', 'B4029C', 'B4030C', 'J4031C', 'B4032C', 'B4033C', 'B4034C', 'B4035C', 'B4036C', 'Q4037C', 'J4038C', 'Q4039C', 'B4040C', 'Q4041C', 'B4042C', 'B4043C', 'Q4044C', 'B4045C', 'J4046C', 'J4047C', 'J4048C', 'J4049C', 'B4050C', 'B4051C', 'A4052C', 'Q4053C', 'B4054C', 'B4055C', 'Q4056C', 'B4057C', 'B4058C', 'B4059C', 'A4060C', 'Q4061C', 'J4062C', 'B4063C', 'B4064C', 'Q4065C', 'J4066C', 'J4067C', 'B4068C', 'Q4069C', 'B4070C', 'A4071C', 'B4072C', 'B4073C', 'B4074C', 'W151RC', 'A4076C', 'B4077C', 'B568RC', 'B4079C', 'W4080C', 'A4081C', 'B4082C', 'B251RC', 'B4084C', 'B4085C', 'B4086C', 'A4187C', 'B4188C', 'B4189C', 'W506RC', 'A4091C'), 'Indentations': (0, 0, 1, 2, 3, 4, 4, 5, 6, 6, 6, 4, 4, 5, 6, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 5, 6, 7, 8, 8, 8, 8, 8, 6, 7, 8, 6, 4, 4, 4, 5, 6, 6, 6, 6, 6, 6, 4, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 8, 6, 6, 2, 3, 4, 5, 6, 6, 4, 5, 6, 7, 6, 0, 1, 2, 1, 1)}, {'tableName': ('T60200D',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99), 'SeriesCode': ('A033RC', 'A4002C', 'A4003C', 'N4004C', 'N4005C', 'N4006C', 'N4007C', 'N4008C', 'N4009C', 'N4010C', 'N4011C', 'N4012C', 'N4013C', 'N4014C', 'N4015C', 'N4016C', 'N4017C', 'N4018C', 'N4019C', 'N4020C', 'N4021C', 'N4022C', 'N4023C', 'N4024C', 'N4025C', 'N4026C', 'N4027C', 'N4029C', 'N4030C', 'N4032C', 'N4033C', 'N4034C', 'N4035C', 'N4036C', 'N4037C', 'N4038C', 'N4039C', 'N4040C', 'N4041C', 'N4042C', 'N4043C', 'N4044C', 'N4045C', 'N4046C', 'N4047C', 'N4048C', 'N4049C', 'N4050C', 'N4051C', 'N4052C', 'N4053C', 'N4054C', 'N4055C', 'N4056C', 'N4057C', 'N4058C', 'N4059C', 'N4060C', 'N4061C', 'N4062C', 'N4063C', 'N4064C', 'N4065C', 'N4066C', 'N4067C', 'N4068C', 'N4069C', 'N4070C', 'N4071C', 'N4072C', 'N4073C', 'N4074C', 'N4075C', 'N4076C', 'N4077C', 'N4078C', 'N4079C', 'N4080C', 'N4081C', 'N4082C', 'N4083C', 'N4084C', 'N4085C', 'N4086C', 'N4087C', 'A4076C', 'B4077C', 'B568RC', 'B4079C', 'W4080C', 'A4081C', 'B4082C', 'B251RC', 'B4084C', 'B4085C', 'B4086C', 'A4187C', 'B4188C', 'B4189C'), 'Indentations': (0, 0, 1, 2, 3, 3, 2, 3, 3, 3, 2, 2, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 2, 3, 3, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 2, 3, 3, 2, 3, 3, 3, 2, 2, 3, 3, 2, 2, 3, 3, 3, 3, 2, 3, 3, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3, 0, 1, 1)}, {'tableName': ('T60300A',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88), 'SeriesCode': ('A034RC', 'A4102C', 'A4103C', 'H4104C', 'B4105C', 'H4106C', 'H4107C', 'B4108C', 'B4192C', 'H4109C', 'H4110C', 'B4111C', 'H4112C', 'H4113C', 'H4114C', 'H4115C', 'H4116C', 'H4117C', 'H4118C', 'H4119C', 'H4120C', 'H4121C', 'H4122C', 'H4123C', 'H4125C', 'H4126C', 'H4127C', 'B4128C', 'H4129C', 'H4130C', 'B4131C', 'B4132C', 'H4133C', 'H4134C', 'H4135C', 'H4136C', 'Q4137C', 'Q4138C', 'B4139C', 'H4140C', 'B4141C', 'H4142C', 'H4143C', 'Q4144C', 'H4145C', 'Q4146C', 'B4147C', 'B4148C', 'B4149C', 'B4193C', 'B4194C', 'H4150C', 'H4151C', 'H4152C', 'Q4153C', 'H4155C', 'H4154C', 'B4156C', 'H4157C', 'H4158C', 'H4160C', 'Q4161C', 'Q4162C', 'B4195C', 'H4163C', 'Q4165C', 'Q4166C', 'Q4167C', 'H4168C', 'Q4169C', 'H4170C', 'H4171C', 'H4174C', 'B411RC', 'B202RC', 'A4177C', 'A4178C', 'B4179C', 'B4180C', 'B4196C', 'B4181C', 'A4182C', 'A4183C', 'B4184C', 'B4185C', 'B4197C', 'B4186C', 'A4187C'), 'Indentations': (0, 0, 1, 2, 3, 3, 2, 3, 3, 3, 3, 3, 2, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 3, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 3, 4, 4, 2, 2, 2, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 2, 3, 4, 4, 4, 3, 2, 3, 4, 4, 4, 3, 0)}, {'tableName': ('T60300B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89), 'SeriesCode': ('A034RC', 'A4102C', 'A4103C', 'J4104C', 'Q4105BC', 'J4106C', 'J4107C', 'Q4108BC', 'J4109C', 'J4110C', 'Q4111BC', 'J4112C', 'J4113C', 'J4114C', 'J4115C', 'J4116C', 'J4117C', 'J4118C', 'J4119C', 'J4120C', 'J4121C', 'J4122C', 'J4123C', 'J4124C', 'J4125C', 'J4126C', 'J4127C', 'Q4128BC', 'J4129C', 'J4130C', 'J4131C', 'Q4132BC', 'J4133C', 'J4134C', 'J4135C', 'J4136C', 'A4137BC', 'J4138C', 'Q4139BC', 'J4140C', 'Q4141BC', 'J4142C', 'J4143C', 'B4144BC', 'J4145C', 'A4146BC', 'J4147C', 'J4148C', 'J4149C', 'J4150C', 'J4151C', 'J4152C', 'J4153C', 'J4154C', 'J4155C', 'Q4156BC', 'J4157C', 'J4158C', 'B4159BC', 'J4160C', 'B4161BC', 'J4162C', 'J4163C', 'B4164BC', 'B4165BC', 'J4166C', 'J4167C', 'J4168C', 'J4169C', 'J4170C', 'J4171C', 'B4172BC', 'B4173BC', 'J4174C', 'Q411RBC', 'B202RC', 'A4177C', 'A4178C', 'B4179C', 'B4180C', 'B4181C', 'A4182C', 'A4183C', 'B4184C', 'B4185C', 'B4186C', 'A4187C', 'B4188C', 'B4189C'), 'Indentations': (0, 0, 1, 2, 3, 3, 2, 3, 3, 3, 3, 2, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 3, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 3, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 3, 3, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3, 0, 1, 1)}, {'tableName': ('T60300C',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89), 'SeriesCode': ('A034RC', 'A4102C', 'A4103C', 'A4104C', 'Q4105C', 'B4106C', 'A4107C', 'Q4108C', 'B4109C', 'B4110C', 'Q4111C', 'B4112C', 'A4113C', 'A4114C', 'B4115C', 'B4116C', 'B4117C', 'B4118C', 'B4119C', 'B4120C', 'B4121C', 'B4122C', 'B4123C', 'B4124C', 'B4125C', 'A4126C', 'B4127C', 'Q4128C', 'B4129C', 'B4130C', 'Q4131C', 'Q4132C', 'B4133C', 'B4134C', 'B4135C', 'B4136C', 'A4137C', 'A4138C', 'Q4139C', 'B4140C', 'Q4141C', 'B4142C', 'B4143C', 'B4144C', 'B4145C', 'A4146C', 'Q4147C', 'Q4148C', 'Q4149C', 'B4150C', 'B4151C', 'A4152C', 'B4153C', 'B4154C', 'B4155C', 'Q4156C', 'B4157C', 'B4158C', 'B4159C', 'A4160C', 'B4161C', 'B4162C', 'B4163C', 'B4164C', 'B4165C', 'B4166C', 'B4167C', 'B4168C', 'B4169C', 'B4170C', 'A4171C', 'B4172C', 'B4173C', 'B4174C', 'Q411RC', 'B202RC', 'A4177C', 'A4178C', 'B4179C', 'B4180C', 'B4181C', 'A4182C', 'A4183C', 'B4184C', 'B4185C', 'B4186C', 'A4187C', 'B4188C', 'B4189C'), 'Indentations': (0, 0, 1, 2, 3, 3, 2, 3, 3, 3, 3, 2, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 3, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 3, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 3, 3, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3, 0, 1, 1)}, {'tableName': ('T60300D',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99), 'SeriesCode': ('A034RC', 'A4102C', 'A4103C', 'N4104C', 'N4105C', 'N4106C', 'N4107C', 'N4108C', 'N4109C', 'N4110C', 'N4111C', 'N4112C', 'N552RC', 'N4114C', 'N4115C', 'N4116C', 'N4117C', 'N4118C', 'N4119C', 'N4120C', 'N4121C', 'N4122C', 'N4123C', 'N4124C', 'N4125C', 'N4126C', 'N4127C', 'N4129C', 'N4130C', 'N4132C', 'N4133C', 'N4134C', 'N4135C', 'N4136C', 'N4137C', 'N4138C', 'N4139C', 'N4140C', 'N4141C', 'N4142C', 'N4143C', 'N4144C', 'N4145C', 'N4146C', 'N4147C', 'N4148C', 'N4149C', 'N4150C', 'N4151C', 'N4152C', 'N4153C', 'N4154C', 'N4155C', 'N4156C', 'N4157C', 'N4158C', 'N4159C', 'N4160C', 'N4161C', 'N4162C', 'N4163C', 'N4164C', 'N4165C', 'N4166C', 'N4167C', 'N4168C', 'N4169C', 'N4170C', 'N4171C', 'N4172C', 'N4173C', 'N4174C', 'N4175C', 'N4176C', 'N4177C', 'N4178C', 'N4179C', 'N4180C', 'N4181C', 'N4182C', 'N4183C', 'N4184C', 'N4185C', 'N4186C', 'N4187C', 'B202RC', 'A4177C', 'A4178C', 'B4179C', 'B4180C', 'B4181C', 'A4182C', 'A4183C', 'B4184C', 'B4185C', 'B4186C', 'A4187C', 'B4188C', 'B4189C'), 'Indentations': (0, 0, 1, 2, 3, 3, 2, 3, 3, 3, 2, 2, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 2, 3, 3, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 2, 3, 3, 2, 3, 3, 3, 2, 2, 3, 3, 2, 2, 3, 3, 3, 3, 2, 3, 3, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3, 0, 1, 1)}, {'tableName': ('T60400A',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88), 'SeriesCode': ('A4201C', 'A4202C', 'A4203C', 'H4204C', 'B4205C', 'H4206C', 'H4207C', 'B4208C', 'B4292C', 'H4209C', 'H4210C', 'B4211C', 'H4212C', 'H4213C', 'H4214C', 'H4215C', 'H4216C', 'H4217C', 'H4218C', 'H4219C', 'H4220C', 'H4221C', 'H4222C', 'H4223C', 'H4225C', 'H4226C', 'H4227C', 'B4228C', 'H4229C', 'H4230C', 'B4231C', 'B4232C', 'H4233C', 'H4234C', 'H4235C', 'H4236C', 'A4237C', 'A4238C', 'B4239C', 'H4240C', 'B4241C', 'H4242C', 'H4243C', 'B4244C', 'H4245C', 'A4246C', 'B4247C', 'B4248C', 'B4249C', 'B4293C', 'B4294C', 'H4250C', 'H4251C', 'H4252C', 'B4253C', 'H4255C', 'H4254C', 'B4256C', 'H4257C', 'H4258C', 'H4260C', 'H4261C', 'B4262C', 'B4295C', 'H4263C', 'B4265C', 'B4266C', 'B4267C', 'H4268C', 'B4269C', 'H4270C', 'H4273C', 'H4274C', 'B4275C', 'A4276C', 'A4277C', 'A4278C', 'B4279C', 'B4280C', 'B4296C', 'B4281C', 'A4282C', 'A4283C', 'B4284C', 'B4285C', 'B4297C', 'B4286C', 'A4287C'), 'Indentations': (0, 0, 1, 2, 3, 3, 2, 3, 3, 3, 3, 3, 2, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 3, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 3, 4, 4, 2, 2, 2, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 2, 3, 4, 4, 4, 3, 2, 3, 4, 4, 4, 3, 0)}, {'tableName': ('T60400B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87), 'SeriesCode': ('A4201C', 'A4202C', 'A4203C', 'J4204C', 'Q4205BC', 'J4206C', 'J4207C', 'Q4208BC', 'J4209C', 'J4210C', 'Q4211BC', 'J4212C', 'J4213C', 'J4214C', 'J4215C', 'J4216C', 'J4217C', 'J4218C', 'J4219C', 'J4220C', 'J4221C', 'J4222C', 'J4223C', 'J4224C', 'J4225C', 'J4226C', 'J4227C', 'Q4228BC', 'J4229C', 'J4230C', 'J4231C', 'Q4232BC', 'J4233C', 'J4234C', 'J4235C', 'J4236C', 'Q4237BC', 'J4238C', 'Q4239BC', 'J4240C', 'Q4241BC', 'J4242C', 'J4243C', 'Q4244BC', 'J4245C', 'Q4246BC', 'J4247C', 'J4248C', 'J4249C', 'J4250C', 'J4251C', 'J4252C', 'J4253C', 'J4254C', 'J4255C', 'Q4256BC', 'J4257C', 'J4258C', 'B4259BC', 'J4260C', 'J4261C', 'J4262C', 'J4263C', 'B4264BC', 'Q4265BC', 'J4266C', 'J4267C', 'J4268C', 'J4269BC', 'J4270C', 'A4271BC', 'B4272BC', 'J4273C', 'J4274C', 'Q4275BC', 'A4276C', 'A4277C', 'A4278C', 'B4279C', 'B4280C', 'B4281C', 'A4282C', 'A4283C', 'B4284C', 'B4285C', 'B4286C', 'A4287C'), 'Indentations': (0, 0, 1, 2, 3, 3, 2, 3, 3, 3, 3, 2, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 3, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 3, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 3, 3, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3, 0)}, {'tableName': ('T60400C',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87), 'SeriesCode': ('A4201C', 'A4202C', 'A4203C', 'A4204C', 'Q4205C', 'B4206C', 'A4207C', 'Q4208C', 'B4209C', 'B4210C', 'Q4211C', 'B4212C', 'A4213C', 'A4214C', 'B4215C', 'B4216C', 'B4217C', 'B4218C', 'B4219C', 'B4220C', 'B4221C', 'B4222C', 'B4223C', 'B4224C', 'B4225C', 'A4226C', 'B4227C', 'Q4228C', 'B4229C', 'B4230C', 'Q4231C', 'Q4232C', 'B4233C', 'B4234C', 'B4235C', 'B4236C', 'Q4237C', 'Q4238C', 'Q4239C', 'B4240C', 'Q4241C', 'B4242C', 'B4243C', 'Q4244C', 'B4245C', 'Q4246C', 'Q4247C', 'Q4248C', 'Q4249C', 'B4250C', 'B4251C', 'A4252C', 'Q4253C', 'B4254C', 'B4255C', 'Q4256C', 'B4257C', 'B4258C', 'B4259C', 'A4260C', 'B4261C', 'Q4262C', 'B4263C', 'B4264C', 'Q4265C', 'Q4266C', 'Q4267C', 'B4268C', 'J4269C', 'B4270C', 'A4271C', 'B4272C', 'B4273C', 'B4274C', 'Q4275C', 'A4276C', 'A4277C', 'A4278C', 'B4279C', 'B4280C', 'B4281C', 'A4282C', 'A4283C', 'B4284C', 'B4285C', 'B4286C', 'A4287C'), 'Indentations': (0, 0, 1, 2, 3, 3, 2, 3, 3, 3, 3, 2, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 3, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 3, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 3, 3, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3, 0)}, {'tableName': ('T60400D',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97), 'SeriesCode': ('A4201C', 'A4202C', 'A4203C', 'N4204C', 'N4205C', 'N4206C', 'N4207C', 'N4208C', 'N4209C', 'N4210C', 'N4211C', 'N4212C', 'N4213C', 'N4214C', 'N4215C', 'N4216C', 'N4217C', 'N4218C', 'N4219C', 'N4220C', 'N4221C', 'N4222C', 'N4223C', 'N4224C', 'N4225C', 'N4226C', 'N4227C', 'N4228C', 'N4229C', 'N4230C', 'N4231C', 'N4232C', 'N4233C', 'N4234C', 'N4235C', 'N4236C', 'N4237C', 'N4238C', 'N4239C', 'N4240C', 'N4241C', 'N4242C', 'N4243C', 'N4244C', 'N4245C', 'N4246C', 'N4247C', 'N4248C', 'N4249C', 'N4250C', 'N4251C', 'N4252C', 'N4253C', 'N4254C', 'N4255C', 'N4256C', 'N4257C', 'N4258C', 'N4259C', 'N4260C', 'N4261C', 'N4262C', 'N4263C', 'N4264C', 'N4265C', 'N4266C', 'N4267C', 'N4268C', 'N4269C', 'N4270C', 'N4271C', 'N4272C', 'N4273C', 'N4274C', 'N4275C', 'N4290C', 'N4291C', 'N4292C', 'N4293C', 'N4294C', 'N4295C', 'N4296C', 'N4297C', 'N4298C', 'N4299C', 'A4276C', 'A4277C', 'A4278C', 'B4279C', 'B4280C', 'B4281C', 'A4282C', 'A4283C', 'B4284C', 'B4285C', 'B4286C', 'A4287C'), 'Indentations': (0, 0, 1, 2, 3, 3, 2, 3, 3, 3, 2, 2, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 2, 3, 3, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 2, 3, 3, 2, 3, 3, 3, 2, 2, 3, 3, 2, 2, 3, 3, 3, 3, 2, 3, 3, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3, 0)}, {'tableName': ('T60500A',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88), 'SeriesCode': ('A4301C', 'A4302C', 'A4303C', 'H4304C', 'B4305C', 'H4306C', 'H4307C', 'B4308C', 'B4392C', 'H4309C', 'B4310C', 'B4311C', 'H4312C', 'H4313C', 'H4314C', 'H4315C', 'H4316C', 'H4317C', 'H4318C', 'H4319C', 'H4320C', 'H4321C', 'H4322C', 'H4323C', 'H4325C', 'H4326C', 'H4327C', 'B4328C', 'H4329C', 'H4330C', 'B4331C', 'B4332C', 'H4333C', 'H4334C', 'H4335C', 'H4336C', 'A4337C', 'A4338C', 'B4339C', 'H4340C', 'B4341C', 'H4342C', 'H4343C', 'B4344C', 'H4345C', 'A4346C', 'B4347C', 'B4348C', 'B4349C', 'B4393C', 'B4394C', 'H4350C', 'H4351C', 'H4352C', 'B4353C', 'H4355C', 'H4354C', 'B4356C', 'H4357C', 'H4358C', 'H4360C', 'H4361C', 'H4362C', 'B4395C', 'H4363C', 'B4365C', 'B4366C', 'B4367C', 'H4368C', 'B4369C', 'H4370C', 'H4373C', 'H4374C', 'LA000369', 'A4376C', 'A4377C', 'A4378C', 'B4379C', 'B4380C', 'B4396C', 'B4381C', 'A4382C', 'A4383C', 'B4384C', 'B4385C', 'B4397C', 'B4386C', 'A4387C'), 'Indentations': (0, 0, 1, 2, 3, 3, 2, 3, 3, 3, 3, 3, 2, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 3, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 3, 4, 4, 2, 2, 2, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 2, 3, 4, 4, 4, 3, 2, 3, 4, 4, 4, 3, 0)}, {'tableName': ('T60500B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87), 'SeriesCode': ('A4301C', 'A4302C', 'A4303C', 'J4304C', 'Q4305BC', 'J4306C', 'J4307C', 'Q4308BC', 'J4309C', 'J4310BC', 'Q4311BC', 'J4312C', 'J4313C', 'J4314C', 'J4315C', 'J4316C', 'J4317C', 'J4318C', 'J4319C', 'J4320C', 'J4321C', 'J4322C', 'J4323C', 'J4324C', 'J4325C', 'J4326C', 'J4327C', 'Q4328BC', 'J4329C', 'J4330C', 'J4331BC', 'Q4332BC', 'J4333C', 'J4334C', 'J4335C', 'J4336C', 'Q4337BC', 'J4338BC', 'Q4339BC', 'J4340C', 'Q4341BC', 'J4342C', 'J4343C', 'Q4344BC', 'J4345C', 'Q4346BC', 'J4347BC', 'J4348BC', 'J4349BC', 'J4350C', 'J4351C', 'J4352C', 'J4353C', 'J4354C', 'J4355C', 'Q4356BC', 'J4357C', 'J4358C', 'B4359BC', 'J4360C', 'J4361C', 'J4362C', 'J4363C', 'B4364BC', 'Q4365BC', 'J4366BC', 'J4367BC', 'J4368C', 'J4369BC', 'J4370C', 'A4371BC', 'B4372BC', 'J4373C', 'J4374C', 'Q4375BC', 'A4376C', 'A4377C', 'A4378C', 'B4379C', 'B4380C', 'B4381C', 'A4382C', 'A4383C', 'B4384C', 'B4385C', 'B4386C', 'A4387C'), 'Indentations': (0, 0, 1, 2, 3, 3, 2, 3, 3, 3, 3, 2, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 3, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 3, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 3, 3, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3, 0)}, {'tableName': ('T60500C',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87), 'SeriesCode': ('A4301C', 'A4302C', 'A4303C', 'A4304C', 'Q4305C', 'B4306C', 'A4307C', 'Q4308C', 'B4309C', 'J4310C', 'Q4311C', 'B4312C', 'A4313C', 'A4314C', 'B4315C', 'B4316C', 'B4317C', 'B4318C', 'B4319C', 'B4320C', 'B4321C', 'B4322C', 'B4323C', 'B4324C', 'B4325C', 'A4326C', 'B4327C', 'Q4328C', 'B4329C', 'B4330C', 'J4331C', 'Q4332C', 'B4333C', 'B4334C', 'B4335C', 'B4336C', 'Q4337C', 'J4338C', 'Q4339C', 'B4340C', 'Q4341C', 'B4342C', 'B4343C', 'Q4344C', 'B4345C', 'Q4346C', 'J4347C', 'J4348C', 'J4349C', 'B4350C', 'B4351C', 'A4352C', 'Q4353C', 'B4354C', 'B4355C', 'Q4356C', 'B4357C', 'B4358C', 'B4359C', 'A4360C', 'B4361C', 'B4362C', 'B4363C', 'B4364C', 'Q4365C', 'J4366C', 'J4367C', 'B4368C', 'J4369C', 'B4370C', 'A4371C', 'B4372C', 'B4373C', 'B4374C', 'Q4375C', 'A4376C', 'A4377C', 'A4378C', 'B4379C', 'B4380C', 'B4381C', 'A4382C', 'A4383C', 'B4384C', 'B4385C', 'B4386C', 'A4387C'), 'Indentations': (0, 0, 1, 2, 3, 3, 2, 3, 3, 3, 3, 2, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 3, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 3, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 3, 3, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3, 0)}, {'tableName': ('T60500D',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97), 'SeriesCode': ('A4301C', 'A4302C', 'A4303C', 'N4304C', 'N4305C', 'N4306C', 'N4307C', 'N4308C', 'N4309C', 'N4310C', 'N4311C', 'N4312C', 'N4313C', 'N4314C', 'N4315C', 'N4316C', 'N4317C', 'N4318C', 'N4319C', 'N4320C', 'N4321C', 'N4322C', 'N4323C', 'N4324C', 'N4325C', 'N4326C', 'N4327C', 'N4328C', 'N4329C', 'N4330C', 'N4331C', 'N4332C', 'N4333C', 'N4334C', 'N4335C', 'N4336C', 'N4337C', 'N4338C', 'N4339C', 'N4340C', 'N4341C', 'N4342C', 'N4343C', 'N4344C', 'N4345C', 'N4346C', 'N4347C', 'N4348C', 'N4349C', 'N4350C', 'N4351C', 'N4352C', 'N4353C', 'N4354C', 'N4355C', 'N4356C', 'N4357C', 'N4358C', 'N4359C', 'N4360C', 'N4361C', 'N4362C', 'N4363C', 'N4364C', 'N4365C', 'N4366C', 'N4367C', 'N4368C', 'N4369C', 'N4370C', 'N4371C', 'N4372C', 'N4373C', 'N4374C', 'N4375C', 'N4390C', 'N4391C', 'N4392C', 'N4393C', 'N4394C', 'N4395C', 'N4396C', 'N4397C', 'N4398C', 'N4399C', 'A4376C', 'A4377C', 'A4378C', 'B4379C', 'B4380C', 'B4381C', 'A4382C', 'A4383C', 'B4384C', 'B4385C', 'B4386C', 'A4387C'), 'Indentations': (0, 0, 1, 2, 3, 3, 2, 3, 3, 3, 2, 2, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 2, 3, 3, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 2, 3, 3, 2, 3, 3, 3, 2, 2, 3, 3, 2, 2, 3, 3, 3, 3, 2, 3, 3, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3, 0)}, {'tableName': ('T60600A',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88), 'SeriesCode': ('A4401C', 'A4402C', 'A4403C', 'H4404C', 'B4405C', 'H4406C', 'H4407C', 'B4408C', 'B4492C', 'H4409C', 'H4410C', 'B4411C', 'H4412C', 'H4413C', 'H4414C', 'H4415C', 'H4416C', 'H4417C', 'H4418C', 'H4419C', 'H4420C', 'H4421C', 'H4422C', 'H4423C', 'H4425C', 'H4426C', 'H4427C', 'B4428C', 'H4429C', 'H4430C', 'B4431C', 'B4432C', 'H4433C', 'H4434C', 'H4435C', 'H4436C', 'A4437C', 'A4438C', 'B4439C', 'H4440C', 'B4441C', 'H4442C', 'H4443C', 'B4444C', 'H4445C', 'A4446C', 'B4447C', 'B4448C', 'B4449C', 'B4493C', 'B4494C', 'H4450C', 'H4451C', 'A4452C', 'B4453C', 'H4455C', 'H4454C', 'B4456C', 'H4457C', 'H4458C', 'H4460C', 'H4461C', 'H4462C', 'B4495C', 'H4463C', 'B4465C', 'B4466C', 'B4467C', 'H4468C', 'B4469C', 'H4470C', 'H4473C', 'H4474C', 'B4475C', 'A4476C', 'A4477C', 'A4478C', 'B4479C', 'B4480C', 'B4496C', 'B4481C', 'A4482C', 'A4483C', 'B4484C', 'B4485C', 'B4497C', 'B4486C', 'ZZZZZZ'), 'Indentations': (0, 0, 1, 2, 3, 3, 2, 3, 3, 3, 3, 3, 2, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 3, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 3, 4, 4, 2, 2, 2, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 2, 3, 4, 4, 4, 3, 2, 3, 4, 4, 4, 3, 0)}, {'tableName': ('T60600B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87), 'SeriesCode': ('A4401C', 'A4402C', 'A4403C', 'J4404C', 'Q4405BC', 'J4406C', 'J4407C', 'Q4408BC', 'J4409C', 'J4410C', 'Q4411BC', 'J4412C', 'J4413C', 'J4414C', 'J4415C', 'J4416C', 'J4417C', 'J4418C', 'J4419C', 'J4420C', 'J4421C', 'J4422C', 'J4423C', 'J4424C', 'J4425C', 'J4426C', 'J4427C', 'Q4428BC', 'J4429C', 'J4430C', 'J4431BC', 'Q4432BC', 'J4433C', 'J4434C', 'J4435C', 'J4436C', 'Q4437BC', 'J4438BC', 'Q4439BC', 'J4440C', 'Q4441BC', 'J4442C', 'J4443C', 'Q4444BC', 'J4445C', 'Q4446BC', 'J4447BC', 'J4448BC', 'J4449BC', 'J4450C', 'J4451C', 'J4452BC', 'J4453C', 'J4454C', 'J4455C', 'Q4456BC', 'J4457C', 'J4458C', 'B4459BC', 'J4460C', 'J4461C', 'J4462C', 'J4463C', 'B4464BC', 'Q4465BC', 'J4466BC', 'J4467BC', 'J4468C', 'J4469BC', 'J4470C', 'A4471BC', 'B4472BC', 'J4473C', 'J4474C', 'Q4475BC', 'A4476C', 'A4477C', 'A4478C', 'B4479C', 'B4480C', 'B4481C', 'A4482C', 'A4483C', 'B4484C', 'B4485C', 'B4486C', 'ZZZZZZ'), 'Indentations': (0, 0, 1, 2, 3, 3, 2, 3, 3, 3, 3, 2, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 3, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 3, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 3, 3, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3, 0)}, {'tableName': ('T60600C',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87), 'SeriesCode': ('A4401C', 'A4402C', 'A4403C', 'A4404C', 'Q4405C', 'B4406C', 'A4407C', 'Q4408C', 'B4409C', 'B4410C', 'Q4411C', 'B4412C', 'A4413C', 'A4414C', 'B4415C', 'B4416C', 'B4417C', 'B4418C', 'B4419C', 'B4420C', 'B4421C', 'B4422C', 'B4423C', 'B4424C', 'B4425C', 'A4426C', 'B4427C', 'Q4428C', 'B4429C', 'B4430C', 'J4431C', 'Q4432C', 'B4433C', 'B4434C', 'B4435C', 'B4436C', 'Q4437C', 'J4438C', 'Q4439C', 'B4440C', 'Q4441C', 'B4442C', 'B4443C', 'Q4444C', 'B4445C', 'Q4446C', 'J4447C', 'J4448C', 'J4449C', 'B4450C', 'B4451C', 'J4452C', 'Q4453C', 'B4454C', 'B4455C', 'Q4456C', 'B4457C', 'B4458C', 'B4459C', 'A4460C', 'B4461C', 'B4462C', 'B4463C', 'B4464C', 'Q4465C', 'J4466C', 'J4467C', 'B4468C', 'J4469C', 'B4470C', 'A4471C', 'B4472C', 'B4473C', 'B4474C', 'Q4475C', 'A4476C', 'A4477C', 'A4478C', 'B4479C', 'B4480C', 'B4481C', 'A4482C', 'A4483C', 'B4484C', 'B4485C', 'B4486C', 'ZZZZZZ'), 'Indentations': (0, 0, 1, 2, 3, 3, 2, 3, 3, 3, 3, 2, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 3, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 3, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 3, 3, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3, 0)}, {'tableName': ('T60600D',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97), 'SeriesCode': ('A4401C', 'A4402C', 'A4403C', 'N4404C', 'N4405C', 'N4406C', 'N4407C', 'N4408C', 'N4409C', 'N4410C', 'N4411C', 'N4412C', 'N4413C', 'N4414C', 'N4415C', 'N4416C', 'N4417C', 'N4418C', 'N4419C', 'N4420C', 'N4421C', 'N4422C', 'N4423C', 'N4424C', 'N4425C', 'N4426C', 'N4427C', 'N4428C', 'N4429C', 'N4430C', 'N4431C', 'N4432C', 'N4433C', 'N4434C', 'N4435C', 'N4436C', 'N4437C', 'N4438C', 'N4439C', 'N4440C', 'N4441C', 'N4442C', 'N4443C', 'N4444C', 'N4445C', 'N4446C', 'N4447C', 'N4448C', 'N4449C', 'N4450C', 'N4451C', 'N4452C', 'N4453C', 'N4454C', 'N4455C', 'N4456C', 'N4457C', 'N4458C', 'N4459C', 'N4460C', 'N4461C', 'N4462C', 'N4463C', 'N4464C', 'N4465C', 'N4466C', 'N4467C', 'N4468C', 'N4469C', 'N4470C', 'N4471C', 'N4472C', 'N4473C', 'N4474C', 'N4475C', 'N4490C', 'N4491C', 'N4492C', 'N4493C', 'N4494C', 'N4495C', 'N4496C', 'N4497C', 'N4498C', 'N4499C', 'A4476C', 'A4477C', 'A4478C', 'B4479C', 'B4480C', 'B4481C', 'A4482C', 'A4483C', 'B4484C', 'B4485C', 'B4486C', 'ZZZZZZ'), 'Indentations': (0, 0, 1, 2, 3, 3, 2, 3, 3, 3, 2, 2, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 2, 3, 3, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 2, 3, 3, 2, 3, 3, 3, 2, 2, 3, 3, 2, 2, 3, 3, 3, 3, 2, 3, 3, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3, 0)}, {'tableName': ('T60700A',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14), 'SeriesCode': ('A4501C', 'H4502C', 'B4503C', 'H4504C', 'H4505C', 'B4506C', 'H4507C', 'H4508C', 'H4509C', 'B4510C', 'H4511C', 'H4512C', 'B4513C', 'H4514C'), 'Indentations': (0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0)}, {'tableName': ('T60700B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14), 'SeriesCode': ('A4501C', 'J4502C', 'Q4503BC', 'J4504C', 'J4505C', 'Q4506BC', 'J4507C', 'J4508C', 'J4509C', 'Q4510BC', 'J4511C', 'J4512C', 'Q4513BC', 'J4514C'), 'Indentations': (0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0)}, {'tableName': ('T60700C',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14), 'SeriesCode': ('A4501C', 'A4502C', 'Q4503C', 'B4504C', 'B4505C', 'Q4506C', 'A4507C', 'B4508C', 'B4509C', 'Q4510C', 'B4511C', 'B4512C', 'Q4513C', 'B4514C'), 'Indentations': (0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0)}, {'tableName': ('T60700D',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19), 'SeriesCode': ('A4501C', 'N4502C', 'N4503C', 'N4504C', 'N4505C', 'N4506C', 'N4507C', 'N4508C', 'N4509C', 'N4510C', 'N4511C', 'N4512C', 'N4513C', 'N4514C', 'N4515C', 'N4516C', 'N4517C', 'N4518C', 'N4519C'), 'Indentations': (0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0)}, {'tableName': ('T60800A',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88), 'SeriesCode': ('A4601C', 'A4602C', 'A4603C', 'H4604C', 'B4605C', 'H4606C', 'H4607C', 'H4608C', 'B4692C', 'H4609C', 'H4610C', 'B4611C', 'H4612C', 'H4613C', 'H4614C', 'H4615C', 'H4616C', 'H4617C', 'H4618C', 'H4619C', 'H4620C', 'H4621C', 'H4622C', 'H4623C', 'H4625C', 'H4626C', 'H4627C', 'B4628C', 'H4629C', 'H4630C', 'B4631C', 'H4632C', 'H4633C', 'H4634C', 'H4635C', 'H4636C', 'A4637C', 'A4638C', 'B4639C', 'H4640C', 'B4641C', 'H4642C', 'H4643C', 'B4644C', 'H4645C', 'A4646C', 'B4647C', 'B4648C', 'B4649C', 'B4693C', 'B4694C', 'H4650C', 'H4651C', 'H4652C', 'B4653C', 'H4655C', 'H4654C', 'B4656C', 'H4657C', 'H4658C', 'H4660C', 'H4661C', 'H4662C', 'B4695C', 'H4663C', 'H4665C', 'H4666C', 'H4667C', 'H4668C', 'H4669C', 'H4670C', 'H4673C', 'H4674C', 'B4375C', 'A4376C', 'A4377C', 'A4378C', 'B4379C', 'B4380C', 'B4396C', 'B4381C', 'A4382C', 'A4383C', 'B4384C', 'B4385C', 'B4397C', 'B4386C', 'A4387C'), 'Indentations': (0, 0, 1, 2, 3, 3, 2, 3, 3, 3, 3, 3, 2, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 3, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 3, 4, 4, 2, 2, 2, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 2, 3, 4, 4, 4, 3, 2, 3, 4, 4, 4, 3, 0)}, {'tableName': ('T60800B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87), 'SeriesCode': ('A4601C', 'A4602C', 'A4603C', 'J4604C', 'Q4605BC', 'J4606C', 'J4607C', 'J4608C', 'J4609C', 'J4610C', 'Q4611BC', 'J4612C', 'J4613C', 'J4614C', 'J4615C', 'J4616C', 'J4617C', 'J4618C', 'J4619C', 'J4620C', 'J4621C', 'J4622C', 'J4623C', 'J4624C', 'J4625C', 'J4626C', 'J4627C', 'Q4628BC', 'J4629C', 'J4630C', 'J4631C', 'J4632C', 'J4633C', 'J4634C', 'J4635C', 'J4636C', 'Q4637BC', 'J4638C', 'Q4639BC', 'J4640C', 'Q4641BC', 'J4642C', 'J4643C', 'Q4644BC', 'J4645C', 'Q4646BC', 'J4647C', 'J4648C', 'J4649C', 'J4650C', 'J4651C', 'J4652C', 'J4653C', 'J4654C', 'J4655C', 'Q4656BC', 'J4657C', 'J4658C', 'B4659BC', 'J4660C', 'J4661C', 'J4662C', 'J4663C', 'B4664BC', 'J4665C', 'J4666C', 'J4667C', 'J4668C', 'J4669C', 'J4670C', 'A4671BC', 'B4672BC', 'J4673C', 'J4674C', 'B4675BC', 'A4376C', 'A4377C', 'A4378C', 'B4379C', 'B4380C', 'B4381C', 'A4382C', 'A4383C', 'B4384C', 'B4385C', 'B4386C', 'A4387C'), 'Indentations': (0, 0, 1, 2, 3, 3, 2, 3, 3, 3, 3, 2, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 3, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 3, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 3, 3, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3, 0)}, {'tableName': ('T60800C',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87), 'SeriesCode': ('A4601C', 'A4602C', 'A4603C', 'A4604C', 'Q4605C', 'B4606C', 'A4607C', 'B4608C', 'B4609C', 'B4610C', 'Q4611C', 'B4612C', 'A4613C', 'A4614C', 'B4615C', 'B4616C', 'B4617C', 'B4618C', 'B4619C', 'B4620C', 'B4621C', 'B4622C', 'B4623C', 'B4624C', 'B4625C', 'A4626C', 'B4627C', 'Q4628C', 'B4629C', 'B4630C', 'Q4631C', 'B4632C', 'B4633C', 'B4634C', 'B4635C', 'B4636C', 'Q4637C', 'Q4638C', 'Q4639C', 'B4640C', 'Q4641C', 'B4642C', 'B4643C', 'Q4644C', 'B4645C', 'Q4646C', 'Q4647C', 'Q4648C', 'Q4649C', 'B4650C', 'B4651C', 'A4652C', 'Q4653C', 'B4654C', 'B4655C', 'Q4656C', 'B4657C', 'B4658C', 'B4659C', 'A4660C', 'B4661C', 'B4662C', 'B4663C', 'B4664C', 'B4665C', 'B4666C', 'B4667C', 'B4668C', 'B4669C', 'B4670C', 'A4671C', 'B4672C', 'B4673C', 'B4674C', 'B4675C', 'A4376C', 'A4377C', 'A4378C', 'B4379C', 'B4380C', 'B4381C', 'A4382C', 'A4383C', 'B4384C', 'B4385C', 'B4386C', 'A4387C'), 'Indentations': (0, 0, 1, 2, 3, 3, 2, 3, 3, 3, 3, 2, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 3, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 3, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 3, 3, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3, 0)}, {'tableName': ('T60800D',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97), 'SeriesCode': ('A4601C', 'A4602C', 'A4603C', 'N4604C', 'N4605C', 'N4606C', 'N4607C', 'N4608C', 'N4609C', 'N4610C', 'N4611C', 'N4612C', 'N4613C', 'N4614C', 'N4615C', 'N4616C', 'N4617C', 'N4618C', 'N4619C', 'N4620C', 'N4621C', 'N4622C', 'N4623C', 'N4624C', 'N4625C', 'N4626C', 'N4627C', 'N4628C', 'N4629C', 'N4630C', 'N4631C', 'N4632C', 'N4633C', 'N4634C', 'N4635C', 'N4636C', 'N4637C', 'N4638C', 'N4639C', 'N4640C', 'N4641C', 'N4642C', 'N4643C', 'N4644C', 'N4645C', 'N4646C', 'N4647C', 'N4648C', 'N4649C', 'N4650C', 'N4651C', 'N4652C', 'N4653C', 'N4654C', 'N4655C', 'N4656C', 'N4657C', 'N4658C', 'N4659C', 'N4660C', 'N4661C', 'N4662C', 'N4663C', 'N4664C', 'N4665C', 'N4666C', 'N4667C', 'N4668C', 'N4669C', 'N4670C', 'N4671C', 'N4672C', 'N4673C', 'N4674C', 'N4675C', 'N4690C', 'N4691C', 'N4692C', 'N4693C', 'N4694C', 'N4695C', 'N4696C', 'N4697C', 'N4698C', 'N4699C', 'A4376C', 'A4377C', 'A4378C', 'B4379C', 'B4380C', 'B4381C', 'A4382C', 'A4383C', 'B4384C', 'B4385C', 'B4386C', 'A4387C'), 'Indentations': (0, 0, 1, 2, 3, 3, 2, 3, 3, 3, 2, 2, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 2, 3, 3, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 2, 3, 3, 2, 3, 3, 3, 2, 2, 3, 3, 2, 2, 3, 3, 3, 3, 2, 3, 3, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3, 0)}, {'tableName': ('T60900B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23), 'SeriesCode': ('B4701C', 'B4702C', 'B4703C', 'B4704BC', 'B4705BC', 'B4706BC', 'B4707BC', 'B4708BC', 'B4709BC', 'B4710BC', 'B4711BC', 'B4712BC', 'B4713BC', 'B4714BC', 'B4715BC', 'B4716BC', 'B4717BC', 'B4718BC', 'B4719BC', 'B4720C', 'B4721C', 'B4722C', 'B4723C'), 'Indentations': (0, 0, 1, 2, 3, 3, 2, 2, 2, 3, 3, 2, 3, 3, 3, 2, 2, 2, 2, 1, 2, 2, 0)}, {'tableName': ('T60900C',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23), 'SeriesCode': ('B4701C', 'B4702C', 'B4703C', 'B4704C', 'B4705C', 'B4706C', 'B4707C', 'B4708C', 'B4709C', 'B4710C', 'B4711C', 'B4712C', 'B4713C', 'B4714C', 'B4715C', 'B4716C', 'B4717C', 'B4718C', 'B4719C', 'B4720C', 'B4721C', 'B4722C', 'B4723C'), 'Indentations': (0, 0, 1, 2, 3, 3, 2, 2, 2, 3, 3, 2, 3, 3, 3, 2, 2, 2, 2, 1, 2, 2, 0)}, {'tableName': ('T60900D',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25), 'SeriesCode': ('B4701C', 'B4702C', 'B4703C', 'N4704C', 'N4705C', 'N4706C', 'N4707C', 'N4708C', 'N4709C', 'N4710C', 'N4711C', 'N4712C', 'N4713C', 'N4714C', 'N4715C', 'N4716C', 'N4717C', 'N4718C', 'N4719C', 'N4729C', 'N4730C', 'B4720C', 'B4721C', 'B4722C', 'B4723C'), 'Indentations': (0, 0, 1, 2, 3, 3, 2, 2, 2, 2, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 0)}, {'tableName': ('T61000B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19), 'SeriesCode': ('B039RC', 'B4802C', 'B4803C', 'B4804C', 'B4805C', 'B4806C', 'B4807C', 'J4808C', 'J4809C', 'B4810C', 'J4811C', 'J4812C', 'J4813C', 'J4814C', 'J4815C', 'J4816C', 'J4817C', 'B4818C', 'ZZZZZZ'), 'Indentations': (0, 0, 1, 2, 2, 2, 2, 3, 3, 2, 3, 3, 3, 2, 2, 2, 2, 1, 0)}, {'tableName': ('T61000C',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19), 'SeriesCode': ('B039RC', 'B4802C', 'B4803C', 'Q4804C', 'Q4805C', 'Q4806C', 'Q4807C', 'B4808C', 'B4809C', 'Q4810C', 'B4811C', 'B4812C', 'B4813C', 'B4814C', 'B4815C', 'B4816C', 'B4817C', 'B4818C', 'ZZZZZZ'), 'Indentations': (0, 0, 1, 2, 2, 2, 2, 3, 3, 2, 3, 3, 3, 2, 2, 2, 2, 1, 0)}, {'tableName': ('T61000D',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21), 'SeriesCode': ('B039RC', 'B4802C', 'B4803C', 'N4804C', 'N4805C', 'N4806C', 'N4807C', 'N4808C', 'N4809C', 'N4810C', 'N4811C', 'N4812C', 'N4813C', 'N4814C', 'N4815C', 'N4816C', 'N4828C', 'N4829C', 'N4830C', 'B4818C', 'ZZZZZZ'), 'Indentations': (0, 0, 1, 2, 2, 2, 2, 2, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 0)}, {'tableName': ('T61100A',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34), 'SeriesCode': ('B040RC', 'B040RC', 'B4903C', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'B4918C', 'ZZZZZZ', 'B040RC', 'B4934C', 'B4921C', 'Y696RC', 'W351RC', 'B4935C', 'Y392RC', 'Y239RC', 'B4936C', 'B4922C', 'B4923C', 'B4924C', 'B4925C', 'B4926C', 'Y390RC'), 'Indentations': (0, 0, 1, 2, 2, 2, 2, 3, 3, 2, 3, 3, 3, 2, 2, 2, 2, 1, 0, 0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 3, 2, 2, 1)}, {'tableName': ('T61100B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43), 'SeriesCode': ('B040RC', 'B040RC', 'B4903C', 'B4904BC', 'B4905BC', 'B4906BC', 'B4907BC', 'J4908C', 'J4909C', 'B4910BC', 'J4911C', 'B4912BC', 'J4913C', 'J4914C', 'J4915C', 'J4916C', 'J4917C', 'B4918C', 'ZZZZZZ', 'B040RC', 'B4934C', 'B4921C', 'Y696RC', 'W351RC', 'B4935C', 'Y392RC', 'Y239RC', 'B4936C', 'B4922C', 'B4923C', 'B4924C', 'B4925C', 'B4926C', 'Y390RC', 'B4928C', 'Y235RC', 'B4939C', 'B4940C', 'B4930C', 'B4931C', 'B4932C', 'B4933C', 'Y391RC'), 'Indentations': (0, 0, 1, 2, 2, 2, 2, 3, 3, 2, 3, 3, 3, 2, 2, 2, 2, 1, 0, 0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 3, 2, 2, 1, 1, 2, 2, 3, 4, 4, 3, 3, 1)}, {'tableName': ('T61100C',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43), 'SeriesCode': ('B040RC', 'B040RC', 'B4903C', 'B4904C', 'B4905C', 'B4906C', 'B4907C', 'B4908C', 'B4909C', 'B4910C', 'B4911C', 'B4912C', 'B4913C', 'B4914C', 'B4915C', 'B4916C', 'B4917C', 'B4918C', 'ZZZZZZ', 'B040RC', 'B4934C', 'B4921C', 'Y696RC', 'W351RC', 'B4935C', 'Y392RC', 'Y239RC', 'B4936C', 'B4922C', 'B4923C', 'B4924C', 'B4925C', 'B4926C', 'Y390RC', 'B4928C', 'Y235RC', 'B4939C', 'B4940C', 'B4930C', 'B4931C', 'B4932C', 'B4933C', 'Y391RC'), 'Indentations': (0, 0, 1, 2, 2, 2, 2, 3, 3, 2, 3, 3, 3, 2, 2, 2, 2, 1, 0, 0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 3, 2, 2, 1, 1, 2, 2, 3, 4, 4, 3, 3, 1)}, {'tableName': ('T61100D',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45), 'SeriesCode': ('B040RC', 'B040RC', 'B4903C', 'N4904C', 'N4905C', 'N4906C', 'N4907C', 'N4908C', 'N4909C', 'N4910C', 'N4911C', 'N4912C', 'N4913C', 'N4914C', 'N4915C', 'N4916C', 'N4918C', 'N4919C', 'N4929C', 'B4918C', 'ZZZZZZ', 'B040RC', 'B4934C', 'B4921C', 'Y696RC', 'W351RC', 'B4935C', 'Y392RC', 'Y239RC', 'B4936C', 'B4922C', 'B4923C', 'B4924C', 'B4925C', 'B4926C', 'Y390RC', 'B4928C', 'Y235RC', 'B4939C', 'B4940C', 'B4930C', 'B4931C', 'B4932C', 'B4933C', 'Y391RC'), 'Indentations': (0, 0, 1, 2, 2, 2, 2, 2, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 0, 0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 3, 2, 2, 1, 1, 2, 2, 3, 4, 4, 3, 3, 2)}, {'tableName': ('T61200A',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18), 'SeriesCode': ('B046RC', 'H1800C', 'H1801C', 'H1802C', 'H1803C', 'H1804C', 'H1805C', 'Q1806C', 'Q1807C', 'Q1808C', 'Q1809C', 'H1810C', 'H1811C', 'H1812C', 'H1813C', 'H1821C', 'B1822C', 'B1825C'), 'Indentations': (0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1)}, {'tableName': ('T61200B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25), 'SeriesCode': ('B046RC', 'J1800C', 'J1801C', 'J1802C', 'J1803C', 'J1804C', 'J1805C', 'A1806BC', 'B1807BC', 'B1808BC', 'B1809BC', 'J1810C', 'J1811C', 'J1812C', 'J1813C', 'B1814BC', 'B1815BC', 'B1816BC', 'B1817BC', 'B1818BC', 'B1819BC', 'B1820BC', 'J1821C', 'Q1822BC', 'B1823BC'), 'Indentations': (0, 0, 0, 0, 0, 1, 2, 0, 1, 2, 2, 0, 0, 0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2)}, {'tableName': ('T61200C',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25), 'SeriesCode': ('B046RC', 'B1800C', 'B1801C', 'B1802C', 'A1803C', 'B1804C', 'B1805C', 'A1806C', 'B1807C', 'B1808C', 'B1809C', 'B1810C', 'B1811C', 'B1812C', 'A1813C', 'B1814C', 'B1815C', 'B1816C', 'B1817C', 'B1818C', 'B1819C', 'B1820C', 'B1821C', 'Q1822C', 'B1823C'), 'Indentations': (0, 0, 0, 0, 0, 1, 2, 0, 1, 2, 2, 0, 0, 0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2)}, {'tableName': ('T61200D',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28), 'SeriesCode': ('B046RC', 'N1800C', 'N1801C', 'N1802C', 'N1803C', 'N1804C', 'N1805C', 'N1806C', 'N1807C', 'N1808C', 'N1809C', 'N1810C', 'N1811C', 'N1812C', 'N1813C', 'N1814C', 'N1815C', 'N1816C', 'N1817C', 'N1818C', 'N1819C', 'N1820C', 'N1821C', 'N1822C', 'N1823C', 'N1824C', 'N1825C', 'N1826C'), 'Indentations': (0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 2, 2, 2, 1, 0, 1, 1, 0, 1, 1, 0)}, {'tableName': ('T61300A',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19), 'SeriesCode': ('A1700C', 'Q1701C', 'Q1702C', 'Q1703C', 'Q1704C', 'Q1705C', 'Q1706C', 'Q1707C', 'Q1708C', 'Q1709C', 'Q1710C', 'Q1711C', 'Q1712C', 'Q1713C', 'Q1714C', 'Q1715C', 'H1716C', 'A1717C', 'Q1720C'), 'Indentations': (0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0)}, {'tableName': ('T61300B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29), 'SeriesCode': ('A1700C', 'A1701BC', 'B1702BC', 'B1703BC', 'B1704BC', 'B1705BC', 'A1706BC', 'B1707BC', 'B1708BC', 'A1709BC', 'B1710BC', 'B1711BC', 'B1712BC', 'B1713BC', 'B1714BC', 'A1715BC', 'B1716C', 'Q1717BC', 'B1720BC', 'B2616BC', 'B2617BC', 'B2618BC', 'B2619BC', 'B2620BC', 'B2621BC', 'B2622BC', 'B2623BC', 'B2624BC', 'B2625BC'), 'Indentations': (0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)}, {'tableName': ('T61300C',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29), 'SeriesCode': ('A1700C', 'A1701C', 'B1702C', 'B1703C', 'B1704C', 'B1705C', 'A1706C', 'B1707C', 'B1708C', 'A1709C', 'B1710C', 'B1711C', 'B1712C', 'B1713C', 'B1714C', 'A1715C', 'Q1716C', 'Q1717C', 'B1720C', 'B2616C', 'B2617C', 'B2618C', 'B2619C', 'B2620C', 'B2621C', 'B2622C', 'B2623C', 'B2624C', 'B2625C'), 'Indentations': (0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)}, {'tableName': ('T61300D',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27), 'SeriesCode': ('A1700C', 'N1701C', 'N1702C', 'N1703C', 'N1704C', 'N1705C', 'N1706C', 'N1707C', 'N1708C', 'N1709C', 'N1710C', 'N1711C', 'N1712C', 'N1713C', 'N1714C', 'N1715C', 'N1716C', 'N1717C', 'N1718C', 'N1719C', 'N1720C', 'N1721C', 'N1722C', 'N1723C', 'N1724C', 'N1725C', 'N1726C'), 'Indentations': (0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0)}, {'tableName': ('T61400A',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23), 'SeriesCode': ('A1830C', 'B058RC', 'Q1831C', 'Q1832C', 'Q672RC', 'Q674RC', 'Q673RC', 'Q676RC', 'Q528RC', 'Q529RC', 'Q530RC', 'Q526RC', 'Q527RC', 'Y697RC', 'B179RC', 'Q1834C', 'Q1835C', 'Q1836C', 'Q1837C', 'Q1838C', 'Q1839C', 'Q1840C', 'B1841C'), 'Indentations': (0, 0, 1, 1, 1, 2, 2, 1, 2, 2, 2, 1, 1, 1, 0, 1, 1, 1, 2, 2, 1, 1, 1)}, {'tableName': ('T61400B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23), 'SeriesCode': ('A1830C', 'B058RC', 'B1831BC', 'B1832BC', 'A672RBC', 'A674RBC', 'A673RBC', 'A676RBC', 'C528RBC', 'C529RBC', 'C530RBC', 'C526RBC', 'C527RBC', 'Y697RC', 'B179RC', 'B1834BC', 'B1835BC', 'A1836BC', 'B1837BC', 'B1838BC', 'B1839BC', 'B1840BC', 'B1841C'), 'Indentations': (0, 0, 1, 1, 1, 2, 2, 1, 2, 2, 2, 1, 1, 1, 0, 1, 1, 1, 2, 2, 1, 1, 1)}, {'tableName': ('T61400C',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23), 'SeriesCode': ('A1830C', 'B058RC', 'B1831C', 'B1832C', 'A672RC', 'A674RC', 'A673RC', 'A676RC', 'C528RC', 'C529RC', 'C530RC', 'C526RC', 'C527RC', 'Y697RC', 'B179RC', 'B1834C', 'B1835C', 'A1836C', 'B1837C', 'B1838C', 'B1839C', 'B1840C', 'B1841C'), 'Indentations': (0, 0, 1, 1, 1, 2, 2, 1, 2, 2, 2, 1, 1, 1, 0, 1, 1, 1, 2, 2, 1, 1, 1)}, {'tableName': ('T61400D',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22), 'SeriesCode': ('A1830C', 'B058RC', 'N1831C', 'N530RC', 'N1832C', 'N672RC', 'N674RC', 'N673RC', 'N526RC', 'N527RC', 'N676RC', 'N529RC', 'N1833C', 'B179RC', 'N1834C', 'N1835C', 'N1836C', 'N1837C', 'N1838C', 'N1839C', 'N1840C', 'N1841C'), 'Indentations': (0, 0, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 0, 1, 1, 1, 2, 2, 1, 1, 1)}, {'tableName': ('T61500A',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22), 'SeriesCode': ('B060RC', 'A1850C', 'Q1851C', 'Q1852C', 'Q1853C', 'Q1854C', 'Q1855C', 'Q1856C', 'Q1857C', 'Q1858C', 'Q1859C', 'Q1860C', 'Q1861C', 'Q1862C', 'Q1863C', 'Q1864C', 'Q1865C', 'Q1866C', 'Q1867C', 'A1627C', 'A2067C', 'B1869C'), 'Indentations': (0, 0, 1, 1, 1, 1, 2, 2, 1, 2, 2, 2, 1, 1, 1, 2, 2, 2, 1, 0, 1, 1)}, {'tableName': ('T61500B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22), 'SeriesCode': ('B060RC', 'A1850C', 'B1851BC', 'B1852BC', 'B1853BC', 'A1854BC', 'B1855BC', 'B1856BC', 'A1857BC', 'B1858BC', 'B1859BC', 'B1860BC', 'B1861BC', 'B1862BC', 'A1863BC', 'J1864C', 'B1865BC', 'B1866BC', 'A1867BC', 'A1627C', 'A2067C', 'B1869C'), 'Indentations': (0, 0, 1, 1, 1, 1, 2, 2, 1, 2, 2, 2, 1, 1, 1, 2, 2, 2, 1, 0, 1, 1)}, {'tableName': ('T61500C',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22), 'SeriesCode': ('B060RC', 'A1850C', 'B1851C', 'B1852C', 'B1853C', 'A1854C', 'B1855C', 'B1856C', 'A1857C', 'B1858C', 'B1859C', 'B1860C', 'B1861C', 'B1862C', 'A1863C', 'B1864C', 'B1865C', 'B1866C', 'A1867C', 'A1627C', 'A2067C', 'B1869C'), 'Indentations': (0, 0, 1, 1, 1, 1, 2, 2, 1, 2, 2, 2, 1, 1, 1, 2, 2, 2, 1, 0, 1, 1)}, {'tableName': ('T61500D',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26), 'SeriesCode': ('B060RC', 'A1850C', 'N1851C', 'N1852C', 'N1853C', 'N1854C', 'N1855C', 'N1856C', 'N1857C', 'N1858C', 'N1859C', 'N1860C', 'N1861C', 'N1862C', 'N1863C', 'N1864C', 'N1865C', 'N1866C', 'N1867C', 'N1868C', 'N1869C', 'N1870C', 'N1871C', 'A1627C', 'A2067C', 'B1869C'), 'Indentations': (0, 0, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 2, 2, 1, 2, 2, 2, 1, 1, 1, 0, 1, 1)}, {'tableName': ('T61600A',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18), 'SeriesCode': ('A051RC', 'A445RC', 'A587RC', 'A463RC', 'B394RC', 'A052RC', 'A390RC', 'A392RC', 'A397RC', 'B398RC', 'A399RC', 'A400RC', 'A406RC', 'A401RC', 'A416RC', 'A413RC', 'A420RC', 'B394RC'), 'Indentations': (0, 0, 1, 1, 0, 1, 0, 1, 2, 2, 1, 2, 3, 3, 2, 2, 2, 0)}, {'tableName': ('T61600B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34), 'SeriesCode': ('A051RC', 'A445RC', 'A587RC', 'A463RC', 'B394RC', 'B933RC', 'B934RC', 'A052RC', 'A390RC', 'A392RC', 'J397RBC', 'B398RC', 'A399RC', 'Q400RBC', 'Q406RBC', 'A407RBC', 'A408RBC', 'A409RBC', 'A410RBC', 'A411RBC', 'A412RC', 'Q401RBC', 'A402RBC', 'A403RBC', 'A404RBC', 'A405RC', 'Q416RBC', 'A417RBC', 'A418RBC', 'A419RBC', 'A414RBC', 'A415RBC', 'A420RC', 'B394RC'), 'Indentations': (0, 0, 1, 1, 0, 1, 1, 2, 0, 1, 2, 2, 1, 2, 3, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 2, 3, 3, 3, 2, 2, 2, 0)}, {'tableName': ('T61600C',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34), 'SeriesCode': ('A051RC', 'A445RC', 'A587RC', 'A463RC', 'B394RC', 'B933RC', 'B934RC', 'A052RC', 'A390RC', 'A392RC', 'J397RC', 'B398RC', 'A399RC', 'Q400RC', 'Q406RC', 'A407RC', 'A408RC', 'A409RC', 'A410RC', 'A411RC', 'A412RC', 'Q401RC', 'A402RC', 'A403RC', 'A404RC', 'A405RC', 'Q416RC', 'A417RC', 'A418RC', 'A419RC', 'A414RC', 'A415RC', 'A420RC', 'B394RC'), 'Indentations': (0, 0, 1, 1, 0, 1, 1, 2, 0, 1, 2, 2, 1, 2, 3, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 2, 3, 3, 3, 2, 2, 2, 0)}, {'tableName': ('T61600D',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33), 'SeriesCode': ('A051RC', 'A445RC', 'A587RC', 'A463RC', 'B394RC', 'B933RC', 'B934RC', 'A052RC', 'A390RC', 'A392RC', 'B397RC', 'N398RC', 'A399RC', 'N419RC', 'N400RC', 'N406RC', 'N408RC', 'N409RC', 'N501RC', 'N410RC', 'N411RC', 'N412RC', 'N401RC', 'N402RC', 'N404RC', 'N403RC', 'N405RC', 'N414RC', 'N415RC', 'N417RC', 'N502RC', 'N420RC', 'B394RC'), 'Indentations': (0, 0, 1, 1, 0, 1, 1, 2, 0, 1, 2, 2, 1, 2, 2, 3, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 2, 2, 2, 2, 2, 0)}, {'tableName': ('T61700A',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72), 'SeriesCode': ('A053RC', 'E561RC', 'Q3003C', 'Q3004C', 'Q3005C', 'Q3006C', 'Q3007C', 'B3077C', 'B3008C', 'Q3009C', 'Q3010C', 'Q3011C', 'Q563RC', 'Q565RC', 'Q3014C', 'B3015C', 'Q3016C', 'Q3017C', 'B3018C', 'Q3019C', 'Q3020C', 'Q3021C', 'B3022C', 'B3024C', 'Q564RC', 'Q3026C', 'Q3027C', 'Q3028C', 'Q3029C', 'Q3030C', 'Q3031C', 'Q3032C', 'Q3033C', 'Q3034C', 'Q3035C', 'Q567RC', 'Q512RC', 'Q3038C', 'Q3039C', 'Q3040C', 'Q3041C', 'Q3042C', 'Q3043C', 'Q3044C', 'Q513RC', 'Q3046C', 'Q3047C', 'Q514RC', 'B3078C', 'B3079C', 'Q510RC', 'Q511RC', 'Q3051C', 'A3052C', 'Q3056C', 'Q3059C', 'B3055C', 'Q3057C', 'Q3058C', 'Q3061C', 'Q3062C', 'Q3063C', 'Q3064C', 'Q3066C', 'Q3067C', 'Q3068C', 'Q3069C', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'B394RC'), 'Indentations': (0, 0, 1, 2, 2, 1, 2, 2, 2, 2, 2, 1, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 2, 3, 3, 1, 1, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 0)}, {'tableName': ('T61700B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76), 'SeriesCode': ('A053RC', 'E561RC', 'A3003BC', 'B3004BC', 'B3005BC', 'A3006BC', 'B3007BC', 'J3008C', 'B3009BC', 'B3010BC', 'B3011BC', 'E563RBC', 'E565RBC', 'J3014C', 'J3015C', 'B3016BC', 'J3017C', 'J3018C', 'B3019BC', 'B3020BC', 'B3021BC', 'J3022C', 'B3023BC', 'J3024C', 'E564RBC', 'B3026BC', 'B3027BC', 'B3028BC', 'B3029BC', 'B3030BC', 'B3031BC', 'B3032BC', 'B3033BC', 'B3034BC', 'B3035BC', 'E567RBC', 'C512RBC', 'B3038BC', 'B3039BC', 'B3040BC', 'B3041BC', 'B3042BC', 'B3043BC', 'B3044BC', 'C513RBC', 'B3046BC', 'B3047BC', 'C514RBC', 'C510RBC', 'C511RBC', 'A3051BC', 'J3052C', 'B3053BC', 'J3054C', 'J3055C', 'B3056BC', 'B3057BC', 'B3058BC', 'B3059BC', 'B3060BC', 'A3061BC', 'B3062BC', 'B3063BC', 'B3064BC', 'B3065BC', 'J3066C', 'B3067BC', 'B3068BC', 'A3069BC', 'B3070BC', 'B3071BC', 'B3072BC', 'B3073BC', 'B394RC', 'B3075C', 'B3076C'), 'Indentations': (0, 0, 1, 2, 2, 1, 2, 2, 2, 2, 1, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 2, 1, 1, 1, 2, 3, 3, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 0, 1, 1)}, {'tableName': ('T61700C',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76), 'SeriesCode': ('A053RC', 'E561RC', 'A3003C', 'B3004C', 'B3005C', 'A3006C', 'B3007C', 'Q3008C', 'B3009C', 'B3010C', 'B3011C', 'E563RC', 'E565RC', 'B3014C', 'Q3015C', 'B3016C', 'B3017C', 'Q3018C', 'B3019C', 'B3020C', 'B3021C', 'Q3022C', 'B3023C', 'Q3024C', 'E564RC', 'B3026C', 'B3027C', 'B3028C', 'B3029C', 'B3030C', 'B3031C', 'B3032C', 'B3033C', 'B3034C', 'B3035C', 'E567RC', 'C512RC', 'B3038C', 'B3039C', 'B3040C', 'B3041C', 'B3042C', 'B3043C', 'B3044C', 'C513RC', 'B3046C', 'B3047C', 'C514RC', 'C510RC', 'C511RC', 'A3051C', 'B3091C', 'B3053C', 'B3092C', 'B3093C', 'B3056C', 'B3057C', 'B3058C', 'B3059C', 'B3060C', 'A3061C', 'B3062C', 'B3063C', 'B3064C', 'B3065C', 'B3066C', 'B3067C', 'B3068C', 'A3069C', 'B3070C', 'B3071C', 'B3072C', 'B3073C', 'B394RC', 'B3075C', 'B3076C'), 'Indentations': (0, 0, 1, 2, 2, 1, 2, 2, 2, 2, 1, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 2, 1, 1, 1, 2, 3, 3, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 0, 1, 1)}, {'tableName': ('T61700D',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83), 'SeriesCode': ('A053RC', 'E561RC', 'N3003C', 'N3004C', 'N3005C', 'N3006C', 'N3007C', 'N3008C', 'N3009C', 'N3010C', 'N3011C', 'N563RC', 'N565RC', 'N3014C', 'N3015C', 'N3016C', 'N3017C', 'N3018C', 'N3019C', 'N3020C', 'N3021C', 'N3022C', 'N3023C', 'N3024C', 'N564RC', 'N3026C', 'N3028C', 'N3029C', 'N3031C', 'N3032C', 'N3033C', 'N3034C', 'N3035C', 'N567RC', 'N512RC', 'N3038C', 'N3039C', 'N3040C', 'N3041C', 'N3042C', 'N3043C', 'N3044C', 'N513RC', 'N3046C', 'N3047C', 'N514RC', 'N510RC', 'N511RC', 'N3051C', 'N3091C', 'N3053C', 'N3092C', 'N3093C', 'N3056C', 'N3057C', 'N3058C', 'N3059C', 'N3060C', 'N3061C', 'N3062C', 'N3063C', 'N3064C', 'N3065C', 'N3066C', 'N3067C', 'N3070C', 'N3071C', 'N3072C', 'N3073C', 'N3074C', 'N3075C', 'N3076C', 'N3077C', 'N3078C', 'N3079C', 'N3080C', 'N3081C', 'N3082C', 'N3083C', 'N3084C', 'B394RC', 'B3075C', 'B3076C'), 'Indentations': (0, 0, 1, 2, 2, 1, 2, 2, 2, 1, 1, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 1, 2, 2, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 1, 2, 2, 1, 2, 2, 2, 1, 1, 2, 2, 1, 1, 2, 2, 2, 1, 2, 2, 1, 2, 2, 1, 0, 1, 1)}, {'tableName': ('T61800A',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72), 'SeriesCode': ('A054RC', 'A054RC', 'Q3103C', 'Q3104C', 'Q3105C', 'Q3106C', 'Q3107C', 'B3175C', 'Q3108C', 'Q3109C', 'Q3110C', 'Q3111C', 'Q3112C', 'Q3113C', 'Q3114C', 'Q3115C', 'Q3116C', 'Q3117C', 'Q3118C', 'Q3119C', 'Q3120C', 'Q3121C', 'Q3122C', 'Q3124C', 'Q3125C', 'Q3126C', 'Q3127C', 'Q3128C', 'Q3129C', 'Q3130C', 'Q3131C', 'Q3132C', 'Q3133C', 'Q3134C', 'Q3135C', 'Q3136C', 'Q3137C', 'Q3138C', 'Q3139C', 'Q3140C', 'Q3141C', 'Q3142C', 'Q3143C', 'Q3144C', 'Q3145C', 'Q3146C', 'Q3147C', 'Q3148C', 'B3176C', 'B3177C', 'Q3149C', 'Q3150C', 'Q3151C', 'A3152C', 'Q3156C', 'Q3159C', 'B3155C', 'Q3157C', 'Q3158C', 'Q3161C', 'Q3162C', 'Q3163C', 'Q3164C', 'Q3166C', 'Q3167C', 'Q3168C', 'Q3169C', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ'), 'Indentations': (0, 0, 1, 2, 2, 1, 2, 2, 2, 2, 2, 1, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 2, 3, 3, 1, 1, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 0)}, {'tableName': ('T61800B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74), 'SeriesCode': ('A054RC', 'A3102C', 'A3103BC', 'B3104BC', 'B3105BC', 'A3106BC', 'B3107BC', 'B3108BC', 'B3109BC', 'B3110BC', 'B3111BC', 'A3112BC', 'A3113BC', 'B3114BC', 'B3115BC', 'B3116BC', 'B3117BC', 'B3118BC', 'B3119BC', 'B3120BC', 'B3121BC', 'B3122BC', 'B3123BC', 'B3124BC', 'A3125BC', 'B3126BC', 'B3127BC', 'B3128BC', 'B3129BC', 'B3130BC', 'B3131BC', 'B3132BC', 'B3133BC', 'B3134BC', 'B3135BC', 'A3136BC', 'A3137BC', 'B3138BC', 'B3139BC', 'B3140BC', 'B3141BC', 'B3142BC', 'B3143BC', 'B3144BC', 'A3145BC', 'B3146BC', 'B3147BC', 'B3148BC', 'B3149BC', 'B3150BC', 'A3151BC', 'J3152C', 'B3153BC', 'J3154C', 'J3155C', 'B3156BC', 'B3157BC', 'B3158BC', 'B3159BC', 'B3160BC', 'A3161BC', 'B3162BC', 'B3163BC', 'B3164BC', 'B3165BC', 'B3166BC', 'B3167BC', 'B3168BC', 'A3169BC', 'B3170BC', 'B3171BC', 'B3172BC', 'B3173BC', 'ZZZZZZ'), 'Indentations': (0, 0, 1, 2, 2, 1, 2, 2, 2, 2, 1, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 2, 1, 1, 1, 2, 3, 3, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 0)}, {'tableName': ('T61800C',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74), 'SeriesCode': ('A054RC', 'A3102C', 'A3103C', 'B3104C', 'B3105C', 'A3106C', 'B3107C', 'B3108C', 'B3109C', 'B3110C', 'B3111C', 'A3112C', 'A3113C', 'B3114C', 'B3115C', 'B3116C', 'B3117C', 'B3118C', 'B3119C', 'B3120C', 'B3121C', 'B3122C', 'B3123C', 'B3124C', 'A3125C', 'B3126C', 'B3127C', 'B3128C', 'B3129C', 'B3130C', 'B3131C', 'B3132C', 'B3133C', 'B3134C', 'B3135C', 'A3136C', 'A3137C', 'B3138C', 'B3139C', 'B3140C', 'B3141C', 'B3142C', 'B3143C', 'B3144C', 'A3145C', 'B3146C', 'B3147C', 'B3148C', 'B3149C', 'B3150C', 'A3151C', 'B3191C', 'B3153C', 'B3192C', 'B3193C', 'B3156C', 'B3157C', 'B3158C', 'B3159C', 'B3160C', 'A3161C', 'B3162C', 'B3163C', 'B3164C', 'B3165C', 'B3166C', 'B3167C', 'B3168C', 'A3169C', 'B3170C', 'B3171C', 'B3172C', 'B3173C', 'ZZZZZZ'), 'Indentations': (0, 0, 1, 2, 2, 1, 2, 2, 2, 2, 1, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 2, 1, 1, 1, 2, 3, 3, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 0)}, {'tableName': ('T61800D',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81), 'SeriesCode': ('A054RC', 'A3102C', 'N3103C', 'N3104C', 'N3105C', 'N3106C', 'N3107C', 'N3108C', 'N3109C', 'N3110C', 'N3111C', 'N3112C', 'N3113C', 'N3114C', 'N3115C', 'N3116C', 'N3117C', 'N3118C', 'N3119C', 'N3120C', 'N3121C', 'N3122C', 'N3123C', 'N3124C', 'N3125C', 'N3126C', 'N3127C', 'N3128C', 'N3129C', 'N3130C', 'N3131C', 'N3132C', 'N3133C', 'N3134C', 'N3135C', 'N3136C', 'N3137C', 'N3138C', 'N3139C', 'N3140C', 'N3141C', 'N3142C', 'N3143C', 'N3144C', 'N3145C', 'N3146C', 'N3147C', 'N3148C', 'N3149C', 'N3150C', 'N3151C', 'N3191C', 'N3153C', 'N3192C', 'N3193C', 'N3156C', 'N3157C', 'N3158C', 'N3159C', 'N3160C', 'N3161C', 'N3162C', 'N3163C', 'N3164C', 'N3165C', 'N3168C', 'N3169C', 'N3170C', 'N3171C', 'N3172C', 'N3173C', 'N3175C', 'N3176C', 'N3177C', 'N3178C', 'N3179C', 'N3180C', 'N3181C', 'N3182C', 'N3183C', 'ZZZZZZ'), 'Indentations': (0, 0, 1, 2, 2, 1, 2, 2, 2, 1, 1, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 1, 2, 2, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 1, 2, 2, 1, 2, 2, 2, 1, 1, 2, 2, 1, 1, 2, 2, 2, 1, 2, 2, 1, 2, 2, 1, 0)}, {'tableName': ('T61900A',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72), 'SeriesCode': ('A055RC', 'A3202C', 'Q3203C', 'Q3204C', 'Q3205C', 'Q3206C', 'Q3207C', 'B3277C', 'Q3208C', 'Q3209C', 'Q3210C', 'Q3211C', 'Q3212C', 'Q3213C', 'Q3214C', 'Q3215C', 'Q3216C', 'Q3217C', 'Q3218C', 'Q3219C', 'Q3220C', 'Q3221C', 'Q3222C', 'Q3224C', 'Q3225C', 'Q3226C', 'Q3227C', 'Q3228C', 'Q3229C', 'Q3230C', 'Q3231C', 'Q3232C', 'Q3233C', 'Q3234C', 'Q3235C', 'Q3236C', 'Q3237C', 'Q3238C', 'Q3239C', 'Q3240C', 'Q3241C', 'Q3242C', 'Q3243C', 'Q3244C', 'Q3245C', 'Q3246C', 'Q3247C', 'Q3248C', 'B3278C', 'B3279C', 'Q3249C', 'Q3250C', 'Q3251C', 'A3252C', 'Q3256C', 'Q3259C', 'B3255C', 'Q3257C', 'Q3258C', 'Q3261C', 'Q3262C', 'Q3263C', 'Q3264C', 'Q3266C', 'Q3267C', 'Q3268C', 'Q3269C', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'A3274C'), 'Indentations': (0, 0, 1, 2, 2, 1, 2, 2, 2, 2, 2, 1, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 2, 3, 3, 1, 1, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 0)}, {'tableName': ('T61900B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76), 'SeriesCode': ('A055RC', 'A3202C', 'A3203BC', 'B3204BC', 'B3205BC', 'A3206BC', 'B3207BC', 'B3208BC', 'B3209BC', 'B3210BC', 'B3211BC', 'A3212BC', 'A3213BC', 'B3214BC', 'B3215BC', 'B3216BC', 'B3217BC', 'B3218BC', 'B3219BC', 'B3220BC', 'B3221BC', 'B3222BC', 'B3223BC', 'B3224BC', 'A3225BC', 'B3226BC', 'B3227BC', 'B3228BC', 'B3229BC', 'B3230BC', 'B3231BC', 'B3232BC', 'B3233BC', 'B3234BC', 'B3235BC', 'A3236BC', 'A3237BC', 'B3238BC', 'B3239BC', 'B3240BC', 'B3241BC', 'B3242BC', 'B3243BC', 'B3244BC', 'A3245BC', 'B3246BC', 'B3247BC', 'B3248BC', 'B3249BC', 'B3250BC', 'A3251BC', 'J3252C', 'B3253BC', 'J3254C', 'J3255C', 'B3256BC', 'B3257BC', 'B3258BC', 'B3259BC', 'B3260BC', 'A3261BC', 'B3262BC', 'B3263BC', 'B3264BC', 'B3265BC', 'B3266BC', 'B3267BC', 'B3268BC', 'A3269BC', 'B3270BC', 'B3271BC', 'B3272BC', 'B3273BC', 'A3274C', 'B3275C', 'B3276C'), 'Indentations': (0, 0, 1, 2, 2, 1, 2, 2, 2, 2, 1, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 2, 1, 1, 1, 2, 3, 3, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 0, 1, 1)}, {'tableName': ('T61900C',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76), 'SeriesCode': ('A055RC', 'A3202C', 'A3203C', 'B3204C', 'B3205C', 'A3206C', 'B3207C', 'B3208C', 'B3209C', 'B3210C', 'B3211C', 'A3212C', 'A3213C', 'B3214C', 'B3215C', 'B3216C', 'B3217C', 'B3218C', 'B3219C', 'B3220C', 'B3221C', 'B3222C', 'B3223C', 'B3224C', 'A3225C', 'B3226C', 'B3227C', 'B3228C', 'B3229C', 'B3230C', 'B3231C', 'B3232C', 'B3233C', 'B3234C', 'B3235C', 'A3236C', 'A3237C', 'B3238C', 'B3239C', 'B3240C', 'B3241C', 'B3242C', 'B3243C', 'B3244C', 'A3245C', 'B3246C', 'B3247C', 'B3248C', 'B3249C', 'B3250C', 'A3251C', 'B3291C', 'B3253C', 'B3292C', 'B3293C', 'B3256C', 'B3257C', 'B3258C', 'B3259C', 'B3260C', 'A3261C', 'B3262C', 'B3263C', 'B3264C', 'B3265C', 'B3266C', 'B3267C', 'B3268C', 'A3269C', 'B3270C', 'B3271C', 'B3272C', 'B3273C', 'A3274C', 'B3275C', 'B3276C'), 'Indentations': (0, 0, 1, 2, 2, 1, 2, 2, 2, 2, 1, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 2, 1, 1, 1, 2, 3, 3, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 0, 1, 1)}, {'tableName': ('T61900D',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83), 'SeriesCode': ('A055RC', 'A3202C', 'N3203C', 'N3204C', 'N3205C', 'N3206C', 'N3207C', 'N3208C', 'N3209C', 'N3210C', 'N3211C', 'N3212C', 'N3213C', 'N3214C', 'N3215C', 'N3216C', 'N3217C', 'N3218C', 'N3219C', 'N3220C', 'N3221C', 'N3222C', 'N3223C', 'N3224C', 'N3225C', 'N3226C', 'N3227C', 'N3228C', 'N3229C', 'N3230C', 'N3231C', 'N3232C', 'N3233C', 'N3234C', 'N3235C', 'N3236C', 'N3237C', 'N3238C', 'N3239C', 'N3240C', 'N3241C', 'N3242C', 'N3243C', 'N3244C', 'N3245C', 'N3246C', 'N3247C', 'N3248C', 'N3249C', 'N3250C', 'N3251C', 'N3291C', 'N3253C', 'N3292C', 'N3293C', 'N3256C', 'N3257C', 'N3258C', 'N3259C', 'N3260C', 'N3261C', 'N3262C', 'N3263C', 'N3264C', 'N3265C', 'N3268C', 'N3269C', 'N3270C', 'N3271C', 'N3272C', 'N3273C', 'N3277C', 'N3278C', 'N3279C', 'N3280C', 'N3281C', 'N3282C', 'N3283C', 'N3284C', 'N3285C', 'A3274C', 'B3275C', 'B3276C'), 'Indentations': (0, 0, 1, 2, 2, 1, 2, 2, 2, 1, 1, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 1, 2, 2, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 1, 2, 2, 1, 2, 2, 2, 1, 1, 2, 2, 1, 1, 2, 2, 2, 1, 2, 2, 1, 2, 2, 1, 0, 1, 1)}, {'tableName': ('T62000A',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72), 'SeriesCode': ('B056RC', 'A3302C', 'Q3303C', 'Q3304C', 'Q3305C', 'Q3306C', 'Q3307C', 'B3377C', 'Q3308C', 'Q3309C', 'Q3310C', 'Q3311C', 'Q3312C', 'Q3313C', 'Q3314C', 'Q3315C', 'Q3316C', 'Q3317C', 'Q3318C', 'Q3319C', 'Q3320C', 'Q3321C', 'Q3322C', 'Q3324C', 'Q3325C', 'Q3326C', 'Q3327C', 'Q3328C', 'Q3329C', 'Q3330C', 'Q3331C', 'Q3332C', 'Q3333C', 'Q3334C', 'Q3335C', 'Q3336C', 'Q3337C', 'Q3338C', 'Q3339C', 'Q3340C', 'Q3341C', 'Q3342C', 'Q3343C', 'Q3344C', 'Q3345C', 'Q3346C', 'Q3347C', 'Q3348C', 'B3378C', 'B3379C', 'Q3349C', 'Q3350C', 'Q3351C', 'A3352C', 'Q3356C', 'Q3359C', 'B3355C', 'Q3357C', 'Q3358C', 'Q3361C', 'Q3362C', 'Q3363C', 'Q3364C', 'Q3366C', 'Q3367C', 'Q3368C', 'Q3369C', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'A3374C'), 'Indentations': (0, 0, 1, 2, 2, 1, 2, 2, 2, 2, 2, 1, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 2, 3, 3, 1, 1, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 0)}, {'tableName': ('T62000B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76), 'SeriesCode': ('B056RC', 'A3302C', 'A3303BC', 'B3304BC', 'B3305BC', 'A3306BC', 'B3307BC', 'B3308BC', 'B3309BC', 'B3310BC', 'B3311BC', 'A3312BC', 'A3313BC', 'B3314BC', 'B3315BC', 'B3316BC', 'B3317BC', 'B3318BC', 'B3319BC', 'B3320BC', 'B3321BC', 'B3322BC', 'B3323BC', 'B3324BC', 'A3325BC', 'B3326BC', 'B3327BC', 'B3328BC', 'B3329BC', 'B3330BC', 'B3331BC', 'B3332BC', 'B3333BC', 'B3334BC', 'B3335BC', 'A3336BC', 'A3337BC', 'B3338BC', 'B3339BC', 'B3340BC', 'B3341BC', 'B3342BC', 'B3343BC', 'B3344BC', 'A3345BC', 'B3346BC', 'B3347BC', 'B3348BC', 'B3349BC', 'B3350BC', 'A3351BC', 'J3352C', 'B3353BC', 'J3354C', 'J3355C', 'B3356BC', 'B3357BC', 'B3358BC', 'B3359BC', 'B3360BC', 'A3361BC', 'B3362BC', 'B3363BC', 'B3364BC', 'B3365BC', 'B3366BC', 'B3367BC', 'B3368BC', 'A3369BC', 'B3370BC', 'B3371BC', 'B3372BC', 'B3373BC', 'A3374C', 'B3375C', 'B3376C'), 'Indentations': (0, 0, 1, 2, 2, 1, 2, 2, 2, 2, 1, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 2, 1, 1, 1, 2, 3, 3, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 0, 1, 1)}, {'tableName': ('T62000C',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76), 'SeriesCode': ('B056RC', 'A3302C', 'A3303C', 'B3304C', 'B3305C', 'A3306C', 'B3307C', 'B3308C', 'B3309C', 'B3310C', 'B3311C', 'A3312C', 'A3313C', 'B3314C', 'B3315C', 'B3316C', 'B3317C', 'B3318C', 'B3319C', 'B3320C', 'B3321C', 'B3322C', 'B3323C', 'B3324C', 'A3325C', 'B3326C', 'B3327C', 'B3328C', 'B3329C', 'B3330C', 'B3331C', 'B3332C', 'B3333C', 'B3334C', 'B3335C', 'A3336C', 'A3337C', 'B3338C', 'B3339C', 'B3340C', 'B3341C', 'B3342C', 'B3343C', 'B3344C', 'A3345C', 'B3346C', 'B3347C', 'B3348C', 'B3349C', 'B3350C', 'A3351C', 'B3391C', 'B3353C', 'B3392C', 'B3393C', 'B3356C', 'B3357C', 'B3358C', 'B3359C', 'B3360C', 'A3361C', 'B3362C', 'B3363C', 'B3364C', 'B3365C', 'B3366C', 'B3367C', 'B3368C', 'A3369C', 'B3370C', 'B3371C', 'B3372C', 'B3373C', 'A3374C', 'B3375C', 'B3376C'), 'Indentations': (0, 0, 1, 2, 2, 1, 2, 2, 2, 2, 1, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 2, 1, 1, 1, 2, 3, 3, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 0, 1, 1)}, {'tableName': ('T62000D',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83), 'SeriesCode': ('B056RC', 'A3302C', 'N3303C', 'N3304C', 'N3305C', 'N3306C', 'N3307C', 'N3308C', 'N3309C', 'N3310C', 'N3311C', 'N3312C', 'N3313C', 'N3314C', 'N3315C', 'N3316C', 'N3317C', 'N3318C', 'N3319C', 'N3320C', 'N3321C', 'N3322C', 'N3323C', 'N3324C', 'N3325C', 'N3326C', 'N3327C', 'N3328C', 'N3329C', 'N3330C', 'N3331C', 'N3332C', 'N3333C', 'N3334C', 'N3335C', 'N3336C', 'N3337C', 'N3338C', 'N3339C', 'N3340C', 'N3341C', 'N3342C', 'N3343C', 'N3344C', 'N3345C', 'N3346C', 'N3347C', 'N3348C', 'N3349C', 'N3350C', 'N3351C', 'N3391C', 'N3353C', 'N3392C', 'N3393C', 'N3356C', 'N3357C', 'N3358C', 'N3359C', 'N3360C', 'N3361C', 'N3362C', 'N3363C', 'N3364C', 'N3365C', 'N3368C', 'N3369C', 'N3370C', 'N3371C', 'N3372C', 'N3373C', 'N3377C', 'N3378C', 'N3379C', 'N3380C', 'N3381C', 'N3382C', 'N3383C', 'N3384C', 'N3385C', 'A3374C', 'B3375C', 'B3376C'), 'Indentations': (0, 0, 1, 2, 2, 1, 2, 2, 2, 1, 1, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 1, 2, 2, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 1, 2, 2, 1, 2, 2, 2, 1, 1, 2, 2, 1, 1, 2, 2, 2, 1, 2, 2, 1, 2, 2, 1, 0, 1, 1)}, {'tableName': ('T62100A',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72), 'SeriesCode': ('B057RC', 'A3402C', 'Q3403C', 'Q3404C', 'Q3405C', 'Q3406C', 'Q3407C', 'B3477C', 'Q3408C', 'Q3409C', 'Q3410C', 'Q3411C', 'Q3412C', 'Q3413C', 'Q3414C', 'Q3415C', 'Q3416C', 'Q3417C', 'Q3418C', 'Q3419C', 'Q3420C', 'Q3421C', 'Q3422C', 'Q3424C', 'Q3425C', 'Q3426C', 'Q3427C', 'Q3428C', 'Q3429C', 'Q3430C', 'Q3431C', 'Q3432C', 'Q3433C', 'Q3434C', 'Q3435C', 'Q3436C', 'Q3437C', 'Q3438C', 'Q3439C', 'Q3440C', 'Q3441C', 'Q3442C', 'Q3443C', 'Q3444C', 'Q3445C', 'Q3446C', 'Q3447C', 'Q3448C', 'B3478C', 'B3479C', 'Q3449C', 'Q3450C', 'Q3451C', 'A3452C', 'Q3456C', 'Q3459C', 'B3455C', 'Q3457C', 'Q3458C', 'Q3461C', 'Q3462C', 'Q3463C', 'Q3464C', 'Q3466C', 'Q3467C', 'Q3468C', 'Q3469C', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'A3474C'), 'Indentations': (0, 0, 1, 2, 2, 1, 2, 2, 2, 2, 2, 1, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 2, 3, 3, 1, 1, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 0)}, {'tableName': ('T62100B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76), 'SeriesCode': ('B057RC', 'A3402C', 'A3403BC', 'B3404BC', 'B3405BC', 'A3406BC', 'B3407BC', 'B3408BC', 'B3409BC', 'B3410BC', 'B3411BC', 'A3412BC', 'A3413BC', 'B3414BC', 'B3415BC', 'B3416BC', 'B3417BC', 'B3418BC', 'B3419BC', 'B3420BC', 'B3421BC', 'B3422BC', 'B3423BC', 'B3424BC', 'A3425BC', 'B3426BC', 'B3427BC', 'B3428BC', 'B3429BC', 'B3430BC', 'B3431BC', 'B3432BC', 'B3433BC', 'B3434BC', 'B3435BC', 'A3436BC', 'A3437BC', 'B3438BC', 'B3439BC', 'B3440BC', 'B3441BC', 'B3442BC', 'B3443BC', 'B3444BC', 'A3445BC', 'B3446BC', 'B3447BC', 'B3448BC', 'B3449BC', 'B3450BC', 'A3451BC', 'J3452C', 'B3453BC', 'J3454C', 'J3455C', 'B3456BC', 'B3457BC', 'B3458BC', 'B3459BC', 'B3460BC', 'A3461BC', 'B3462BC', 'B3463BC', 'B3464BC', 'B3465BC', 'B3466BC', 'B3467BC', 'B3468BC', 'A3469BC', 'B3470BC', 'B3471BC', 'B3472BC', 'B3473BC', 'A3474C', 'B3475C', 'B3476C'), 'Indentations': (0, 0, 1, 2, 2, 1, 2, 2, 2, 2, 1, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 2, 1, 1, 1, 2, 3, 3, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 0, 1, 1)}, {'tableName': ('T62100C',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76), 'SeriesCode': ('B057RC', 'A3402C', 'A3403C', 'B3404C', 'B3405C', 'A3406C', 'B3407C', 'B3408C', 'B3409C', 'B3410C', 'B3411C', 'A3412C', 'A3413C', 'B3414C', 'B3415C', 'B3416C', 'B3417C', 'B3418C', 'B3419C', 'B3420C', 'B3421C', 'B3422C', 'B3423C', 'B3424C', 'A3425C', 'B3426C', 'B3427C', 'B3428C', 'B3429C', 'B3430C', 'B3431C', 'B3432C', 'B3433C', 'B3434C', 'B3435C', 'A3436C', 'A3437C', 'B3438C', 'B3439C', 'B3440C', 'B3441C', 'B3442C', 'B3443C', 'B3444C', 'A3445C', 'B3446C', 'B3447C', 'B3448C', 'B3449C', 'B3450C', 'A3451C', 'B3491C', 'B3453C', 'B3492C', 'B3493C', 'B3456C', 'B3457C', 'B3458C', 'B3459C', 'B3460C', 'A3461C', 'B3462C', 'B3463C', 'B3464C', 'B3465C', 'B3466C', 'B3467C', 'B3468C', 'A3469C', 'B3470C', 'B3471C', 'B3472C', 'B3473C', 'A3474C', 'B3475C', 'B3476C'), 'Indentations': (0, 0, 1, 2, 2, 1, 2, 2, 2, 2, 1, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 2, 1, 1, 1, 2, 3, 3, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 0, 1, 1)}, {'tableName': ('T62100D',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83), 'SeriesCode': ('B057RC', 'A3402C', 'N3403C', 'N3404C', 'N3405C', 'N3406C', 'N3407C', 'N3408C', 'N3409C', 'N3410C', 'N3411C', 'N3412C', 'N3413C', 'N3414C', 'N3415C', 'N3416C', 'N3417C', 'N3418C', 'N3419C', 'N3420C', 'N3421C', 'N3422C', 'N3423C', 'N3424C', 'N3425C', 'N3426C', 'N3427C', 'N3428C', 'N3429C', 'N3430C', 'N3431C', 'N3432C', 'N3433C', 'N3434C', 'N3435C', 'N3436C', 'N3437C', 'N3438C', 'N3439C', 'N3440C', 'N3441C', 'N3442C', 'N3443C', 'N3444C', 'N3445C', 'N3446C', 'N3447C', 'N3448C', 'N3449C', 'N3450C', 'N3451C', 'N3491C', 'N3453C', 'N3492C', 'N3493C', 'N3456C', 'N3457C', 'N3458C', 'N3459C', 'N3460C', 'N3461C', 'N3462C', 'N3463C', 'N3464C', 'N3465C', 'N3468C', 'N3469C', 'N3470C', 'N3471C', 'N3472C', 'N3473C', 'N3477C', 'N3478C', 'N3479C', 'N3480C', 'N3481C', 'N3482C', 'N3483C', 'N3484C', 'N3485C', 'A3474C', 'B3475C', 'B3476C'), 'Indentations': (0, 0, 1, 2, 2, 1, 2, 2, 2, 1, 1, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 1, 2, 2, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 1, 2, 2, 1, 2, 2, 2, 1, 1, 2, 2, 1, 1, 2, 2, 2, 1, 2, 2, 1, 2, 2, 1, 0, 1, 1)}, {'tableName': ('T62200A',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69), 'SeriesCode': ('A677RC', 'Q1722C', 'Q1723C', 'Q1724C', 'Q1725C', 'Q1726C', 'B1793C', 'Q1728C', 'Q1729C', 'Q1730C', 'Q1731C', 'Q1732C', 'Q1733C', 'Q1734C', 'Q1735C', 'Q1736C', 'Q1737C', 'Q1738C', 'Q1739C', 'Q1740C', 'Q1741C', 'Q1743C', 'Q1744C', 'Q1745C', 'Q1746C', 'Q1747C', 'Q1748C', 'Q1749C', 'Q1750C', 'Q1751C', 'Q1752C', 'Q1753C', 'Q1754C', 'Q1755C', 'Q1756C', 'Q1757C', 'Q1758C', 'Q1759C', 'Q1760C', 'Q1761C', 'Q1762C', 'Q1763C', 'Q1764C', 'Q1765C', 'Q1766C', 'Q1767C', 'Q1768C', 'B1794C', 'B1795C', 'Q1771C', 'Q1775C', 'Q1779C', 'Q1776C', 'Q1777C', 'Q1782C', 'Q1778C', 'Q1780C', 'Q1781C', 'Q1783C', 'Q1785C', 'Q1786C', 'Q1787C', 'Q1788C', 'Q1789C', 'Q1790C', 'Q1791C', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ'), 'Indentations': (0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 1, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 1, 2, 2, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2)}, {'tableName': ('T62200B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72), 'SeriesCode': ('A677RC', 'A1722BC', 'B1723BC', 'B1724BC', 'A1725BC', 'B1726BC', 'B1727BC', 'B1728BC', 'B1729BC', 'B1730BC', 'B1731BC', 'A1732BC', 'B1733BC', 'B1734BC', 'B1735BC', 'B1736BC', 'B1737BC', 'B1738BC', 'B1739BC', 'B1740BC', 'B1741BC', 'B1742BC', 'B1743BC', 'A1744BC', 'B1745BC', 'B1746BC', 'B1747BC', 'B1748BC', 'B1749BC', 'B1750BC', 'B1751BC', 'B1752BC', 'B1753BC', 'B1754BC', 'A1755BC', 'A1756BC', 'B1757BC', 'B1758BC', 'B1759BC', 'B1760BC', 'B1761BC', 'B1762BC', 'B1763BC', 'A1764BC', 'B1765BC', 'B1766BC', 'B1767BC', 'B1768BC', 'B1769BC', 'A1770BC', 'A1771C', 'B1772BC', 'B1773C', 'B1774C', 'B1775BC', 'B1776BC', 'B1777BC', 'B1778BC', 'B1779BC', 'A1780BC', 'B1781BC', 'B1782BC', 'B1783BC', 'B1784BC', 'B1785BC', 'B1786BC', 'B1787BC', 'A1788BC', 'B1789BC', 'B1790BC', 'B1791BC', 'B1792BC'), 'Indentations': (0, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 1, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 1, 0, 0, 0, 1, 2, 2, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2)}, {'tableName': ('T62200C',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72), 'SeriesCode': ('A677RC', 'A1722C', 'B1723C', 'B1724C', 'A1725C', 'B1726C', 'B1727C', 'B1728C', 'B1729C', 'B1730C', 'B1731C', 'A1732C', 'B1733C', 'B1734C', 'B1735C', 'B1736C', 'B1737C', 'B1738C', 'B1739C', 'B1740C', 'B1741C', 'B1742C', 'B1743C', 'A1744C', 'B1745C', 'B1746C', 'B1747C', 'B1748C', 'B1749C', 'B1750C', 'B1751C', 'B1752C', 'B1753C', 'B1754C', 'A1755C', 'A1756C', 'B1757C', 'B1758C', 'B1759C', 'B1760C', 'B1761C', 'B1762C', 'B1763C', 'A1764C', 'B1765C', 'B1766C', 'B1767C', 'B1768C', 'B1769C', 'A1770C', 'B1796C', 'B1772C', 'B1797C', 'B1798C', 'B1775C', 'B1776C', 'B1777C', 'B1778C', 'B1779C', 'A1780C', 'B1781C', 'B1782C', 'B1783C', 'B1784C', 'B1785C', 'B1786C', 'B1787C', 'A1788C', 'B1789C', 'B1790C', 'B1791C', 'B1792C'), 'Indentations': (0, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 1, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 1, 0, 0, 0, 1, 2, 2, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2)}, {'tableName': ('T62200D',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79), 'SeriesCode': ('A677RC', 'N7722C', 'N7723C', 'N7724C', 'N7725C', 'N7726C', 'N7727C', 'N7728C', 'N7729C', 'N7730C', 'N7731C', 'N7732C', 'N7733C', 'N7734C', 'N7735C', 'N7736C', 'N7737C', 'N7738C', 'N7739C', 'N7740C', 'N7741C', 'N7742C', 'N7743C', 'N7744C', 'N7745C', 'N7746C', 'N7747C', 'N7748C', 'N7749C', 'N7750C', 'N7751C', 'N7752C', 'N7753C', 'N7754C', 'N7755C', 'N7756C', 'N7757C', 'N7758C', 'N7759C', 'N7760C', 'N7761C', 'N7762C', 'N7763C', 'N7764C', 'N7765C', 'N7766C', 'N7767C', 'N7768C', 'N7769C', 'N7770C', 'N7771C', 'N7772C', 'N7773C', 'N7774C', 'N7775C', 'N7776C', 'N7777C', 'N7778C', 'N7779C', 'N7780C', 'N7781C', 'N7782C', 'N7783C', 'N7784C', 'N7787C', 'N7788C', 'N7789C', 'N7790C', 'N7791C', 'N7792C', 'N7793C', 'N7794C', 'N7795C', 'N7796C', 'N7797C', 'N7798C', 'N7799C', 'N7700C', 'N7701C'), 'Indentations': (0, 0, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0)}, {'tableName': ('T70100',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18), 'SeriesCode': ('A939RC', 'A791RC', 'A792RC', 'A229RC', 'A794RC', 'AGDSRC', 'A795RC', 'A796RC', 'A797RC', 'A939RX', 'A791RX', 'A229RX', 'A794RX', 'AGDSRX', 'A795RX', 'A796RX', 'A797RX', 'B230RC'), 'Indentations': (0, 1, 1, 1, 1, 2, 3, 3, 2, 1, 1, 1, 1, 2, 3, 3, 2, 0)}, {'tableName': ('T70201A',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17), 'SeriesCode': ('A133RL', 'A134RL', 'A135RL', 'A136RL', 'B137RL', 'C280RL', 'B139RL', 'B140RL', 'ZZZZZZ', 'B142RL', 'B143RL', 'B144RL', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'B148RL', 'B149RL'), 'Indentations': (0, 0, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 0, 1, 1, 1, 1)}, {'tableName': ('T70201B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45), 'SeriesCode': ('A953RL', 'A133RL', 'A716RL', 'AB60RL', 'AB61RL', 'AB67RL', 'A136RL', 'B704RL', 'W240RL', 'B137RL', 'W241RL', 'AB62RL', 'AB68RL', 'B139RL', 'B705RL', 'B196RL', 'B197RL', 'W242RL', 'B140RL', 'W243RL', 'AB64RL', 'B144RL', 'B708RL', 'ZZZZZZ', 'AB69RL', 'B142RL', 'B706RL', 'AB70RL', 'B143RL', 'B707RL', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'AB75RL', 'AB76RL', 'B148RL', 'B149RL'), 'Indentations': (0, 1, 2, 0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 3, 4, 4, 2, 3, 3, 1, 2, 2, 1, 2, 3, 3, 2, 3, 3, 0, 1, 2, 3, 3, 2, 1, 2, 3, 3, 2, 1, 1, 1, 1)}, {'tableName': ('T70203A',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17), 'SeriesCode': ('A133RA', 'A134RA', 'A135RA', 'A136RA', 'B137RA', 'B280RA', 'B139RA', 'B140RA', 'ZZZZZZ', 'B142RA', 'B143RA', 'B144RA', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'B148RA', 'B149RA'), 'Indentations': (0, 0, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 0, 1, 1, 1, 1)}, {'tableName': ('T70203B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45), 'SeriesCode': ('A953RA', 'A133RA', 'A716RA', 'AB60RA', 'AB61RA', 'AB67RA', 'A136RA', 'B704RA', 'W240RA', 'B137RA', 'W241RA', 'AB62RA', 'AB68RA', 'B139RA', 'B705RA', 'B196RA', 'B197RA', 'W242RA', 'B140RA', 'W243RA', 'AB64RA', 'B144RA', 'B708RA', 'ZZZZZZ', 'AB69RA', 'B142RA', 'B706RA', 'AB70RA', 'B143RA', 'B707RA', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'AB75RA', 'AB76RA', 'B148RA', 'B149RA'), 'Indentations': (0, 1, 2, 0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 3, 4, 4, 2, 3, 3, 1, 2, 2, 1, 2, 3, 3, 2, 3, 3, 0, 1, 2, 3, 3, 2, 1, 2, 3, 3, 2, 1, 1, 1, 1)}, {'tableName': ('T70204A',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17), 'SeriesCode': ('A133RG', 'A134RG', 'A135RG', 'A136RG', 'A137RG', 'B280RG', 'B139RG', 'B140RG', 'ZZZZZZ', 'B142RG', 'B143RG', 'B144RG', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'B148RG', 'B149RG'), 'Indentations': (0, 0, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 0, 1, 1, 1, 1)}, {'tableName': ('T70204B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45), 'SeriesCode': ('A953RG', 'A133RG', 'A716RG', 'AB60RG', 'AB61RG', 'AB67RG', 'A136RG', 'B704RG', 'W240RG', 'A137RG', 'W241RG', 'AB62RG', 'AB68RG', 'B139RG', 'B705RG', 'B196RG', 'B197RG', 'W242RG', 'B140RG', 'W243RG', 'AB64RG', 'B144RG', 'B708RG', 'ZZZZZZ', 'AB69RG', 'B142RG', 'B706RG', 'AB70RG', 'B143RG', 'B707RG', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'AB75RG', 'AB76RG', 'B148RG', 'B149RG'), 'Indentations': (0, 1, 2, 0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 3, 4, 4, 2, 3, 3, 1, 2, 2, 1, 2, 3, 3, 2, 3, 3, 0, 1, 2, 3, 3, 2, 1, 2, 3, 3, 2, 1, 1, 1, 1)}, {'tableName': ('T70205A',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17), 'SeriesCode': ('A133RC', 'A134RC', 'A135RC', 'A136RC', 'A137RC', 'C280RC', 'B139RC', 'B140RC', 'A141RC', 'B142RC', 'B143RC', 'B144RC', 'A145RC', 'B146RC', 'B147RC', 'B148RC', 'B149RC'), 'Indentations': (0, 0, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 0, 1, 1, 1, 1)}, {'tableName': ('T70205B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45), 'SeriesCode': ('A953RC', 'A133RC', 'A716RC', 'AB60RC', 'AB61RC', 'AB67RC', 'A136RC', 'B704RC', 'W240RC', 'A137RC', 'W241RC', 'AB62RC', 'AB68RC', 'B139RC', 'B705RC', 'B196RC', 'B197RC', 'W242RC', 'B140RC', 'W243RC', 'AB64RC', 'B144RC', 'B708RC', 'AB63RC', 'AB69RC', 'B142RC', 'B706RC', 'AB70RC', 'B143RC', 'B707RC', 'AB65RC', 'A145RC', 'B146RC', 'AB71RC', 'AB72RC', 'B147RC', 'B709RC', 'W244RC', 'AB73RC', 'AB74RC', 'W245RC', 'AB75RC', 'AB76RC', 'B148RC', 'B149RC'), 'Indentations': (0, 1, 2, 0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 3, 4, 4, 2, 3, 3, 1, 2, 2, 1, 2, 3, 3, 2, 3, 3, 0, 1, 2, 3, 3, 2, 1, 2, 3, 3, 2, 1, 1, 1, 1)}, {'tableName': ('T70206B',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46), 'SeriesCode': ('A953RX', 'A133RX', 'A716RX', 'AB60RX', 'AB61RX', 'AB67RX', 'A136RX', 'B704RX', 'W240RX', 'A137RX', 'W241RX', 'AB62RX', 'AB68RX', 'B139RX', 'B705RX', 'B196RX', 'B197RX', 'W242RX', 'B140RX', 'W243RX', 'AB64RX', 'B144RX', 'B708RX', 'AB63RX', 'AB69RX', 'B142RX', 'B706RX', 'AB70RX', 'B143RX', 'B707RX', 'AB65RX', 'A145RX', 'B146RX', 'AB71RX', 'AB72RX', 'B147RX', 'B709RX', 'W244RX', 'AB73RX', 'AB74RX', 'W245RX', 'A974RX', 'AB75RX', 'AB76RX', 'B148RX', 'B149RX'), 'Indentations': (0, 1, 2, 0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 3, 4, 4, 2, 3, 3, 1, 2, 2, 1, 2, 3, 3, 2, 3, 3, 0, 1, 2, 3, 3, 2, 1, 2, 3, 3, 2, 0, 1, 1, 1, 1)}, {'tableName': ('T70303',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17), 'SeriesCode': ('A2000A', 'A2001A', 'B1005A', 'B1006A', 'B1008A', 'B1009A', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'A2003A', 'W249RA', 'B1012A', 'ZZZZZZ', 'B1013A', 'B359RA', 'B366RA', 'A365RA'), 'Indentations': (0, 1, 2, 2, 1, 1, 1, 2, 2, 0, 1, 2, 2, 1, 0, 0, 0)}, {'tableName': ('T70304',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17), 'SeriesCode': ('A2000G', 'A2001G', 'B1005G', 'B1006G', 'B1008G', 'B1009G', 'ZZZZZZ', 'ZZZZZZ', 'ZZZZZZ', 'A2003G', 'W249RG', 'B1012G', 'ZZZZZZ', 'B1013G', 'B359RG', 'B366RG', 'A365RG'), 'Indentations': (0, 1, 2, 2, 1, 1, 1, 2, 2, 0, 1, 2, 2, 1, 0, 0, 0)}, {'tableName': ('T70305',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29), 'SeriesCode': ('A2000C', 'A2001C', 'B1005C', 'B1006C', 'B1008C', 'B1009C', 'W248RC', 'B1010C', 'B1011C', 'A2003C', 'W249RC', 'B1012C', 'W250RC', 'B1013C', 'B359RC', 'B366RC', 'A365RC', 'A2006C', 'B1019C', 'B1020C', 'B1017C', 'B1018C', 'W251RC', 'B1021C', 'W252RC', 'A1024C', 'B042RC', 'B1023C', 'B018RC'), 'Indentations': (0, 1, 2, 2, 1, 1, 1, 2, 2, 0, 1, 2, 2, 1, 0, 0, 0, 1, 2, 2, 1, 1, 1, 2, 2, 2, 3, 3, 1)}, {'tableName': ('T70306',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18), 'SeriesCode': ('A2000X', 'A2001X', 'B1005X', 'B1006X', 'B1008X', 'B1009X', 'W248RX', 'B1010X', 'B1011X', 'A2003X', 'W249RX', 'B1012X', 'W250RX', 'B1013X', 'B359RX', 'B366RX', 'A365RX', 'B018RX'), 'Indentations': (0, 1, 2, 2, 1, 1, 1, 2, 2, 0, 1, 2, 2, 1, 0, 0, 0, 1)}, {'tableName': ('T70403',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13), 'SeriesCode': ('A2007A', 'A2008A', 'DOWNRA', 'DTENRA', 'DFARRA', 'B1027A', 'A2009A', 'B499RA', 'B1300A', 'B1301A', 'B1302A', 'B1028A', 'B952RA'), 'Indentations': (0, 1, 2, 2, 1, 0, 0, 1, 2, 2, 1, 0, 0)}, {'tableName': ('T70404',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13), 'SeriesCode': ('A2007G', 'A2008G', 'DOWNRG', 'DTENRG', 'DFARRG', 'B1027G', 'A2009G', 'B499RG', 'B1300G', 'B1301G', 'B1302G', 'B1028G', 'B952RG'), 'Indentations': (0, 1, 2, 2, 1, 0, 0, 1, 2, 2, 1, 0, 0)}, {'tableName': ('T70405',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23), 'SeriesCode': ('A2007C', 'A2008C', 'DOWNRC', 'DTENRC', 'DFARRC', 'B1027C', 'A2009C', 'B499RC', 'B1300C', 'B1301C', 'B1302C', 'A1028C', 'B952RC', 'B1033C', 'B1031C', 'W154RC', 'W165RC', 'B1037C', 'W166RC', 'B1034C', 'B1035C', 'B1036C', 'W153RC'), 'Indentations': (0, 1, 2, 2, 1, 0, 0, 1, 2, 2, 1, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2)}, {'tableName': ('T70406',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13), 'SeriesCode': ('A2007X', 'A2008X', 'DOWNRX', 'DTENRX', 'DFARRX', 'B1027X', 'A2009X', 'B499RX', 'B1300X', 'B1301X', 'B1302X', 'B1028X', 'B952RX'), 'Indentations': (0, 1, 2, 2, 1, 0, 0, 1, 2, 2, 1, 0, 0)}, {'tableName': ('T70500',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28), 'SeriesCode': ('A262RC', 'A024RC', 'W276RC', 'A438RC', 'B580RC', 'B456RC', 'W277RC', 'A1615C', 'B1616C', 'B1617C', 'A1618C', 'B1620C', 'B2608C', 'W278RC', 'B2609C', 'B2610C', 'B1619C', 'W279RC', 'B2607C', 'B1621C', 'A264RC', 'A265RC', 'B995RC', 'B986RC', 'A266RC', 'B833RC', 'B846RC', 'B1667C'), 'Indentations': (0, 0, 1, 2, 3, 3, 2, 3, 4, 4, 3, 4, 5, 5, 5, 5, 4, 1, 2, 2, 0, 1, 2, 2, 1, 2, 2, 1)}, {'tableName': ('T70600',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25), 'SeriesCode': ('Y0004C', 'A1400C', 'A1401C', 'A2201C', 'A1402C', 'A1403C', 'B393RC', 'B1404C', 'B1405C', 'A2203C', 'B1406C', 'B1407C', 'W282RC', 'A2204C', 'B044RC', 'A2205C', 'B1409C', 'B1410C', 'A2206C', 'B050RC', 'B2611C', 'W283RC', 'B2614C', 'B2615C', 'B1411C'), 'Indentations': (0, 1, 2, 0, 1, 2, 1, 2, 2, 1, 2, 2, 0, 1, 2, 2, 3, 3, 1, 2, 3, 3, 3, 3, 2)}, {'tableName': ('T70700',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17), 'SeriesCode': ('B029RC', 'B931RC', 'A1870C', 'B1871C', 'B1872C', 'W238RC', 'B1873C', 'Y660RC', 'Y235RC', 'Y632RC', 'Y905RC', 'Y202RC', 'B1874C', 'W061RC', 'W237RC', 'LA000030', 'LA000029'), 'Indentations': (0, 0, 1, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 0, 0, 1, 1)}, {'tableName': ('T70800',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30), 'SeriesCode': ('A038RC', 'B039RC', 'B040RC', 'A2209C', 'L30605', 'B4945C', 'B1583C', 'CON170', 'B1043C', 'Y239RC', 'B4921C', 'A2210C', 'L30606', 'B1606C', 'S25210', 'Y390RC', 'B4923C', 'A2211C', 'CON210', 'B4924C', 'A2212C', 'CON220', 'S25300', 'B4925C', 'A2213C', 'CON120', 'CON150', 'CON160', 'CONBFE', 'B4926C'), 'Indentations': (0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1)}, {'tableName': ('T70900',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15), 'SeriesCode': ('A048RC', 'W155RC', 'W285RC', 'B1436C', 'W156RC', 'B1437C', 'B1438C', 'B1439C', 'W157RC', 'A2217C', 'B1434C', 'B1435C', 'W158RC', 'W159RC', 'A2215C'), 'Indentations': (0, 0, 1, 2, 2, 1, 1, 1, 0, 1, 2, 2, 1, 1, 1)}, {'tableName': ('T71000',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21), 'SeriesCode': ('A2218C', 'A2219C', 'B1440C', 'LA000276', 'B1441C', 'B3375C', 'Y375RC', 'Y376RC', 'Y377RC', 'LA000277', 'B1444C', 'B3376C', 'W065RC', 'LA000248', 'B1447C', 'Y378RC', 'Y379RC', 'B056RC', 'A449RC', 'A2224C', 'B703RC'), 'Indentations': (0, 1, 2, 3, 2, 1, 0, 1, 2, 3, 2, 1, 1, 2, 1, 0, 0, 1, 2, 2, 1)}, {'tableName': ('T71100',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108), 'SeriesCode': ('A2061C', 'A2062C', 'A2063C', 'A1100C', 'B1305C', 'B1306C', 'B1101C', 'A2064C', 'B1103C', 'B1102C', 'A2065C', 'B1130C', 'B2631C', 'W291RC', 'W292RC', 'W498RC', 'W293RC', 'W319RC', 'W500RC', 'Y669RC', 'W497RC', 'W290RC', 'B1132C', 'Y711RC', 'A2068C', 'A2069C', 'A2070C', 'B1134C', 'B1135C', 'B1136C', 'B1137C', 'B1138C', 'A2071C', 'B1139C', 'B1140C', 'A2072C', 'B1141C', 'Y712RC', 'W294RC', 'W295RC', 'A2073C', 'Y665RC', 'W353RC', 'B1310C', 'B1311C', 'W354RC', 'Y698RC', 'Y666RC', 'Y667RC', 'Y668RC', 'Y282RC', 'Y315RC', 'W355RC', 'A2074C', 'A2075C', 'A2076C', 'B1143C', 'B1144C', 'A2077C', 'B1146C', 'B1145C', 'B2078C', 'W314RC', 'W315RC', 'W316RC', 'A1147C', 'B1611C', 'B1612C', 'W356RC', 'Y394RC', 'W317RC', 'A2079C', 'B1148C', 'B1149C', 'W357RC', 'W358RC', 'W296RC', 'W297RC', 'W298RC', 'W300RC', 'W301RC', 'W302RC', 'W303RC', 'W304RC', 'W304RC', 'W305RC', 'W306RC', 'W307RC', 'W308RC', 'W309RC', 'W310RC', 'W311RC', 'W312RC', 'W313RC', 'W360RC', 'W361RC', 'W362RC', 'B060RC', 'A1626C', 'W499RC', 'B1649C', 'B1657C', 'W318RC', 'B1131C', 'A1627C', 'A085RC', 'B069RC', 'A064RC'), 'Indentations': (0, 1, 2, 3, 4, 4, 3, 2, 3, 3, 2, 3, 3, 1, 2, 3, 3, 2, 1, 2, 2, 1, 2, 2, 0, 1, 2, 3, 3, 2, 2, 1, 1, 2, 2, 1, 2, 2, 0, 0, 1, 2, 3, 4, 4, 4, 4, 4, 3, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 4, 4, 3, 2, 3, 4, 4, 5, 5, 5, 5, 3, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 4, 4, 3, 4, 2, 3, 4, 4, 3, 2, 3, 3, 2, 1, 2, 3, 1, 2, 3, 3, 3, 2, 2, 2, 1, 1, 1)}, {'tableName': ('T71200',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260), 'SeriesCode': ('A191RC', 'A2023C', 'A2026C', 'DPCERC', 'A2042C', 'A2086C', 'A006RC', 'A2087C', 'A2088C', 'A019RC', 'W510RC', 'W511RC', 'B020RC', 'W512RC', 'W513RC', 'B021RC', 'W555RC', 'W515RC', 'A822RC', 'A1684C', 'A2089C', 'A955RC', 'A2097C', 'A2098C', 'A782RC', 'A782RC', 'A1680C', 'A261RC', 'Q2023C', 'W516RC', 'A4002C', 'Y506RC', 'A2100C', 'W056RC', 'A2094C', 'A2095C', 'A107RC', 'B1154C', 'A2096C', 'W271RC', 'W517RC', 'W518RC', 'W272RC', 'A2104C', 'A2105C', 'B029RC', 'Y505RC', 'W530RC', 'A041RC', 'A2101C', 'A2102C', 'A048RC', 'B1156C', 'A2103C', 'A445RC', 'Y674RC', 'Y675RC', 'A054RC', 'W273RC', 'Y519RC', 'Y520RC', 'A449RC', 'Y234RC', 'Y676RC', 'W274RC', 'Y677RC', 'Y678RC', 'A108RC', 'Y514RC', 'Y679RC', 'A262RC', 'A2092C', 'A2093C', 'A065RC', 'A2106C', 'A2107C', 'A033RC', 'Y506RC', 'W519RC', 'A041RC', 'A2101C', 'A2102C', 'A048RC', 'B1156C', 'A2103C', 'W210RC', 'Y507RC', 'Y508RC', 'A577RC', 'A2111C', 'A2112C', 'A061RC', 'A1676C', 'W531RC', 'W055RC', 'A2115C', 'A2116C', 'A067RC', 'A2117C', 'A2118C', 'A068RC', 'A2119C', 'A2120C', 'A071RC', 'A2121C', 'A2122C', 'W021RC', 'W568RC', 'W514RC', 'W022RC', 'A2047C', 'A2114C', 'A922RC', 'A2010C', 'A2011C', 'A1073C', 'Q522RC', 'W523RC', 'B020RC', 'W512RC', 'W513RC', 'B645RC', 'W526RC', 'W527RC', 'LA000035', 'W163RC', 'W522RC', 'W529RC', 'B021RC', 'W555RC', 'W515RC', 'A655RC', 'W532RC', 'W533RC', 'A123RC', 'A928RC', 'W558RC', 'W559RC', 'W201RC', 'W534RC', 'W535RC', 'A071RC', 'A2121C', 'A2122C', 'A127RC', 'Y677RC', 'Y509RC', 'A922RC', 'A2010C', 'A2011C', 'A262RC', 'A2092C', 'A2093C', 'A2013C', 'A2014C', 'Y680RC', 'Y681RC', 'A2016C', 'B1154C', 'A2015C', 'Y682RC', 'W498RC', 'W536RC', 'B1156C', 'B2607C', 'A2050C', 'W319RC', 'B1157C', 'W537RC', 'Y521RC', 'B1611C', 'W538RC', 'W539RC', 'W540RC', 'W541RC', 'W542RC', 'W543RC', 'W544RC', 'W546RC', 'W548RC', 'Y524RC', 'W549RC', 'W550RC', 'W551RC', 'W316RC', 'W554RC', 'W555RC', 'Y204RC', 'Y604RC', 'Y240RC', 'Y670RC', 'Y671RC', 'Y609RC', 'Y245RC', 'Y672RC', 'Y233RC', 'Y234RC', 'Y673RC', 'Y632RC', 'A2051C', 'B1008C', 'B1161C', 'A2099C', 'DFOORC', 'DMICRC', 'A2641C', 'B4922C', 'A1676C', 'A2087C', 'B1166C', 'B1167C', 'B1173C', 'A265RC', 'A782RC', 'A2104C', 'W566RC', 'W560RC', 'W561RC', 'Y245RC', 'Y233RC', 'W563RC', 'W358RC', 'Y609RC', 'W565RC', 'A2129C', 'W498RC', 'W319RC', 'A2109C', 'A2020C', 'A2021C', 'W308RC', 'W520RC', 'A2104C', 'W528RC', 'A2022C', 'A2109C', 'A191RC', 'A2023C', 'A2024C', 'A2050C', 'A2025C', 'W569RC', 'Y684RC', 'A2051C', 'A2099C', 'B1173C', 'A265RC', 'A2026C', 'A065RC', 'A2106C', 'A2028C', 'W570RC', 'Y685RC', 'A2051C', 'DFOORC', 'DMICRC', 'A2641C', 'B4922C', 'B1173C', 'A2107C'), 'Indentations': (0, 1, 2, 2, 3, 4, 2, 3, 4, 2, 3, 4, 4, 5, 6, 4, 5, 6, 2, 3, 4, 4, 5, 6, 4, 5, 6, 0, 1, 2, 2, 3, 4, 2, 3, 4, 2, 3, 4, 2, 3, 4, 4, 5, 6, 4, 5, 6, 4, 5, 6, 4, 5, 6, 4, 5, 6, 6, 6, 7, 8, 8, 9, 10, 8, 9, 10, 4, 5, 6, 2, 3, 4, 0, 1, 2, 2, 3, 4, 2, 3, 4, 2, 3, 4, 2, 3, 4, 2, 3, 4, 2, 3, 4, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, 2, 3, 4, 2, 3, 4, 2, 0, 1, 2, 2, 3, 4, 2, 3, 4, 2, 0, 1, 2, 0, 1, 2, 2, 3, 4, 2, 3, 4, 2, 3, 4, 0, 1, 2, 2, 2, 3, 4, 2, 2, 2, 3, 4, 2, 2, 2, 0, 1, 2, 0, 1, 2, 3, 4, 4, 2, 3, 4, 4, 5, 4, 0, 1, 2, 2, 3, 2, 2, 2, 2, 3, 4, 4, 2, 3, 4, 2, 2, 2, 2, 0, 1, 2, 0, 1, 2, 2, 2, 2, 0, 1, 2, 2, 2, 2, 2, 3, 4, 5, 6, 6, 4, 5, 6, 6, 4, 5, 6, 2, 3, 4, 4, 2, 3, 4, 4, 4, 0, 1, 2, 3, 4, 4, 4, 4, 4, 4, 4, 2, 0, 1, 2, 3, 4, 4, 4, 4, 4, 4, 4, 2)}, {'tableName': ('T71300',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25), 'SeriesCode': ('B1208C', 'B1209C', 'B1210C', 'B1211C', 'B1212C', 'Y373RC', 'B1213C', 'B1315C', 'B1628C', 'B1214C', 'A677RC', 'A059RC', 'A438RC', 'B1218C', 'B1219C', 'B1220C', 'B2626C', 'B1221C', 'Y374RC', 'B1222C', 'B1313C', 'Y380RC', 'B1314C', 'A2205C', 'B1617C'), 'Indentations': (0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0)}, {'tableName': ('T71400',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11), 'SeriesCode': ('B1200C', 'B2636C', 'B1201C', 'B1202C', 'B1203C', 'B1205C', 'B1206C', 'B1207C', 'Y370RC', 'W778RC', 'B046RC'), 'Indentations': (0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0)}, {'tableName': ('T71500',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14), 'SeriesCode': ('B1448C', 'B1449C', 'B1007C', 'B1450C', 'B2637C', 'W250RC', 'B366RC', 'B2638C', 'B2639C', 'B1451C', 'W713RC', 'A1024C', 'B042RC', 'B1023C'), 'Indentations': (0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1)}, {'tableName': ('T71600',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39), 'SeriesCode': ('B1174C', 'B1633C', 'B1175C', 'A1629C', 'B1630C', 'B1631C', 'B1632C', 'B1176C', 'B1177C', 'B1179C', 'B1181C', 'B1182C', 'Y371RC', 'W779RC', 'B1183C', 'B1184C', 'B1185C', 'B1186C', 'Y372RC', 'B1187C', 'A053RC', 'B1188C', 'B1189C', 'B1179C', 'B1199C', 'B1191C', 'B1192C', 'B1193C', 'A054RC', 'A055RC', 'B1194C', 'B1195C', 'B1196C', 'B1197C', 'B1634C', 'B1635C', 'B1198C', 'B1636C', 'B056RC'), 'Indentations': (0, 1, 1, 1, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0)}, {'tableName': ('T71700',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24), 'SeriesCode': ('B2642C', 'B2643C', 'B2644C', 'B2645C', 'B2646C', 'B2647C', 'B2648C', 'B2649C', 'A2063C', 'B2650C', 'B2651C', 'B2652C', 'B2653C', 'B2654C', 'B1102C', 'B2655C', 'B2656C', 'B2657C', 'B2658C', 'B2659C', 'B2660C', 'B2661C', 'B2662C', 'A2070C'), 'Indentations': (0, 0, 1, 2, 2, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 2, 2, 2, 1, 1, 0)}, {'tableName': ('T71800',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7), 'SeriesCode': ('BA06RC', 'BA07RC', 'W873RC', 'W787RC', 'W786RC', 'Y663RC', 'A034RC'), 'Indentations': (0, 1, 1, 2, 2, 1, 0)}, {'tableName': ('T71900',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34), 'SeriesCode': ('W430RC', 'W431RC', 'W432RC', 'W433RC', 'W434RC', 'W435RC', 'W436RC', 'W426RC', 'W438RC', 'W439RC', 'W440RC', 'W428RC', 'W441RC', 'W400RC', 'DNPSRC', 'W442RC', 'W443RC', 'W444RC', 'W445RC', 'W446RC', 'W447RC', 'W448RC', 'W449RC', 'W426RC', 'W429RC', 'W451RC', 'W453RC', 'W454RC', 'W452RC', 'W455RC', 'DNPERC', 'W419RC', 'W456RC', 'W457RC'), 'Indentations': (0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0, 1)}, {'tableName': ('T72000',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33), 'SeriesCode': ('Y201RC', 'Y204RC', 'Y202RC', 'Y206RC', 'Y203RC', 'Y604RC', 'Y208RC', 'Y616RC', 'Y209RC', 'Y349RC', 'Y209RC', 'Y233RC', 'Y210RC', 'Y609RC', 'Y234RC', 'Y212RC', 'Y204RC', 'Y209RC', 'Y233RC', 'Y234RC', 'Y235RC', 'Y632RC', 'Y905RC', 'Y218RC', 'Y219RC', 'Y220RC', 'Y235RC', 'Y204RC', 'Y226RC', 'Y204RC', 'Y228RC', 'Y229RC', 'Y232RC'), 'Indentations': (0, 1, 1, 2, 3, 3, 3, 3, 2, 2, 1, 2, 3, 3, 2, 0, 1, 1, 2, 2, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0)}, {'tableName': ('T72100',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36), 'SeriesCode': ('Y601RC', 'Y616RC', 'Y602RC', 'Y612RC', 'Y603RC', 'Y604RC', 'Y605RC', 'Y616RC', 'Y606RC', 'Y606RC', 'Y607RC', 'Y608RC', 'Y609RC', 'Y610RC', 'Q601RC', 'Y616RC', 'Y606RC', 'Y607RC', 'Y610RC', 'Y620RC', 'Y632RC', 'Y617RC', 'Y618RC', 'Y619RC', 'Y620RC', 'Y616RC', 'Y622RC', 'Y616RC', 'Y624RC', 'Y625RC', 'Y626RC', 'Y606RC', 'Y628RC', 'Y620RC', 'Y605RC', 'Y631RC'), 'Indentations': (0, 1, 1, 2, 3, 3, 3, 3, 2, 1, 2, 3, 3, 2, 0, 1, 1, 2, 2, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1)}, {'tableName': ('T72200',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36), 'SeriesCode': ('Y237RC', 'Y257RC', 'Y238RC', 'Y248RC', 'W350RC', 'Y240RC', 'Y241RC', 'Y257RC', 'Y242RC', 'Y242RC', 'Y243RC', 'Y244RC', 'Y245RC', 'Y246RC', 'Q237RC', 'Y257RC', 'Y242RC', 'Y243RC', 'Y246RC', 'Y256RC', 'Y252RC', 'Y253RC', 'Y254RC', 'Y255RC', 'Y256RC', 'Y257RC', 'Y258RC', 'Y257RC', 'Y260RC', 'Y261RC', 'Y262RC', 'Y242RC', 'Y264RC', 'Y256RC', 'Y241RC', 'Y267RC'), 'Indentations': (0, 1, 1, 2, 3, 3, 3, 3, 2, 1, 2, 3, 3, 2, 0, 1, 1, 2, 2, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1)}, {'tableName': ('T72300',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46), 'SeriesCode': ('Y268RC', 'Y296RC', 'Y269RC', 'Y285RC', 'Y270RC', 'Y271RC', 'Y272RC', 'Y273RC', 'Y274RC', 'Y275RC', 'Y276RC', 'Y277RC', 'Y278RC', 'Y296RC', 'Y279RC', 'Y279RC', 'Y280RC', 'Y281RC', 'Y282RC', 'ZZZZZZ', 'Y284RC', 'Y296RC', 'Y279RC', 'Y280RC', 'ZZZZZZ', 'Y293RC', 'Y294RC', 'Y295RC', 'Y289RC', 'Y290RC', 'Y291RC', 'Y292RC', 'Y293RC', 'Y294RC', 'Y295RC', 'Y296RC', 'Y297RC', 'Y296RC', 'Y299RC', 'Y300RC', 'Y301RC', 'Y279RC', 'Y303RC', 'Y293RC', 'Y276RC', 'Y306RC'), 'Indentations': (0, 1, 1, 2, 3, 4, 4, 3, 4, 4, 3, 4, 4, 3, 2, 1, 2, 3, 3, 2, 0, 1, 1, 2, 2, 1, 2, 2, 1, 0, 1, 1, 1, 2, 2, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0)}, {'tableName': ('T72400',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36), 'SeriesCode': ('Y307RC', 'Y327RC', 'Y308RC', 'Y318RC', 'S25110', 'Y310RC', 'S25120', 'Y327RC', 'Y312RC', 'Y312RC', 'Y313RC', 'Y314RC', 'Y315RC', 'B1452C', 'Y317RC', 'Y327RC', 'Y312RC', 'Y313RC', 'B1452C', 'S12100', 'Y309RC', 'Y323RC', 'Y324RC', 'Y325RC', 'S12100', 'Y327RC', 'Y328RC', 'Y327RC', 'Y330RC', 'Y331RC', 'Y332RC', 'Y312RC', 'Y334RC', 'S12100', 'S25120', 'Y337RC'), 'Indentations': (0, 1, 1, 2, 3, 3, 3, 3, 2, 1, 2, 3, 3, 2, 0, 1, 1, 2, 2, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1)}, {'tableName': ('T72500',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31), 'SeriesCode': ('Y338RC', 'Y349RC', 'Y339RC', 'Y347RC', 'Y340RC', 'Y934RC', 'Y912RC', 'Y955RC', 'Y344RC', 'Y345RC', 'Y349RC', 'Y345RC', 'Y900RC', 'Y901RC', 'Y346RC', 'Y349RC', 'Y345RC', 'Y900RC', 'Y901RC', 'Y353RC', 'Y905RC', 'Y350RC', 'Y351RC', 'Y345RC', 'Y353RC', 'Y349RC', 'Y355RC', 'Y349RC', 'Y357RC', 'Y906RC', 'Y907RC'), 'Indentations': (0, 1, 1, 2, 3, 4, 4, 4, 3, 2, 2, 1, 2, 2, 0, 1, 1, 2, 2, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0)}, {'tableName': ('T80103',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26), 'SeriesCode': ('NB000334', 'NB000349', 'NB000347', 'NB000346', 'NB000348', 'NB000350', 'NB000335', 'NB000337', 'NB000336', 'NB000339', 'NB000340', 'NB000341', 'NB000338', 'ZZZZZZ', 'ZZZZZZ', 'NB000352', 'NB000353', 'NB000354', 'NB000342', 'NB000343', 'NB000344', 'NB000333', 'NB000330', 'NB000331', 'NB000332', 'NB000351'), 'Indentations': (0, 0, 1, 2, 2, 1, 0, 1, 2, 3, 3, 3, 2, 1, 0, 1, 2, 2, 1, 2, 2, 0, 1, 2, 2, 1)}, {'tableName': ('T80104',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26), 'SeriesCode': ('NC000334', 'NC000349', 'NC000347', 'NC000346', 'NC000348', 'NC000350', 'NC000335', 'NC000337', 'NC000336', 'NC000339', 'NC000340', 'NC000341', 'NC000338', 'ZZZZZZ', 'ZZZZZZ', 'NC000352', 'NC000353', 'NC000354', 'NC000342', 'NC000343', 'NC000344', 'NC000333', 'NC000330', 'NC000331', 'NC000332', 'NC000351'), 'Indentations': (0, 0, 1, 2, 2, 1, 0, 1, 2, 3, 3, 3, 2, 1, 0, 1, 2, 2, 1, 2, 2, 0, 1, 2, 2, 1)}, {'tableName': ('T80105',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26), 'SeriesCode': ('NA000334', 'NA000349', 'NA000347', 'NA000346', 'NA000348', 'NA000350', 'NA000335', 'NA000337', 'NA000336', 'NA000339', 'NA000340', 'NA000341', 'NA000338', 'NA000373', 'NA000374', 'NA000352', 'NA000353', 'NA000354', 'NA000342', 'NA000343', 'NA000344', 'NA000333', 'NA000330', 'NA000331', 'NA000332', 'NA000351'), 'Indentations': (0, 0, 1, 2, 2, 1, 0, 1, 2, 3, 3, 3, 2, 1, 0, 1, 2, 2, 1, 2, 2, 0, 1, 2, 2, 1)}, {'tableName': ('T80106',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27), 'SeriesCode': ('ND000334', 'ND000349', 'ND000347', 'ND000346', 'ND000348', 'ND000350', 'ND000335', 'ND000337', 'ND000336', 'ND000339', 'ND000340', 'ND000341', 'ND000338', 'ND000373', 'ND000374', 'ND000352', 'ND000353', 'ND000354', 'ND000342', 'ND000343', 'ND000344', 'ND000333', 'ND000330', 'ND000331', 'ND000332', 'ND000351', 'ND000364'), 'Indentations': (0, 0, 1, 2, 2, 1, 0, 1, 2, 3, 3, 3, 2, 1, 0, 1, 2, 2, 1, 2, 2, 0, 1, 2, 2, 1, 0)}, {'tableName': ('T80111',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26), 'SeriesCode': ('OB000334', 'OB000349', 'OB000347', 'OB000346', 'OB000348', 'OB000350', 'OB000335', 'OB000337', 'OB000336', 'OB000339', 'OB000340', 'OB000341', 'OB000338', 'ZZZZZZ', 'ZZZZZZ', 'OB000352', 'OB000353', 'OB000354', 'OB000342', 'OB000343', 'OB000344', 'OB000333', 'OB000330', 'OB000331', 'OB000332', 'OB000351'), 'Indentations': (0, 0, 1, 2, 2, 1, 0, 1, 2, 3, 3, 3, 2, 1, 0, 1, 2, 2, 1, 2, 2, 0, 1, 2, 2, 1)}, {'tableName': ('T80200',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24), 'SeriesCode': ('NA000254', 'NA000252', 'NA000275', 'NA000259', 'NA000274', 'NA000271', 'NA000273', 'NA000270', 'NA000261', 'NA000262', 'NA000256', 'NA000250', 'NA000268', 'NA000269', 'NA000265', 'NA000272', 'NA000266', 'NA000264', 'NA000267', 'NA000253', 'NA000251', 'NA000257', 'NA000255', 'NA000258'), 'Indentations': (0, 0, 1, 2, 3, 1, 0, 0, 0, 1, 2, 2, 2, 2, 2, 3, 3, 4, 4, 1, 0, 1, 1, 1)}, {'tableName': ('T80300',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26), 'SeriesCode': ('NA000304', 'NA000327', 'NA000320', 'NA000324', 'NA000322', 'NA000326', 'NA000302', 'NA000278', 'NA000288', 'NA000285', 'NA000283', 'NA000291', 'NA000293', 'NA000298', 'NA000300', 'NA000301', 'NA000295', 'NA000297', 'NA000306', 'NA000308', 'NA000309', 'NA000310', 'NA000318', 'NA000314', 'NA000292', 'NA000281'), 'Indentations': (0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 2, 2, 1, 2, 2, 0, 1, 1, 0, 1, 1, 1)}, {'tableName': ('T80400',), 'LineNumber': (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25), 'SeriesCode': ('NA000305', 'NA000328', 'NA000321', 'NA000325', 'NA000323', 'NA000303', 'NA000279', 'NA000363', 'NA000296', 'NA000280', 'NA000287', 'NA000290', 'NA000286', 'NA000284', 'NA000316', 'NA000294', 'NA000299', 'NA000307', 'NA000311', 'NA000312', 'NA000313', 'NA000319', 'NA000315', 'NA000317', 'NA000282'), 'Indentations': (0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1)}]PKO(m`99%datapungibea/config/CFGnipaSummary.py''' Configuration needed to write a NIPA summary table ''' tabparams = { 'Account 1' : { 'meta' :{ 'heading': "Table 1: Domestic Income and Product Account", 'caption': "Source: BEA NIPA Tables 1.10 and Table 1.1.5" }, 'source' : { 'tableName' : 'T11000', 'tableEntries' : [ { 'SeriesCode': "A261RC", 'indentation':0}, { 'SeriesCode': "A4002C", 'indentation':1}, { 'SeriesCode': "A4102C", 'indentation':2}, { 'SeriesCode': "W270RC", 'indentation':3}, { 'SeriesCode': "B4189C", 'indentation':3}, { 'SeriesCode': "A038RC", 'indentation':2}, { 'SeriesCode': "W056RC", 'indentation':1}, { 'SeriesCode': "A107RC", 'indentation':1}, { 'SeriesCode': "W271RC", 'indentation':1}, { 'SeriesCode': "W260RC", 'indentation':2}, { 'SeriesCode': "W272RC", 'indentation':2}, { 'SeriesCode': "B029RC", 'indentation':2}, { 'SeriesCode': "A041RC", 'indentation':2}, { 'SeriesCode': "A048RC", 'indentation':2}, { 'SeriesCode': "A445RC", 'indentation':2}, { 'SeriesCode': "A054RC", 'indentation':3}, { 'SeriesCode': "W273RC", 'indentation':3}, { 'SeriesCode': "A449RC", 'indentation':4}, { 'SeriesCode': "W274RC", 'indentation':4}, { 'SeriesCode': "A108RC", 'indentation':3}, { 'SeriesCode': "A262RC", 'indentation':1}, { 'SeriesCode': "A024RC", 'indentation':2}, { 'SeriesCode': "A264RC", 'indentation':2}, { 'SeriesCode': "A030RC", 'indentation':0} ] }, 'uses' : { 'tableName' : 'T10105', 'tableEntries' : [ {'SeriesCode':"A191RC",'indentation': 0}, {'SeriesCode':"DPCERC",'indentation': 1}, {'SeriesCode':"DGDSRC",'indentation': 2}, {'SeriesCode':"DDURRC",'indentation': 3}, {'SeriesCode':"DNDGRC",'indentation': 3}, {'SeriesCode':"DSERRC",'indentation': 2}, {'SeriesCode':"A006RC",'indentation': 1}, {'SeriesCode':"A007RC",'indentation': 2}, {'SeriesCode':"A008RC",'indentation': 3}, {'SeriesCode':"B009RC",'indentation': 4}, {'SeriesCode':"Y033RC",'indentation': 4}, {'SeriesCode':"Y001RC",'indentation': 4}, {'SeriesCode':"A011RC",'indentation': 3}, {'SeriesCode':"A014RC",'indentation': 2}, {'SeriesCode':"A019RC",'indentation': 1}, {'SeriesCode':"B020RC",'indentation': 2}, {'SeriesCode':"A253RC",'indentation': 3}, {'SeriesCode':"A646RC",'indentation': 3}, {'SeriesCode':"B021RC",'indentation': 2}, {'SeriesCode':"A255RC",'indentation': 3}, {'SeriesCode':"B656RC",'indentation': 3}, {'SeriesCode':"A822RC",'indentation': 1}, {'SeriesCode':"A823RC",'indentation': 2}, {'SeriesCode':"A824RC",'indentation': 3}, {'SeriesCode':"A825RC",'indentation': 3}, {'SeriesCode':"A829RC",'indentation': 2} ] } }, 'Account 2' : { 'meta' :{ 'heading': "Table 2: Private Enterprise Income Account", 'caption': "Source: BEA NIPA Table 1.16" }, 'source' : { 'tableName' : "T11600", 'tableEntries' : [ {'SeriesCode':"W259RC",'indentation':0}, {'SeriesCode':"W260RC",'indentation':1}, {'SeriesCode':"W261RC",'indentation':1}, {'SeriesCode':"W262RC",'indentation':2}, {'SeriesCode':"B3375C",'indentation':2}, {'SeriesCode':"B3475C",'indentation':2}, ] }, 'uses' : { 'tableName' : "T11600", 'tableEntries' : [ {'SeriesCode':"W263RC",'indentation': 0 }, {'SeriesCode':"W264RC",'indentation': 1 }, {'SeriesCode':"W265RC",'indentation': 2 }, {'SeriesCode':"B3376C",'indentation': 2 }, {'SeriesCode':"B3476C",'indentation': 2 }, {'SeriesCode':"B029RC",'indentation': 1 }, {'SeriesCode':"B931RC",'indentation': 2 }, {'SeriesCode':"W061RC",'indentation': 2 }, {'SeriesCode':"W237RC",'indentation': 2 }, {'SeriesCode':"A041RC",'indentation': 1 }, {'SeriesCode':"A048RC",'indentation': 1 }, {'SeriesCode':"A051RC",'indentation': 1 }, {'SeriesCode':"A054RC",'indentation': 2 }, {'SeriesCode':"W025RC",'indentation': 3 }, {'SeriesCode':"B930RC",'indentation': 3 }, {'SeriesCode':"A551RC",'indentation': 2 }, {'SeriesCode':"B056RC",'indentation': 3 }, {'SeriesCode':"A127RC",'indentation': 3 } ] } }, 'Account 3' : { 'meta' :{ 'heading': "Table 3: Personal Income and Outlays Account", 'caption': "Source: BEA NIPA Table 2.01" }, 'source' :{ 'tableName' : "T20100", 'tableEntries' : [ {'SeriesCode':"A065RC",'indentation': 0 }, {'SeriesCode':"A033RC",'indentation': 1 }, {'SeriesCode':"A034RC",'indentation': 2 }, {'SeriesCode':"A132RC",'indentation': 3 }, {'SeriesCode':"B202RC",'indentation': 3 }, {'SeriesCode':"A038RC",'indentation': 2 }, {'SeriesCode':"B040RC",'indentation': 3 }, {'SeriesCode':"B039RC",'indentation': 3 }, {'SeriesCode':"A041RC",'indentation': 1 }, {'SeriesCode':"B042RC",'indentation': 2 }, {'SeriesCode':"A045RC",'indentation': 2 }, {'SeriesCode':"A048RC",'indentation': 1 }, {'SeriesCode':"W210RC",'indentation': 1 }, {'SeriesCode':"A064RC",'indentation': 2 }, {'SeriesCode':"B703RC",'indentation': 2 }, {'SeriesCode':"A577RC",'indentation': 1 }, {'SeriesCode':"A063RC",'indentation': 2 }, {'SeriesCode':"W823RC",'indentation': 3 }, {'SeriesCode':"W824RC",'indentation': 3 }, {'SeriesCode':"A045RC",'indentation': 3 }, {'SeriesCode':"W825RC",'indentation': 3 }, {'SeriesCode':"W826RC",'indentation': 3 }, {'SeriesCode':"W827RC",'indentation': 3 }, {'SeriesCode':"B931RC",'indentation': 2 } ] }, 'uses' : { 'tableName' : "T20100", 'tableEntries' : [ {'SeriesCode':"W055RC",'indentation': 1 }, {'SeriesCode':"A068RC",'indentation': 1 }, {'SeriesCode':"DPCERC",'indentation': 2 }, {'SeriesCode':"B069RC",'indentation': 2 }, {'SeriesCode':"W211RC",'indentation': 2 }, {'SeriesCode':"W062RC",'indentation': 3 }, {'SeriesCode':"B070RC",'indentation': 3 }, {'SeriesCode':"A071RC",'indentation': 1 } ] } }, 'Account 4' : { 'meta' :{ 'heading': "Table 4: Government Receipts and Expenditure Account", 'caption': "Source: BEA NIPA Table 3.01" }, 'source' :{ 'tableName' : "T30100", 'tableEntries' : [ {'SeriesCode':"W021RC",'indentation': 0 }, {'SeriesCode':"W054RC",'indentation': 1 }, {'SeriesCode':"W055RC",'indentation': 2 }, {'SeriesCode':"W056RC",'indentation': 2 }, {'SeriesCode':"W025RC",'indentation': 2 }, {'SeriesCode':"W008RC",'indentation': 2 }, {'SeriesCode':"W782RC",'indentation': 1 }, {'SeriesCode':"W058RC",'indentation': 1 }, {'SeriesCode':"W059RC",'indentation': 2 }, {'SeriesCode':"Y703RC",'indentation': 3 }, {'SeriesCode':"Y704RC",'indentation': 3 }, {'SeriesCode':"W065RC",'indentation': 2 }, {'SeriesCode':"W060RC",'indentation': 1 }, {'SeriesCode':"W061RC",'indentation': 2 }, {'SeriesCode':"W061RC",'indentation': 2 }, {'SeriesCode':"A108RC",'indentation': 1 } ] }, 'uses' : { 'tableName' : "T30100", 'tableEntries' : [ {'SeriesCode':"W022RC",'indentation': 0 }, {'SeriesCode':"A955RC",'indentation': 1 }, {'SeriesCode':"A084RC",'indentation': 1 }, {'SeriesCode':"W063RC",'indentation': 2 }, {'SeriesCode':"A063RC",'indentation': 3 }, {'SeriesCode':"W016RC",'indentation': 3 }, {'SeriesCode':"W017RC",'indentation': 2 }, {'SeriesCode':"A180RC",'indentation': 1 }, {'SeriesCode':"A204RC",'indentation': 2 }, {'SeriesCode':"Y712RC",'indentation': 2 }, {'SeriesCode':"A107RC",'indentation': 1 }, {'SeriesCode':"A922RC",'indentation': 1 } ] } }, 'Account 5' : { 'meta' :{ 'heading': "Table 5: Foreign Transaction Current Account", 'caption': "Source: BEA NIPA Table 4.01" }, 'source' :{ 'tableName' : "T40100", 'tableEntries' : [ {'SeriesCode':"W163RC",'indentation': 0 }, {'SeriesCode':"B021RC",'indentation': 1 }, {'SeriesCode':"A255RC",'indentation': 2 }, {'SeriesCode':"A333RC",'indentation': 3 }, {'SeriesCode':"A340RC",'indentation': 3 }, {'SeriesCode':"B656RC",'indentation': 2 }, {'SeriesCode':"A655RC",'indentation': 1 }, {'SeriesCode':"B4189C",'indentation': 2 }, {'SeriesCode':"W161RC",'indentation': 2 }, {'SeriesCode':"B1869C",'indentation': 3 }, {'SeriesCode':"B3376C",'indentation': 3 }, {'SeriesCode':"B3476C",'indentation': 3 }, {'SeriesCode':"A123RC",'indentation': 1 }, {'SeriesCode':"B070RC",'indentation': 2 }, {'SeriesCode':"B088RC",'indentation': 2 }, {'SeriesCode':"W164RC",'indentation': 2 }, {'SeriesCode':"A124RC",'indentation': 0 } ] }, 'uses' : { 'tableName' : "T40100", 'tableEntries' : [ {'SeriesCode':"A120RC1",'indentation': 0 }, {'SeriesCode':"B020RC", 'indentation': 1 }, {'SeriesCode':"A253RC", 'indentation': 2 }, {'SeriesCode':"A332RC", 'indentation': 3 }, {'SeriesCode':"A339RC", 'indentation': 3 }, {'SeriesCode':"A646RC", 'indentation': 3 }, {'SeriesCode':"B645RC", 'indentation': 1 }, {'SeriesCode':"B4188C", 'indentation': 2 }, {'SeriesCode':"W160RC", 'indentation': 2 }, {'SeriesCode':"A2067C", 'indentation': 3 }, {'SeriesCode':"B3375C", 'indentation': 3 }, {'SeriesCode':"B3475C", 'indentation': 3 } ] } }, 'Account 6' : { 'meta' :{ 'heading': "Table 6: Domestic Capital Account", 'caption': "Source: BEA NIPA Tables 5.01" }, 'source' :{ 'tableName' : "T50100", 'tableEntries' : [ {'SeriesCode': "A929RC", 'indentation': 0 }, {'SeriesCode': "W201RC", 'indentation': 1 }, {'SeriesCode': "W202RC", 'indentation': 2 }, {'SeriesCode': "A127RC", 'indentation': 3 }, {'SeriesCode': "B057RC", 'indentation': 4 }, {'SeriesCode': "B058RC", 'indentation': 4 }, {'SeriesCode': "A059RC", 'indentation': 4 }, {'SeriesCode': "W986RC", 'indentation': 3 }, {'SeriesCode': "A071RC", 'indentation': 4 }, {'SeriesCode': "A922RC", 'indentation': 2 }, {'SeriesCode': "A923RC", 'indentation': 3 }, {'SeriesCode': "A924RC", 'indentation': 3 }, {'SeriesCode': "A262RC", 'indentation': 1 }, {'SeriesCode': "A024RC", 'indentation': 2 }, {'SeriesCode': "W276RC", 'indentation': 3 }, {'SeriesCode': "W279RC", 'indentation': 3 }, {'SeriesCode': "A264RC", 'indentation': 2 }, {'SeriesCode': "A918RC", 'indentation': 3 }, {'SeriesCode': "A919RC", 'indentation': 3 }, ] }, 'uses' : { 'tableName' : "T50100", 'tableEntries' : [ {'SeriesCode':"A928RC", 'indentation': 0 }, {'SeriesCode':"W170RC", 'indentation': 1 }, {'SeriesCode':"A006RC", 'indentation': 2 }, {'SeriesCode':"W987RC", 'indentation': 3 }, {'SeriesCode':"W988RC", 'indentation': 3 }, {'SeriesCode':"A782RC", 'indentation': 2 }, {'SeriesCode':"A787RC", 'indentation': 3 }, {'SeriesCode':"A799RC", 'indentation': 3 }, {'SeriesCode':"W167RC", 'indentation': 1 }, {'SeriesCode':"W999RC", 'indentation': 2 }, {'SeriesCode':"W989RC", 'indentation': 3 }, {'SeriesCode':"W990RC", 'indentation': 3 }, {'SeriesCode':"W991RC", 'indentation': 2 }, {'SeriesCode':"W992RC", 'indentation': 3 }, {'SeriesCode':"W993RC", 'indentation': 3 }, {'SeriesCode':"W162RC", 'indentation': 1 }, {'SeriesCode':"W994RC", 'indentation': 2 }, {'SeriesCode':"W995RC", 'indentation': 3 }, {'SeriesCode':"W996RC", 'indentation': 3 }, {'SeriesCode':"AD01RC", 'indentation': 2 }, {'SeriesCode':"AD02RC", 'indentation': 3 }, {'SeriesCode':"AD03RC", 'indentation': 3 }, {'SeriesCode':"A030RC", 'indentation': 0 }, ] } } }PKOdatapungibea/config/__init__.pyPKO[$$"datapungibea/config/pkgConfig.yamlurl : https://apps.bea.gov/api/data/PKO dd%datapungibea/config/userSettings.json{"ApiKeysPath": "env", "ApiKeyLabel": "BEA", "ResultFormat": "JSON", "TestsOutputPath": "U:/Tests"} PKBNw,,datapungibea/tests/__init__.pyfrom datapungibea.tests.main import runTestsPKOkddatapungibea/tests/conftest.py# content of conftest.py import pytest def pytest_addoption(parser): parser.addoption( "--cmdopt", action="store", default="", help="enter API key" ) @pytest.fixture def cmdopt(request): return request.config.getoption("--cmdopt")PKBNxy/UUdatapungibea/tests/main.pyimport subprocess import os from datapungibea.utils import getUserSettings def runTests(outputPath='',testsPath='',verbose = True): if not testsPath: testsPath = os.path.dirname(os.path.abspath(__file__)).replace("\\","/") print('**************************** \nWill run tests in: ' + testsPath) if not outputPath: outputPath = "U:/" try: settingsFile = getUserSettings() outputPath = settingsFile['TestsOutputPath'] except: print("Could not load TestOutputPath from user settings. Perhaps run util.setTestFolder( FilePath ) ") subprocess.Popen('pytest ' + testsPath + ' --html='+outputPath+'datapungibea_Tests.html --self-contained-html') if verbose: print('Tests will be saved in '+outputPath+'datapungibea_Tests.html \n****************************') if __name__ == '__main__': from sys import argv import subprocess import os runTests() #print(os.path.dirname(os.path.realpath(__file__))) #query = subprocess.Popen('pytest --html=datapungibea_Tests.html') #print(query)PKO^[3##"datapungibea/tests/test_drivers.pyimport datapungibea as dpbea import time import pandas as pd import os def executeCode(stringIn): ''' auxiliary function for tests: get the requests code as a string and try to execute it. ''' try: exec(stringIn+'\n') #exec('print("hi")') # return(dict( codeRun = True, codeOutput = locals()['df_output'] )) #try to output the dataframe called df_output except: try: exec(stringIn) #if no dataframe called output, try to see it at least can exec the code return(dict(codeRun = True, codeOutput = pd.DataFrame([]))) except: return(dict(codeRun = False, codeOutput = pd.DataFrame([]))) # content of test_sample.py def test_startDriver(cmdopt): global dataBea if not cmdopt == "": connectionParameters = {"key": cmdopt, "url": "https://apps.bea.gov/api/data/"} else: connectionParameters = {} dataBea = dpbea.data(connectionParameters) assert dataBea return(dataBea) def test_datasetlist(cmdopt): ''' test the datasetlist BEA dataset ''' global dataBea if not cmdopt == "": connectionParameters = {"key": cmdopt, "url": "https://apps.bea.gov/api/data/"} else: connectionParameters = {} dataBea = dpbea.data(connectionParameters) driver = dataBea.datasetlist(verbose=True) execCode = executeCode(driver['code']) assert driver['request'].status_code == 200 #test if connection was stablished assert not driver['dataFrame'].empty #cleaned up output is not empty assert execCode['codeRun'] #try to execute the code. assert execCode['codeOutput'].equals(driver['dataFrame']) #test if the output of the code equals the output of the #print('datasetlist driver is working (Request OK, data cleaned, can run code snippet, snippet agrees with request)!') def test_getParameterList(): driver = dataBea.getParameterList('FixedAssets',verbose=True) execCode = executeCode(driver['code']) assert driver['request'].status_code == 200 #test if connection was stablished assert not driver['dataFrame'].empty #cleaned up output is not empty assert execCode['codeRun'] #try to execute the code. assert execCode['codeOutput'].equals(driver['dataFrame']) #test if the output of the code equals the output of the def test_getParameterValues(): driver = dataBea.getParameterValues('NIPA','Year',verbose=True) execCode = executeCode(driver['code']) assert driver['request'].status_code == 200 #test if connection was stablished assert not driver['dataFrame'].empty #cleaned up output is not empty assert execCode['codeRun'] #try to execute the code. assert execCode['codeOutput'].equals(driver['dataFrame']) #test if the output of the code equals the output of the def test_NIPA(): driver = dataBea.NIPA('T10101','Q','2010',verbose=True) execCode = executeCode(driver['code']) assert driver['request'].status_code == 200 #test if connection was stablished assert not driver['dataFrame'].empty #cleaned up output is not empty assert execCode['codeRun'] #try to execute the code. assert execCode['codeOutput'].equals(driver['dataFrame']) #test if the output of the code equals the output of the def test_fixedAssets(): driver = dataBea.fixedAssets('FAAt101','2013',verbose=True) #try all years execCode = executeCode(driver['code']) assert driver['request'].status_code == 200 #test if connection was stablished assert not driver['dataFrame'].empty #cleaned up output is not empty assert execCode['codeRun'] #try to execute the code. assert execCode['codeOutput'].equals(driver['dataFrame']) #test if the output of the code equals the output of the def test_ITA(): driver = dataBea.ITA('BalCurrAcct','Brazil','A','2010',verbose=True) execCode = executeCode(driver['code']) assert driver['request'].status_code == 200 #test if connection was stablished assert not driver['dataFrame'].empty #cleaned up output is not empty assert execCode['codeRun'] #try to execute the code. assert execCode['codeOutput'].equals(driver['dataFrame']) #test if the output of the code equals the output of the def test_IIP(): driver = dataBea.IIP(TypeOfInvestment='DebtSecAssets',Component='All',Frequency='All',Year='2010',verbose=True) execCode = executeCode(driver['code']) assert driver['request'].status_code == 200 #test if connection was stablished assert not driver['dataFrame'].empty #cleaned up output is not empty assert execCode['codeRun'] #try to execute the code. assert execCode['codeOutput'].equals(driver['dataFrame']) #test if the output of the code equals the output of the def test_GDPbyIndustry(): driver = dataBea.GDPbyIndustry('211','1','A','2018',verbose=True) execCode = executeCode(driver['code']) assert driver['request'].status_code == 200 #test if connection was stablished assert not driver['dataFrame'].empty #cleaned up output is not empty assert execCode['codeRun'] #try to execute the code. assert execCode['codeOutput'].equals(driver['dataFrame']) #test if the output of the code equals the output of the def test_InputOutput(): driver = dataBea.InputOutput(TableID='56',Year='2010',verbose=True) execCode = executeCode(driver['code']) assert driver['request'].status_code == 200 #test if connection was stablished assert not driver['dataFrame'].empty #cleaned up output is not empty assert execCode['codeRun'] #try to execute the code. assert execCode['codeOutput'].equals(driver['dataFrame']) #test if the output of the code equals the output of the def test_UnderlyingGDPbyIndustry(): driver = dataBea.UnderlyingGDPbyIndustry('ALL','ALL','A','2014',verbose=True) #try all years and check line 40788 execCode = executeCode(driver['code']) assert driver['request'].status_code == 200 #test if connection was stablished assert not driver['dataFrame'].empty #cleaned up output is not empty assert execCode['codeRun'] #try to execute the code. assert execCode['codeOutput'].equals(driver['dataFrame']) #test if the output of the code equals the output of the def test_IntlServTrade(): driver = dataBea.IntlServTrade('ALL','ALL','ALL','AllCountries','All',verbose=True) execCode = executeCode(driver['code']) assert driver['request'].status_code == 200 #test if connection was stablished assert not driver['dataFrame'].empty #cleaned up output is not empty assert execCode['codeRun'] #try to execute the code. assert execCode['codeOutput'].equals(driver['dataFrame']) #test if the output of the code equals the output of the def test_IntlServTrade(): driver = dataBea.IntlServTrade('ALL','ALL','ALL','AllCountries','All',verbose=True) execCode = executeCode(driver['code']) assert driver['request'].status_code == 200 #test if connection was stablished assert not driver['dataFrame'].empty #cleaned up output is not empty assert execCode['codeRun'] #try to execute the code. def test_Regional(): driver = dataBea.Regional('00000','1','SAGDP5N', 'All',verbose=True) execCode = executeCode(driver['code']) assert driver['request'].status_code == 200 #test if connection was stablished assert not driver['dataFrame'].empty #cleaned up output is not empty assert execCode['codeRun'] #try to execute the code. assert execCode['codeOutput'].equals(driver['dataFrame']) #test if the output of the code equals the output of the def test_NIPASummary(): driver = dataBea.NIPASummary('2012','Q',verbose=True) #execCode = executeCode(driver['code']) #assert driver['request'].status_code == 200 #test if connection was stablished assert not driver['dataFrame'][0].empty #cleaned up output is not empty #assert execCode['codeRun'] #try to execute the code. #assert execCode['codeOutput'].equals(driver['dataFrame']) #test if the output of the code equals the output of the def test_NIPAVintage(): driver = dataBea.NIPAVintage(tableName = 'T10101', Title = 'Section 1',year = '2018', quarter ='Q1',vintage='Second',verbose = True) execCode = executeCode(driver['code']) #assert driver['request'].status_code == 200 #test if connection was stablished assert not driver['dataFrame'][0].empty #cleaned up output is not empty #assert execCode['codeRun'] #try to execute the code. #assert execCode['codeOutput'].equals(driver['dataFrame']) #test if the output of the code equals the output of the if __name__ == '__main__': test_answer('') #test_IIP() #test_datasetlist() #test_getParameterList() #test_getParameterValues() #test_NIPA() #test_fixedAssets()PKOE#E#$datapungibea/tests/test_driversCI.pyimport datapungibea as dpbea import time import pandas as pd import os def executeCode(stringIn): ''' auxiliary function for tests: get the requests code as a string and try to execute it. ''' try: exec(stringIn+'\n') #exec('print("hi")') # return(dict( codeRun = True, codeOutput = locals()['df_output'] )) #try to output the dataframe called df_output except: try: exec(stringIn) #if no dataframe called output, try to see it at least can exec the code return(dict(codeRun = True, codeOutput = pd.DataFrame([]))) except: return(dict(codeRun = False, codeOutput = pd.DataFrame([]))) # content of test_sample.py def test_startDriver(cmdopt): global dataBea if not cmdopt == "": connectionParameters = {"key": cmdopt, "url": "https://apps.bea.gov/api/data/"} else: connectionParameters = {} dataBea = dpbea.data(connectionParameters) assert dataBea return(dataBea) def test_datasetlist(cmdopt): ''' test the datasetlist BEA dataset ''' driver = dataBea.datasetlist(verbose=True) #execCode = executeCode(driver['code']) assert driver['request'].status_code == 200 #test if connection was stablished assert not driver['dataFrame'].empty #cleaned up output is not empty #assert execCode['codeRun'] #try to execute the code. #assert execCode['codeOutput'].equals(driver['dataFrame']) #test if the output of the code equals the output of the #print('datasetlist driver is working (Request OK, data cleaned, can run code snippet, snippet agrees with request)!') def test_getParameterList(): driver = dataBea.getParameterList('FixedAssets',verbose=True) #execCode = executeCode(driver['code']) assert driver['request'].status_code == 200 #test if connection was stablished assert not driver['dataFrame'].empty #cleaned up output is not empty #assert execCode['codeRun'] #try to execute the code. #assert execCode['codeOutput'].equals(driver['dataFrame']) #test if the output of the code equals the output of the def test_getParameterValues(): driver = dataBea.getParameterValues('NIPA','Year',verbose=True) #execCode = executeCode(driver['code']) assert driver['request'].status_code == 200 #test if connection was stablished assert not driver['dataFrame'].empty #cleaned up output is not empty #assert execCode['codeRun'] #try to execute the code. #assert execCode['codeOutput'].equals(driver['dataFrame']) #test if the output of the code equals the output of the def test_NIPA(): driver = dataBea.NIPA('T10101','Q','2010',verbose=True) #execCode = executeCode(driver['code']) assert driver['request'].status_code == 200 #test if connection was stablished assert not driver['dataFrame'].empty #cleaned up output is not empty #assert execCode['codeRun'] #try to execute the code. #assert execCode['codeOutput'].equals(driver['dataFrame']) #test if the output of the code equals the output of the def test_fixedAssets(): driver = dataBea.fixedAssets('FAAt101','2013',verbose=True) #try all years #execCode = executeCode(driver['code']) assert driver['request'].status_code == 200 #test if connection was stablished assert not driver['dataFrame'].empty #cleaned up output is not empty #assert execCode['codeRun'] #try to execute the code. #assert execCode['codeOutput'].equals(driver['dataFrame']) #test if the output of the code equals the output of the def test_ITA(): driver = dataBea.ITA('BalCurrAcct','Brazil','A','2010',verbose=True) #execCode = executeCode(driver['code']) assert driver['request'].status_code == 200 #test if connection was stablished assert not driver['dataFrame'].empty #cleaned up output is not empty #assert execCode['codeRun'] #try to execute the code. #assert execCode['codeOutput'].equals(driver['dataFrame']) #test if the output of the code equals the output of the def test_IIP(): driver = dataBea.IIP(TypeOfInvestment='DebtSecAssets',Component='All',Frequency='All',Year='2010',verbose=True) #execCode = executeCode(driver['code']) assert driver['request'].status_code == 200 #test if connection was stablished assert not driver['dataFrame'].empty #cleaned up output is not empty #assert execCode['codeRun'] #try to execute the code. #assert execCode['codeOutput'].equals(driver['dataFrame']) #test if the output of the code equals the output of the def test_GDPbyIndustry(): driver = dataBea.GDPbyIndustry('211','1','A','2018',verbose=True) #execCode = executeCode(driver['code']) assert driver['request'].status_code == 200 #test if connection was stablished assert not driver['dataFrame'].empty #cleaned up output is not empty #assert execCode['codeRun'] #try to execute the code. #assert execCode['codeOutput'].equals(driver['dataFrame']) #test if the output of the code equals the output of the def test_InputOutput(): driver = dataBea.InputOutput(TableID='56',Year='2010',verbose=True) #execCode = executeCode(driver['code']) assert driver['request'].status_code == 200 #test if connection was stablished assert not driver['dataFrame'].empty #cleaned up output is not empty #assert execCode['codeRun'] #try to execute the code. #assert execCode['codeOutput'].equals(driver['dataFrame']) #test if the output of the code equals the output of the def test_UnderlyingGDPbyIndustry(): driver = dataBea.UnderlyingGDPbyIndustry('ALL','ALL','A','2014',verbose=True) #try all years and check line 40788 #execCode = executeCode(driver['code']) assert driver['request'].status_code == 200 #test if connection was stablished assert not driver['dataFrame'].empty #cleaned up output is not empty #assert execCode['codeRun'] #try to execute the code. #assert execCode['codeOutput'].equals(driver['dataFrame']) #test if the output of the code equals the output of the def test_IntlServTrade(): driver = dataBea.IntlServTrade('ALL','ALL','ALL','AllCountries','All',verbose=True) #execCode = executeCode(driver['code']) assert driver['request'].status_code == 200 #test if connection was stablished assert not driver['dataFrame'].empty #cleaned up output is not empty #assert execCode['codeRun'] #try to execute the code. #assert execCode['codeOutput'].equals(driver['dataFrame']) #test if the output of the code equals the output of the def test_IntlServTrade(): driver = dataBea.IntlServTrade('ALL','ALL','ALL','AllCountries','All',verbose=True) #execCode = executeCode(driver['code']) assert driver['request'].status_code == 200 #test if connection was stablished assert not driver['dataFrame'].empty #cleaned up output is not empty #assert execCode['codeRun'] #try to execute the code. def test_Regional(): driver = dataBea.Regional('00000','1','SAGDP5N', 'All',verbose=True) #execCode = executeCode(driver['code']) assert driver['request'].status_code == 200 #test if connection was stablished assert not driver['dataFrame'].empty #cleaned up output is not empty #assert execCode['codeRun'] #try to execute the code. #assert execCode['codeOutput'].equals(driver['dataFrame']) #test if the output of the code equals the output of the def test_NIPASummary(): driver = dataBea.NIPASummary('2012','Q',verbose=True) #execCode = executeCode(driver['code']) #assert driver['request'].status_code == 200 #test if connection was stablished assert not driver['dataFrame'][0].empty #cleaned up output is not empty #assert execCode['codeRun'] #try to execute the code. #assert execCode['codeOutput'].equals(driver['dataFrame']) #test if the output of the code equals the output of the def test_NIPAVintage(): driver = dataBea.NIPAVintage(tableName = 'T10101', Title = 'Section 1',year = '2018', quarter ='Q1',vintage='Second',verbose = True) #execCode = executeCode(driver['code']) #assert driver['request'].status_code == 200 #test if connection was stablished assert not driver['dataFrame'][0].empty #cleaned up output is not empty #assert execCode['codeRun'] #try to execute the code. #assert execCode['codeOutput'].equals(driver['dataFrame']) #test if the output of the code equals the output of the if __name__ == '__main__': test_answer('') #test_IIP() #test_datasetlist() #test_getParameterList() #test_getParameterValues() #test_NIPA() #test_fixedAssets()PKOW//$datapungibea-0.9.5.dist-info/LICENSEMIT License Copyright (c) 2019 James Otterson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. PK!HMuSa"datapungibea-0.9.5.dist-info/WHEEL HM K-*ϳR03rOK-J,/RH,szd&Y)r$[)T&UD"PK!He7,>%datapungibea-0.9.5.dist-info/METADATA[mw۶_k䕨Uv$vbݞ"! E)Ggf4κE>3^JǺңMi<8xWfyQgdftм32W+]n&ie&r.U>WQ$RLXr>YLV&X^CuUշja*NJ/p~|̨ZVUa'",ky6IYxN*v$۶AuJ#],o)& IdPr)˒ ;7  E0d7iDF<2ם6#z;ro?J*DFޥByLE!nsO#'H`ԶUC&3n@û*2IJ謓d-8=2Dof+ HJ[ [M{*ȒOꝃ$8d!˦0p4F2T.0B,)Op@g|] &=954Ioy^ tHlG ,8H!Cfs0i8?E@^-ץI9lS6Y3fvZuHVib5;lRv# !+Rla"E(8|UDU<:OAC(k 8EGOah>J!eê:K(XfM YSE{ Y9M{CZmg> b3ZEFbp$-5*NPuNOy k)trê\˖@O/t Ob ɫU mW ~8FHc!",#[dOk g$ęM[hm H+VME:"P4QDN!y]FRwd<|O5PBL06yQ(/Zgk&\sX!΀T^SuЩ'h "/Mm36+>E/{f>35D]XͷܲܥGww3sncBGe~rsh;vqomY`OvP>dw$x4E.NN  j.ޅ JtPgGGW':dE;tibjeb^պ)I[ \z~.`+jPon*5=/,ap( `(`qJ{y', ϣÈwZۂG#,sxmJc(>SYpCO{=l$)eR>tYa*V>;CbA@=Mt)MBYg5%$&ei2sBحF[rI3WJR<ٌ"W3S3J,OO H<.f1'ӳmi?\_7G}|QNa+$AZωn"yo⩥dt" 73SQ%W{?(*H6Kdž0mRlo+`si1jFyy)Ot.K SP 8|yu{>uyymPr0b;^/5<[uwi*,'SQ`U9џYy-Lxvv=ֈ#I0}Y$Z`?nxJ"BՈqFb!NkÆ&_fBxs<;}ཡ-)}ț}lgˡ)BwR LjCU_:RȺsH3;FdC`S8isC: KX*iC1>IÀ?5ÍIEv8#rs.4=Nn+Y(;&վEQw!Tdt#Ү#صΉ=$/n~%MH lE%,4e\*<7F8CvRW4၂Ef!_S mBWx,/GLztn~< 2>–YqY +vhԂb"RPߓN&#O]w!h{x#"`ԟjXa3)nʏ4 M(,7Nճ-xEXH+ zcv!$'G#ђY3#gtTY[RoJ(~(nԱ>Ͱ[U'tgIai7̍^,J,;#"qst&)Msg T.26UUK%p|WWmIR DJFbEګ|( F4>d4sCAitm16>P5zw$)(-+[ye|-;&23R!A%IpА j9fcTq- 7j05漣h"|nm\=)y ?&Դx$霰9VCZK."rm 8;`~ԈBqN枴#1 ^t{X1XB[݋ɷV$hp)V_={Bbt^@Hwr11}>wD7ln3^x#Av2εopz? +}|pNp[? +XNikKjawMPP3 LSX%rJjvE:=PB@ U9vwy^G1I/W$ݤU|0q |6(ep\2 gMF0K7HF.|?HM7|%2TLUcOM>"+] J74o烽񖋓a N~\H=5N'^!p0 :Q;YO寋ᇘ??=8:~>}z~z6?}~tpP)ث5Mhx? +ޓ34+6o:P̛(%if߷JO[YoN&:6tD/!q ^U>"Ndɧ5ŕQ@IO{"¼ղ7=_l.xېxt@Wm}1VK/z ~֮{cW_&ma9eWrw: =+q3ẻd5)]vO$}PӞ0ܢn8 >eB~']@|oВǎd?$ lߞ;Agxжk#slҤyAMT7ZI6B0N"*Q8~e/+*b>¬;>)lv[rf >98PFq.eWba*6A56e-2?i,ӟY 4>l6`lb[dB~ƂZ_=ܪ)_ç1bJC4 }ʽd[2o|D*':2`h4ost&Qw}ա4M+/.Vax'G$LRڽxMx 2wm +ӱ8~o! j#+[Z&[R{~Hwά^Fv_ᝡcdf?o9tkŷw.]"ZUJ#/ۓ^<_s$Wna;y(CanR+8 '>ZxFkzMS}[8R=SՂ5{t #yq吾J{~=mPyREkrKU4ʚ面#/[;ۦ7K)pTS`zy;$Fۅc{HPK!H'"#datapungibea-0.9.5.dist-info/RECORDɖ6}Yd0l 1>TWltt%W)箬E#1St/ߑJq=edYj"NoBUŽQ9zJpb& ^k+}9neT11W/wݛt',f|;Z Gù[hg z˿*lE?ovTm edf)@hߔ߳{ O#xgFڷbw'4v{wl 9aD&t-8]uC{ ߛg?g/MAokz6RyiI-ۉVsA{g! R| Ӻ{ [18]m#X:Jp )s0sL8 ڬrcn#dpYmcV3['_FuZ)Ӽ[|bV4wa1k(~Py=Nhݝ.?tEMOācۜtlQ,BWUry<g"{<܉w;nTcr{pb [PѰлN aÆs[>FLazVkv ~GA|?gWS,ϻ`[/PKO8!yy!datapungibea/_NIPAIndentations.pyPKbO ;Rdatapungibea/__init__.pyPKO8Tdatapungibea/api.pyPKO?ͻ++/1datapungibea/drivers.pyPKOo((]datapungibea/generalSettings.pyPKO< datapungibea/utils.pyPKOݖy}C}Cdatapungibea/vintage.pyPKO$&datapungibea/config/CFGindentations.pyPKO(m`99%¼datapungibea/config/CFGnipaSummary.pyPKOdatapungibea/config/__init__.pyPKO[$$"datapungibea/config/pkgConfig.yamlPKO dd%{datapungibea/config/userSettings.jsonPKBNw,,"datapungibea/tests/__init__.pyPKOkddatapungibea/tests/conftest.pyPKBNxy/UUdatapungibea/tests/main.pyPKO^[3##"Qdatapungibea/tests/test_drivers.pyPKOE#E#$"datapungibea/tests/test_driversCI.pyPKOW//$Fdatapungibea-0.9.5.dist-info/LICENSEPK!HMuSa"Jdatapungibea-0.9.5.dist-info/WHEELPK!He7,>%Kdatapungibea-0.9.5.dist-info/METADATAPK!H'"#bdatapungibea-0.9.5.dist-info/RECORDPKOf