From 59c3ccc50d3504bfeb1a3f7e31ba806e2b5c3a07 Mon Sep 17 00:00:00 2001 From: Andrej Shadura Date: Mon, 5 Nov 2018 14:44:38 +0100 Subject: New upstream version 0.19 --- .coveragerc | 5 - .gitignore | 9 - .travis.yml | 13 - AUTHORS | 3 + PKG-INFO | 200 ++++ README.rst | 117 +- mcc_codes.csv | 1 - ofxparse.egg-info/PKG-INFO | 200 ++++ ofxparse.egg-info/SOURCES.txt | 45 + ofxparse.egg-info/dependency_links.txt | 1 + ofxparse.egg-info/entry_points.txt | 2 + ofxparse.egg-info/requires.txt | 3 + ofxparse.egg-info/top_level.txt | 1 + ofxparse.egg-info/zip-safe | 1 + ofxparse/__init__.py | 14 +- ofxparse/mcc.py | 1952 ++++++++++++++++---------------- ofxparse/ofxparse.py | 349 +++--- ofxparse/ofxprinter.py | 28 +- ofxparse/ofxutil.py | 21 +- setup.cfg | 2 + setup.py | 28 +- tests/fixtures/anzcc.ofx | 49 + tests/fixtures/fidelity-savings.ofx | 111 ++ tests/fixtures/ofx-v102-empty-tags.ofx | 23 + tests/fixtures/td_ameritrade.ofx | 205 ++++ tests/fixtures/tiaacref.ofx | 11 + tests/support.py | 14 +- tests/test_parse.py | 774 ++++++++----- tests/test_write.py | 27 +- todo.txt | 10 - utils/ofx2xlsx.py | 90 -- 31 files changed, 2679 insertions(+), 1630 deletions(-) delete mode 100644 .coveragerc delete mode 100644 .gitignore delete mode 100644 .travis.yml create mode 100644 PKG-INFO delete mode 100644 mcc_codes.csv create mode 100644 ofxparse.egg-info/PKG-INFO create mode 100644 ofxparse.egg-info/SOURCES.txt create mode 100644 ofxparse.egg-info/dependency_links.txt create mode 100644 ofxparse.egg-info/entry_points.txt create mode 100644 ofxparse.egg-info/requires.txt create mode 100644 ofxparse.egg-info/top_level.txt create mode 100644 ofxparse.egg-info/zip-safe create mode 100644 tests/fixtures/anzcc.ofx create mode 100644 tests/fixtures/fidelity-savings.ofx create mode 100644 tests/fixtures/ofx-v102-empty-tags.ofx create mode 100644 tests/fixtures/td_ameritrade.ofx create mode 100644 tests/fixtures/tiaacref.ofx delete mode 100644 todo.txt delete mode 100644 utils/ofx2xlsx.py diff --git a/.coveragerc b/.coveragerc deleted file mode 100644 index 60bb772..0000000 --- a/.coveragerc +++ /dev/null @@ -1,5 +0,0 @@ -[run] -branch = True -source = - ofxparse - diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 0c54cf7..0000000 --- a/.gitignore +++ /dev/null @@ -1,9 +0,0 @@ -*.pyc -*~ -.DS_Store -ofxparse.egg-info/ -build/ -dist/ -nbproject/ -.coverage -htmlcov diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index fe93207..0000000 --- a/.travis.yml +++ /dev/null @@ -1,13 +0,0 @@ -language: python - -python: - - "2.7" - - "3.4" - - "3.5" - -install: - - if [[ $TRAVIS_PYTHON_VERSION == 2* ]]; then pip install BeautifulSoup six nose coverage; fi - - if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then pip install BeautifulSoup4 six nose coverage; fi - -script: - - nosetests diff --git a/AUTHORS b/AUTHORS index ee768ff..15caaa2 100644 --- a/AUTHORS +++ b/AUTHORS @@ -20,6 +20,9 @@ Brett Trotter Joe Cabrera Michael Nelson Nathan Grigg +Francois Chapuis Wes Turner Ehud Ben-Reuven Joseph Walton +Rehan Khwaja +tuzzeg diff --git a/PKG-INFO b/PKG-INFO new file mode 100644 index 0000000..a80c066 --- /dev/null +++ b/PKG-INFO @@ -0,0 +1,200 @@ +Metadata-Version: 1.1 +Name: ofxparse +Version: 0.19 +Summary: Tools for working with the OFX (Open Financial Exchange) file format +Home-page: http://sites.google.com/site/ofxparse +Author: Jerry Seutter +Author-email: jseutter.ofxparse@gmail.com +License: MIT License +Description-Content-Type: UNKNOWN +Description: ofxparse + ======== + + ofxparse is a parser for Open Financial Exchange (.ofx) format files. OFX + files are available from almost any online banking site, so they work well + if you want to pull together your finances from multiple sources. Online + trading accounts also provide account statements in OFX files. + + There are three different types of OFX files, called BankAccount, + CreditAccount and InvestmentAccount files. This library has been tested with + real-world samples of all three types. If you find a file that does not work + with this library, please consider contributing the file so ofxparse can be + improved. See the Help! section below for directions on how to do this. + + Example Usage + ============= + + Here's a sample program + + .. code:: python + + from ofxparse import OfxParser + with codecs.open('file.ofx') as fileobj: + ofx = OfxParser.parse(fileobj) + + # The OFX object + + ofx.account # An Account object + + # AccountType + # (Unknown, Bank, CreditCard, Investment) + + # Account + + account = ofx.occount + account.account_id # The account number + account.number # The account number (deprecated -- returns account_id) + account.routing_number # The bank routing number + account.branch_id # Transit ID / branch number + account.type # An AccountType object + account.statement # A Statement object + account.institution # An Institution object + + # InvestmentAccount(Account) + + account.brokerid # Investment broker ID + account.statement # An InvestmentStatement object + + # Institution + + institution = account.institution + institution.organization + institution.fid + + # Statement + + statement = account.statement + statement.start_date # The start date of the transactions + statement.end_date # The end date of the transactions + statement.balance # The money in the account as of the statement date + statement.available_balance # The money available from the account as of the statement date + statement.transactions # A list of Transaction objects + + # InvestmentStatement + + statement = account.statement + statement.positions # A list of Position objects + statement.transactions # A list of InvestmentTransaction objects + + # Transaction + + for transaction in statement.transactions: + transaction.payee + transaction.type + transaction.date + transaction.amount + transaction.id + transaction.memo + transaction.sic + transaction.mcc + transaction.checknum + + # InvestmentTransaction + + for transaction in statement.transactions: + transaction.type + transaction.tradeDate + transaction.settleDate + transaction.memo + transaction.security # A Security object + transaction.income_type + transaction.units + transaction.unit_price + transaction.comission + transaction.fees + transaction.total + transaction.tferaction + + # Positions + + for position in statement.positions: + position.security # A Security object + position.units + position.unit_price + position.market_value + + # Security + + security = transaction.security + # or + security = position.security + security.uniqueid + security.name + security.ticker + security.memo + + + Help! + ===== + + Sample ``.ofx`` and ``.qfx`` files are very useful. If you want to help us out, + please edit all identifying information from the file and then email it to + jseutter dot ofxparse at gmail dot com. + + Development + =========== + + Prerequisites:: + # Ubuntu + sudo apt-get install python-beautifulsoup python-nose python-coverage-test-runner + # Python 3 (pip) + pip install BeautifulSoup4 six lxml nose coverage + # Python 2 (pip) + pip install BeautifulSoup six nose coverage + + The `six` package is required for python 2.X compatibility + + Tests: + Simply running the ``nosetests`` command should run the tests. + + .. code:: bash + + nosetests + + If you don't have nose installed, the following might also work: + + .. code:: bash + + python -m unittest tests.test_parse + + Test Coverage Report: + + .. code:: bash + + coverage run -m unittest tests.test_parse + + # text report + coverage report + + # html report + coverage html + firefox htmlcov/index.html + + + Homepage + ======== + | Homepage: https://sites.google.com/site/ofxparse + | Source: https://github.com/jseutter/ofxparse + + License + ======= + + ofxparse is released under an MIT license. See the LICENSE file for the actual + license text. The basic idea is that if you can use Python to do what you are + doing, you can also use this library. + + +Keywords: ofx,Open Financial Exchange,file formats +Platform: UNKNOWN +Classifier: Development Status :: 4 - Beta +Classifier: Intended Audience :: Developers +Classifier: Natural Language :: English +Classifier: Operating System :: OS Independent +Classifier: Programming Language :: Python :: 2.7 +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.4 +Classifier: Programming Language :: Python :: 3.5 +Classifier: Programming Language :: Python :: 3.6 +Classifier: Topic :: Software Development :: Libraries :: Python Modules +Classifier: Topic :: Utilities +Classifier: License :: OSI Approved :: MIT License diff --git a/README.rst b/README.rst index 0015743..de44e9a 100644 --- a/README.rst +++ b/README.rst @@ -22,23 +22,105 @@ Here's a sample program from ofxparse import OfxParser with codecs.open('file.ofx') as fileobj: ofx = OfxParser.parse(fileobj) - ofx.accounts # An account with information - ofx.account.number # The account number - ofx.account.routing_number # The transit id (sometimes called branch number) - ofx.account.statement # Account information for a period of time - ofx.account.statement.start_date # The start date of the transactions - ofx.account.statement.end_date # The end date of the transactions - ofx.account.statement.transactions # A list of account activities - ofx.account.statement.balance # The money in the account as of the statement date - ofx.account.statement.available_balance # The money available from the account as of the statement date + + # The OFX object + + ofx.account # An Account object + + # AccountType + # (Unknown, Bank, CreditCard, Investment) + + # Account + + account = ofx.occount + account.account_id # The account number + account.number # The account number (deprecated -- returns account_id) + account.routing_number # The bank routing number + account.branch_id # Transit ID / branch number + account.type # An AccountType object + account.statement # A Statement object + account.institution # An Institution object + + # InvestmentAccount(Account) + + account.brokerid # Investment broker ID + account.statement # An InvestmentStatement object + + # Institution + + institution = account.institution + institution.organization + institution.fid + + # Statement + + statement = account.statement + statement.start_date # The start date of the transactions + statement.end_date # The end date of the transactions + statement.balance # The money in the account as of the statement date + statement.available_balance # The money available from the account as of the statement date + statement.transactions # A list of Transaction objects + + # InvestmentStatement + + statement = account.statement + statement.positions # A list of Position objects + statement.transactions # A list of InvestmentTransaction objects + + # Transaction + + for transaction in statement.transactions: + transaction.payee + transaction.type + transaction.date + transaction.amount + transaction.id + transaction.memo + transaction.sic + transaction.mcc + transaction.checknum + + # InvestmentTransaction + + for transaction in statement.transactions: + transaction.type + transaction.tradeDate + transaction.settleDate + transaction.memo + transaction.security # A Security object + transaction.income_type + transaction.units + transaction.unit_price + transaction.comission + transaction.fees + transaction.total + transaction.tferaction + + # Positions + + for position in statement.positions: + position.security # A Security object + position.units + position.unit_price + position.market_value + + # Security + + security = transaction.security + # or + security = position.security + security.uniqueid + security.name + security.ticker + security.memo + Help! ===== -Sample ``.ofx`` and ``.qfx`` files are very useful. -If you want to help us out, please edit -all identifying information from the file and then email it to jseutter dot -ofxparse at gmail dot com. +Sample ``.ofx`` and ``.qfx`` files are very useful. If you want to help us out, +please edit all identifying information from the file and then email it to +jseutter dot ofxparse at gmail dot com. Development =========== @@ -46,13 +128,13 @@ Development Prerequisites:: # Ubuntu sudo apt-get install python-beautifulsoup python-nose python-coverage-test-runner - - # pip for Python 3: + # Python 3 (pip) pip install BeautifulSoup4 six lxml nose coverage - - # pip for Python 2: + # Python 2 (pip) pip install BeautifulSoup six nose coverage +The `six` package is required for python 2.X compatibility + Tests: Simply running the ``nosetests`` command should run the tests. @@ -92,4 +174,3 @@ ofxparse is released under an MIT license. See the LICENSE file for the actual license text. The basic idea is that if you can use Python to do what you are doing, you can also use this library. - diff --git a/mcc_codes.csv b/mcc_codes.csv deleted file mode 100644 index a6f0892..0000000 --- a/mcc_codes.csv +++ /dev/null @@ -1 +0,0 @@ -Derived MCC,Combined Description,USDA Description,IRS Description,Reportable under 6041/6041A and Authority for Exception, 742,Veterinary Services,Veterinary Services,Veterinary Services,Yes,"'742':{'combined description':'Veterinary Services', 'USDA description':'Veterinary Services','IRS Description':'Veterinary Services', 'reportable':'Yes'}," 763,Agricultural Co-operatives,Agricultural Co-operatives,Agricultural Cooperative,Yes,"'763':{'combined description':'Agricultural Co-operatives', 'USDA description':'Agricultural Co-operatives','IRS Description':'Agricultural Cooperative', 'reportable':'Yes'}," 780,"Horticultural Services, Landscaping Services",Horticultural Services,Landscaping Services,Yes,"'780':{'combined description':'Horticultural Services, Landscaping Services', 'USDA description':'Horticultural Services','IRS Description':'Landscaping Services', 'reportable':'Yes'}," 1520,General Contractors-Residential and Commercial,General Contractors-Residential and Commercial,General Contractors,Yes,"'1520':{'combined description':'General Contractors-Residential and Commercial', 'USDA description':'General Contractors-Residential and Commercial','IRS Description':'General Contractors', 'reportable':'Yes'}," 1711,"Air Conditioning Contractors & Sales and Installation, Heating Contractors & Sales, Service, Installation",Air Conditioning Contractors & Sales and Installation,"Heating, Plumbing, A/C",Yes,"'1711':{'combined description':'Air Conditioning Contractors & Sales and Installation, Heating Contractors & Sales, Service, Installation', 'USDA description':'Air Conditioning Contractors & Sales and Installation','IRS Description':'Heating, Plumbing, A/C', 'reportable':'Yes'}," 1731,Electrical Contractors,Electrical Contractors,Electrical Contractors,Yes,"'1731':{'combined description':'Electrical Contractors', 'USDA description':'Electrical Contractors','IRS Description':'Electrical Contractors', 'reportable':'Yes'}," 1740,"Insulation & Contractors, Masonry, Stonework Contractors, Plastering Contractors, Stonework and Masonry Contractors, Tile Settings Contractors",Insulation & Contractors,"Masonry, Stonework, and Plaster",Yes,"'1740':{'combined description':'Insulation & Contractors, Masonry, Stonework Contractors, Plastering Contractors, Stonework and Masonry Contractors, Tile Settings Contractors', 'USDA description':'Insulation & Contractors','IRS Description':'Masonry, Stonework, and Plaster', 'reportable':'Yes'}," 1750,Carpentry Contractors,Carpentry Contractors,Carpentry Contractors,Yes,"'1750':{'combined description':'Carpentry Contractors', 'USDA description':'Carpentry Contractors','IRS Description':'Carpentry Contractors', 'reportable':'Yes'}," 1761,"Roofing & Contractors, Sheet Metal Work & Contractors, Siding & Contractors",Roofing - Contractors,"Roofing/Siding, Sheet Metal",Yes,"'1761':{'combined description':'Roofing & Contractors, Sheet Metal Work & Contractors, Siding & Contractors', 'USDA description':'Roofing - Contractors','IRS Description':'Roofing/Siding, Sheet Metal', 'reportable':'Yes'}," 1771,Contractors & Concrete Work,Contractors & Concrete Work,Concrete Work Contractors,Yes,"'1771':{'combined description':'Contractors & Concrete Work', 'USDA description':'Contractors & Concrete Work','IRS Description':'Concrete Work Contractors', 'reportable':'Yes'}," 1799,"Contractors & Special Trade, Not Elsewhere Classified","Contractors & Special Trade, Not Elsewhere Classified",Special Trade Contractors,Yes,"'1799':{'combined description':'Contractors & Special Trade, Not Elsewhere Classified', 'USDA description':'Contractors & Special Trade, Not Elsewhere Classified','IRS Description':'Special Trade Contractors', 'reportable':'Yes'}," 2741,Miscellaneous Publishing and Printing,Miscellaneous Publishing and Printing,Miscellaneous Publishing and Printing,Yes,"'2741':{'combined description':'Miscellaneous Publishing and Printing', 'USDA description':'Miscellaneous Publishing and Printing','IRS Description':'Miscellaneous Publishing and Printing', 'reportable':'Yes'}," 2791,"Typesetting, Plate Making, & Related Services","Typesetting, Plate Making, & Related Services","Typesetting, Plate Making, and Related Services",Yes,"'2791':{'combined description':'Typesetting, Plate Making, & Related Services', 'USDA description':'Typesetting, Plate Making, & Related Services','IRS Description':'Typesetting, Plate Making, and Related Services', 'reportable':'Yes'}," 2842,"Specialty Cleaning, Polishing, and Sanitation Preparations","Specialty Cleaning, Polishing, and Sanitation Preparations",Specialty Cleaning,Yes,"'2842':{'combined description':'Specialty Cleaning, Polishing, and Sanitation Preparations', 'USDA description':'Specialty Cleaning, Polishing, and Sanitation Preparations','IRS Description':'Specialty Cleaning', 'reportable':'Yes'}," 3000,UNITED AIRLINES,UNITED AIRLINES,Airlines,Yes,"'3000':{'combined description':'UNITED AIRLINES', 'USDA description':'UNITED AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3001,AMERICAN AIRLINES,AMERICAN AIRLINES,Airlines,Yes,"'3001':{'combined description':'AMERICAN AIRLINES', 'USDA description':'AMERICAN AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3002,PAN AMERICAN - PAN AM,PAN AMERICAN,Airlines,Yes,"'3002':{'combined description':'PAN AMERICAN - PAN AM', 'USDA description':'PAN AMERICAN','IRS Description':'Airlines', 'reportable':'Yes'}," 3003,EURO-FLY,,Airlines,Yes,"'3003':{'combined description':'EURO-FLY', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3004,TRANS WORLD AIRLINES,TRANS WORLD AIRLINES,Airlines,Yes,"'3004':{'combined description':'TRANS WORLD AIRLINES', 'USDA description':'TRANS WORLD AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3005,BRITSH AIRWAYS - BRITISH A,BRITISH AIRWAYS,Airlines,Yes,"'3005':{'combined description':'BRITSH AIRWAYS - BRITISH A', 'USDA description':'BRITISH AIRWAYS','IRS Description':'Airlines', 'reportable':'Yes'}," 3006,JAPAN AIR LINES,JAPAN AIRLINES,Airlines,Yes,"'3006':{'combined description':'JAPAN AIR LINES', 'USDA description':'JAPAN AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3007,AIR FRANCE,AIR FRANCE,Airlines,Yes,"'3007':{'combined description':'AIR FRANCE', 'USDA description':'AIR FRANCE','IRS Description':'Airlines', 'reportable':'Yes'}," 3008,LUFTHANSA,LUFTHANSA,Airlines,Yes,"'3008':{'combined description':'LUFTHANSA', 'USDA description':'LUFTHANSA','IRS Description':'Airlines', 'reportable':'Yes'}," 3009,AIR CANADA - AIR CAN,AIR CANADA,Airlines,Yes,"'3009':{'combined description':'AIR CANADA - AIR CAN', 'USDA description':'AIR CANADA','IRS Description':'Airlines', 'reportable':'Yes'}," 3010,KLM,KLM (ROYAL DUTCH AIRLINES),Airlines,Yes,"'3010':{'combined description':'KLM', 'USDA description':'KLM (ROYAL DUTCH AIRLINES)','IRS Description':'Airlines', 'reportable':'Yes'}," 3011,AEROFLOT,AEORFLOT,Airlines,Yes,"'3011':{'combined description':'AEROFLOT', 'USDA description':'AEORFLOT','IRS Description':'Airlines', 'reportable':'Yes'}," 3012,QANTAS AIR,QUANTAS,Airlines,Yes,"'3012':{'combined description':'QANTAS AIR', 'USDA description':'QUANTAS','IRS Description':'Airlines', 'reportable':'Yes'}," 3013,ALITALIA,ALITALIA,Airlines,Yes,"'3013':{'combined description':'ALITALIA', 'USDA description':'ALITALIA','IRS Description':'Airlines', 'reportable':'Yes'}," 3014,SAUDI ARABIAN AIRLINES,SAUDIA ARABIAN AIRLINES,Airlines,Yes,"'3014':{'combined description':'SAUDI ARABIAN AIRLINES', 'USDA description':'SAUDIA ARABIAN AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3015,SWISS INTERNATIONAL AIR LINES-SWISS AIR,SWISSAIR,Airlines,Yes,"'3015':{'combined description':'SWISS INTERNATIONAL AIR LINES-SWISS AIR', 'USDA description':'SWISSAIR','IRS Description':'Airlines', 'reportable':'Yes'}," 3016,SCANDINAVIAN AIRLINE SYSTEM (SAS),SAS,Airlines,Yes,"'3016':{'combined description':'SCANDINAVIAN AIRLINE SYSTEM (SAS)', 'USDA description':'SAS','IRS Description':'Airlines', 'reportable':'Yes'}," 3017,SOUTH AFRICAN AIRWAYS,SOUTH AFRICAN AIRWAYS,Airlines,Yes,"'3017':{'combined description':'SOUTH AFRICAN AIRWAYS', 'USDA description':'SOUTH AFRICAN AIRWAYS','IRS Description':'Airlines', 'reportable':'Yes'}," 3018,VARIG AIR (BRAZIL),VARIG (BRAZIL),Airlines,Yes,"'3018':{'combined description':'VARIG AIR (BRAZIL)', 'USDA description':'VARIG (BRAZIL)','IRS Description':'Airlines', 'reportable':'Yes'}," 3019,GERMANWINGS--GRMNWGAIR,,Airlines,Yes,"'3019':{'combined description':'GERMANWINGS--GRMNWGAIR', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3020,AIR INDIA,AIR-INDIA,Airlines,Yes,"'3020':{'combined description':'AIR INDIA', 'USDA description':'AIR-INDIA','IRS Description':'Airlines', 'reportable':'Yes'}," 3021,AIR ALGERIE,AIR ALGERIE,Airlines,Yes,"'3021':{'combined description':'AIR ALGERIE', 'USDA description':'AIR ALGERIE','IRS Description':'Airlines', 'reportable':'Yes'}," 3022,PHILIPPINE AIRLINES,PHILIPPINE AIRLINES,Airlines,Yes,"'3022':{'combined description':'PHILIPPINE AIRLINES', 'USDA description':'PHILIPPINE AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3023,MEXICANA,MEXICANA,Airlines,Yes,"'3023':{'combined description':'MEXICANA', 'USDA description':'MEXICANA','IRS Description':'Airlines', 'reportable':'Yes'}," 3024,PAKISTAN INTERNATIONAL,PAKISTAN INTERNATIONAL,Airlines,Yes,"'3024':{'combined description':'PAKISTAN INTERNATIONAL', 'USDA description':'PAKISTAN INTERNATIONAL','IRS Description':'Airlines', 'reportable':'Yes'}," 3025,AIR NEW ZEALAND LTD. INTERNATIONAL,AIR NEW ZEALAND,Airlines,Yes,"'3025':{'combined description':'AIR NEW ZEALAND LTD. INTERNATIONAL', 'USDA description':'AIR NEW ZEALAND','IRS Description':'Airlines', 'reportable':'Yes'}," 3026,EMIRATES AIRLINES,,Airlines,Yes,"'3026':{'combined description':'EMIRATES AIRLINES', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3027,UNION DE TRANSPORTS AERIENS (UTA/INTERAI,UTA/INTERAIR,Airlines,Yes,"'3027':{'combined description':'UNION DE TRANSPORTS AERIENS (UTA/INTERAI', 'USDA description':'UTA/INTERAIR','IRS Description':'Airlines', 'reportable':'Yes'}," 3028,AIR MALTA,AIR MALTA,Airlines,Yes,"'3028':{'combined description':'AIR MALTA', 'USDA description':'AIR MALTA','IRS Description':'Airlines', 'reportable':'Yes'}," 3029,SN BRUSSELS AIRLINES - SNBRU AIR,SABENA,Airlines,Yes,"'3029':{'combined description':'SN BRUSSELS AIRLINES - SNBRU AIR', 'USDA description':'SABENA','IRS Description':'Airlines', 'reportable':'Yes'}," 3030,AEROLINEAS ARGENTINAS,AEROLINEAS ARGENTINAS,Airlines,Yes,"'3030':{'combined description':'AEROLINEAS ARGENTINAS', 'USDA description':'AEROLINEAS ARGENTINAS','IRS Description':'Airlines', 'reportable':'Yes'}," 3031,OLYMPIC AIRWAYS,OLYMPIC AIRWAYS,Airlines,Yes,"'3031':{'combined description':'OLYMPIC AIRWAYS', 'USDA description':'OLYMPIC AIRWAYS','IRS Description':'Airlines', 'reportable':'Yes'}," 3032,EL AL,EL AL,Airlines,Yes,"'3032':{'combined description':'EL AL', 'USDA description':'EL AL','IRS Description':'Airlines', 'reportable':'Yes'}," 3033,ANSETT AIRLINES,ANSETT AIRLINES,Airlines,Yes,"'3033':{'combined description':'ANSETT AIRLINES', 'USDA description':'ANSETT AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3034,TRANS AUSTRALIAN AIRWAYS (TAA),AUSTRAINLIAN AIRLINES,Airlines,Yes,"'3034':{'combined description':'TRANS AUSTRALIAN AIRWAYS (TAA)', 'USDA description':'AUSTRAINLIAN AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3035,TAP AIRLINE (PORTUGAL),TAP (PORTUGAL),Airlines,Yes,"'3035':{'combined description':'TAP AIRLINE (PORTUGAL)', 'USDA description':'TAP (PORTUGAL)','IRS Description':'Airlines', 'reportable':'Yes'}," 3036,VASP AIR (BRAZIL),VASP (BRAZIL),Airlines,Yes,"'3036':{'combined description':'VASP AIR (BRAZIL)', 'USDA description':'VASP (BRAZIL)','IRS Description':'Airlines', 'reportable':'Yes'}," 3037,EGYPTAIR,EGYPTAIR,Airlines,Yes,"'3037':{'combined description':'EGYPTAIR', 'USDA description':'EGYPTAIR','IRS Description':'Airlines', 'reportable':'Yes'}," 3038,KUWAIT AIRWAYS,KUWAIT AIRLINES,Airlines,Yes,"'3038':{'combined description':'KUWAIT AIRWAYS', 'USDA description':'KUWAIT AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3039,AVIANCA,AVIANCA,Airlines,Yes,"'3039':{'combined description':'AVIANCA', 'USDA description':'AVIANCA','IRS Description':'Airlines', 'reportable':'Yes'}," 3040,GULF AIR (BAHRAIN),GULF AIR (BAHRAIN),Airlines,Yes,"'3040':{'combined description':'GULF AIR (BAHRAIN)', 'USDA description':'GULF AIR (BAHRAIN)','IRS Description':'Airlines', 'reportable':'Yes'}," 3041,BALKAN-BULGARIAN AIRLINES,BALKAN-BULGARIAN AIRLINES,Airlines,Yes,"'3041':{'combined description':'BALKAN-BULGARIAN AIRLINES', 'USDA description':'BALKAN-BULGARIAN AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3042,FINNAIR,FINNAIR,Airlines,Yes,"'3042':{'combined description':'FINNAIR', 'USDA description':'FINNAIR','IRS Description':'Airlines', 'reportable':'Yes'}," 3043,AER LINGUS,AER LINGUS,Airlines,Yes,"'3043':{'combined description':'AER LINGUS', 'USDA description':'AER LINGUS','IRS Description':'Airlines', 'reportable':'Yes'}," 3044,AIR LANKA,AIR LANKA,Airlines,Yes,"'3044':{'combined description':'AIR LANKA', 'USDA description':'AIR LANKA','IRS Description':'Airlines', 'reportable':'Yes'}," 3045,NIGERIA AIRWAYS,NIGERIA AIRWAYS,Airlines,Yes,"'3045':{'combined description':'NIGERIA AIRWAYS', 'USDA description':'NIGERIA AIRWAYS','IRS Description':'Airlines', 'reportable':'Yes'}," 3046,CRUZEIRO DO SUL AIR (BRAZIL),CRUZEIRO DO SUL (BRAZIJ),Airlines,Yes,"'3046':{'combined description':'CRUZEIRO DO SUL AIR (BRAZIL)', 'USDA description':'CRUZEIRO DO SUL (BRAZIJ)','IRS Description':'Airlines', 'reportable':'Yes'}," 3047,THY AIRLINE (TURKEY),THY (TURKEY),Airlines,Yes,"'3047':{'combined description':'THY AIRLINE (TURKEY)', 'USDA description':'THY (TURKEY)','IRS Description':'Airlines', 'reportable':'Yes'}," 3048,AIRMARO,ROYAL AIR MAROC,Airlines,Yes,"'3048':{'combined description':'AIRMARO', 'USDA description':'ROYAL AIR MAROC','IRS Description':'Airlines', 'reportable':'Yes'}," 3049,TUNIS AIR,TUNIS AIR,Airlines,Yes,"'3049':{'combined description':'TUNIS AIR', 'USDA description':'TUNIS AIR','IRS Description':'Airlines', 'reportable':'Yes'}," 3050,ICELANDAIR,ICELANDAIR,Airlines,Yes,"'3050':{'combined description':'ICELANDAIR', 'USDA description':'ICELANDAIR','IRS Description':'Airlines', 'reportable':'Yes'}," 3051,AUSTRIAN AIRLINES,AUSTRIAN AIRLINES,Airlines,Yes,"'3051':{'combined description':'AUSTRIAN AIRLINES', 'USDA description':'AUSTRIAN AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3052,LAN AIRLINES-LANAIR,LANCHILE,Airlines,Yes,"'3052':{'combined description':'LAN AIRLINES-LANAIR', 'USDA description':'LANCHILE','IRS Description':'Airlines', 'reportable':'Yes'}," 3053,AVIACO AIR (SPAIN),AVIACO (SPAIN),Airlines,Yes,"'3053':{'combined description':'AVIACO AIR (SPAIN)', 'USDA description':'AVIACO (SPAIN)','IRS Description':'Airlines', 'reportable':'Yes'}," 3054,LADECO AIR (CHILE),LADECO (CHILE),Airlines,Yes,"'3054':{'combined description':'LADECO AIR (CHILE)', 'USDA description':'LADECO (CHILE)','IRS Description':'Airlines', 'reportable':'Yes'}," 3055,LAB AIRLINE (BOLIVIA),LAB (BOLIVIA),Airlines,Yes,"'3055':{'combined description':'LAB AIRLINE (BOLIVIA)', 'USDA description':'LAB (BOLIVIA)','IRS Description':'Airlines', 'reportable':'Yes'}," 3056,QUEBECAIRE,QUEBECAIRE,Airlines,Yes,"'3056':{'combined description':'QUEBECAIRE', 'USDA description':'QUEBECAIRE','IRS Description':'Airlines', 'reportable':'Yes'}," 3057,EAST/WEST AIRLINES (AUSTRALIA),EASTWEST AIRLINES (AUSTRALIA),Airlines,Yes,"'3057':{'combined description':'EAST/WEST AIRLINES (AUSTRALIA)', 'USDA description':'EASTWEST AIRLINES (AUSTRALIA)','IRS Description':'Airlines', 'reportable':'Yes'}," 3058,DELTA,DELTA,Airlines,Yes,"'3058':{'combined description':'DELTA', 'USDA description':'DELTA','IRS Description':'Airlines', 'reportable':'Yes'}," 3059,DBA AIRLINES - DBA AIR,,Airlines,Yes,"'3059':{'combined description':'DBA AIRLINES - DBA AIR', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3060,NORTHWEST AIRLINES,NORTHWEST,Airlines,Yes,"'3060':{'combined description':'NORTHWEST AIRLINES', 'USDA description':'NORTHWEST','IRS Description':'Airlines', 'reportable':'Yes'}," 3061,CONTINENTAL,CONTINENTAL,Airlines,Yes,"'3061':{'combined description':'CONTINENTAL', 'USDA description':'CONTINENTAL','IRS Description':'Airlines', 'reportable':'Yes'}," 3062,HAPAG-LLOYD EXPRESS - HLX,WESTERN,Airlines,Yes,"'3062':{'combined description':'HAPAG-LLOYD EXPRESS - HLX', 'USDA description':'WESTERN','IRS Description':'Airlines', 'reportable':'Yes'}," 3063,US AIRWAYS,US AIR,Airlines,Yes,"'3063':{'combined description':'US AIRWAYS', 'USDA description':'US AIR','IRS Description':'Airlines', 'reportable':'Yes'}," 3064,ADRIA AIRWAYS,,Airlines,Yes,"'3064':{'combined description':'ADRIA AIRWAYS', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3065,AIRINTER,AIRINTER,Airlines,Yes,"'3065':{'combined description':'AIRINTER', 'USDA description':'AIRINTER','IRS Description':'Airlines', 'reportable':'Yes'}," 3066,SOUTHWEST AIRLINES,SOUTHWEST,Airlines,Yes,"'3066':{'combined description':'SOUTHWEST AIRLINES', 'USDA description':'SOUTHWEST','IRS Description':'Airlines', 'reportable':'Yes'}," 3067,VANGUARD AIRLINES,,Airlines,Yes,"'3067':{'combined description':'VANGUARD AIRLINES', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3068,AIR ASTANA-AIRSTANA,,Airlines,Yes,"'3068':{'combined description':'AIR ASTANA-AIRSTANA', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3069,AIR EUROPE,,Airlines,Yes,"'3069':{'combined description':'AIR EUROPE', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3070,PACIFIC SOUTHWEST AIRLINE,,Airlines,Yes,"'3070':{'combined description':'PACIFIC SOUTHWEST AIRLINE', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3071,AIR BRITISH COLUMBIA,AIR BRITISH COLUBIA,Airlines,Yes,"'3071':{'combined description':'AIR BRITISH COLUMBIA', 'USDA description':'AIR BRITISH COLUBIA','IRS Description':'Airlines', 'reportable':'Yes'}," 3072,airlines,,Airlines,Yes,"'3072':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3073,AIR CAL,,Airlines,Yes,"'3073':{'combined description':'AIR CAL', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3074,airlines,,Airlines,Yes,"'3074':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3075,SINGAPORE AIRLINES,SINGAPORE AIRLINES,Airlines,Yes,"'3075':{'combined description':'SINGAPORE AIRLINES', 'USDA description':'SINGAPORE AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3076,AEROMEXICO,AEROMEXICO,Airlines,Yes,"'3076':{'combined description':'AEROMEXICO', 'USDA description':'AEROMEXICO','IRS Description':'Airlines', 'reportable':'Yes'}," 3077,THAI AIRWAYS,THAI AIRWAYS,Airlines,Yes,"'3077':{'combined description':'THAI AIRWAYS', 'USDA description':'THAI AIRWAYS','IRS Description':'Airlines', 'reportable':'Yes'}," 3078,CHINA AIRLINES,CHINA AIRLINES,Airlines,Yes,"'3078':{'combined description':'CHINA AIRLINES', 'USDA description':'CHINA AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3079,JETSTAR,,Airlines,Yes,"'3079':{'combined description':'JETSTAR', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3080,airlines,,Airlines,Yes,"'3080':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3081,NORDAIR,NORDAIR,Airlines,Yes,"'3081':{'combined description':'NORDAIR', 'USDA description':'NORDAIR','IRS Description':'Airlines', 'reportable':'Yes'}," 3082,KOREAN AIRLINES,KOREAN AIRLINES,Airlines,Yes,"'3082':{'combined description':'KOREAN AIRLINES', 'USDA description':'KOREAN AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3083,AIR AFRIQUE - AIR AFRIQ,AIR AFRIGUE,Airlines,Yes,"'3083':{'combined description':'AIR AFRIQUE - AIR AFRIQ', 'USDA description':'AIR AFRIGUE','IRS Description':'Airlines', 'reportable':'Yes'}," 3084,EVA AIRLINES,EVA AIRLINES,Airlines,Yes,"'3084':{'combined description':'EVA AIRLINES', 'USDA description':'EVA AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3085,MIDWEST EXPRESS AIRLINES - MIDWEST,"MIDWEST EXPRESS AIRLINES, INC.",Airlines,Yes,"'3085':{'combined description':'MIDWEST EXPRESS AIRLINES - MIDWEST', 'USDA description':'MIDWEST EXPRESS AIRLINES, INC.','IRS Description':'Airlines', 'reportable':'Yes'}," 3086,CARNIVAL AIRLINES,,Airlines,Yes,"'3086':{'combined description':'CARNIVAL AIRLINES', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3087,METRO AIRLINES,METRO AIRLINES,Airlines,Yes,"'3087':{'combined description':'METRO AIRLINES', 'USDA description':'METRO AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3088,CROATIA AIR - CROATIA,CROATIA AIRLINES,Airlines,Yes,"'3088':{'combined description':'CROATIA AIR - CROATIA', 'USDA description':'CROATIA AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3089,TRANSAERO,TRANSAERO,Airlines,Yes,"'3089':{'combined description':'TRANSAERO', 'USDA description':'TRANSAERO','IRS Description':'Airlines', 'reportable':'Yes'}," 3090,UNI AIRWAYS,,Airlines,Yes,"'3090':{'combined description':'UNI AIRWAYS', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3091,airlines,,Airlines,Yes,"'3091':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3092,MIDWAY AIRLINES,,Airlines,Yes,"'3092':{'combined description':'MIDWAY AIRLINES', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3093,airlines,,Airlines,Yes,"'3093':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3094,ZAMBIA AIRWAYS,ZAMBIA AIRWAYS,Airlines,Yes,"'3094':{'combined description':'ZAMBIA AIRWAYS', 'USDA description':'ZAMBIA AIRWAYS','IRS Description':'Airlines', 'reportable':'Yes'}," 3095,WARDAIR,,Airlines,Yes,"'3095':{'combined description':'WARDAIR', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3096,AIR ZIMBABWE,AIR ZIMBABWE,Airlines,Yes,"'3096':{'combined description':'AIR ZIMBABWE', 'USDA description':'AIR ZIMBABWE','IRS Description':'Airlines', 'reportable':'Yes'}," 3097,SPANAIR,,Airlines,Yes,"'3097':{'combined description':'SPANAIR', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3098,ASIANA AIRLINES - ASIANA,,Airlines,Yes,"'3098':{'combined description':'ASIANA AIRLINES - ASIANA', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3099,CATHAY PACIFIC,CATHAY PACIFIC,Airlines,Yes,"'3099':{'combined description':'CATHAY PACIFIC', 'USDA description':'CATHAY PACIFIC','IRS Description':'Airlines', 'reportable':'Yes'}," 3100,MALAYSIAN AIRLINE SYSTEM,MALAYSIAN AIRLINE SYSTEM,Airlines,Yes,"'3100':{'combined description':'MALAYSIAN AIRLINE SYSTEM', 'USDA description':'MALAYSIAN AIRLINE SYSTEM','IRS Description':'Airlines', 'reportable':'Yes'}," 3101,airlines,,Airlines,Yes,"'3101':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3102,IBERIA,IBERIA,Airlines,Yes,"'3102':{'combined description':'IBERIA', 'USDA description':'IBERIA','IRS Description':'Airlines', 'reportable':'Yes'}," 3103,GARUDA AIR (INDONESIA),GARUDA (INDONESIA),Airlines,Yes,"'3103':{'combined description':'GARUDA AIR (INDONESIA)', 'USDA description':'GARUDA (INDONESIA)','IRS Description':'Airlines', 'reportable':'Yes'}," 3104,airlines,,Airlines,Yes,"'3104':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3105,PIEDMONT,,Airlines,Yes,"'3105':{'combined description':'PIEDMONT', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3106,BRAATHENS AIR S.A.F.E. (NORWAY),BRAATHENS S.A.F.E. (NORWAY),Airlines,Yes,"'3106':{'combined description':'BRAATHENS AIR S.A.F.E. (NORWAY)', 'USDA description':'BRAATHENS S.A.F.E. (NORWAY)','IRS Description':'Airlines', 'reportable':'Yes'}," 3107,airlines,,Airlines,Yes,"'3107':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3108,airlines,,Airlines,Yes,"'3108':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3109,airlines,,Airlines,Yes,"'3109':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3110,WINGS AIRWAYS,WINGS AIRWAYS,Airlines,Yes,"'3110':{'combined description':'WINGS AIRWAYS', 'USDA description':'WINGS AIRWAYS','IRS Description':'Airlines', 'reportable':'Yes'}," 3111,BRITISH MIDLAND,BRITISH MIDLAND,Airlines,Yes,"'3111':{'combined description':'BRITISH MIDLAND', 'USDA description':'BRITISH MIDLAND','IRS Description':'Airlines', 'reportable':'Yes'}," 3112,WINDWARD ISLAND,WINDWARD ISLAND,Airlines,Yes,"'3112':{'combined description':'WINDWARD ISLAND', 'USDA description':'WINDWARD ISLAND','IRS Description':'Airlines', 'reportable':'Yes'}," 3113,airlines,,Airlines,Yes,"'3113':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3114,airlines,,Airlines,Yes,"'3114':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3115,TOWER AIR,,Airlines,Yes,"'3115':{'combined description':'TOWER AIR', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3116,airlines,,Airlines,Yes,"'3116':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3117,VENEZOLANA INTERNATIONAL DE AVIACION (VI,VIASA,Airlines,Yes,"'3117':{'combined description':'VENEZOLANA INTERNATIONAL DE AVIACION (VI', 'USDA description':'VIASA','IRS Description':'Airlines', 'reportable':'Yes'}," 3118,VALLEY AIRLINES,VALLEY AIRLINES,Airlines,Yes,"'3118':{'combined description':'VALLEY AIRLINES', 'USDA description':'VALLEY AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3119,airlines,,Airlines,Yes,"'3119':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3120,airlines,,Airlines,Yes,"'3120':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3121,airlines,,Airlines,Yes,"'3121':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3122,airlines,,Airlines,Yes,"'3122':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3123,airlines,,Airlines,Yes,"'3123':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3124,airlines,,Airlines,Yes,"'3124':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3125,TAN AIRLINES,TAN,Airlines,Yes,"'3125':{'combined description':'TAN AIRLINES', 'USDA description':'TAN','IRS Description':'Airlines', 'reportable':'Yes'}," 3126,TALAIR,TALAIR,Airlines,Yes,"'3126':{'combined description':'TALAIR', 'USDA description':'TALAIR','IRS Description':'Airlines', 'reportable':'Yes'}," 3127,TACA INTERNATIONAL,TACA INTERNATIONAL,Airlines,Yes,"'3127':{'combined description':'TACA INTERNATIONAL', 'USDA description':'TACA INTERNATIONAL','IRS Description':'Airlines', 'reportable':'Yes'}," 3128,airlines,,Airlines,Yes,"'3128':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3129,SURINAM AIRWAYS,SURINAM AIRWAYS,Airlines,Yes,"'3129':{'combined description':'SURINAM AIRWAYS', 'USDA description':'SURINAM AIRWAYS','IRS Description':'Airlines', 'reportable':'Yes'}," 3130,SUNWORLD INTERNATIONAL AIR,SUN WORLD INTERNATIONAL,Airlines,Yes,"'3130':{'combined description':'SUNWORLD INTERNATIONAL AIR', 'USDA description':'SUN WORLD INTERNATIONAL','IRS Description':'Airlines', 'reportable':'Yes'}," 3131,VLM AIRLINES,,Airlines,Yes,"'3131':{'combined description':'VLM AIRLINES', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3132,FRONTIER AIRLINES - FRONTIER,,Airlines,Yes,"'3132':{'combined description':'FRONTIER AIRLINES - FRONTIER', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3133,SUNBELT AIRLINES,SUNBELT AIRLINES,Airlines,Yes,"'3133':{'combined description':'SUNBELT AIRLINES', 'USDA description':'SUNBELT AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3134,airlines,,Airlines,Yes,"'3134':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3135,SUDAN AIRWAYS,SUDAN AIRWAYS,Airlines,Yes,"'3135':{'combined description':'SUDAN AIRWAYS', 'USDA description':'SUDAN AIRWAYS','IRS Description':'Airlines', 'reportable':'Yes'}," 3136,QATAR AIRWAYS,,Airlines,Yes,"'3136':{'combined description':'QATAR AIRWAYS', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3137,SINGLETION AIR,SINGLETON,Airlines,Yes,"'3137':{'combined description':'SINGLETION AIR', 'USDA description':'SINGLETON','IRS Description':'Airlines', 'reportable':'Yes'}," 3138,SIMMONS AIRLINES,SIMMONS AIRLINES,Airlines,Yes,"'3138':{'combined description':'SIMMONS AIRLINES', 'USDA description':'SIMMONS AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3139,airlines,,Airlines,Yes,"'3139':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3140,airlines,,Airlines,Yes,"'3140':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3141,SEAIR ALASKA,,Airlines,Yes,"'3141':{'combined description':'SEAIR ALASKA', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3142,airlines,,Airlines,Yes,"'3142':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3143,SCENIC AIRLINES,SCENIC AIRLINES,Airlines,Yes,"'3143':{'combined description':'SCENIC AIRLINES', 'USDA description':'SCENIC AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3144,VIRGIN ATLANTIC,VIRGIN ATLANTIC,Airlines,Yes,"'3144':{'combined description':'VIRGIN ATLANTIC', 'USDA description':'VIRGIN ATLANTIC','IRS Description':'Airlines', 'reportable':'Yes'}," 3145,SAN JUAN AIRLINES,SAN JUAN AIRLINES,Airlines,Yes,"'3145':{'combined description':'SAN JUAN AIRLINES', 'USDA description':'SAN JUAN AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3146,LUXAIR,LUXAIR,Airlines,Yes,"'3146':{'combined description':'LUXAIR', 'USDA description':'LUXAIR','IRS Description':'Airlines', 'reportable':'Yes'}," 3147,airlines,,Airlines,Yes,"'3147':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3148,"AIR LITTORAL, S.A.",,Airlines,Yes,"'3148':{'combined description':'AIR LITTORAL, S.A.', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3149,airlines,,Airlines,Yes,"'3149':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3150,airlines,,Airlines,Yes,"'3150':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3151,AIR ZAIRE,AIR ZAIRE,Airlines,Yes,"'3151':{'combined description':'AIR ZAIRE', 'USDA description':'AIR ZAIRE','IRS Description':'Airlines', 'reportable':'Yes'}," 3152,airlines,,Airlines,Yes,"'3152':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3153,airlines,,Airlines,Yes,"'3153':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3154,PRINCEVILLE,PRINCEVILLE,Airlines,Yes,"'3154':{'combined description':'PRINCEVILLE', 'USDA description':'PRINCEVILLE','IRS Description':'Airlines', 'reportable':'Yes'}," 3155,airlines,,Airlines,Yes,"'3155':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3156,"GO FLY, LTD.",,Airlines,Yes,"'3156':{'combined description':'GO FLY, LTD.', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3157,airlines,,Airlines,Yes,"'3157':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3158,airlines,,Airlines,Yes,"'3158':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3159,PROVINCETOWN-BOSTON AIRWAYS (PBA) AIRLIN,PBA,Airlines,Yes,"'3159':{'combined description':'PROVINCETOWN-BOSTON AIRWAYS (PBA) AIRLIN', 'USDA description':'PBA','IRS Description':'Airlines', 'reportable':'Yes'}," 3160,airlines,,Airlines,Yes,"'3160':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3161,ALL NIPON AIRWAYS,ALL NIPPON AIRWAYS,Airlines,Yes,"'3161':{'combined description':'ALL NIPON AIRWAYS', 'USDA description':'ALL NIPPON AIRWAYS','IRS Description':'Airlines', 'reportable':'Yes'}," 3162,airlines,,Airlines,Yes,"'3162':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3163,airlines,,Airlines,Yes,"'3163':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3164,NORONTAIR,NORONTAIR,Airlines,Yes,"'3164':{'combined description':'NORONTAIR', 'USDA description':'NORONTAIR','IRS Description':'Airlines', 'reportable':'Yes'}," 3165,NEW YORK HELICOPTER,NEW YORK HELICOPTER,Airlines,Yes,"'3165':{'combined description':'NEW YORK HELICOPTER', 'USDA description':'NEW YORK HELICOPTER','IRS Description':'Airlines', 'reportable':'Yes'}," 3166,airlines,,Airlines,Yes,"'3166':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3167,AERO CONTINENTE - AERO CONT,,Airlines,Yes,"'3167':{'combined description':'AERO CONTINENTE - AERO CONT', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3168,airlines,,Airlines,Yes,"'3168':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3169,airlines,,Airlines,Yes,"'3169':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3170,MOUNT COOK,NOUNT COOK,Airlines,Yes,"'3170':{'combined description':'MOUNT COOK', 'USDA description':'NOUNT COOK','IRS Description':'Airlines', 'reportable':'Yes'}," 3171,CANADIAN AIRLINES INTERNATIONAL,CANADIAN AIRLINES INTERNATIONAL,Airlines,Yes,"'3171':{'combined description':'CANADIAN AIRLINES INTERNATIONAL', 'USDA description':'CANADIAN AIRLINES INTERNATIONAL','IRS Description':'Airlines', 'reportable':'Yes'}," 3172,NATIONAIR,NATIONAIR,Airlines,Yes,"'3172':{'combined description':'NATIONAIR', 'USDA description':'NATIONAIR','IRS Description':'Airlines', 'reportable':'Yes'}," 3173,airlines,,Airlines,Yes,"'3173':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3174,JETBLUE AIRLINES,,Airlines,Yes,"'3174':{'combined description':'JETBLUE AIRLINES', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3175,MIDDLE EAST AIR,,Airlines,Yes,"'3175':{'combined description':'MIDDLE EAST AIR', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3176,METROFLIGHT AIRLINES,METROFLIGHT AIRLINES,Airlines,Yes,"'3176':{'combined description':'METROFLIGHT AIRLINES', 'USDA description':'METROFLIGHT AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3177,AIRTRAN AIRWAYS - AIRTRAN A,,Airlines,Yes,"'3177':{'combined description':'AIRTRAN AIRWAYS - AIRTRAN A', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3178,MESA AIR,MESA AIR,Airlines,Yes,"'3178':{'combined description':'MESA AIR', 'USDA description':'MESA AIR','IRS Description':'Airlines', 'reportable':'Yes'}," 3179,airlines,,Airlines,Yes,"'3179':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3180,WESTJETAIR,,Airlines,Yes,"'3180':{'combined description':'WESTJETAIR', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3181,MALEV AIR,MALEV,Airlines,Yes,"'3181':{'combined description':'MALEV AIR', 'USDA description':'MALEV','IRS Description':'Airlines', 'reportable':'Yes'}," 3182,LOT (POLISH AIRLINES),LOT (POLAND),Airlines,Yes,"'3182':{'combined description':'LOT (POLISH AIRLINES)', 'USDA description':'LOT (POLAND)','IRS Description':'Airlines', 'reportable':'Yes'}," 3183,OMANAIR,,Airlines,Yes,"'3183':{'combined description':'OMANAIR', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3184,LIAT,LIAT,Airlines,Yes,"'3184':{'combined description':'LIAT', 'USDA description':'LIAT','IRS Description':'Airlines', 'reportable':'Yes'}," 3185,LINEA AEROPOSTAL VENEZOLANA (LAV),LAV (VENEZUELA),Airlines,Yes,"'3185':{'combined description':'LINEA AEROPOSTAL VENEZOLANA (LAV)', 'USDA description':'LAV (VENEZUELA)','IRS Description':'Airlines', 'reportable':'Yes'}," 3186,LINEAS AEREAS PARAGUAYAS (LAP),LAP (PARAGUAY),Airlines,Yes,"'3186':{'combined description':'LINEAS AEREAS PARAGUAYAS (LAP)', 'USDA description':'LAP (PARAGUAY)','IRS Description':'Airlines', 'reportable':'Yes'}," 3187,LACSA AIR (COSTA RICA),LACSA (COSTA RICA),Airlines,Yes,"'3187':{'combined description':'LACSA AIR (COSTA RICA)', 'USDA description':'LACSA (COSTA RICA)','IRS Description':'Airlines', 'reportable':'Yes'}," 3188,VIRGINEXPAIR,,Airlines,Yes,"'3188':{'combined description':'VIRGINEXPAIR', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3189,airlines,,Airlines,Yes,"'3189':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3190,JUGOSLAV AIR,JUGOSLAV AIR,Airlines,Yes,"'3190':{'combined description':'JUGOSLAV AIR', 'USDA description':'JUGOSLAV AIR','IRS Description':'Airlines', 'reportable':'Yes'}," 3191,ISLAND AIRLINES,ISLAND AIRLINES,Airlines,Yes,"'3191':{'combined description':'ISLAND AIRLINES', 'USDA description':'ISLAND AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3192,IRAN AIR,IRAN AIR,Airlines,Yes,"'3192':{'combined description':'IRAN AIR', 'USDA description':'IRAN AIR','IRS Description':'Airlines', 'reportable':'Yes'}," 3193,INDIAN AIRLINES,INDIAN AIRLINES,Airlines,Yes,"'3193':{'combined description':'INDIAN AIRLINES', 'USDA description':'INDIAN AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3194,airlines,,Airlines,Yes,"'3194':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3195,HOLIDAY AIRLINES,,Airlines,Yes,"'3195':{'combined description':'HOLIDAY AIRLINES', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3196,HAWAIIAN AIR,HAWAIIAN AIR,Airlines,Yes,"'3196':{'combined description':'HAWAIIAN AIR', 'USDA description':'HAWAIIAN AIR','IRS Description':'Airlines', 'reportable':'Yes'}," 3197,HAVASU AIRLINES,HAVASU AIRLINES,Airlines,Yes,"'3197':{'combined description':'HAVASU AIRLINES', 'USDA description':'HAVASU AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3198,HARBOR AIRLINES,,Airlines,Yes,"'3198':{'combined description':'HARBOR AIRLINES', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3199,SERVICIOS AEREOS MILITARES,,Airlines,Yes,"'3199':{'combined description':'SERVICIOS AEREOS MILITARES', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3200,GUYANA AIRWAYS,FUYANA AIRWAYS,Airlines,Yes,"'3200':{'combined description':'GUYANA AIRWAYS', 'USDA description':'FUYANA AIRWAYS','IRS Description':'Airlines', 'reportable':'Yes'}," 3201,airlines,,Airlines,Yes,"'3201':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3202,airlines,,Airlines,Yes,"'3202':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3203,GOLDEN PACIFIC AIR,GOLDEN PACIFIC AIR,Airlines,Yes,"'3203':{'combined description':'GOLDEN PACIFIC AIR', 'USDA description':'GOLDEN PACIFIC AIR','IRS Description':'Airlines', 'reportable':'Yes'}," 3204,FREEDOM AIRLINES,FREEDOM AIR,Airlines,Yes,"'3204':{'combined description':'FREEDOM AIRLINES', 'USDA description':'FREEDOM AIR','IRS Description':'Airlines', 'reportable':'Yes'}," 3205,airlines,,Airlines,Yes,"'3205':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3206,CHINA EASTERN AIRLINES - CHINAEAST,,Airlines,Yes,"'3206':{'combined description':'CHINA EASTERN AIRLINES - CHINAEAST', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3207,EMPRESA ECUATORIANA,,Airlines,Yes,"'3207':{'combined description':'EMPRESA ECUATORIANA', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3208,airlines,,Airlines,Yes,"'3208':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3209,airlines,,Airlines,Yes,"'3209':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3210,airlines,,Airlines,Yes,"'3210':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3211,NORWEGIAN AIR SHUTTLE - NORWEGIAN,,Airlines,Yes,"'3211':{'combined description':'NORWEGIAN AIR SHUTTLE - NORWEGIAN', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3212,DOMINICANA DE AVIACION,DOMINICANA,Airlines,Yes,"'3212':{'combined description':'DOMINICANA DE AVIACION', 'USDA description':'DOMINICANA','IRS Description':'Airlines', 'reportable':'Yes'}," 3213,MALMO AVIATION,,Airlines,Yes,"'3213':{'combined description':'MALMO AVIATION', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3214,airlines,,Airlines,Yes,"'3214':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3215,DAN AIR SERVICES,DAN AIR SERVICES,Airlines,Yes,"'3215':{'combined description':'DAN AIR SERVICES', 'USDA description':'DAN AIR SERVICES','IRS Description':'Airlines', 'reportable':'Yes'}," 3216,CUMBERLAND AIRLINES,CUMBERLAND AIRLINES,Airlines,Yes,"'3216':{'combined description':'CUMBERLAND AIRLINES', 'USDA description':'CUMBERLAND AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3217,CESKOSLOVENSKE AEROLINIE (CSA),CSA,Airlines,Yes,"'3217':{'combined description':'CESKOSLOVENSKE AEROLINIE (CSA)', 'USDA description':'CSA','IRS Description':'Airlines', 'reportable':'Yes'}," 3218,CROWN AIR,CROWN AIR,Airlines,Yes,"'3218':{'combined description':'CROWN AIR', 'USDA description':'CROWN AIR','IRS Description':'Airlines', 'reportable':'Yes'}," 3219,COMPANIA PANAMENA DE AVIACION (COPA),COPA,Airlines,Yes,"'3219':{'combined description':'COMPANIA PANAMENA DE AVIACION (COPA)', 'USDA description':'COPA','IRS Description':'Airlines', 'reportable':'Yes'}," 3220,COMPANIA FAUCETT,COMPANIA FAUCETT,Airlines,Yes,"'3220':{'combined description':'COMPANIA FAUCETT', 'USDA description':'COMPANIA FAUCETT','IRS Description':'Airlines', 'reportable':'Yes'}," 3221,TRANSPORTES AEROS MILITARES ECUATORIANOS,TRANSPORTES AEROS MILITARES ECCUATORANOS,Airlines,Yes,"'3221':{'combined description':'TRANSPORTES AEROS MILITARES ECUATORIANOS', 'USDA description':'TRANSPORTES AEROS MILITARES ECCUATORANOS','IRS Description':'Airlines', 'reportable':'Yes'}," 3222,COMMAND AIRWAYS,COMMAND AIRWAYS,Airlines,Yes,"'3222':{'combined description':'COMMAND AIRWAYS', 'USDA description':'COMMAND AIRWAYS','IRS Description':'Airlines', 'reportable':'Yes'}," 3223,COMAIR,COMAIR,Airlines,Yes,"'3223':{'combined description':'COMAIR', 'USDA description':'COMAIR','IRS Description':'Airlines', 'reportable':'Yes'}," 3224,airlines,,Airlines,Yes,"'3224':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3225,airlines,,Airlines,Yes,"'3225':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3226,SKYWAYS AIR,,Airlines,Yes,"'3226':{'combined description':'SKYWAYS AIR', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3227,airlines,,Airlines,Yes,"'3227':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3228,CAYMAN AIRWAYS,CAYMAN AIRWAYS,Airlines,Yes,"'3228':{'combined description':'CAYMAN AIRWAYS', 'USDA description':'CAYMAN AIRWAYS','IRS Description':'Airlines', 'reportable':'Yes'}," 3229,SAETA (SOCIEDAD ECUATORIANOS DE TRANSPOR,SAETA SOCIAEDAD ECUATORIANOS DE TRANSPORTES AEREOS,Airlines,Yes,"'3229':{'combined description':'SAETA (SOCIEDAD ECUATORIANOS DE TRANSPOR', 'USDA description':'SAETA SOCIAEDAD ECUATORIANOS DE TRANSPORTES AEREOS','IRS Description':'Airlines', 'reportable':'Yes'}," 3230,airlines,,Airlines,Yes,"'3230':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3231,SAHSA (SERVICIO AERO DE HONDURAS),SASHA SERVICIO AERO DE HONDURAS,Airlines,Yes,"'3231':{'combined description':'SAHSA (SERVICIO AERO DE HONDURAS)', 'USDA description':'SASHA SERVICIO AERO DE HONDURAS','IRS Description':'Airlines', 'reportable':'Yes'}," 3232,airlines,,Airlines,Yes,"'3232':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3233,CAPITOL AIR,CAPITOL AIR,Airlines,Yes,"'3233':{'combined description':'CAPITOL AIR', 'USDA description':'CAPITOL AIR','IRS Description':'Airlines', 'reportable':'Yes'}," 3234,CARIBBEAN AIRLINES,BWIA,Airlines,Yes,"'3234':{'combined description':'CARIBBEAN AIRLINES', 'USDA description':'BWIA','IRS Description':'Airlines', 'reportable':'Yes'}," 3235,BROCKWAY AIR,BROKWAY AIR,Airlines,Yes,"'3235':{'combined description':'BROCKWAY AIR', 'USDA description':'BROKWAY AIR','IRS Description':'Airlines', 'reportable':'Yes'}," 3236,AIR ARABIA,,Airlines,Yes,"'3236':{'combined description':'AIR ARABIA', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3237,airlines,,Airlines,Yes,"'3237':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3238,BEMIDJI AVIATION,BEMIDJI AIRLINES,Airlines,Yes,"'3238':{'combined description':'BEMIDJI AVIATION', 'USDA description':'BEMIDJI AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3239,BAR HARBOR AIRLINES,BAR HARBOR AIRLINES,Airlines,Yes,"'3239':{'combined description':'BAR HARBOR AIRLINES', 'USDA description':'BAR HARBOR AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3240,BAHAMASAIR,BAHAMASAIR,Airlines,Yes,"'3240':{'combined description':'BAHAMASAIR', 'USDA description':'BAHAMASAIR','IRS Description':'Airlines', 'reportable':'Yes'}," 3241,AVIATECA AIR (GUATEMALA),AVIATECA (GUATEMALA),Airlines,Yes,"'3241':{'combined description':'AVIATECA AIR (GUATEMALA)', 'USDA description':'AVIATECA (GUATEMALA)','IRS Description':'Airlines', 'reportable':'Yes'}," 3242,CARIBBEAN AIRLINES--CARIBBEAN,AVENSA,Airlines,Yes,"'3242':{'combined description':'CARIBBEAN AIRLINES--CARIBBEAN', 'USDA description':'AVENSA','IRS Description':'Airlines', 'reportable':'Yes'}," 3243,AUSTRIAN AIR SERVICE,AUSTRIAN AIR SERVICE,Airlines,Yes,"'3243':{'combined description':'AUSTRIAN AIR SERVICE', 'USDA description':'AUSTRIAN AIR SERVICE','IRS Description':'Airlines', 'reportable':'Yes'}," 3244,airlines,,Airlines,Yes,"'3244':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3245,EASYJET AIR,,Airlines,Yes,"'3245':{'combined description':'EASYJET AIR', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3246,RYANAIR,,Airlines,Yes,"'3246':{'combined description':'RYANAIR', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3247,GOL AIR,,Airlines,Yes,"'3247':{'combined description':'GOL AIR', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3248,TAM AIR,,Airlines,Yes,"'3248':{'combined description':'TAM AIR', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3249,airlines,,Airlines,Yes,"'3249':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3250,airlines,,Airlines,Yes,"'3250':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3251,ALOHA AIR,ALOHA AIRLINES,Airlines,Yes,"'3251':{'combined description':'ALOHA AIR', 'USDA description':'ALOHA AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3252,ANTILEAN AIRLINES (ALM),ALM,Airlines,Yes,"'3252':{'combined description':'ANTILEAN AIRLINES (ALM)', 'USDA description':'ALM','IRS Description':'Airlines', 'reportable':'Yes'}," 3253,AMERICA WEST,AMERICA WEST,Airlines,Yes,"'3253':{'combined description':'AMERICA WEST', 'USDA description':'AMERICA WEST','IRS Description':'Airlines', 'reportable':'Yes'}," 3254,U.S. AIR SHUTTLE,TRUMP AIRLINE,Airlines,Yes,"'3254':{'combined description':'U.S. AIR SHUTTLE', 'USDA description':'TRUMP AIRLINE','IRS Description':'Airlines', 'reportable':'Yes'}," 3255,airlines,,Airlines,Yes,"'3255':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3256,ALASKA AIRLINES INC.,ALASKA AIRLINES,Airlines,Yes,"'3256':{'combined description':'ALASKA AIRLINES INC.', 'USDA description':'ALASKA AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3257,airlines,,Airlines,Yes,"'3257':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3258,airlines,,Airlines,Yes,"'3258':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3259,AMERICAN TRANS AIR,AMERICAN TRANS AIR,Airlines,Yes,"'3259':{'combined description':'AMERICAN TRANS AIR', 'USDA description':'AMERICAN TRANS AIR','IRS Description':'Airlines', 'reportable':'Yes'}," 3260,SPIRIT AIRLINES,,Airlines,Yes,"'3260':{'combined description':'SPIRIT AIRLINES', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3261,AIR CHINA,AIR CHINA,Airlines,Yes,"'3261':{'combined description':'AIR CHINA', 'USDA description':'AIR CHINA','IRS Description':'Airlines', 'reportable':'Yes'}," 3262,RENO AIR,"RENO AIR, INC.",Airlines,Yes,"'3262':{'combined description':'RENO AIR', 'USDA description':'RENO AIR, INC.','IRS Description':'Airlines', 'reportable':'Yes'}," 3263,AERO SERVICIO CARABOBO - ASERCA,,Airlines,Yes,"'3263':{'combined description':'AERO SERVICIO CARABOBO - ASERCA', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3264,airlines,,Airlines,Yes,"'3264':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3265,airlines,,Airlines,Yes,"'3265':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3266,AIR SEYCHELLES,AIR SEYCHELLES,Airlines,Yes,"'3266':{'combined description':'AIR SEYCHELLES', 'USDA description':'AIR SEYCHELLES','IRS Description':'Airlines', 'reportable':'Yes'}," 3267,AIR PANAMA INTERNATIONAL,AIR PANAMA,Airlines,Yes,"'3267':{'combined description':'AIR PANAMA INTERNATIONAL', 'USDA description':'AIR PANAMA','IRS Description':'Airlines', 'reportable':'Yes'}," 3268,AIR PACIFIC,,Airlines,Yes,"'3268':{'combined description':'AIR PACIFIC', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3269,airlines,,Airlines,Yes,"'3269':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3270,airlines,,Airlines,Yes,"'3270':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3271,airlines,,Airlines,Yes,"'3271':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3272,airlines,,Airlines,Yes,"'3272':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3273,RICA HOTELS,,Airlines,Yes,"'3273':{'combined description':'RICA HOTELS', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3274,INTER NOR HOTELS,,Airlines,Yes,"'3274':{'combined description':'INTER NOR HOTELS', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3275,AIR NEVADA,,Airlines,Yes,"'3275':{'combined description':'AIR NEVADA', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3276,AIR MIDWEST,,Airlines,Yes,"'3276':{'combined description':'AIR MIDWEST', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3277,AIR MADAGASCAR,,Airlines,Yes,"'3277':{'combined description':'AIR MADAGASCAR', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3278,airlines,,Airlines,Yes,"'3278':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3279,AIR LA,,Airlines,Yes,"'3279':{'combined description':'AIR LA', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3280,AIR JAMAICA,AIR JAMAICA,Airlines,Yes,"'3280':{'combined description':'AIR JAMAICA', 'USDA description':'AIR JAMAICA','IRS Description':'Airlines', 'reportable':'Yes'}," 3281,AIR DJIBOUTI,,Airlines,Yes,"'3281':{'combined description':'AIR DJIBOUTI', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3282,AIR DJIBOUTI,AIR DJIBOUTI,Airlines,Yes,"'3282':{'combined description':'AIR DJIBOUTI', 'USDA description':'AIR DJIBOUTI','IRS Description':'Airlines', 'reportable':'Yes'}," 3283,airlines,,Airlines,Yes,"'3283':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3284,AERO VIRGIN ISLANDS,AERO VIRGIN ISLANDS,Airlines,Yes,"'3284':{'combined description':'AERO VIRGIN ISLANDS', 'USDA description':'AERO VIRGIN ISLANDS','IRS Description':'Airlines', 'reportable':'Yes'}," 3285,AERO PERU,AERO PERU,Airlines,Yes,"'3285':{'combined description':'AERO PERU', 'USDA description':'AERO PERU','IRS Description':'Airlines', 'reportable':'Yes'}," 3286,AERO NICARAGUENSIS,AEROLINEAS NICARAGUENSIS,Airlines,Yes,"'3286':{'combined description':'AERO NICARAGUENSIS', 'USDA description':'AEROLINEAS NICARAGUENSIS','IRS Description':'Airlines', 'reportable':'Yes'}," 3287,AERO COACH AVIATION,AERO COACH AVAIATION,Airlines,Yes,"'3287':{'combined description':'AERO COACH AVIATION', 'USDA description':'AERO COACH AVAIATION','IRS Description':'Airlines', 'reportable':'Yes'}," 3288,airlines,,Airlines,Yes,"'3288':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3289,airlines,,Airlines,Yes,"'3289':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3290,airlines,,Airlines,Yes,"'3290':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3291,ARIANA AFGHAN,ARIANA AFGHAN,Airlines,Yes,"'3291':{'combined description':'ARIANA AFGHAN', 'USDA description':'ARIANA AFGHAN','IRS Description':'Airlines', 'reportable':'Yes'}," 3292,CYPRUS AIRWAYS,CYPRUS AIRWAYS,Airlines,Yes,"'3292':{'combined description':'CYPRUS AIRWAYS', 'USDA description':'CYPRUS AIRWAYS','IRS Description':'Airlines', 'reportable':'Yes'}," 3293,EQUATORIANA,ECUATORIANA,Airlines,Yes,"'3293':{'combined description':'EQUATORIANA', 'USDA description':'ECUATORIANA','IRS Description':'Airlines', 'reportable':'Yes'}," 3294,ETHIOPIAN AIRLINES,ETHIOPIAN AIRLINES,Airlines,Yes,"'3294':{'combined description':'ETHIOPIAN AIRLINES', 'USDA description':'ETHIOPIAN AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3295,KENYA AIRWAYS,KENYA AIRLINES,Airlines,Yes,"'3295':{'combined description':'KENYA AIRWAYS', 'USDA description':'KENYA AIRLINES','IRS Description':'Airlines', 'reportable':'Yes'}," 3296,AIR BERLIN - AIRBERLIN,,Airlines,Yes,"'3296':{'combined description':'AIR BERLIN - AIRBERLIN', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3297,TAROM ROMANIAN AIR TRANSPORT,,Airlines,Yes,"'3297':{'combined description':'TAROM ROMANIAN AIR TRANSPORT', 'USDA description':'','IRS Description':'Airlines', 'reportable':'Yes'}," 3298,AIR MAURITIUS,AIR MAURITIUS,Airlines,Yes,"'3298':{'combined description':'AIR MAURITIUS', 'USDA description':'AIR MAURITIUS','IRS Description':'Airlines', 'reportable':'Yes'}," 3299,WIDEROE\'S FLYVESELSKAP,WIDERO\'S FLYVESELSKAP,Airlines,Yes,"'3299':{'combined description':'WIDEROE\'S FLYVESELSKAP', 'USDA description':'WIDERO\'S FLYVESELSKAP','IRS Description':'Airlines', 'reportable':'Yes'}," 3351,AFFILIATED AUTO RENTAL,AFFILIATED AUTO RENTAL,Car Rental,Yes,"'3351':{'combined description':'AFFILIATED AUTO RENTAL', 'USDA description':'AFFILIATED AUTO RENTAL','IRS Description':'Car Rental', 'reportable':'Yes'}," 3352,AMERICAN INTL RENT-A-CAR,AMERICAN INTL RENT-A-CAR,Car Rental,Yes,"'3352':{'combined description':'AMERICAN INTL RENT-A-CAR', 'USDA description':'AMERICAN INTL RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3353,BROOKS RENT-A-CAR,BROOKS RENT-A-CAR,Car Rental,Yes,"'3353':{'combined description':'BROOKS RENT-A-CAR', 'USDA description':'BROOKS RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3354,ACTION AUTO RENTAL,ACTION AUTO RENTAL,Car Rental,Yes,"'3354':{'combined description':'ACTION AUTO RENTAL', 'USDA description':'ACTION AUTO RENTAL','IRS Description':'Car Rental', 'reportable':'Yes'}," 3355,Car Rental,,Car Rental,Yes,"'3355':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3356,Car Rental,,Car Rental,Yes,"'3356':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3357,HERTZ RENT-A-CAR,HERTZ RENT-A-CAR,Car Rental,Yes,"'3357':{'combined description':'HERTZ RENT-A-CAR', 'USDA description':'HERTZ RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3358,Car Rental,,Car Rental,Yes,"'3358':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3359,PAYLESS CAR RENTAL,PAYLESS CAR RENTAL,Car Rental,Yes,"'3359':{'combined description':'PAYLESS CAR RENTAL', 'USDA description':'PAYLESS CAR RENTAL','IRS Description':'Car Rental', 'reportable':'Yes'}," 3360,SNAPPY CAR RENTAL,SNAPPY CAR RENTAL,Car Rental,Yes,"'3360':{'combined description':'SNAPPY CAR RENTAL', 'USDA description':'SNAPPY CAR RENTAL','IRS Description':'Car Rental', 'reportable':'Yes'}," 3361,AIRWAYS RENT-A-CAR,AIRWAYS RENT-A-CAR,Car Rental,Yes,"'3361':{'combined description':'AIRWAYS RENT-A-CAR', 'USDA description':'AIRWAYS RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3362,ALTRA AUTO RENTAL,ALTRA AUTO RENTAL,Car Rental,Yes,"'3362':{'combined description':'ALTRA AUTO RENTAL', 'USDA description':'ALTRA AUTO RENTAL','IRS Description':'Car Rental', 'reportable':'Yes'}," 3363,Car Rental,,Car Rental,Yes,"'3363':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3364,AGENCY RENT-A-CAR,AGENCY RENT-A-CAR,Car Rental,Yes,"'3364':{'combined description':'AGENCY RENT-A-CAR', 'USDA description':'AGENCY RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3365,Car Rental,,Car Rental,Yes,"'3365':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3366,BUDGET RENT-A-CAR,BUDGET RENT-A-CAR,Car Rental,Yes,"'3366':{'combined description':'BUDGET RENT-A-CAR', 'USDA description':'BUDGET RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3367,Car Rental,,Car Rental,Yes,"'3367':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3368,HOLIDAY RENT-A-WRECK,HOLIDAY RENT-A-WRECK,Car Rental,Yes,"'3368':{'combined description':'HOLIDAY RENT-A-WRECK', 'USDA description':'HOLIDAY RENT-A-WRECK','IRS Description':'Car Rental', 'reportable':'Yes'}," 3369,Car Rental,,Car Rental,Yes,"'3369':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3370,RENT-A-WRECK,RENT-A-WRECK,Car Rental,Yes,"'3370':{'combined description':'RENT-A-WRECK', 'USDA description':'RENT-A-WRECK','IRS Description':'Car Rental', 'reportable':'Yes'}," 3371,Car Rental,,Car Rental,Yes,"'3371':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3372,Car Rental,,Car Rental,Yes,"'3372':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3373,Car Rental,,Car Rental,Yes,"'3373':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3374,Car Rental,,Car Rental,Yes,"'3374':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3375,Car Rental,,Car Rental,Yes,"'3375':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3376,AJAX RENT-A-CAR,AJAX RENT-A-CAR,Car Rental,Yes,"'3376':{'combined description':'AJAX RENT-A-CAR', 'USDA description':'AJAX RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3377,Car Rental,,Car Rental,Yes,"'3377':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3378,Car Rental,,Car Rental,Yes,"'3378':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3379,Car Rental,,Car Rental,Yes,"'3379':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3380,Car Rental,,Car Rental,Yes,"'3380':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3381,EUROP CAR,EUROP CAR,Car Rental,Yes,"'3381':{'combined description':'EUROP CAR', 'USDA description':'EUROP CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3382,Car Rental,,Car Rental,Yes,"'3382':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3383,Car Rental,,Car Rental,Yes,"'3383':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3384,Car Rental,,Car Rental,Yes,"'3384':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3385,TROPICAL RENT-A-CAR,TROPICAL RENT-A-CAR,Car Rental,Yes,"'3385':{'combined description':'TROPICAL RENT-A-CAR', 'USDA description':'TROPICAL RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3386,SHOWCASE RENTAL CARS,SHOWCASE RENTAL CARS,Car Rental,Yes,"'3386':{'combined description':'SHOWCASE RENTAL CARS', 'USDA description':'SHOWCASE RENTAL CARS','IRS Description':'Car Rental', 'reportable':'Yes'}," 3387,ALAMO RENT-A-CAR,ALAMO RENT-A-CAR,Car Rental,Yes,"'3387':{'combined description':'ALAMO RENT-A-CAR', 'USDA description':'ALAMO RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3388,Car Rental,,Car Rental,Yes,"'3388':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3389,AVIS RENT-A-CAR,AVIS RENT-A-CAR,Car Rental,Yes,"'3389':{'combined description':'AVIS RENT-A-CAR', 'USDA description':'AVIS RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3390,DOLLAR RENT-A-CAR,DOLLAR RENT-A-CAR,Car Rental,Yes,"'3390':{'combined description':'DOLLAR RENT-A-CAR', 'USDA description':'DOLLAR RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3391,EUROPE BY CAR,EUROPE BY CAR,Car Rental,Yes,"'3391':{'combined description':'EUROPE BY CAR', 'USDA description':'EUROPE BY CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3392,Car Rental,,Car Rental,Yes,"'3392':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3393,NATIONAL CAR RENTAL,NATIONAL CAR RENTAL,Car Rental,Yes,"'3393':{'combined description':'NATIONAL CAR RENTAL', 'USDA description':'NATIONAL CAR RENTAL','IRS Description':'Car Rental', 'reportable':'Yes'}," 3394,KEMWELL GROUP RENT-A-CAR,KEMWELL GROUP RENT-A-CAR,Car Rental,Yes,"'3394':{'combined description':'KEMWELL GROUP RENT-A-CAR', 'USDA description':'KEMWELL GROUP RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3395,THRIFTY RENT-A-CAR,THRIFTY RENT-A-CAR,Car Rental,Yes,"'3395':{'combined description':'THRIFTY RENT-A-CAR', 'USDA description':'THRIFTY RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3396,TILDEN TENT-A-CAR,TILDEN TENT-A-CAR,Car Rental,Yes,"'3396':{'combined description':'TILDEN TENT-A-CAR', 'USDA description':'TILDEN TENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3397,Car Rental,,Car Rental,Yes,"'3397':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3398,ECONO-CAR RENT-A-CAR,ECONO-CAR RENT-A-CAR,Car Rental,Yes,"'3398':{'combined description':'ECONO-CAR RENT-A-CAR', 'USDA description':'ECONO-CAR RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3399,Car Rental,,Car Rental,Yes,"'3399':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3400,AUTO HOST COST CAR RENTALS,AUTO HOST COST CAR RENTALS,Car Rental,Yes,"'3400':{'combined description':'AUTO HOST COST CAR RENTALS', 'USDA description':'AUTO HOST COST CAR RENTALS','IRS Description':'Car Rental', 'reportable':'Yes'}," 3401,Car Rental,,Car Rental,Yes,"'3401':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3402,Car Rental,,Car Rental,Yes,"'3402':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3403,Car Rental,,Car Rental,Yes,"'3403':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3404,Car Rental,,Car Rental,Yes,"'3404':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3405,ENTERPRISE RENT-A-CAR,ENTERPRISE RENT-A-CAR,Car Rental,Yes,"'3405':{'combined description':'ENTERPRISE RENT-A-CAR', 'USDA description':'ENTERPRISE RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3406,Car Rental,,Car Rental,Yes,"'3406':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3407,Car Rental,,Car Rental,Yes,"'3407':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3408,Car Rental,,Car Rental,Yes,"'3408':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3409,GENERAL RENT-A-CAR,GENERAL RENT-A-CAR,Car Rental,Yes,"'3409':{'combined description':'GENERAL RENT-A-CAR', 'USDA description':'GENERAL RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3410,Car Rental,,Car Rental,Yes,"'3410':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3411,Car Rental,,Car Rental,Yes,"'3411':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3412,A-1 RENT-A-CAR,A-1 RENT-A-CAR,Car Rental,Yes,"'3412':{'combined description':'A-1 RENT-A-CAR', 'USDA description':'A-1 RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3413,Car Rental,,Car Rental,Yes,"'3413':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3414,GODFREY NATL RENT-A-CAR,GODFREY NATL RENT-A-CAR,Car Rental,Yes,"'3414':{'combined description':'GODFREY NATL RENT-A-CAR', 'USDA description':'GODFREY NATL RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3415,Car Rental,,Car Rental,Yes,"'3415':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3416,Car Rental,,Car Rental,Yes,"'3416':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3417,Car Rental,,Car Rental,Yes,"'3417':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3418,Car Rental,,Car Rental,Yes,"'3418':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3419,ALPHA RENT-A-CAR,ALPHA RENT-A-CAR,Car Rental,Yes,"'3419':{'combined description':'ALPHA RENT-A-CAR', 'USDA description':'ALPHA RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3420,ANSA INTL RENT-A-CAR,ANSA INTL RENT-A-CAR,Car Rental,Yes,"'3420':{'combined description':'ANSA INTL RENT-A-CAR', 'USDA description':'ANSA INTL RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3421,ALLSTAE RENT-A-CAR,ALLSTAE RENT-A-CAR,Car Rental,Yes,"'3421':{'combined description':'ALLSTAE RENT-A-CAR', 'USDA description':'ALLSTAE RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3422,Car Rental,,Car Rental,Yes,"'3422':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3423,AVCAR RENT-A-CAR,AVCAR RENT-A-CAR,Car Rental,Yes,"'3423':{'combined description':'AVCAR RENT-A-CAR', 'USDA description':'AVCAR RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3424,Car Rental,,Car Rental,Yes,"'3424':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3425,AUTOMATE RENT-A-CAR,AUTOMATE RENT-A-CAR,Car Rental,Yes,"'3425':{'combined description':'AUTOMATE RENT-A-CAR', 'USDA description':'AUTOMATE RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3426,Car Rental,,Car Rental,Yes,"'3426':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3427,AVON RENT-A-CAR,AVON RENT-A-CAR,Car Rental,Yes,"'3427':{'combined description':'AVON RENT-A-CAR', 'USDA description':'AVON RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3428,CAREY RENT-A-CAR,CAREY RENT-A-CAR,Car Rental,Yes,"'3428':{'combined description':'CAREY RENT-A-CAR', 'USDA description':'CAREY RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3429,INSURANCE RENT-A-CAR,INSURANCE RENT-A-CAR,Car Rental,Yes,"'3429':{'combined description':'INSURANCE RENT-A-CAR', 'USDA description':'INSURANCE RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3430,MAJOR RENT-A-CAR,MAJOR RENT-A-CAR,Car Rental,Yes,"'3430':{'combined description':'MAJOR RENT-A-CAR', 'USDA description':'MAJOR RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3431,REPLACEMENT RENT-A-CAR,REPLACEMENT RENT-A-CAR,Car Rental,Yes,"'3431':{'combined description':'REPLACEMENT RENT-A-CAR', 'USDA description':'REPLACEMENT RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3432,RESERVE RENT-A-CAR,RESERVE RENT-A-CAR,Car Rental,Yes,"'3432':{'combined description':'RESERVE RENT-A-CAR', 'USDA description':'RESERVE RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3433,UGLY DUCKLING RENT-A-CAR,UGLY DUCKLING RENT-A-CAR,Car Rental,Yes,"'3433':{'combined description':'UGLY DUCKLING RENT-A-CAR', 'USDA description':'UGLY DUCKLING RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3434,USA RENT-A-CAR,USA RENT-A-CAR,Car Rental,Yes,"'3434':{'combined description':'USA RENT-A-CAR', 'USDA description':'USA RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3435,VALUE RENT-A-CAR,VALUE RENT-A-CAR,Car Rental,Yes,"'3435':{'combined description':'VALUE RENT-A-CAR', 'USDA description':'VALUE RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3436,AUTOHANSA RENT-A-CAR,AUTOHANSA RENT-A-CAR,Car Rental,Yes,"'3436':{'combined description':'AUTOHANSA RENT-A-CAR', 'USDA description':'AUTOHANSA RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3437,CITE RENT-A-CAR,CITE RENT-A-CAR,Car Rental,Yes,"'3437':{'combined description':'CITE RENT-A-CAR', 'USDA description':'CITE RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3438,INTERENT RENT-A-CAR,INTERENT RENT-A-CAR,Car Rental,Yes,"'3438':{'combined description':'INTERENT RENT-A-CAR', 'USDA description':'INTERENT RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3439,MILLEVILLE RENT-A-CAR,MILLEVILLE RENT-A-CAR,Car Rental,Yes,"'3439':{'combined description':'MILLEVILLE RENT-A-CAR', 'USDA description':'MILLEVILLE RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3440,VIA ROUTE RENT-A-CAR,VIA ROUTE RENT-A-CAR,Car Rental,Yes,"'3440':{'combined description':'VIA ROUTE RENT-A-CAR', 'USDA description':'VIA ROUTE RENT-A-CAR','IRS Description':'Car Rental', 'reportable':'Yes'}," 3441,Car Rental,,Car Rental,Yes,"'3441':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'reportable':'Yes'}," 3501,"HOLIDAY INNS, HOLIDAY INN EXPRESS",HOLIDAY INNS,Hotels/Motels/Inns/Resorts,Yes,"'3501':{'combined description':'HOLIDAY INNS, HOLIDAY INN EXPRESS', 'USDA description':'HOLIDAY INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3502,BEST WESTERN HOTELS,BEST WESTERN HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3502':{'combined description':'BEST WESTERN HOTELS', 'USDA description':'BEST WESTERN HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3503,SHERATON HOTELS,SHERATON HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3503':{'combined description':'SHERATON HOTELS', 'USDA description':'SHERATON HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3504,HILTON HOTELS,HILTON HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3504':{'combined description':'HILTON HOTELS', 'USDA description':'HILTON HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3505,FORTE HOTELS,FORTE HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3505':{'combined description':'FORTE HOTELS', 'USDA description':'FORTE HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3506,GOLDEN TULIP HOTELS,GOLDEN TULIP HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3506':{'combined description':'GOLDEN TULIP HOTELS', 'USDA description':'GOLDEN TULIP HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3507,FRIENDSHIP INNS,FRIENDSHIP INNS,Hotels/Motels/Inns/Resorts,Yes,"'3507':{'combined description':'FRIENDSHIP INNS', 'USDA description':'FRIENDSHIP INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3508,"QUALITY INNS, QUALITY SUITES",QUALITY INNS,Hotels/Motels/Inns/Resorts,Yes,"'3508':{'combined description':'QUALITY INNS, QUALITY SUITES', 'USDA description':'QUALITY INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3509,MARRIOTT HOTELS,MARRIOTT HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3509':{'combined description':'MARRIOTT HOTELS', 'USDA description':'MARRIOTT HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3510,"DAYS INN, DAYSTOP",DAYS INN,Hotels/Motels/Inns/Resorts,Yes,"'3510':{'combined description':'DAYS INN, DAYSTOP', 'USDA description':'DAYS INN','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3511,ARABELLA HOTELS,ARABELLA HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3511':{'combined description':'ARABELLA HOTELS', 'USDA description':'ARABELLA HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3512,INTER-CONTINENTAL HOTELS,INTER-CONTINENTAL HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3512':{'combined description':'INTER-CONTINENTAL HOTELS', 'USDA description':'INTER-CONTINENTAL HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3513,WESTIN HOTELS,WESTIN HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3513':{'combined description':'WESTIN HOTELS', 'USDA description':'WESTIN HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3514,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3514':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3515,RODEWAY INNS,RODEWAY INNS,Hotels/Motels/Inns/Resorts,Yes,"'3515':{'combined description':'RODEWAY INNS', 'USDA description':'RODEWAY INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3516,LA QUINTA MOTOR INNS,LA QUINTA MOTOR INNS,Hotels/Motels/Inns/Resorts,Yes,"'3516':{'combined description':'LA QUINTA MOTOR INNS', 'USDA description':'LA QUINTA MOTOR INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3517,AMERICANA HOTELS,AMERICANA HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3517':{'combined description':'AMERICANA HOTELS', 'USDA description':'AMERICANA HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3518,SOL HOTELS,SOL HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3518':{'combined description':'SOL HOTELS', 'USDA description':'SOL HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3519,PULLMAN INTERNATIONAL HOTELS,PULLMAN INTERNATIONAL HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3519':{'combined description':'PULLMAN INTERNATIONAL HOTELS', 'USDA description':'PULLMAN INTERNATIONAL HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3520,MERIDIEN HOTELS,MERIDIEN HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3520':{'combined description':'MERIDIEN HOTELS', 'USDA description':'MERIDIEN HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3521,CREST HOTELS (see FORTE HOTELS),CREST HOTELS (see FORTE HOTELS),Hotels/Motels/Inns/Resorts,Yes,"'3521':{'combined description':'CREST HOTELS (see FORTE HOTELS)', 'USDA description':'CREST HOTELS (see FORTE HOTELS)','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3522,TOKYO HOTEL,TOKYO HOTEL,Hotels/Motels/Inns/Resorts,Yes,"'3522':{'combined description':'TOKYO HOTEL', 'USDA description':'TOKYO HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3523,PENNSULA HOTEL,PENNSULA HOTEL,Hotels/Motels/Inns/Resorts,Yes,"'3523':{'combined description':'PENNSULA HOTEL', 'USDA description':'PENNSULA HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3524,WELCOMGROUP HOTELS,WELCOMGROUP HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3524':{'combined description':'WELCOMGROUP HOTELS', 'USDA description':'WELCOMGROUP HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3525,DUNFEY HOTELS,DUNFEY HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3525':{'combined description':'DUNFEY HOTELS', 'USDA description':'DUNFEY HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3526,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3526':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3527,DOWNTOWNER-PASSPORT HOTEL,DOWNTOWNER-PASSPORT HOTEL,Hotels/Motels/Inns/Resorts,Yes,"'3527':{'combined description':'DOWNTOWNER-PASSPORT HOTEL', 'USDA description':'DOWNTOWNER-PASSPORT HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3528,"RED LION HOTELS, RED LION INNS",RED LION HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3528':{'combined description':'RED LION HOTELS, RED LION INNS', 'USDA description':'RED LION HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3529,CP HOTELS,CP HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3529':{'combined description':'CP HOTELS', 'USDA description':'CP HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3530,"RENAISSANCE HOTELS, STOUFFER HOTELS",RENAISSANCE HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3530':{'combined description':'RENAISSANCE HOTELS, STOUFFER HOTELS', 'USDA description':'RENAISSANCE HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3531,ASTIR HOTELS,ASTIR HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3531':{'combined description':'ASTIR HOTELS', 'USDA description':'ASTIR HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3532,SUN ROUTE HOTELS,SUN ROUTE HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3532':{'combined description':'SUN ROUTE HOTELS', 'USDA description':'SUN ROUTE HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3533,HOTEL IBIS,HOTEL IBIS,Hotels/Motels/Inns/Resorts,Yes,"'3533':{'combined description':'HOTEL IBIS', 'USDA description':'HOTEL IBIS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3534,SOUTHERN PACIFIC HOTELS,SOUTHERN PACIFIC HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3534':{'combined description':'SOUTHERN PACIFIC HOTELS', 'USDA description':'SOUTHERN PACIFIC HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3535,HILTON INTERNATIONAL,HILTON INTERNATIONAL,Hotels/Motels/Inns/Resorts,Yes,"'3535':{'combined description':'HILTON INTERNATIONAL', 'USDA description':'HILTON INTERNATIONAL','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3536,AMFAC HOTELS,AMFAC HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3536':{'combined description':'AMFAC HOTELS', 'USDA description':'AMFAC HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3537,ANA HOTEL,ANA HOTEL,Hotels/Motels/Inns/Resorts,Yes,"'3537':{'combined description':'ANA HOTEL', 'USDA description':'ANA HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3538,CONCORDE HOTELS,CONCORDE HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3538':{'combined description':'CONCORDE HOTELS', 'USDA description':'CONCORDE HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3539,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3539':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3540,IBEROTEL HOTELS,IBEROTEL HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3540':{'combined description':'IBEROTEL HOTELS', 'USDA description':'IBEROTEL HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3541,HOTEL OKURA,HOTEL OKURA,Hotels/Motels/Inns/Resorts,Yes,"'3541':{'combined description':'HOTEL OKURA', 'USDA description':'HOTEL OKURA','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3542,ROYAL HOTELS,ROYAL HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3542':{'combined description':'ROYAL HOTELS', 'USDA description':'ROYAL HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3543,FOUR SEASONS HOTELS,FOUR SEASONS HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3543':{'combined description':'FOUR SEASONS HOTELS', 'USDA description':'FOUR SEASONS HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3544,CIGA HOTELS,CIGA HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3544':{'combined description':'CIGA HOTELS', 'USDA description':'CIGA HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3545,SHANGRI-LA INTERNATIONAL,SHANGRI-LA INTERNATIONAL,Hotels/Motels/Inns/Resorts,Yes,"'3545':{'combined description':'SHANGRI-LA INTERNATIONAL', 'USDA description':'SHANGRI-LA INTERNATIONAL','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3546,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3546':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3547,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3547':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3548,HOTELES MELIA,HOTELES MELIA,Hotels/Motels/Inns/Resorts,Yes,"'3548':{'combined description':'HOTELES MELIA', 'USDA description':'HOTELES MELIA','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3549,AUBERGE DES GOVERNEURS,AUBERGE DES GOVERNEURS,Hotels/Motels/Inns/Resorts,Yes,"'3549':{'combined description':'AUBERGE DES GOVERNEURS', 'USDA description':'AUBERGE DES GOVERNEURS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3550,REGAL 8 INNS,REGAL 8 INNS,Hotels/Motels/Inns/Resorts,Yes,"'3550':{'combined description':'REGAL 8 INNS', 'USDA description':'REGAL 8 INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3551,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3551':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3552,COAST HOTELS,COAST HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3552':{'combined description':'COAST HOTELS', 'USDA description':'COAST HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3553,PARK INNS INTERNATIONAL,PARK INNS INTERNATIONAL,Hotels/Motels/Inns/Resorts,Yes,"'3553':{'combined description':'PARK INNS INTERNATIONAL', 'USDA description':'PARK INNS INTERNATIONAL','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3554,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3554':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3555,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3555':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3556,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3556':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3557,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3557':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3558,JOLLY HOTELS,JOLLY HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3558':{'combined description':'JOLLY HOTELS', 'USDA description':'JOLLY HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3559,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3559':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3560,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3560':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3561,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3561':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3562,COMFORT INNS,COMFORT INNS,Hotels/Motels/Inns/Resorts,Yes,"'3562':{'combined description':'COMFORT INNS', 'USDA description':'COMFORT INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3563,JOURNEY\'S END MOTLS,JOURNEY\'S END MOTLS,Hotels/Motels/Inns/Resorts,Yes,"'3563':{'combined description':'JOURNEY\'S END MOTLS', 'USDA description':'JOURNEY\'S END MOTLS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3564,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3564':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3565,RELAX INNS,RELAX INNS,Hotels/Motels/Inns/Resorts,Yes,"'3565':{'combined description':'RELAX INNS', 'USDA description':'RELAX INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3566,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3566':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3567,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3567':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3568,LADBROKE HOTELS,LADBROKE HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3568':{'combined description':'LADBROKE HOTELS', 'USDA description':'LADBROKE HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3569,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3569':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3570,FORUM HOTELS,FORUM HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3570':{'combined description':'FORUM HOTELS', 'USDA description':'FORUM HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3571,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3571':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3572,MIYAKO HOTELS,MIYAKO HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3572':{'combined description':'MIYAKO HOTELS', 'USDA description':'MIYAKO HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3573,SANDMAN HOTELS,SANDMAN HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3573':{'combined description':'SANDMAN HOTELS', 'USDA description':'SANDMAN HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3574,VENTURE INNS,VENTURE INNS,Hotels/Motels/Inns/Resorts,Yes,"'3574':{'combined description':'VENTURE INNS', 'USDA description':'VENTURE INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3575,VAGABOND HOTELS,VAGABOND HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3575':{'combined description':'VAGABOND HOTELS', 'USDA description':'VAGABOND HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3576,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3576':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3577,MANDARIN ORIENTAL HOTEL,MANDARIN ORIENTAL HOTEL,Hotels/Motels/Inns/Resorts,Yes,"'3577':{'combined description':'MANDARIN ORIENTAL HOTEL', 'USDA description':'MANDARIN ORIENTAL HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3578,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3578':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3579,HOTEL MERCURE,HOTEL MERCURE,Hotels/Motels/Inns/Resorts,Yes,"'3579':{'combined description':'HOTEL MERCURE', 'USDA description':'HOTEL MERCURE','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3580,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3580':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3581,DELTA HOTEL,DELTA HOTEL,Hotels/Motels/Inns/Resorts,Yes,"'3581':{'combined description':'DELTA HOTEL', 'USDA description':'DELTA HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3582,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3582':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3583,SAS HOTELS,SAS HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3583':{'combined description':'SAS HOTELS', 'USDA description':'SAS HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3584,PRINCESS HOTELS INTERNATIONAL,PRINCESS HOTELS INTERNATIONAL,Hotels/Motels/Inns/Resorts,Yes,"'3584':{'combined description':'PRINCESS HOTELS INTERNATIONAL', 'USDA description':'PRINCESS HOTELS INTERNATIONAL','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3585,HUNGAR HOTELS,HUNGAR HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3585':{'combined description':'HUNGAR HOTELS', 'USDA description':'HUNGAR HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3586,SOKOS HOTELS,SOKOS HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3586':{'combined description':'SOKOS HOTELS', 'USDA description':'SOKOS HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3587,DORAL HOTELS,DORAL HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3587':{'combined description':'DORAL HOTELS', 'USDA description':'DORAL HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3588,HELMSLEY HOTELS,HELMSLEY HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3588':{'combined description':'HELMSLEY HOTELS', 'USDA description':'HELMSLEY HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3589,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3589':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3590,FAIRMONT HOTELS,FAIRMONT HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3590':{'combined description':'FAIRMONT HOTELS', 'USDA description':'FAIRMONT HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3591,SONESTA HOTELS,SONESTA HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3591':{'combined description':'SONESTA HOTELS', 'USDA description':'SONESTA HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3592,OMNI HOTELS,OMNI HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3592':{'combined description':'OMNI HOTELS', 'USDA description':'OMNI HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3593,CUNARD HOTELS,CUNARD HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3593':{'combined description':'CUNARD HOTELS', 'USDA description':'CUNARD HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3594,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3594':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3595,HOSPITALITY INTERNATIONAL,HOSPITALITY INTERNATIONAL,Hotels/Motels/Inns/Resorts,Yes,"'3595':{'combined description':'HOSPITALITY INTERNATIONAL', 'USDA description':'HOSPITALITY INTERNATIONAL','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3596,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3596':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3597,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3597':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3598,REGENT INTERNATIONAL HOTELS,REGENT INTERNATIONAL HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3598':{'combined description':'REGENT INTERNATIONAL HOTELS', 'USDA description':'REGENT INTERNATIONAL HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3599,PANNONIA HOTELS,PANNONIA HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3599':{'combined description':'PANNONIA HOTELS', 'USDA description':'PANNONIA HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3600,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3600':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3601,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3601':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3602,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3602':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3603,NOAH\'S HOTELS,NOAH\'S HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3603':{'combined description':'NOAH\'S HOTELS', 'USDA description':'NOAH\'S HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3604,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3604':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3605,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3605':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3606,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3606':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3607,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3607':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3608,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3608':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3609,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3609':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3610,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3610':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3611,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3611':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3612,MOVENPICK HOTELS,MOVENPICK HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3612':{'combined description':'MOVENPICK HOTELS', 'USDA description':'MOVENPICK HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3613,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3613':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3614,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3614':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3615,TRAVELODGE,TRAVELODGE,Hotels/Motels/Inns/Resorts,Yes,"'3615':{'combined description':'TRAVELODGE', 'USDA description':'TRAVELODGE','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3616,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3616':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3617,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3617':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3618,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3618':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3619,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3619':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3620,TELFORD INTERNATIONAL,TELFORD INTERNATIONAL,Hotels/Motels/Inns/Resorts,Yes,"'3620':{'combined description':'TELFORD INTERNATIONAL', 'USDA description':'TELFORD INTERNATIONAL','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3621,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3621':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3622,MERLIN HOTELS,MERLIN HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3622':{'combined description':'MERLIN HOTELS', 'USDA description':'MERLIN HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3623,DORINT HOTELS,DORINT HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3623':{'combined description':'DORINT HOTELS', 'USDA description':'DORINT HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3624,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3624':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3625,HOTLE UNIVERSALE,HOTLE UNIVERSALE,Hotels/Motels/Inns/Resorts,Yes,"'3625':{'combined description':'HOTLE UNIVERSALE', 'USDA description':'HOTLE UNIVERSALE','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3626,PRINCE HOTELS,PRINCE HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3626':{'combined description':'PRINCE HOTELS', 'USDA description':'PRINCE HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3627,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3627':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3628,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3628':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3629,DAN HOTELS,DAN HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3629':{'combined description':'DAN HOTELS', 'USDA description':'DAN HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3630,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3630':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3631,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3631':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3632,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3632':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3633,RANK HOTELS,RANK HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3633':{'combined description':'RANK HOTELS', 'USDA description':'RANK HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3634,SWISSOTEL,SWISSOTEL,Hotels/Motels/Inns/Resorts,Yes,"'3634':{'combined description':'SWISSOTEL', 'USDA description':'SWISSOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3635,RESO HOTELS,RESO HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3635':{'combined description':'RESO HOTELS', 'USDA description':'RESO HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3636,SAROVA HOTELS,SAROVA HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3636':{'combined description':'SAROVA HOTELS', 'USDA description':'SAROVA HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3637,"RAMADA INNS, RAMADA LIMITED",RAMADA INNS,Hotels/Motels/Inns/Resorts,Yes,"'3637':{'combined description':'RAMADA INNS, RAMADA LIMITED', 'USDA description':'RAMADA INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3638,"HO JO INN, HOWARD JOHNSON",HO JO INN,Hotels/Motels/Inns/Resorts,Yes,"'3638':{'combined description':'HO JO INN, HOWARD JOHNSON', 'USDA description':'HO JO INN','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3639,MOUNT CHARLOTTE THISTLE,MOUNT CHARLOTTE THISTLE,Hotels/Motels/Inns/Resorts,Yes,"'3639':{'combined description':'MOUNT CHARLOTTE THISTLE', 'USDA description':'MOUNT CHARLOTTE THISTLE','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3640,HYATT HOTEL,HYATT HOTEL,Hotels/Motels/Inns/Resorts,Yes,"'3640':{'combined description':'HYATT HOTEL', 'USDA description':'HYATT HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3641,SOFITEL HOTELS,SOFITEL HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3641':{'combined description':'SOFITEL HOTELS', 'USDA description':'SOFITEL HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3642,NOVOTEL HOTELS,NOVOTEL HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3642':{'combined description':'NOVOTEL HOTELS', 'USDA description':'NOVOTEL HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3643,STEIGENBERGER HOTELS,STEIGENBERGER HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3643':{'combined description':'STEIGENBERGER HOTELS', 'USDA description':'STEIGENBERGER HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3644,ECONO LODGES,ECONO LODGES,Hotels/Motels/Inns/Resorts,Yes,"'3644':{'combined description':'ECONO LODGES', 'USDA description':'ECONO LODGES','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3645,QUEENS MOAT HOUSES,QUEENS MOAT HOUSES,Hotels/Motels/Inns/Resorts,Yes,"'3645':{'combined description':'QUEENS MOAT HOUSES', 'USDA description':'QUEENS MOAT HOUSES','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3646,SWALLOW HOTELS,SWALLOW HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3646':{'combined description':'SWALLOW HOTELS', 'USDA description':'SWALLOW HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3647,HUSA HOTELS,HUSA HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3647':{'combined description':'HUSA HOTELS', 'USDA description':'HUSA HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3648,DE VERE HOTELS,DE VERE HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3648':{'combined description':'DE VERE HOTELS', 'USDA description':'DE VERE HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3649,RADISSON HOTELS,RADISSON HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3649':{'combined description':'RADISSON HOTELS', 'USDA description':'RADISSON HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3650,RED ROOK INNS,RED ROOK INNS,Hotels/Motels/Inns/Resorts,Yes,"'3650':{'combined description':'RED ROOK INNS', 'USDA description':'RED ROOK INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3651,IMPERIAL LONDON HOTEL,IMPERIAL LONDON HOTEL,Hotels/Motels/Inns/Resorts,Yes,"'3651':{'combined description':'IMPERIAL LONDON HOTEL', 'USDA description':'IMPERIAL LONDON HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3652,EMBASSY HOTELS,EMBASSY HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3652':{'combined description':'EMBASSY HOTELS', 'USDA description':'EMBASSY HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3653,PENTA HOTELS,PENTA HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3653':{'combined description':'PENTA HOTELS', 'USDA description':'PENTA HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3654,LOEWS HOTELS,LOEWS HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3654':{'combined description':'LOEWS HOTELS', 'USDA description':'LOEWS HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3655,SCANDIC HOTELS,SCANDIC HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3655':{'combined description':'SCANDIC HOTELS', 'USDA description':'SCANDIC HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3656,SARA HOTELS,SARA HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3656':{'combined description':'SARA HOTELS', 'USDA description':'SARA HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3657,OBEROI HOTELS,OBEROI HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3657':{'combined description':'OBEROI HOTELS', 'USDA description':'OBEROI HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3658,OTANI HOTELS,OTANI HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3658':{'combined description':'OTANI HOTELS', 'USDA description':'OTANI HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3659,TAJ HOTELS INTERNATIONAL,TAJ HOTELS INTERNATIONAL,Hotels/Motels/Inns/Resorts,Yes,"'3659':{'combined description':'TAJ HOTELS INTERNATIONAL', 'USDA description':'TAJ HOTELS INTERNATIONAL','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3660,KNIGHTS INNS,KNIGHTS INNS,Hotels/Motels/Inns/Resorts,Yes,"'3660':{'combined description':'KNIGHTS INNS', 'USDA description':'KNIGHTS INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3661,METROPOLE HOTELS,METROPOLE HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3661':{'combined description':'METROPOLE HOTELS', 'USDA description':'METROPOLE HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3662,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3662':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3663,HOTELES EL PRESIDENTS,HOTELES EL PRESIDENTS,Hotels/Motels/Inns/Resorts,Yes,"'3663':{'combined description':'HOTELES EL PRESIDENTS', 'USDA description':'HOTELES EL PRESIDENTS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3664,FLAG INN,FLAG INN,Hotels/Motels/Inns/Resorts,Yes,"'3664':{'combined description':'FLAG INN', 'USDA description':'FLAG INN','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3665,HAMPTON INNS,HAMPTON INNS,Hotels/Motels/Inns/Resorts,Yes,"'3665':{'combined description':'HAMPTON INNS', 'USDA description':'HAMPTON INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3666,STAKIS HOTELS,STAKIS HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3666':{'combined description':'STAKIS HOTELS', 'USDA description':'STAKIS HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3667,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3667':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3668,MARITIM HOTELS,MARITIM HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3668':{'combined description':'MARITIM HOTELS', 'USDA description':'MARITIM HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3669,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3669':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3670,ARCARD HOTELS,ARCARD HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3670':{'combined description':'ARCARD HOTELS', 'USDA description':'ARCARD HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3671,ARCTIA HOTELS,ARCTIA HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3671':{'combined description':'ARCTIA HOTELS', 'USDA description':'ARCTIA HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3672,CAMPANIEL HOTELS,CAMPANIEL HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3672':{'combined description':'CAMPANIEL HOTELS', 'USDA description':'CAMPANIEL HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3673,IBUSZ HOTELS,IBUSZ HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3673':{'combined description':'IBUSZ HOTELS', 'USDA description':'IBUSZ HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3674,RANTASIPI HOTELS,RANTASIPI HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3674':{'combined description':'RANTASIPI HOTELS', 'USDA description':'RANTASIPI HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3675,INTERHOTEL CEDOK,INTERHOTEL CEDOK,Hotels/Motels/Inns/Resorts,Yes,"'3675':{'combined description':'INTERHOTEL CEDOK', 'USDA description':'INTERHOTEL CEDOK','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3676,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3676':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3677,CLIMAT DE FRANCE HOTELS,CLIMAT DE FRANCE HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3677':{'combined description':'CLIMAT DE FRANCE HOTELS', 'USDA description':'CLIMAT DE FRANCE HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3678,CUMULUS HOTELS,CUMULUS HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3678':{'combined description':'CUMULUS HOTELS', 'USDA description':'CUMULUS HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3679,DANUBIUS HOTEL,DANUBIUS HOTEL,Hotels/Motels/Inns/Resorts,Yes,"'3679':{'combined description':'DANUBIUS HOTEL', 'USDA description':'DANUBIUS HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3680,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3680':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3681,ADAMS MARK HOTELS,ADAMS MARK HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3681':{'combined description':'ADAMS MARK HOTELS', 'USDA description':'ADAMS MARK HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3682,ALLSTAR INNS,ALLSTAR INNS,Hotels/Motels/Inns/Resorts,Yes,"'3682':{'combined description':'ALLSTAR INNS', 'USDA description':'ALLSTAR INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3683,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3683':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3684,BUDGET HOST INNS,BUDGET HOST INNS,Hotels/Motels/Inns/Resorts,Yes,"'3684':{'combined description':'BUDGET HOST INNS', 'USDA description':'BUDGET HOST INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3685,BUDGETEL HOTELS,BUDGETEL HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3685':{'combined description':'BUDGETEL HOTELS', 'USDA description':'BUDGETEL HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3686,SUISSE CHALETS,SUISSE CHALETS,Hotels/Motels/Inns/Resorts,Yes,"'3686':{'combined description':'SUISSE CHALETS', 'USDA description':'SUISSE CHALETS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3687,CLARION HOTELS,CLARION HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3687':{'combined description':'CLARION HOTELS', 'USDA description':'CLARION HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3688,COMPRI HOTELS,COMPRI HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3688':{'combined description':'COMPRI HOTELS', 'USDA description':'COMPRI HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3689,CONSORT HOTELS,CONSORT HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3689':{'combined description':'CONSORT HOTELS', 'USDA description':'CONSORT HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3690,COURTYARD BY MARRIOTT,COURTYARD BY MARRIOTT,Hotels/Motels/Inns/Resorts,Yes,"'3690':{'combined description':'COURTYARD BY MARRIOTT', 'USDA description':'COURTYARD BY MARRIOTT','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3691,DILLION INNS,DILLION INNS,Hotels/Motels/Inns/Resorts,Yes,"'3691':{'combined description':'DILLION INNS', 'USDA description':'DILLION INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3692,DOUBLETREE HOTELS,DOUBLETREE HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3692':{'combined description':'DOUBLETREE HOTELS', 'USDA description':'DOUBLETREE HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3693,DRURY INNS,DRURY INNS,Hotels/Motels/Inns/Resorts,Yes,"'3693':{'combined description':'DRURY INNS', 'USDA description':'DRURY INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3694,ECONOMY INNS OF AMERICA,ECONOMY INNS OF AMERICA,Hotels/Motels/Inns/Resorts,Yes,"'3694':{'combined description':'ECONOMY INNS OF AMERICA', 'USDA description':'ECONOMY INNS OF AMERICA','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3695,EMBASSY SUITES,EMBASSY SUITES,Hotels/Motels/Inns/Resorts,Yes,"'3695':{'combined description':'EMBASSY SUITES', 'USDA description':'EMBASSY SUITES','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3696,EXEL INNS,EXEL INNS,Hotels/Motels/Inns/Resorts,Yes,"'3696':{'combined description':'EXEL INNS', 'USDA description':'EXEL INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3697,FARFIELD HOTELS,FARFIELD HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3697':{'combined description':'FARFIELD HOTELS', 'USDA description':'FARFIELD HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3698,HARLEY HOTELS,HARLEY HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3698':{'combined description':'HARLEY HOTELS', 'USDA description':'HARLEY HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3699,MIDWAY MOTOR LODGE,MIDWAY MOTOR LODGE,Hotels/Motels/Inns/Resorts,Yes,"'3699':{'combined description':'MIDWAY MOTOR LODGE', 'USDA description':'MIDWAY MOTOR LODGE','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3700,MOTEL 6,MOTEL 6,Hotels/Motels/Inns/Resorts,Yes,"'3700':{'combined description':'MOTEL 6', 'USDA description':'MOTEL 6','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3701,GUEST QUARTERS (Formally PICKETT SUITE HOTELS),GUEST QUARTERS (Formally PICKETT SUITE HOTELS),Hotels/Motels/Inns/Resorts,Yes,"'3701':{'combined description':'GUEST QUARTERS (Formally PICKETT SUITE HOTELS)', 'USDA description':'GUEST QUARTERS (Formally PICKETT SUITE HOTELS)','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3702,THE REGISTRY HOTELS,THE REGISTRY HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3702':{'combined description':'THE REGISTRY HOTELS', 'USDA description':'THE REGISTRY HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3703,RESIDENCE INNS,RESIDENCE INNS,Hotels/Motels/Inns/Resorts,Yes,"'3703':{'combined description':'RESIDENCE INNS', 'USDA description':'RESIDENCE INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3704,ROYCE HOTELS,ROYCE HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3704':{'combined description':'ROYCE HOTELS', 'USDA description':'ROYCE HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3705,SANDMAN INNS,SANDMAN INNS,Hotels/Motels/Inns/Resorts,Yes,"'3705':{'combined description':'SANDMAN INNS', 'USDA description':'SANDMAN INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3706,SHILO INNS,SHILO INNS,Hotels/Motels/Inns/Resorts,Yes,"'3706':{'combined description':'SHILO INNS', 'USDA description':'SHILO INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3707,SHONEY\'S INNS,SHONEY\'S INNS,Hotels/Motels/Inns/Resorts,Yes,"'3707':{'combined description':'SHONEY\'S INNS', 'USDA description':'SHONEY\'S INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3708,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3708':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3709,SUPER8 MOTELS,SUPER8 MOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3709':{'combined description':'SUPER8 MOTELS', 'USDA description':'SUPER8 MOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3710,THE RITZ CARLTON HOTELS,THE RITZ CARLTON HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3710':{'combined description':'THE RITZ CARLTON HOTELS', 'USDA description':'THE RITZ CARLTON HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3711,FLAG INNS (AUSRALIA),FLAG INNS (AUSRALIA),Hotels/Motels/Inns/Resorts,Yes,"'3711':{'combined description':'FLAG INNS (AUSRALIA)', 'USDA description':'FLAG INNS (AUSRALIA)','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3712,GOLDEN CHAIN HOTEL,GOLDEN CHAIN HOTEL,Hotels/Motels/Inns/Resorts,Yes,"'3712':{'combined description':'GOLDEN CHAIN HOTEL', 'USDA description':'GOLDEN CHAIN HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3713,QUALITY PACIFIC HOTEL,QUALITY PACIFIC HOTEL,Hotels/Motels/Inns/Resorts,Yes,"'3713':{'combined description':'QUALITY PACIFIC HOTEL', 'USDA description':'QUALITY PACIFIC HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3714,FOUR SEASONS HOTEL (AUSTRALIA),FOUR SEASONS HOTEL (AUSTRALIA),Hotels/Motels/Inns/Resorts,Yes,"'3714':{'combined description':'FOUR SEASONS HOTEL (AUSTRALIA)', 'USDA description':'FOUR SEASONS HOTEL (AUSTRALIA)','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3715,FARIFIELD INN,FARIFIELD INN,Hotels/Motels/Inns/Resorts,Yes,"'3715':{'combined description':'FARIFIELD INN', 'USDA description':'FARIFIELD INN','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3716,CARLTON HOTELS,CARLTON HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3716':{'combined description':'CARLTON HOTELS', 'USDA description':'CARLTON HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3717,CITY LODGE HOTELS,CITY LODGE HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3717':{'combined description':'CITY LODGE HOTELS', 'USDA description':'CITY LODGE HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3718,KAROS HOTELS,KAROS HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3718':{'combined description':'KAROS HOTELS', 'USDA description':'KAROS HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3719,PROTEA HOTELS,PROTEA HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3719':{'combined description':'PROTEA HOTELS', 'USDA description':'PROTEA HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3720,SOUTHERN SUN HOTELS,SOUTHERN SUN HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3720':{'combined description':'SOUTHERN SUN HOTELS', 'USDA description':'SOUTHERN SUN HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3721,HILTON CONRAD,HILTON CONRAD,Hotels/Motels/Inns/Resorts,Yes,"'3721':{'combined description':'HILTON CONRAD', 'USDA description':'HILTON CONRAD','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3722,WYNDHAM HOTEL AND RESORTS,WYNDHAM HOTEL AND RESORTS,Hotels/Motels/Inns/Resorts,Yes,"'3722':{'combined description':'WYNDHAM HOTEL AND RESORTS', 'USDA description':'WYNDHAM HOTEL AND RESORTS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3723,RICA HOTELS,RICA HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3723':{'combined description':'RICA HOTELS', 'USDA description':'RICA HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3724,INER NOR HOTELS,INER NOR HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3724':{'combined description':'INER NOR HOTELS', 'USDA description':'INER NOR HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3725,SEAINES PLANATION,SEAINES PLANATION,Hotels/Motels/Inns/Resorts,Yes,"'3725':{'combined description':'SEAINES PLANATION', 'USDA description':'SEAINES PLANATION','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3726,RIO SUITES,RIO SUITES,Hotels/Motels/Inns/Resorts,Yes,"'3726':{'combined description':'RIO SUITES', 'USDA description':'RIO SUITES','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3727,BROADMOOR HOTEL,BROADMOOR HOTEL,Hotels/Motels/Inns/Resorts,Yes,"'3727':{'combined description':'BROADMOOR HOTEL', 'USDA description':'BROADMOOR HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3728,BALLY\'S HOTEL AND CASINO,BALLY\'S HOTEL AND CASINO,Hotels/Motels/Inns/Resorts,Yes,"'3728':{'combined description':'BALLY\'S HOTEL AND CASINO', 'USDA description':'BALLY\'S HOTEL AND CASINO','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3729,JOHN ASCUAGA\'S NUGGET,JOHN ASCUAGA\'S NUGGET,Hotels/Motels/Inns/Resorts,Yes,"'3729':{'combined description':'JOHN ASCUAGA\'S NUGGET', 'USDA description':'JOHN ASCUAGA\'S NUGGET','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3730,MGM GRAND HOTEL,MGM GRAND HOTEL,Hotels/Motels/Inns/Resorts,Yes,"'3730':{'combined description':'MGM GRAND HOTEL', 'USDA description':'MGM GRAND HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3731,HARRAH\'S HOTELS AND CASINOS,HARRAH\'S HOTELS AND CASINOS,Hotels/Motels/Inns/Resorts,Yes,"'3731':{'combined description':'HARRAH\'S HOTELS AND CASINOS', 'USDA description':'HARRAH\'S HOTELS AND CASINOS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3732,OPRYLAND HOTEL,OPRYLAND HOTEL,Hotels/Motels/Inns/Resorts,Yes,"'3732':{'combined description':'OPRYLAND HOTEL', 'USDA description':'OPRYLAND HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3733,BOCA RATON RESORT,BOCA RATON RESORT,Hotels/Motels/Inns/Resorts,Yes,"'3733':{'combined description':'BOCA RATON RESORT', 'USDA description':'BOCA RATON RESORT','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3734,HARVEY/BRISTOL HOTELS,HARVEY/BRISTOL HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3734':{'combined description':'HARVEY/BRISTOL HOTELS', 'USDA description':'HARVEY/BRISTOL HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3735,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3735':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3736,COLORADO BELLE/EDGEWATER RESORT,COLORADO BELLE/EDGEWATER RESORT,Hotels/Motels/Inns/Resorts,Yes,"'3736':{'combined description':'COLORADO BELLE/EDGEWATER RESORT', 'USDA description':'COLORADO BELLE/EDGEWATER RESORT','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3737,RIVIERA HOTEL AND CASINO,RIVIERA HOTEL AND CASINO,Hotels/Motels/Inns/Resorts,Yes,"'3737':{'combined description':'RIVIERA HOTEL AND CASINO', 'USDA description':'RIVIERA HOTEL AND CASINO','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3738,TROPICANA RESORT AND CASINO,TROPICANA RESORT AND CASINO,Hotels/Motels/Inns/Resorts,Yes,"'3738':{'combined description':'TROPICANA RESORT AND CASINO', 'USDA description':'TROPICANA RESORT AND CASINO','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3739,WOODSIDE HOTELS AND RESORTS,WOODSIDE HOTELS AND RESORTS,Hotels/Motels/Inns/Resorts,Yes,"'3739':{'combined description':'WOODSIDE HOTELS AND RESORTS', 'USDA description':'WOODSIDE HOTELS AND RESORTS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3740,TOWNPLACE SUITES,TOWNPLACE SUITES,Hotels/Motels/Inns/Resorts,Yes,"'3740':{'combined description':'TOWNPLACE SUITES', 'USDA description':'TOWNPLACE SUITES','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3741,MILLENIUM BROADWAY HOTEL,MILLENIUM BROADWAY HOTEL,Hotels/Motels/Inns/Resorts,Yes,"'3741':{'combined description':'MILLENIUM BROADWAY HOTEL', 'USDA description':'MILLENIUM BROADWAY HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3742,CLUB MED,CLUB MED,Hotels/Motels/Inns/Resorts,Yes,"'3742':{'combined description':'CLUB MED', 'USDA description':'CLUB MED','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3743,BILTMORE HOTEL AND SUITES,BILTMORE HOTEL AND SUITES,Hotels/Motels/Inns/Resorts,Yes,"'3743':{'combined description':'BILTMORE HOTEL AND SUITES', 'USDA description':'BILTMORE HOTEL AND SUITES','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3744,CAREFREE RESORTS,CAREFREE RESORTS,Hotels/Motels/Inns/Resorts,Yes,"'3744':{'combined description':'CAREFREE RESORTS', 'USDA description':'CAREFREE RESORTS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3745,ST. REGIS HOTEL,ST. REGIS HOTEL,Hotels/Motels/Inns/Resorts,Yes,"'3745':{'combined description':'ST. REGIS HOTEL', 'USDA description':'ST. REGIS HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3746,THE ELIOT HOTEL,THE ELIOT HOTEL,Hotels/Motels/Inns/Resorts,Yes,"'3746':{'combined description':'THE ELIOT HOTEL', 'USDA description':'THE ELIOT HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3747,CLUBCORP/CLUB RESORTS,CLUBCORP/CLUB RESORTS,Hotels/Motels/Inns/Resorts,Yes,"'3747':{'combined description':'CLUBCORP/CLUB RESORTS', 'USDA description':'CLUBCORP/CLUB RESORTS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3748,WELESLEY INNS,WELESLEY INNS,Hotels/Motels/Inns/Resorts,Yes,"'3748':{'combined description':'WELESLEY INNS', 'USDA description':'WELESLEY INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3749,THE BEVERLY HILLS HOTEL,THE BEVERLY HILLS HOTEL,Hotels/Motels/Inns/Resorts,Yes,"'3749':{'combined description':'THE BEVERLY HILLS HOTEL', 'USDA description':'THE BEVERLY HILLS HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3750,CROWNE PLAZA HOTELS,CROWNE PLAZA HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3750':{'combined description':'CROWNE PLAZA HOTELS', 'USDA description':'CROWNE PLAZA HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3751,HOMEWOOD SUITES,HOMEWOOD SUITES,Hotels/Motels/Inns/Resorts,Yes,"'3751':{'combined description':'HOMEWOOD SUITES', 'USDA description':'HOMEWOOD SUITES','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3752,PEABODY HOTELS,PEABODY HOTELS,Hotels/Motels/Inns/Resorts,Yes,"'3752':{'combined description':'PEABODY HOTELS', 'USDA description':'PEABODY HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3753,GREENBRIAH RESORTS,GREENBRIAH RESORTS,Hotels/Motels/Inns/Resorts,Yes,"'3753':{'combined description':'GREENBRIAH RESORTS', 'USDA description':'GREENBRIAH RESORTS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3754,AMELIA ISLAND PLANATION,AMELIA ISLAND PLANATION,Hotels/Motels/Inns/Resorts,Yes,"'3754':{'combined description':'AMELIA ISLAND PLANATION', 'USDA description':'AMELIA ISLAND PLANATION','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3755,THE HOMESTEAD,THE HOMESTEAD,Hotels/Motels/Inns/Resorts,Yes,"'3755':{'combined description':'THE HOMESTEAD', 'USDA description':'THE HOMESTEAD','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3756,SOUTH SEAS RESORTS,SOUTH SEAS RESORTS,Hotels/Motels/Inns/Resorts,Yes,"'3756':{'combined description':'SOUTH SEAS RESORTS', 'USDA description':'SOUTH SEAS RESORTS','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3757,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3757':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3758,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3758':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3759,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3759':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3760,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3760':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3761,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3761':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3762,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3762':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3763,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3763':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3764,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3764':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3765,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3765':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3766,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3766':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3767,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3767':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3768,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3768':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3769,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3769':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3770,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3770':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3771,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3771':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3772,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3772':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3773,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3773':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3774,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3774':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3775,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3775':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3776,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3776':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3777,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3777':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3778,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3778':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3779,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3779':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3780,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3780':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3781,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3781':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3782,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3782':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3783,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3783':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3784,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3784':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3785,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3785':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3786,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3786':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3787,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3787':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3788,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3788':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3789,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3789':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3790,Hotels/Motels/Inns/Resorts,,Hotels/Motels/Inns/Resorts,Yes,"'3790':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'reportable':'Yes'}," 3835,* MASTERS ECONOMY INNS,* MASTERS ECONOMY INNS,,,"'3835':{'combined description':'* MASTERS ECONOMY INNS', 'USDA description':'* MASTERS ECONOMY INNS','IRS Description':'', 'reportable':''}," 4011,Railroads,,Railroads,No1.6041-3(c),"'4011':{'combined description':'Railroads', 'USDA description':'','IRS Description':'Railroads', 'reportable':'No1.6041-3(c)'}," 4111,"Local/Suburban Commuter Passenger Transportation & Railroads, Feries, Local Water Transportation.","Local/Suburban Commuter Passenger Transportation & Railroads, Feries, Local Water Transportation.","Commuter Transport, Ferries",Yes,"'4111':{'combined description':'Local/Suburban Commuter Passenger Transportation & Railroads, Feries, Local Water Transportation.', 'USDA description':'Local/Suburban Commuter Passenger Transportation & Railroads, Feries, Local Water Transportation.','IRS Description':'Commuter Transport, Ferries', 'reportable':'Yes'}," 4112,Passenger Railways,Passenger Railways,Passenger Railways,Yes,"'4112':{'combined description':'Passenger Railways', 'USDA description':'Passenger Railways','IRS Description':'Passenger Railways', 'reportable':'Yes'}," 4119,Ambulance Services,Ambulance Services,Ambulance Services,Yes,"'4119':{'combined description':'Ambulance Services', 'USDA description':'Ambulance Services','IRS Description':'Ambulance Services', 'reportable':'Yes'}," 4121,Taxicabs and Limousines,Taxicabs and Limousines,Taxicabs/Limousines,Yes,"'4121':{'combined description':'Taxicabs and Limousines', 'USDA description':'Taxicabs and Limousines','IRS Description':'Taxicabs/Limousines', 'reportable':'Yes'}," 4131,"Bus Lines, Including Charters, Tour Buses","Bus Lines, Including Charters, Tour Buses",Bus Lines,Yes,"'4131':{'combined description':'Bus Lines, Including Charters, Tour Buses', 'USDA description':'Bus Lines, Including Charters, Tour Buses','IRS Description':'Bus Lines', 'reportable':'Yes'}," 4214,"Motor Freight Carriers, Moving and Storage Companies, Trucking & Local/Long Distance, Delivery Services & Local",Motor Freight Carriers,"Motor Freight Carriers and Trucking - Local and Long Distance, Moving and Storage Companies, and Local Delivery Services ",No1.6041-3(c),"'4214':{'combined description':'Motor Freight Carriers, Moving and Storage Companies, Trucking & Local/Long Distance, Delivery Services & Local', 'USDA description':'Motor Freight Carriers','IRS Description':'Motor Freight Carriers and Trucking - Local and Long Distance, Moving and Storage Companies, and Local Delivery Services ', 'reportable':'No1.6041-3(c)'}," 4215,"Courier Services & Air or Ground, Freight forwarders",Courier Services & Air or Ground,Courier Services ,Yes,"'4215':{'combined description':'Courier Services & Air or Ground, Freight forwarders', 'USDA description':'Courier Services & Air or Ground','IRS Description':'Courier Services ', 'reportable':'Yes'}," 4225,"Public warehousing, Storage","Warehousing, Public","Public Warehousing and Storage - Farm Products, Refrigerated Goods, Household Goods, and Storage ",No1.6041-3(c),"'4225':{'combined description':'Public warehousing, Storage', 'USDA description':'Warehousing, Public','IRS Description':'Public Warehousing and Storage - Farm Products, Refrigerated Goods, Household Goods, and Storage ', 'reportable':'No1.6041-3(c)'}," 4411,Cruise and Steamship Lines,Cruise Lines,Cruise Lines,Yes,"'4411':{'combined description':'Cruise and Steamship Lines', 'USDA description':'Cruise Lines','IRS Description':'Cruise Lines', 'reportable':'Yes'}," 4457,Boat Rentals and Leases,Boat Rentals and Leases,Boat Rentals and Leases,Yes,"'4457':{'combined description':'Boat Rentals and Leases', 'USDA description':'Boat Rentals and Leases','IRS Description':'Boat Rentals and Leases', 'reportable':'Yes'}," 4468,"Marinas, Marine Service, and Supplies","Marinas, Marine Service, and Supplies","Marinas, Service and Supplies",Yes,"'4468':{'combined description':'Marinas, Marine Service, and Supplies', 'USDA description':'Marinas, Marine Service, and Supplies','IRS Description':'Marinas, Service and Supplies', 'reportable':'Yes'}," 4511,"Airlines, Air Carriers ( not listed elsewhere)","Airlines, Air Carriers ( not listed elsewhere)","Airlines, Air Carriers",Yes,"'4511':{'combined description':'Airlines, Air Carriers ( not listed elsewhere)', 'USDA description':'Airlines, Air Carriers ( not listed elsewhere)','IRS Description':'Airlines, Air Carriers', 'reportable':'Yes'}," 4582,"Airports, Airport Terminals, Flying Fields","Airports, Airport Terminals","Airports, Flying Fields",Yes,"'4582':{'combined description':'Airports, Airport Terminals, Flying Fields', 'USDA description':'Airports, Airport Terminals','IRS Description':'Airports, Flying Fields', 'reportable':'Yes'}," 4722,Travel Agencies and Tour Operations,Travel Agencies and Tour Operations,"Travel Agencies, Tour Operators",Yes,"'4722':{'combined description':'Travel Agencies and Tour Operations', 'USDA description':'Travel Agencies and Tour Operations','IRS Description':'Travel Agencies, Tour Operators', 'reportable':'Yes'}," 4723,Package Tour Operators (For use in Germany only),Package Tour Operators (For use in Germany only),TUI Travel - Germany,Yes,"'4723':{'combined description':'Package Tour Operators (For use in Germany only)', 'USDA description':'Package Tour Operators (For use in Germany only)','IRS Description':'TUI Travel - Germany', 'reportable':'Yes'}," 4784,Toll and Bridge Fees,Toll and Bridge Fees,Tolls/Bridge Fees,No1.6041-3(c),"'4784':{'combined description':'Toll and Bridge Fees', 'USDA description':'Toll and Bridge Fees','IRS Description':'Tolls/Bridge Fees', 'reportable':'No1.6041-3(c)'}," 4789,"Transportation Services, Not elsewhere classified)","Transportation Services, Not elsewhere classified)",Transportation Services (Not Elsewhere Classified),Yes,"'4789':{'combined description':'Transportation Services, Not elsewhere classified)', 'USDA description':'Transportation Services, Not elsewhere classified)','IRS Description':'Transportation Services (Not Elsewhere Classified)', 'reportable':'Yes'}," 4812,Telecommunications Equipment including telephone sales,Telecommunications Equipment including telephone sales,Telecommunication Equipment and Telephone Sales,No1.6041-3(c),"'4812':{'combined description':'Telecommunications Equipment including telephone sales', 'USDA description':'Telecommunications Equipment including telephone sales','IRS Description':'Telecommunication Equipment and Telephone Sales', 'reportable':'No1.6041-3(c)'}," 4814,"Fax services, Telecommunication Services",Fax services,Telecommunication Services,No1.6041-3(c),"'4814':{'combined description':'Fax services, Telecommunication Services', 'USDA description':'Fax services','IRS Description':'Telecommunication Services', 'reportable':'No1.6041-3(c)'}," 4815,VisaPhone,VisaPhone,,,"'4815':{'combined description':'VisaPhone', 'USDA description':'VisaPhone','IRS Description':'', 'reportable':''}," 4816,Computer Network Services,,Computer Network Services,No1.6041-3(c),"'4816':{'combined description':'Computer Network Services', 'USDA description':'','IRS Description':'Computer Network Services', 'reportable':'No1.6041-3(c)'}," 4821,Telegraph services,Telegraph services,Telegraph Services,No1.6041-3(c),"'4821':{'combined description':'Telegraph services', 'USDA description':'Telegraph services','IRS Description':'Telegraph Services', 'reportable':'No1.6041-3(c)'}," 4829,Money Orders & Wire Transfer,Money Orders & Wire Transfer,"Wires, Money Orders",No1.6041-3(c),"'4829':{'combined description':'Money Orders & Wire Transfer', 'USDA description':'Money Orders & Wire Transfer','IRS Description':'Wires, Money Orders', 'reportable':'No1.6041-3(c)'}," 4899,Cable and other pay television (previously Cable Services),Cable and other pay television (previously Cable Services),"Cable, Satellite, and Other Pay Television and Radio",No1.6041-3(c),"'4899':{'combined description':'Cable and other pay television (previously Cable Services)', 'USDA description':'Cable and other pay television (previously Cable Services)','IRS Description':'Cable, Satellite, and Other Pay Television and Radio', 'reportable':'No1.6041-3(c)'}," 4900,"Electric, Gas, Sanitary and Water Utilities","Electric, Gas, Sanitary and Water Utilities",Utilities ,No1.6041-3(c),"'4900':{'combined description':'Electric, Gas, Sanitary and Water Utilities', 'USDA description':'Electric, Gas, Sanitary and Water Utilities','IRS Description':'Utilities ', 'reportable':'No1.6041-3(c)'}," 5013,Motor vehicle supplies and new parts,Motor vehicle supplies and new parts,Motor Vehicle Supplies and New Parts,No1.6041-3(c),"'5013':{'combined description':'Motor vehicle supplies and new parts', 'USDA description':'Motor vehicle supplies and new parts','IRS Description':'Motor Vehicle Supplies and New Parts', 'reportable':'No1.6041-3(c)'}," 5021,Office and Commercial Furniture,Office and Commercial Furniture,Office and Commercial Furniture,No1.6041-3(c),"'5021':{'combined description':'Office and Commercial Furniture', 'USDA description':'Office and Commercial Furniture','IRS Description':'Office and Commercial Furniture', 'reportable':'No1.6041-3(c)'}," 5039,"Construction Materials, Not Elsewhere Classified","Construction Materials, Not Elsewhere Classified",Construction Materials (Not Elsewhere Classified),No1.6041-3(c),"'5039':{'combined description':'Construction Materials, Not Elsewhere Classified', 'USDA description':'Construction Materials, Not Elsewhere Classified','IRS Description':'Construction Materials (Not Elsewhere Classified)', 'reportable':'No1.6041-3(c)'}," 5044,"Office, Photographic, Photocopy, and Microfilm Equipment","Office, Photographic, Photocopy, and Microfilm Equipment","Photographic, Photocopy, Microfilm Equipment, and Supplies",No1.6041-3(c),"'5044':{'combined description':'Office, Photographic, Photocopy, and Microfilm Equipment', 'USDA description':'Office, Photographic, Photocopy, and Microfilm Equipment','IRS Description':'Photographic, Photocopy, Microfilm Equipment, and Supplies', 'reportable':'No1.6041-3(c)'}," 5045,"Computers, Computer Peripheral Equipment, Software","Computers, Computer Peripheral Equipment, Software","Computers, Peripherals, and Software",No1.6041-3(c),"'5045':{'combined description':'Computers, Computer Peripheral Equipment, Software', 'USDA description':'Computers, Computer Peripheral Equipment, Software','IRS Description':'Computers, Peripherals, and Software', 'reportable':'No1.6041-3(c)'}," 5046,"Commercial Equipment, Not Elsewhere Classified","Commercial Equipment, Not Elsewhere Classified",Commercial Equipment (Not Elsewhere Classified),No1.6041-3(c),"'5046':{'combined description':'Commercial Equipment, Not Elsewhere Classified', 'USDA description':'Commercial Equipment, Not Elsewhere Classified','IRS Description':'Commercial Equipment (Not Elsewhere Classified)', 'reportable':'No1.6041-3(c)'}," 5047,"Medical, Dental Ophthalmic, Hospital Equipment and Supplies","Medical, Dental Ophthalmic, Hospital Equipment and Supplies","Medical, Dental, Ophthalmic, and Hospital Equipment and Supplies",No1.6041-3(c),"'5047':{'combined description':'Medical, Dental Ophthalmic, Hospital Equipment and Supplies', 'USDA description':'Medical, Dental Ophthalmic, Hospital Equipment and Supplies','IRS Description':'Medical, Dental, Ophthalmic, and Hospital Equipment and Supplies', 'reportable':'No1.6041-3(c)'}," 5051,Metal Service Centers and Offices,Metal Service Centers and Offices,Metal Service Centers,No1.6041-3(c),"'5051':{'combined description':'Metal Service Centers and Offices', 'USDA description':'Metal Service Centers and Offices','IRS Description':'Metal Service Centers', 'reportable':'No1.6041-3(c)'}," 5065,Electrical Parts and Equipment,Electrical Parts and Equipment,Electrical Parts and Equipment,No1.6041-3(c),"'5065':{'combined description':'Electrical Parts and Equipment', 'USDA description':'Electrical Parts and Equipment','IRS Description':'Electrical Parts and Equipment', 'reportable':'No1.6041-3(c)'}," 5072,Hardware Equipment and Supplies,Hardware Equipment and Supplies,"Hardware, Equipment, and Supplies",No1.6041-3(c),"'5072':{'combined description':'Hardware Equipment and Supplies', 'USDA description':'Hardware Equipment and Supplies','IRS Description':'Hardware, Equipment, and Supplies', 'reportable':'No1.6041-3(c)'}," 5074,Plumbing and Heating Equipment and Supplies,Plumbing and Heating Equipment and Supplies,"Plumbing, Heating Equipment, and Supplies",No1.6041-3(c),"'5074':{'combined description':'Plumbing and Heating Equipment and Supplies', 'USDA description':'Plumbing and Heating Equipment and Supplies','IRS Description':'Plumbing, Heating Equipment, and Supplies', 'reportable':'No1.6041-3(c)'}," 5085,"Industrial Supplies, Not Elsewhere Classified","Industrial Supplies, Not Elsewhere Classified",Industrial Supplies (Not Elsewhere Classified),No1.6041-3(c),"'5085':{'combined description':'Industrial Supplies, Not Elsewhere Classified', 'USDA description':'Industrial Supplies, Not Elsewhere Classified','IRS Description':'Industrial Supplies (Not Elsewhere Classified)', 'reportable':'No1.6041-3(c)'}," 5094,"Precious Stones and Metals, Watches and Jewelry","Precious Stones and Metals, Watches and Jewelry","Precious Stones and Metals, Watches and Jewelry",No1.6041-3(c),"'5094':{'combined description':'Precious Stones and Metals, Watches and Jewelry', 'USDA description':'Precious Stones and Metals, Watches and Jewelry','IRS Description':'Precious Stones and Metals, Watches and Jewelry', 'reportable':'No1.6041-3(c)'}," 5099,"Durable Goods, Not Elsewhere Classified","Durable Goods, Not Elsewhere Classified",Durable Goods (Not Elsewhere Classified),No1.6041-3(c),"'5099':{'combined description':'Durable Goods, Not Elsewhere Classified', 'USDA description':'Durable Goods, Not Elsewhere Classified','IRS Description':'Durable Goods (Not Elsewhere Classified)', 'reportable':'No1.6041-3(c)'}," 5111,"Stationery, Office Supplies, Printing, and Writing Paper","Stationery, Office Supplies, Printing, and Writing Paper","Stationary, Office Supplies, Printing and Writing Paper",No1.6041-3(c),"'5111':{'combined description':'Stationery, Office Supplies, Printing, and Writing Paper', 'USDA description':'Stationery, Office Supplies, Printing, and Writing Paper','IRS Description':'Stationary, Office Supplies, Printing and Writing Paper', 'reportable':'No1.6041-3(c)'}," 5122,"Drugs, Drug Proprietors, and Druggist\'s Sundries","Drugs, Drug Proprietors, and Druggist\'s Sundries","Drugs, Drug Proprietaries, and Druggist Sundries",No1.6041-3(c),"'5122':{'combined description':'Drugs, Drug Proprietors, and Druggist\'s Sundries', 'USDA description':'Drugs, Drug Proprietors, and Druggist\'s Sundries','IRS Description':'Drugs, Drug Proprietaries, and Druggist Sundries', 'reportable':'No1.6041-3(c)'}," 5131,"Piece Goods, Notions, and Other Dry Goods","Piece Goods, Notions, and Other Dry Goods","Piece Goods, Notions, and Other Dry Goods",No1.6041-3(c),"'5131':{'combined description':'Piece Goods, Notions, and Other Dry Goods', 'USDA description':'Piece Goods, Notions, and Other Dry Goods','IRS Description':'Piece Goods, Notions, and Other Dry Goods', 'reportable':'No1.6041-3(c)'}," 5137,Men\'s Women\'s and Children\'s Uniforms and Commercial Clothing,Men\'s Women\'s and Children\'s Uniforms and Commercial Clothing,"Uniforms, Commercial Clothing",No1.6041-3(c),"'5137':{'combined description':'Men\'s Women\'s and Children\'s Uniforms and Commercial Clothing', 'USDA description':'Men\'s Women\'s and Children\'s Uniforms and Commercial Clothing','IRS Description':'Uniforms, Commercial Clothing', 'reportable':'No1.6041-3(c)'}," 5139,Commercial Footwear,Commercial Footwear,Commercial Footwear,No1.6041-3(c),"'5139':{'combined description':'Commercial Footwear', 'USDA description':'Commercial Footwear','IRS Description':'Commercial Footwear', 'reportable':'No1.6041-3(c)'}," 5169,"Chemicals and Allied Products, Not Elsewhere Classified","Chemicals and Allied Products, Not Elsewhere Classified",Chemicals and Allied Products (Not Elsewhere Classified),No1.6041-3(c),"'5169':{'combined description':'Chemicals and Allied Products, Not Elsewhere Classified', 'USDA description':'Chemicals and Allied Products, Not Elsewhere Classified','IRS Description':'Chemicals and Allied Products (Not Elsewhere Classified)', 'reportable':'No1.6041-3(c)'}," 5172,Petroleum and Petroleum Products,Petroleum and Petroleum Products,Petroleum and Petroleum Products,No1.6041-3(c),"'5172':{'combined description':'Petroleum and Petroleum Products', 'USDA description':'Petroleum and Petroleum Products','IRS Description':'Petroleum and Petroleum Products', 'reportable':'No1.6041-3(c)'}," 5192,"Books, Periodicals, and Newspapers","Books, Periodicals, and Newspapers","Books, Periodicals, and Newspapers",No1.6041-3(c),"'5192':{'combined description':'Books, Periodicals, and Newspapers', 'USDA description':'Books, Periodicals, and Newspapers','IRS Description':'Books, Periodicals, and Newspapers', 'reportable':'No1.6041-3(c)'}," 5193,"Florists\' Supplies, Nursery Stock and Flowers","Florists\' Supplies, Nursery Stock and Flowers","Florists Supplies, Nursery Stock, and Flowers",No1.6041-3(c),"'5193':{'combined description':'Florists\' Supplies, Nursery Stock and Flowers', 'USDA description':'Florists\' Supplies, Nursery Stock and Flowers','IRS Description':'Florists Supplies, Nursery Stock, and Flowers', 'reportable':'No1.6041-3(c)'}," 5198,"Paints, Varnishes, and Supplies","Paints, Varnishes, and Supplies","Paints, Varnishes, and Supplies",No1.6041-3(c),"'5198':{'combined description':'Paints, Varnishes, and Supplies', 'USDA description':'Paints, Varnishes, and Supplies','IRS Description':'Paints, Varnishes, and Supplies', 'reportable':'No1.6041-3(c)'}," 5199,"Non-durable Goods, Not Elsewhere Classified","Non-durable Goods, Not Elsewhere Classified",Nondurable Goods (Not Elsewhere Classified),No1.6041-3(c),"'5199':{'combined description':'Non-durable Goods, Not Elsewhere Classified', 'USDA description':'Non-durable Goods, Not Elsewhere Classified','IRS Description':'Nondurable Goods (Not Elsewhere Classified)', 'reportable':'No1.6041-3(c)'}," 5200,Home Supply Warehouse Stores,Home Supply Warehouse Stores,Home Supply Warehouse Stores,No1.6041-3(c),"'5200':{'combined description':'Home Supply Warehouse Stores', 'USDA description':'Home Supply Warehouse Stores','IRS Description':'Home Supply Warehouse Stores', 'reportable':'No1.6041-3(c)'}," 5211,Lumber and Building Materials Stores,Lumber and Building Materials Stores,"Lumber, Building Materials Stores",No1.6041-3(c),"'5211':{'combined description':'Lumber and Building Materials Stores', 'USDA description':'Lumber and Building Materials Stores','IRS Description':'Lumber, Building Materials Stores', 'reportable':'No1.6041-3(c)'}," 5231,"Glass, Paint, and Wallpaper Stores",Wallpaper Stores,"Glass, Paint, and Wallpaper Stores",No1.6041-3(c),"'5231':{'combined description':'Glass, Paint, and Wallpaper Stores', 'USDA description':'Wallpaper Stores','IRS Description':'Glass, Paint, and Wallpaper Stores', 'reportable':'No1.6041-3(c)'}," 5251,Hardware Stores,Hardware Stores,Hardware Stores,No1.6041-3(c),"'5251':{'combined description':'Hardware Stores', 'USDA description':'Hardware Stores','IRS Description':'Hardware Stores', 'reportable':'No1.6041-3(c)'}," 5261,Nurseries & Lawn and Garden Supply Store,Nurseries & Lawn and Garden Supply Store,"Nurseries, Lawn and Garden Supply Stores",No1.6041-3(c),"'5261':{'combined description':'Nurseries & Lawn and Garden Supply Store', 'USDA description':'Nurseries & Lawn and Garden Supply Store','IRS Description':'Nurseries, Lawn and Garden Supply Stores', 'reportable':'No1.6041-3(c)'}," 5271,Mobile Home Dealers,Mobile Home Dealers,Mobile Home Dealers,No1.6041-3(c),"'5271':{'combined description':'Mobile Home Dealers', 'USDA description':'Mobile Home Dealers','IRS Description':'Mobile Home Dealers', 'reportable':'No1.6041-3(c)'}," 5300,Wholesale Clubs,Wholesale Clubs,Wholesale Clubs,No1.6041-3(c),"'5300':{'combined description':'Wholesale Clubs', 'USDA description':'Wholesale Clubs','IRS Description':'Wholesale Clubs', 'reportable':'No1.6041-3(c)'}," 5309,Duty Free Store,Duty Free Store,Duty Free Stores,No1.6041-3(c),"'5309':{'combined description':'Duty Free Store', 'USDA description':'Duty Free Store','IRS Description':'Duty Free Stores', 'reportable':'No1.6041-3(c)'}," 5310,Discount Stores,Discount Stores,Discount Stores,No1.6041-3(c),"'5310':{'combined description':'Discount Stores', 'USDA description':'Discount Stores','IRS Description':'Discount Stores', 'reportable':'No1.6041-3(c)'}," 5311,Department Stores,Department Stores,Department Stores,No1.6041-3(c),"'5311':{'combined description':'Department Stores', 'USDA description':'Department Stores','IRS Description':'Department Stores', 'reportable':'No1.6041-3(c)'}," 5331,Variety Stores,Variety Stores,Variety Stores,No1.6041-3(c),"'5331':{'combined description':'Variety Stores', 'USDA description':'Variety Stores','IRS Description':'Variety Stores', 'reportable':'No1.6041-3(c)'}," 5399,Misc. General Merchandise,Misc. General Merchandise,Miscellaneous General Merchandise,No1.6041-3(c),"'5399':{'combined description':'Misc. General Merchandise', 'USDA description':'Misc. General Merchandise','IRS Description':'Miscellaneous General Merchandise', 'reportable':'No1.6041-3(c)'}," 5411,"Grocery Stores, Supermarkets",Grocery Stores,"Grocery Stores, Supermarkets",No1.6041-3(c),"'5411':{'combined description':'Grocery Stores, Supermarkets', 'USDA description':'Grocery Stores','IRS Description':'Grocery Stores, Supermarkets', 'reportable':'No1.6041-3(c)'}," 5422,Meat Provisioners & Freezer and Locker,Meat Provisioners & Freezer and Locker,Freezer and Locker Meat Provisioners,No1.6041-3(c),"'5422':{'combined description':'Meat Provisioners & Freezer and Locker', 'USDA description':'Meat Provisioners & Freezer and Locker','IRS Description':'Freezer and Locker Meat Provisioners', 'reportable':'No1.6041-3(c)'}," 5441,"Candy, Nut, and Confectionery Stores",Candy Stores,"Candy, Nut, and Confectionery Stores",No1.6041-3(c),"'5441':{'combined description':'Candy, Nut, and Confectionery Stores', 'USDA description':'Candy Stores','IRS Description':'Candy, Nut, and Confectionery Stores', 'reportable':'No1.6041-3(c)'}," 5451,Dairy Products Stores,Dairy Products Stores,Dairy Products Stores,No1.6041-3(c),"'5451':{'combined description':'Dairy Products Stores', 'USDA description':'Dairy Products Stores','IRS Description':'Dairy Products Stores', 'reportable':'No1.6041-3(c)'}," 5462,Bakeries,Bakeries,Bakeries,No1.6041-3(c),"'5462':{'combined description':'Bakeries', 'USDA description':'Bakeries','IRS Description':'Bakeries', 'reportable':'No1.6041-3(c)'}," 5499,Misc. Food Stores & Convenience Stores and Specialty Markets,Misc. Food Stores & Convenience Stores and Specialty Markets,Miscellaneous Food Stores - Convenience Stores and Specialty Markets,No1.6041-3(c),"'5499':{'combined description':'Misc. Food Stores & Convenience Stores and Specialty Markets', 'USDA description':'Misc. Food Stores & Convenience Stores and Specialty Markets','IRS Description':'Miscellaneous Food Stores - Convenience Stores and Specialty Markets', 'reportable':'No1.6041-3(c)'}," 5511,"Car and Truck Dealers (New and Used) Sales, Service, Repairs, Parts, and Leasing","Car and Truck Dealers (New and Used) Sales, Service, Repairs, Parts, and Leasing","Car and Truck Dealers (New & Used) Sales, Service, Repairs Parts and Leasing ",No1.6041-3(c),"'5511':{'combined description':'Car and Truck Dealers (New and Used) Sales, Service, Repairs, Parts, and Leasing', 'USDA description':'Car and Truck Dealers (New and Used) Sales, Service, Repairs, Parts, and Leasing','IRS Description':'Car and Truck Dealers (New & Used) Sales, Service, Repairs Parts and Leasing ', 'reportable':'No1.6041-3(c)'}," 5521,Automobile and Truck Dealers (Used Only),Automobile and Truck Dealers (Used Only),"Car and Truck Dealers (Used Only) Sales, Service, Repairs Parts and Leasing ",No1.6041-3(c),"'5521':{'combined description':'Automobile and Truck Dealers (Used Only)', 'USDA description':'Automobile and Truck Dealers (Used Only)','IRS Description':'Car and Truck Dealers (Used Only) Sales, Service, Repairs Parts and Leasing ', 'reportable':'No1.6041-3(c)'}," 5531,Automobile Supply Stores,Automobile Supply Stores,Auto and Home Supply Stores,No1.6041-3(c),"'5531':{'combined description':'Automobile Supply Stores', 'USDA description':'Automobile Supply Stores','IRS Description':'Auto and Home Supply Stores', 'reportable':'No1.6041-3(c)'}," 5532,Automotive Tire Stores,Automotive Tire Stores,Automotive Tire Stores,No1.6041-3(c),"'5532':{'combined description':'Automotive Tire Stores', 'USDA description':'Automotive Tire Stores','IRS Description':'Automotive Tire Stores', 'reportable':'No1.6041-3(c)'}," 5533,"Automotive Parts, Accessories Stores","Automotive Parts, Accessories Stores",Automotive Parts and Accessories Stores,No1.6041-3(c),"'5533':{'combined description':'Automotive Parts, Accessories Stores', 'USDA description':'Automotive Parts, Accessories Stores','IRS Description':'Automotive Parts and Accessories Stores', 'reportable':'No1.6041-3(c)'}," 5541,Service Stations ( with or without ancillary services),Service Stations ( with or without ancillary services),Service Stations ,No1.6041-3(c),"'5541':{'combined description':'Service Stations ( with or without ancillary services)', 'USDA description':'Service Stations ( with or without ancillary services)','IRS Description':'Service Stations ', 'reportable':'No1.6041-3(c)'}," 5542,Automated Fuel Dispensers,Automated Fuel Dispensers,Automated Fuel Dispensers,No1.6041-3(c),"'5542':{'combined description':'Automated Fuel Dispensers', 'USDA description':'Automated Fuel Dispensers','IRS Description':'Automated Fuel Dispensers', 'reportable':'No1.6041-3(c)'}," 5551,Boat Dealers,Boat Dealers,Boat Dealers,No1.6041-3(c),"'5551':{'combined description':'Boat Dealers', 'USDA description':'Boat Dealers','IRS Description':'Boat Dealers', 'reportable':'No1.6041-3(c)'}," 5561,"Recreational and Utility Trailers, Camp Dealers","Recreational and Utility Trailers, Camp Dealers","Motorcycle Shops, Dealers",No1.6041-3(c),"'5561':{'combined description':'Recreational and Utility Trailers, Camp Dealers', 'USDA description':'Recreational and Utility Trailers, Camp Dealers','IRS Description':'Motorcycle Shops, Dealers', 'reportable':'No1.6041-3(c)'}," 5571,Motorcycle Dealers,Motorcycle Dealers,Motorcycle Shops and Dealers,No1.6041-3(c),"'5571':{'combined description':'Motorcycle Dealers', 'USDA description':'Motorcycle Dealers','IRS Description':'Motorcycle Shops and Dealers', 'reportable':'No1.6041-3(c)'}," 5592,Motor Home Dealers,Motor Home Dealers,Motor Homes Dealers,No1.6041-3(c),"'5592':{'combined description':'Motor Home Dealers', 'USDA description':'Motor Home Dealers','IRS Description':'Motor Homes Dealers', 'reportable':'No1.6041-3(c)'}," 5598,Snowmobile Dealers,Snowmobile Dealers,Snowmobile Dealers,No1.6041-3(c),"'5598':{'combined description':'Snowmobile Dealers', 'USDA description':'Snowmobile Dealers','IRS Description':'Snowmobile Dealers', 'reportable':'No1.6041-3(c)'}," 5599,Miscellaneous Auto Dealers ,,Miscellaneous Auto Dealers ,No1.6041-3(c),"'5599':{'combined description':'Miscellaneous Auto Dealers ', 'USDA description':'','IRS Description':'Miscellaneous Auto Dealers ', 'reportable':'No1.6041-3(c)'}," 5611,Men\'s and Boy\'s Clothing and Accessories Stores,Men\'s and Boy\'s Clothing and Accessories Stores,Men\'s and Boy\'s Clothing and Accessories Stores,No1.6041-3(c),"'5611':{'combined description':'Men\'s and Boy\'s Clothing and Accessories Stores', 'USDA description':'Men\'s and Boy\'s Clothing and Accessories Stores','IRS Description':'Men\'s and Boy\'s Clothing and Accessories Stores', 'reportable':'No1.6041-3(c)'}," 5621,Women\'s Ready-to-Wear Stores,Women\'s Ready-to-Wear Stores,Women\'s Ready-To-Wear Stores,No1.6041-3(c),"'5621':{'combined description':'Women\'s Ready-to-Wear Stores', 'USDA description':'Women\'s Ready-to-Wear Stores','IRS Description':'Women\'s Ready-To-Wear Stores', 'reportable':'No1.6041-3(c)'}," 5631,Women\'s Accessory and Specialty Shops,Women\'s Accessory and Specialty Shops,Women\'s Accessory and Specialty Shops,No1.6041-3(c),"'5631':{'combined description':'Women\'s Accessory and Specialty Shops', 'USDA description':'Women\'s Accessory and Specialty Shops','IRS Description':'Women\'s Accessory and Specialty Shops', 'reportable':'No1.6041-3(c)'}," 5641,Children\'s and Infant\'s Wear Stores,Children\'s and Infant\'s Wear Stores,Children\'s and Infant\'s Wear Stores,No1.6041-3(c),"'5641':{'combined description':'Children\'s and Infant\'s Wear Stores', 'USDA description':'Children\'s and Infant\'s Wear Stores','IRS Description':'Children\'s and Infant\'s Wear Stores', 'reportable':'No1.6041-3(c)'}," 5651,Family Clothing Stores,Family Clothing Stores,Family Clothing Stores,No1.6041-3(c),"'5651':{'combined description':'Family Clothing Stores', 'USDA description':'Family Clothing Stores','IRS Description':'Family Clothing Stores', 'reportable':'No1.6041-3(c)'}," 5655,"Sports Apparel, Riding Apparel Stores","Sports Apparel, Riding Apparel Stores",Sports and Riding Apparel Stores,No1.6041-3(c),"'5655':{'combined description':'Sports Apparel, Riding Apparel Stores', 'USDA description':'Sports Apparel, Riding Apparel Stores','IRS Description':'Sports and Riding Apparel Stores', 'reportable':'No1.6041-3(c)'}," 5661,Shoe Stores,Shoe Stores,Shoe Stores,No1.6041-3(c),"'5661':{'combined description':'Shoe Stores', 'USDA description':'Shoe Stores','IRS Description':'Shoe Stores', 'reportable':'No1.6041-3(c)'}," 5681,Furriers and Fur Shops,Furriers and Fur Shops,Furriers and Fur Shops,No1.6041-3(c),"'5681':{'combined description':'Furriers and Fur Shops', 'USDA description':'Furriers and Fur Shops','IRS Description':'Furriers and Fur Shops', 'reportable':'No1.6041-3(c)'}," 5691,Men\'s and Women\'s Clothing Stores,Men\'s and Women\'s Clothing Stores,"Men\'s, Women\'s Clothing Stores",No1.6041-3(c),"'5691':{'combined description':'Men\'s and Women\'s Clothing Stores', 'USDA description':'Men\'s and Women\'s Clothing Stores','IRS Description':'Men\'s, Women\'s Clothing Stores', 'reportable':'No1.6041-3(c)'}," 5697,"Tailors, Seamstress, Mending, and Alterations","Tailors, Seamstress, Mending, and Alterations","Tailors, Alterations",Yes,"'5697':{'combined description':'Tailors, Seamstress, Mending, and Alterations', 'USDA description':'Tailors, Seamstress, Mending, and Alterations','IRS Description':'Tailors, Alterations', 'reportable':'Yes'}," 5698,Wig and Toupee Stores,Wig and Toupee Stores,Wig and Toupee Stores,No1.6041-3(c),"'5698':{'combined description':'Wig and Toupee Stores', 'USDA description':'Wig and Toupee Stores','IRS Description':'Wig and Toupee Stores', 'reportable':'No1.6041-3(c)'}," 5699,Miscellaneous Apparel and Accessory Shops,Miscellaneous Apparel and Accessory Shops,Miscellaneous Apparel and Accessory Shops,No1.6041-3(c),"'5699':{'combined description':'Miscellaneous Apparel and Accessory Shops', 'USDA description':'Miscellaneous Apparel and Accessory Shops','IRS Description':'Miscellaneous Apparel and Accessory Shops', 'reportable':'No1.6041-3(c)'}," 5712,"Furniture, Home Furnishings, and Equipment Stores, ExceptAppliances","Furniture, Home Furnishings, and Equipment Stores, ExceptAppliances","Furniture, Home Furnishings, and Equipment Stores, Except Appliances",No1.6041-3(c),"'5712':{'combined description':'Furniture, Home Furnishings, and Equipment Stores, ExceptAppliances', 'USDA description':'Furniture, Home Furnishings, and Equipment Stores, ExceptAppliances','IRS Description':'Furniture, Home Furnishings, and Equipment Stores, Except Appliances', 'reportable':'No1.6041-3(c)'}," 5713,Floor Covering Stores,Floor Covering Stores,Floor Covering Stores,No1.6041-3(c),"'5713':{'combined description':'Floor Covering Stores', 'USDA description':'Floor Covering Stores','IRS Description':'Floor Covering Stores', 'reportable':'No1.6041-3(c)'}," 5714,"Drapery, Window Covering and Upholstery Stores","Drapery, Window Covering and Upholstery Stores","Drapery, Window Covering, and Upholstery Stores",No1.6041-3(c),"'5714':{'combined description':'Drapery, Window Covering and Upholstery Stores', 'USDA description':'Drapery, Window Covering and Upholstery Stores','IRS Description':'Drapery, Window Covering, and Upholstery Stores', 'reportable':'No1.6041-3(c)'}," 5718,"Fireplace, Fireplace Screens, and Accessories Stores","Fireplace, Fireplace Screens, and Accessories Stores","Fireplace, Fireplace Screens, and Accessories Stores",No1.6041-3(c),"'5718':{'combined description':'Fireplace, Fireplace Screens, and Accessories Stores', 'USDA description':'Fireplace, Fireplace Screens, and Accessories Stores','IRS Description':'Fireplace, Fireplace Screens, and Accessories Stores', 'reportable':'No1.6041-3(c)'}," 5719,Miscellaneous Home Furnishing Specialty Stores,Miscellaneous Home Furnishing Specialty Stores,Miscellaneous Home Furnishing Specialty Stores,No1.6041-3(c),"'5719':{'combined description':'Miscellaneous Home Furnishing Specialty Stores', 'USDA description':'Miscellaneous Home Furnishing Specialty Stores','IRS Description':'Miscellaneous Home Furnishing Specialty Stores', 'reportable':'No1.6041-3(c)'}," 5722,Household Appliance Stores,Household Appliance Stores,Household Appliance Stores,No1.6041-3(c),"'5722':{'combined description':'Household Appliance Stores', 'USDA description':'Household Appliance Stores','IRS Description':'Household Appliance Stores', 'reportable':'No1.6041-3(c)'}," 5732,Electronic Sales,Electronic Sales,Electronics Stores,No1.6041-3(c),"'5732':{'combined description':'Electronic Sales', 'USDA description':'Electronic Sales','IRS Description':'Electronics Stores', 'reportable':'No1.6041-3(c)'}," 5733,"Music Stores, Musical Instruments, Piano Sheet Music","Music Stores, Musical Instruments, Piano Sheet Music","Music Stores-Musical Instruments, Pianos, and Sheet Music",No1.6041-3(c),"'5733':{'combined description':'Music Stores, Musical Instruments, Piano Sheet Music', 'USDA description':'Music Stores, Musical Instruments, Piano Sheet Music','IRS Description':'Music Stores-Musical Instruments, Pianos, and Sheet Music', 'reportable':'No1.6041-3(c)'}," 5734,Computer Software Stores,Computer Software Stores,Computer Software Stores,No1.6041-3(c),"'5734':{'combined description':'Computer Software Stores', 'USDA description':'Computer Software Stores','IRS Description':'Computer Software Stores', 'reportable':'No1.6041-3(c)'}," 5735,Record Shops,Record Shops,Record Stores,No1.6041-3(c),"'5735':{'combined description':'Record Shops', 'USDA description':'Record Shops','IRS Description':'Record Stores', 'reportable':'No1.6041-3(c)'}," 5811,Caterers,Caterers,Caterers,Yes,"'5811':{'combined description':'Caterers', 'USDA description':'Caterers','IRS Description':'Caterers', 'reportable':'Yes'}," 5812,Eating places and Restaurants,Eating places and Restaurants,"Eating Places, Restaurants",No1.6041-3(c),"'5812':{'combined description':'Eating places and Restaurants', 'USDA description':'Eating places and Restaurants','IRS Description':'Eating Places, Restaurants', 'reportable':'No1.6041-3(c)'}," 5813,"Drinking Places (Alcoholic Beverages), Bars, Taverns, Cocktail lounges, Nightclubs and Discotheques","Drinking Places (Alcoholic Beverages), Bars, Taverns, Cocktail lounges, Nightclubs and Discotheques",Drinking Places,No1.6041-3(c),"'5813':{'combined description':'Drinking Places (Alcoholic Beverages), Bars, Taverns, Cocktail lounges, Nightclubs and Discotheques', 'USDA description':'Drinking Places (Alcoholic Beverages), Bars, Taverns, Cocktail lounges, Nightclubs and Discotheques','IRS Description':'Drinking Places', 'reportable':'No1.6041-3(c)'}," 5814,Fast Food Restaurants,Fast Food Restaurants,Fast Food Restaurants,No1.6041-3(c),"'5814':{'combined description':'Fast Food Restaurants', 'USDA description':'Fast Food Restaurants','IRS Description':'Fast Food Restaurants', 'reportable':'No1.6041-3(c)'}," 5832,"Antique Shops & Sales, Repairs, and Restoration Services","Antique Shops & Sales, Repairs, and Restoration Services",,,"'5832':{'combined description':'Antique Shops & Sales, Repairs, and Restoration Services', 'USDA description':'Antique Shops & Sales, Repairs, and Restoration Services','IRS Description':'', 'reportable':''}," 5912,Drug Stores and Pharmacies,Drug Stores and Pharmacies,Drug Stores and Pharmacies,No1.6041-3(c),"'5912':{'combined description':'Drug Stores and Pharmacies', 'USDA description':'Drug Stores and Pharmacies','IRS Description':'Drug Stores and Pharmacies', 'reportable':'No1.6041-3(c)'}," 5921,"Package Stores & Beer, Wine, and Liquor","Package Stores & Beer, Wine, and Liquor","Package Stores-Beer, Wine, and Liquor",No1.6041-3(c),"'5921':{'combined description':'Package Stores & Beer, Wine, and Liquor', 'USDA description':'Package Stores & Beer, Wine, and Liquor','IRS Description':'Package Stores-Beer, Wine, and Liquor', 'reportable':'No1.6041-3(c)'}," 5931,Used Merchandise and Secondhand Stores,Used Merchandise and Secondhand Stores,Used Merchandise and Secondhand Stores,No1.6041-3(c),"'5931':{'combined description':'Used Merchandise and Secondhand Stores', 'USDA description':'Used Merchandise and Secondhand Stores','IRS Description':'Used Merchandise and Secondhand Stores', 'reportable':'No1.6041-3(c)'}," 5932,Antique Shops,,Antique Shops,No1.6041-3(c),"'5932':{'combined description':'Antique Shops', 'USDA description':'','IRS Description':'Antique Shops', 'reportable':'No1.6041-3(c)'}," 5933,Pawn Shops and Salvage Yards,Pawn Shops and Salvage Yards,Pawn Shops,No1.6041-3(c),"'5933':{'combined description':'Pawn Shops and Salvage Yards', 'USDA description':'Pawn Shops and Salvage Yards','IRS Description':'Pawn Shops', 'reportable':'No1.6041-3(c)'}," 5935,Wrecking and Salvage Yards,Wrecking and Salvage Yards,Wrecking and Salvage Yards,Yes,"'5935':{'combined description':'Wrecking and Salvage Yards', 'USDA description':'Wrecking and Salvage Yards','IRS Description':'Wrecking and Salvage Yards', 'reportable':'Yes'}," 5937,Antique Reproductions,Antique Reproductions,Antique Reproductions,No1.6041-3(c),"'5937':{'combined description':'Antique Reproductions', 'USDA description':'Antique Reproductions','IRS Description':'Antique Reproductions', 'reportable':'No1.6041-3(c)'}," 5940,Bicycle Shops & Sales and Service,Bicycle Shops & Sales and Service,Bicycle Shops,No1.6041-3(c),"'5940':{'combined description':'Bicycle Shops & Sales and Service', 'USDA description':'Bicycle Shops & Sales and Service','IRS Description':'Bicycle Shops', 'reportable':'No1.6041-3(c)'}," 5941,Sporting Goods Stores,Sporting Goods Stores,Sporting Goods Stores,No1.6041-3(c),"'5941':{'combined description':'Sporting Goods Stores', 'USDA description':'Sporting Goods Stores','IRS Description':'Sporting Goods Stores', 'reportable':'No1.6041-3(c)'}," 5942,Book Stores,Book Stores,Book Stores,No1.6041-3(c),"'5942':{'combined description':'Book Stores', 'USDA description':'Book Stores','IRS Description':'Book Stores', 'reportable':'No1.6041-3(c)'}," 5943,"Stationery Stores, Office and School Supply Stores","Stationery Stores, Office and School Supply Stores","Stationery Stores, Office, and School Supply Stores",No1.6041-3(c),"'5943':{'combined description':'Stationery Stores, Office and School Supply Stores', 'USDA description':'Stationery Stores, Office and School Supply Stores','IRS Description':'Stationery Stores, Office, and School Supply Stores', 'reportable':'No1.6041-3(c)'}," 5944,"Watch, Clock, Jewelry, and Silverware Stores","Watch, Clock, Jewelry, and Silverware Stores","Jewelry Stores, Watches, Clocks, and Silverware Stores",No1.6041-3(c),"'5944':{'combined description':'Watch, Clock, Jewelry, and Silverware Stores', 'USDA description':'Watch, Clock, Jewelry, and Silverware Stores','IRS Description':'Jewelry Stores, Watches, Clocks, and Silverware Stores', 'reportable':'No1.6041-3(c)'}," 5945,"Hobby, Toy, and Game Shops","Hobby, Toy, and Game Shops","Hobby, Toy, and Game Shops",No1.6041-3(c),"'5945':{'combined description':'Hobby, Toy, and Game Shops', 'USDA description':'Hobby, Toy, and Game Shops','IRS Description':'Hobby, Toy, and Game Shops', 'reportable':'No1.6041-3(c)'}," 5946,Camera and Photographic Supply Stores,Camera and Photographic Supply Stores,Camera and Photographic Supply Stores,No1.6041-3(c),"'5946':{'combined description':'Camera and Photographic Supply Stores', 'USDA description':'Camera and Photographic Supply Stores','IRS Description':'Camera and Photographic Supply Stores', 'reportable':'No1.6041-3(c)'}," 5947,"Card Shops, Gift, Novelty, and Souvenir Shops","Card Shops, Gift, Novelty, and Souvenir Shops","Gift, Card, Novelty, and Souvenir Shops",No1.6041-3(c),"'5947':{'combined description':'Card Shops, Gift, Novelty, and Souvenir Shops', 'USDA description':'Card Shops, Gift, Novelty, and Souvenir Shops','IRS Description':'Gift, Card, Novelty, and Souvenir Shops', 'reportable':'No1.6041-3(c)'}," 5948,Leather Foods Stores,Leather Foods Stores,Luggage and Leather Goods Stores,No1.6041-3(c),"'5948':{'combined description':'Leather Foods Stores', 'USDA description':'Leather Foods Stores','IRS Description':'Luggage and Leather Goods Stores', 'reportable':'No1.6041-3(c)'}," 5949,"Sewing, Needle, Fabric, and Price Goods Stores","Sewing, Needle, Fabric, and Price Goods Stores","Sewing, Needlework, Fabric, and Piece Goods Stores",No1.6041-3(c),"'5949':{'combined description':'Sewing, Needle, Fabric, and Price Goods Stores', 'USDA description':'Sewing, Needle, Fabric, and Price Goods Stores','IRS Description':'Sewing, Needlework, Fabric, and Piece Goods Stores', 'reportable':'No1.6041-3(c)'}," 5950,Glassware/Crystal Stores,Glassware/Crystal Stores,"Glassware, Crystal Stores",No1.6041-3(c),"'5950':{'combined description':'Glassware/Crystal Stores', 'USDA description':'Glassware/Crystal Stores','IRS Description':'Glassware, Crystal Stores', 'reportable':'No1.6041-3(c)'}," 5960,Direct Marketing- Insurance Service,Direct Marketing- Insurance Service,Direct Marketing - Insurance Services,Yes,"'5960':{'combined description':'Direct Marketing- Insurance Service', 'USDA description':'Direct Marketing- Insurance Service','IRS Description':'Direct Marketing - Insurance Services', 'reportable':'Yes'}," 5961,"Mail Order Houses Including Catalog Order Stores, Book/Record Clubs (No longer permitted for U.S. original presentments)","Mail Order Houses Including Catalog Order Stores, Book/Record Clubs (No longer permitted for U.S. original presentments)",,,"'5961':{'combined description':'Mail Order Houses Including Catalog Order Stores, Book/Record Clubs (No longer permitted for U.S. original presentments)', 'USDA description':'Mail Order Houses Including Catalog Order Stores, Book/Record Clubs (No longer permitted for U.S. original presentments)','IRS Description':'', 'reportable':''}," 5962,Direct Marketing & Travel Related Arrangements Services,Direct Marketing & Travel Related Arrangements Services,Direct Marketing - Travel,Yes,"'5962':{'combined description':'Direct Marketing & Travel Related Arrangements Services', 'USDA description':'Direct Marketing & Travel Related Arrangements Services','IRS Description':'Direct Marketing - Travel', 'reportable':'Yes'}," 5963,Door-to-Door Sales,Door-to-Door Sales,Door-To-Door Sales,No1.6041-3(c),"'5963':{'combined description':'Door-to-Door Sales', 'USDA description':'Door-to-Door Sales','IRS Description':'Door-To-Door Sales', 'reportable':'No1.6041-3(c)'}," 5964,Direct Marketing & Catalog Merchant,Direct Marketing & Catalog Merchant,Direct Marketing - Catalog Merchant,No1.6041-3(c),"'5964':{'combined description':'Direct Marketing & Catalog Merchant', 'USDA description':'Direct Marketing & Catalog Merchant','IRS Description':'Direct Marketing - Catalog Merchant', 'reportable':'No1.6041-3(c)'}," 5965,Direct Marketing & Catalog and Catalog and Retail Merchant,Direct Marketing & Catalog and Catalog and Retail Merchant,Direct Marketing - Combination Catalog and Retail Merchant,No1.6041-3(c),"'5965':{'combined description':'Direct Marketing & Catalog and Catalog and Retail Merchant', 'USDA description':'Direct Marketing & Catalog and Catalog and Retail Merchant','IRS Description':'Direct Marketing - Combination Catalog and Retail Merchant', 'reportable':'No1.6041-3(c)'}," 5966,Direct Marketing- Outbound Telemarketing Merchant,Direct Marketing- Outbound Telemarketing Merchant,Direct Marketing - Outbound Tele,No1.6041-3(c),"'5966':{'combined description':'Direct Marketing- Outbound Telemarketing Merchant', 'USDA description':'Direct Marketing- Outbound Telemarketing Merchant','IRS Description':'Direct Marketing - Outbound Tele', 'reportable':'No1.6041-3(c)'}," 5967,Direct Marketing & Inbound Teleservices Merchant,Direct Marketing & Inbound Teleservices Merchant,Direct Marketing - Inbound Tele,No1.6041-3(c),"'5967':{'combined description':'Direct Marketing & Inbound Teleservices Merchant', 'USDA description':'Direct Marketing & Inbound Teleservices Merchant','IRS Description':'Direct Marketing - Inbound Tele', 'reportable':'No1.6041-3(c)'}," 5968,Direct Marketing & Continuity/Subscription Merchant,Direct Marketing & Continuity/Subscription Merchant,Direct Marketing - Subscription,No1.6041-3(c),"'5968':{'combined description':'Direct Marketing & Continuity/Subscription Merchant', 'USDA description':'Direct Marketing & Continuity/Subscription Merchant','IRS Description':'Direct Marketing - Subscription', 'reportable':'No1.6041-3(c)'}," 5969,Direct Marketing & Not Elsewhere Classified,Direct Marketing & Not Elsewhere Classified,Direct Marketing - Other ,No1.6041-3(c),"'5969':{'combined description':'Direct Marketing & Not Elsewhere Classified', 'USDA description':'Direct Marketing & Not Elsewhere Classified','IRS Description':'Direct Marketing - Other ', 'reportable':'No1.6041-3(c)'}," 5970,Artist\'s Supply and Craft Shops,Artist\'s Supply and Craft Shops,Artist\'s Supply and Craft Shops,No1.6041-3(c),"'5970':{'combined description':'Artist\'s Supply and Craft Shops', 'USDA description':'Artist\'s Supply and Craft Shops','IRS Description':'Artist\'s Supply and Craft Shops', 'reportable':'No1.6041-3(c)'}," 5971,Art Dealers and Galleries,Art Dealers and Galleries,Art Dealers and Galleries,No1.6041-3(c),"'5971':{'combined description':'Art Dealers and Galleries', 'USDA description':'Art Dealers and Galleries','IRS Description':'Art Dealers and Galleries', 'reportable':'No1.6041-3(c)'}," 5972,Stamp and Coin Stores & Philatelic and Numismatic Supplies,Stamp and Coin Stores & Philatelic and Numismatic Supplies,Stamp and Coin Stores,No1.6041-3(c),"'5972':{'combined description':'Stamp and Coin Stores & Philatelic and Numismatic Supplies', 'USDA description':'Stamp and Coin Stores & Philatelic and Numismatic Supplies','IRS Description':'Stamp and Coin Stores', 'reportable':'No1.6041-3(c)'}," 5973,Religious Goods Stores,Religious Goods Stores,Religious Goods Stores,No1.6041-3(c),"'5973':{'combined description':'Religious Goods Stores', 'USDA description':'Religious Goods Stores','IRS Description':'Religious Goods Stores', 'reportable':'No1.6041-3(c)'}," 5975,"Hearing Aids & Sales, Service, and Supply Stores","Hearing Aids & Sales, Service, and Supply Stores",Hearing Aids Sales and Supplies,No1.6041-3(c),"'5975':{'combined description':'Hearing Aids & Sales, Service, and Supply Stores', 'USDA description':'Hearing Aids & Sales, Service, and Supply Stores','IRS Description':'Hearing Aids Sales and Supplies', 'reportable':'No1.6041-3(c)'}," 5976,Orthopedic Goods Prosthetic Devices,Orthopedic Goods Prosthetic Devices,Orthopedic Goods - Prosthetic Devices,No1.6041-3(c),"'5976':{'combined description':'Orthopedic Goods Prosthetic Devices', 'USDA description':'Orthopedic Goods Prosthetic Devices','IRS Description':'Orthopedic Goods - Prosthetic Devices', 'reportable':'No1.6041-3(c)'}," 5977,Cosmetic Stores,Cosmetic Stores,Cosmetic Stores,No1.6041-3(c),"'5977':{'combined description':'Cosmetic Stores', 'USDA description':'Cosmetic Stores','IRS Description':'Cosmetic Stores', 'reportable':'No1.6041-3(c)'}," 5978,"Typewriter Stores & Sales, Rental, Service","Typewriter Stores & Sales, Rental, Service",Typewriter Stores,No1.6041-3(c),"'5978':{'combined description':'Typewriter Stores & Sales, Rental, Service', 'USDA description':'Typewriter Stores & Sales, Rental, Service','IRS Description':'Typewriter Stores', 'reportable':'No1.6041-3(c)'}," 5983,"Fuel & Fuel Oil, Wood, Coal, Liquefied Petroleum","Fuel & Fuel Oil, Wood, Coal, Liquefied Petroleum",Fuel Dealers (Non Automotive),No1.6041-3(c),"'5983':{'combined description':'Fuel & Fuel Oil, Wood, Coal, Liquefied Petroleum', 'USDA description':'Fuel & Fuel Oil, Wood, Coal, Liquefied Petroleum','IRS Description':'Fuel Dealers (Non Automotive)', 'reportable':'No1.6041-3(c)'}," 5992,Florists,Florists,Florists,No1.6041-3(c),"'5992':{'combined description':'Florists', 'USDA description':'Florists','IRS Description':'Florists', 'reportable':'No1.6041-3(c)'}," 5993,Cigar Stores and Stands,Cigar Stores and Stands,Cigar Stores and Stands,No1.6041-3(c),"'5993':{'combined description':'Cigar Stores and Stands', 'USDA description':'Cigar Stores and Stands','IRS Description':'Cigar Stores and Stands', 'reportable':'No1.6041-3(c)'}," 5994,News Dealers and Newsstands,News Dealers and Newsstands,News Dealers and Newsstands,No1.6041-3(c),"'5994':{'combined description':'News Dealers and Newsstands', 'USDA description':'News Dealers and Newsstands','IRS Description':'News Dealers and Newsstands', 'reportable':'No1.6041-3(c)'}," 5995,"Pet Shops, Pet Foods, and Supplies Stores","Pet Shops, Pet Foods, and Supplies Stores","Pet Shops, Pet Food, and Supplies",No1.6041-3(c),"'5995':{'combined description':'Pet Shops, Pet Foods, and Supplies Stores', 'USDA description':'Pet Shops, Pet Foods, and Supplies Stores','IRS Description':'Pet Shops, Pet Food, and Supplies', 'reportable':'No1.6041-3(c)'}," 5996,"Swimming Pools & Sales, Service, and Supplies","Swimming Pools & Sales, Service, and Supplies",Swimming Pools Sales,No1.6041-3(c),"'5996':{'combined description':'Swimming Pools & Sales, Service, and Supplies', 'USDA description':'Swimming Pools & Sales, Service, and Supplies','IRS Description':'Swimming Pools Sales', 'reportable':'No1.6041-3(c)'}," 5997,Electric Razor Stores & Sales and Service,Electric Razor Stores & Sales and Service,Electric Razor Stores,No1.6041-3(c),"'5997':{'combined description':'Electric Razor Stores & Sales and Service', 'USDA description':'Electric Razor Stores & Sales and Service','IRS Description':'Electric Razor Stores', 'reportable':'No1.6041-3(c)'}," 5998,Tent and Awning Shops,Tent and Awning Shops,Tent and Awning Shops,No1.6041-3(c),"'5998':{'combined description':'Tent and Awning Shops', 'USDA description':'Tent and Awning Shops','IRS Description':'Tent and Awning Shops', 'reportable':'No1.6041-3(c)'}," 5999,Miscellaneous and Specialty Retail Stores,Miscellaneous and Specialty Retail Stores,Miscellaneous Specialty Retail,No1.6041-3(c),"'5999':{'combined description':'Miscellaneous and Specialty Retail Stores', 'USDA description':'Miscellaneous and Specialty Retail Stores','IRS Description':'Miscellaneous Specialty Retail', 'reportable':'No1.6041-3(c)'}," 6010,Financial Institutions & Manual Cash Disbursements,Financial Institutions & Manual Cash Disbursements,Manual Cash Disburse,No1.6041-3(c),"'6010':{'combined description':'Financial Institutions & Manual Cash Disbursements', 'USDA description':'Financial Institutions & Manual Cash Disbursements','IRS Description':'Manual Cash Disburse', 'reportable':'No1.6041-3(c)'}," 6011,Financial Institutions & Manual Cash Disbursements,Financial Institutions & Manual Cash Disbursements,Automated Cash Disburse,No1.6041-3(c),"'6011':{'combined description':'Financial Institutions & Manual Cash Disbursements', 'USDA description':'Financial Institutions & Manual Cash Disbursements','IRS Description':'Automated Cash Disburse', 'reportable':'No1.6041-3(c)'}," 6012,Financial Institutions & Merchandise and Services,Financial Institutions & Merchandise and Services,Financial Institutions,Yes,"'6012':{'combined description':'Financial Institutions & Merchandise and Services', 'USDA description':'Financial Institutions & Merchandise and Services','IRS Description':'Financial Institutions', 'reportable':'Yes'}," 6051,"Non-Financial Institutions & Foreign Currency, Money Orders (not wire transfer) and Travelers Cheques","Non-Financial Institutions & Foreign Currency, Money Orders (not wire transfer) and Travelers Cheques","Non-FI, Money Orders",No1.6041-3(c),"'6051':{'combined description':'Non-Financial Institutions & Foreign Currency, Money Orders (not wire transfer) and Travelers Cheques', 'USDA description':'Non-Financial Institutions & Foreign Currency, Money Orders (not wire transfer) and Travelers Cheques','IRS Description':'Non-FI, Money Orders', 'reportable':'No1.6041-3(c)'}," 6211,Security Brokers/Dealers,Security Brokers/Dealers,Security Brokers/Dealers,Yes,"'6211':{'combined description':'Security Brokers/Dealers', 'USDA description':'Security Brokers/Dealers','IRS Description':'Security Brokers/Dealers', 'reportable':'Yes'}," 6300,"Insurance Sales, Underwriting, and Premiums","Insurance Sales, Underwriting, and Premiums","Insurance Underwriting, Premiums",No1.6041-3(c),"'6300':{'combined description':'Insurance Sales, Underwriting, and Premiums', 'USDA description':'Insurance Sales, Underwriting, and Premiums','IRS Description':'Insurance Underwriting, Premiums', 'reportable':'No1.6041-3(c)'}," 6381,"Insurance Premiums, (no longer valid for first presentment work)","Insurance Premiums, (no longer valid for first presentment work)",,,"'6381':{'combined description':'Insurance Premiums, (no longer valid for first presentment work)', 'USDA description':'Insurance Premiums, (no longer valid for first presentment work)','IRS Description':'', 'reportable':''}," 6399,"Insurance, Not Elsewhere Classified ( no longer valid forfirst presentment work)","Insurance, Not Elsewhere Classified ( no longer valid forfirst presentment work)",Insurance - Default,No1.6041-3(c),"'6399':{'combined description':'Insurance, Not Elsewhere Classified ( no longer valid forfirst presentment work)', 'USDA description':'Insurance, Not Elsewhere Classified ( no longer valid forfirst presentment work)','IRS Description':'Insurance - Default', 'reportable':'No1.6041-3(c)'}," 6513,Real Estate Agents and Managers - Rentals,,Real Estate Agents and Managers - Rentals,Yes,"'6513':{'combined description':'Real Estate Agents and Managers - Rentals', 'USDA description':'','IRS Description':'Real Estate Agents and Managers - Rentals', 'reportable':'Yes'}," 7011,"Lodging & Hotels, Motels, Resorts, Central Reservation Services (not elsewhere classified)","Lodging & Hotels, Motels, Resorts, Central Reservation Services (not elsewhere classified)","Hotels, Motels, and Resorts",Yes,"'7011':{'combined description':'Lodging & Hotels, Motels, Resorts, Central Reservation Services (not elsewhere classified)', 'USDA description':'Lodging & Hotels, Motels, Resorts, Central Reservation Services (not elsewhere classified)','IRS Description':'Hotels, Motels, and Resorts', 'reportable':'Yes'}," 7012,Timeshares,Timeshares,Timeshares,Yes,"'7012':{'combined description':'Timeshares', 'USDA description':'Timeshares','IRS Description':'Timeshares', 'reportable':'Yes'}," 7032,Sporting and Recreational Camps,Sporting and Recreational Camps,Sporting/Recreation Camps,Yes,"'7032':{'combined description':'Sporting and Recreational Camps', 'USDA description':'Sporting and Recreational Camps','IRS Description':'Sporting/Recreation Camps', 'reportable':'Yes'}," 7033,Trailer Parks and Camp Grounds,Trailer Parks and Camp Grounds,"Trailer Parks, Campgrounds",Yes,"'7033':{'combined description':'Trailer Parks and Camp Grounds', 'USDA description':'Trailer Parks and Camp Grounds','IRS Description':'Trailer Parks, Campgrounds', 'reportable':'Yes'}," 7210,"Laundry, Cleaning, and Garment Services","Laundry, Cleaning, and Garment Services","Laundry, Cleaning Services",Yes,"'7210':{'combined description':'Laundry, Cleaning, and Garment Services', 'USDA description':'Laundry, Cleaning, and Garment Services','IRS Description':'Laundry, Cleaning Services', 'reportable':'Yes'}," 7211,Laundry & Family and Commercial,Laundry & Family and Commercial,Laundries ,Yes,"'7211':{'combined description':'Laundry & Family and Commercial', 'USDA description':'Laundry & Family and Commercial','IRS Description':'Laundries ', 'reportable':'Yes'}," 7216,Dry Cleaners,Dry Cleaners,Dry Cleaners,Yes,"'7216':{'combined description':'Dry Cleaners', 'USDA description':'Dry Cleaners','IRS Description':'Dry Cleaners', 'reportable':'Yes'}," 7217,Carpet and Upholstery Cleaning,Carpet and Upholstery Cleaning,Carpet/Upholstery Cleaning,Yes,"'7217':{'combined description':'Carpet and Upholstery Cleaning', 'USDA description':'Carpet and Upholstery Cleaning','IRS Description':'Carpet/Upholstery Cleaning', 'reportable':'Yes'}," 7221,Photographic Studios,Photographic Studios,Photographic Studios,Yes,"'7221':{'combined description':'Photographic Studios', 'USDA description':'Photographic Studios','IRS Description':'Photographic Studios', 'reportable':'Yes'}," 7230,Barber and Beauty Shops,Barber and Beauty Shops,Barber and Beauty Shops,Yes,"'7230':{'combined description':'Barber and Beauty Shops', 'USDA description':'Barber and Beauty Shops','IRS Description':'Barber and Beauty Shops', 'reportable':'Yes'}," 7251,"Shop Repair Shops and Shoe Shine Parlors, and Hat Cleaning Shops","Shop Repair Shops and Shoe Shine Parlors, and Hat Cleaning Shops",Shoe Repair/Hat Cleaning,Yes,"'7251':{'combined description':'Shop Repair Shops and Shoe Shine Parlors, and Hat Cleaning Shops', 'USDA description':'Shop Repair Shops and Shoe Shine Parlors, and Hat Cleaning Shops','IRS Description':'Shoe Repair/Hat Cleaning', 'reportable':'Yes'}," 7261,Funeral Service and Crematories,Funeral Service and Crematories,"Funeral Services, Crematories",Yes,"'7261':{'combined description':'Funeral Service and Crematories', 'USDA description':'Funeral Service and Crematories','IRS Description':'Funeral Services, Crematories', 'reportable':'Yes'}," 7273,Dating and Escort Services,Dating and Escort Services,Dating/Escort Services,Yes,"'7273':{'combined description':'Dating and Escort Services', 'USDA description':'Dating and Escort Services','IRS Description':'Dating/Escort Services', 'reportable':'Yes'}," 7276,Tax Preparation Service,Tax Preparation Service,Tax Preparation Services,Yes,"'7276':{'combined description':'Tax Preparation Service', 'USDA description':'Tax Preparation Service','IRS Description':'Tax Preparation Services', 'reportable':'Yes'}," 7277,"Counseling Service & Debt, Marriage, Personal","Counseling Service & Debt, Marriage, Personal",Counseling Services,Yes,"'7277':{'combined description':'Counseling Service & Debt, Marriage, Personal', 'USDA description':'Counseling Service & Debt, Marriage, Personal','IRS Description':'Counseling Services', 'reportable':'Yes'}," 7278,"Buying/Shopping Services, Clubs","Buying/Shopping Services, Clubs",Buying/Shopping Services,Yes,"'7278':{'combined description':'Buying/Shopping Services, Clubs', 'USDA description':'Buying/Shopping Services, Clubs','IRS Description':'Buying/Shopping Services', 'reportable':'Yes'}," 7296,"Clothing Rental & Costumes, Formal Wear, Uniforms","Clothing Rental & Costumes, Formal Wear, Uniforms",Clothing Rental ,Yes,"'7296':{'combined description':'Clothing Rental & Costumes, Formal Wear, Uniforms', 'USDA description':'Clothing Rental & Costumes, Formal Wear, Uniforms','IRS Description':'Clothing Rental ', 'reportable':'Yes'}," 7297,Massage Parlors,Massage Parlors,Massage Parlors,Yes,"'7297':{'combined description':'Massage Parlors', 'USDA description':'Massage Parlors','IRS Description':'Massage Parlors', 'reportable':'Yes'}," 7298,Health and Beauty Shops,Health and Beauty Shops,Health and Beauty Spas,Yes,"'7298':{'combined description':'Health and Beauty Shops', 'USDA description':'Health and Beauty Shops','IRS Description':'Health and Beauty Spas', 'reportable':'Yes'}," 7299,Miscellaneous Personal Services ( not elsewhere classifies),Miscellaneous Personal Services ( not elsewhere classifies),Miscellaneous General Services,Yes,"'7299':{'combined description':'Miscellaneous Personal Services ( not elsewhere classifies)', 'USDA description':'Miscellaneous Personal Services ( not elsewhere classifies)','IRS Description':'Miscellaneous General Services', 'reportable':'Yes'}," 7311,Advertising Services,Advertising Services,Advertising Services,Yes,"'7311':{'combined description':'Advertising Services', 'USDA description':'Advertising Services','IRS Description':'Advertising Services', 'reportable':'Yes'}," 7321,Consumer Credit Reporting Agencies,Consumer Credit Reporting Agencies,Credit Reporting Agencies,Yes,"'7321':{'combined description':'Consumer Credit Reporting Agencies', 'USDA description':'Consumer Credit Reporting Agencies','IRS Description':'Credit Reporting Agencies', 'reportable':'Yes'}," 7332,Blueprinting and Photocopying Services,Blueprinting and Photocopying Services,,,"'7332':{'combined description':'Blueprinting and Photocopying Services', 'USDA description':'Blueprinting and Photocopying Services','IRS Description':'', 'reportable':''}," 7333,"Commercial Photography, Art and Graphics","Commercial Photography, Art and Graphics","Commercial Photography, Art and Graphics",Yes,"'7333':{'combined description':'Commercial Photography, Art and Graphics', 'USDA description':'Commercial Photography, Art and Graphics','IRS Description':'Commercial Photography, Art and Graphics', 'reportable':'Yes'}," 7338,"Quick Copy, Reproduction and Blueprinting Services","Quick Copy, Reproduction and Blueprinting Services","Quick Copy, Repro, and Blueprint",Yes,"'7338':{'combined description':'Quick Copy, Reproduction and Blueprinting Services', 'USDA description':'Quick Copy, Reproduction and Blueprinting Services','IRS Description':'Quick Copy, Repro, and Blueprint', 'reportable':'Yes'}," 7339,Stenographic and Secretarial Support Services,Stenographic and Secretarial Support Services,Secretarial Support Services,Yes,"'7339':{'combined description':'Stenographic and Secretarial Support Services', 'USDA description':'Stenographic and Secretarial Support Services','IRS Description':'Secretarial Support Services', 'reportable':'Yes'}," 7342,Exterminating and Disinfecting Services,Exterminating and Disinfecting Services,Exterminating Services,Yes,"'7342':{'combined description':'Exterminating and Disinfecting Services', 'USDA description':'Exterminating and Disinfecting Services','IRS Description':'Exterminating Services', 'reportable':'Yes'}," 7349,"Cleaning and Maintenance, Janitorial Services","Cleaning and Maintenance, Janitorial Services",Cleaning and Maintenance,Yes,"'7349':{'combined description':'Cleaning and Maintenance, Janitorial Services', 'USDA description':'Cleaning and Maintenance, Janitorial Services','IRS Description':'Cleaning and Maintenance', 'reportable':'Yes'}," 7361,"Employment Agencies, Temporary Help Services","Employment Agencies, Temporary Help Services",Employment/Temp Agencies,Yes,"'7361':{'combined description':'Employment Agencies, Temporary Help Services', 'USDA description':'Employment Agencies, Temporary Help Services','IRS Description':'Employment/Temp Agencies', 'reportable':'Yes'}," 7372,"Computer Programming, Integrated Systems Design and Data Processing Services","Computer Programming, Integrated Systems Design and Data Processing Services",Computer Programming,Yes,"'7372':{'combined description':'Computer Programming, Integrated Systems Design and Data Processing Services', 'USDA description':'Computer Programming, Integrated Systems Design and Data Processing Services','IRS Description':'Computer Programming', 'reportable':'Yes'}," 7375,Information Retrieval Services,Information Retrieval Services,Information Retrieval Services,Yes,"'7375':{'combined description':'Information Retrieval Services', 'USDA description':'Information Retrieval Services','IRS Description':'Information Retrieval Services', 'reportable':'Yes'}," 7379,"Computer Maintenance and Repair Services, Not Elsewhere Classified","Computer Maintenance and Repair Services, Not Elsewhere Classified",Computer Repair,Yes,"'7379':{'combined description':'Computer Maintenance and Repair Services, Not Elsewhere Classified', 'USDA description':'Computer Maintenance and Repair Services, Not Elsewhere Classified','IRS Description':'Computer Repair', 'reportable':'Yes'}," 7392,"Management, Consulting, and Public Relations Services","Management, Consulting, and Public Relations Services","Consulting, Public Relations",Yes,"'7392':{'combined description':'Management, Consulting, and Public Relations Services', 'USDA description':'Management, Consulting, and Public Relations Services','IRS Description':'Consulting, Public Relations', 'reportable':'Yes'}," 7393,Protective and Security Services & Including Armored Carsand Guard Dogs,Protective and Security Services & Including Armored Carsand Guard Dogs,Detective Agencies,Yes,"'7393':{'combined description':'Protective and Security Services & Including Armored Carsand Guard Dogs', 'USDA description':'Protective and Security Services & Including Armored Carsand Guard Dogs','IRS Description':'Detective Agencies', 'reportable':'Yes'}," 7394,"Equipment Rental and Leasing Services, Tool Rental, Furniture Rental, and Appliance Rental","Equipment Rental and Leasing Services, Tool Rental, Furniture Rental, and Appliance Rental",Equipment Rental ,Yes,"'7394':{'combined description':'Equipment Rental and Leasing Services, Tool Rental, Furniture Rental, and Appliance Rental', 'USDA description':'Equipment Rental and Leasing Services, Tool Rental, Furniture Rental, and Appliance Rental','IRS Description':'Equipment Rental ', 'reportable':'Yes'}," 7395,"Photofinishing Laboratories, Photo Developing","Photofinishing Laboratories, Photo Developing",Photo Developing,Yes,"'7395':{'combined description':'Photofinishing Laboratories, Photo Developing', 'USDA description':'Photofinishing Laboratories, Photo Developing','IRS Description':'Photo Developing', 'reportable':'Yes'}," 7399,"Business Services, Not Elsewhere Classified","Business Services, Not Elsewhere Classified",Miscellaneous Business Services ,Yes,"'7399':{'combined description':'Business Services, Not Elsewhere Classified', 'USDA description':'Business Services, Not Elsewhere Classified','IRS Description':'Miscellaneous Business Services ', 'reportable':'Yes'}," 7511,Truck Stop,,Truck Stop,Yes,"'7511':{'combined description':'Truck Stop', 'USDA description':'','IRS Description':'Truck Stop', 'reportable':'Yes'}," 7512,Car Rental Companies ( Not Listed Below),Car Rental Companies ( Not Listed Below),Car Rental Agencies,Yes,"'7512':{'combined description':'Car Rental Companies ( Not Listed Below)', 'USDA description':'Car Rental Companies ( Not Listed Below)','IRS Description':'Car Rental Agencies', 'reportable':'Yes'}," 7513,Truck and Utility Trailer Rentals,Truck and Utility Trailer Rentals,Truck/Utility Trailer Rentals,Yes,"'7513':{'combined description':'Truck and Utility Trailer Rentals', 'USDA description':'Truck and Utility Trailer Rentals','IRS Description':'Truck/Utility Trailer Rentals', 'reportable':'Yes'}," 7519,Motor Home and Recreational Vehicle Rentals,Motor Home and Recreational Vehicle Rentals,Recreational Vehicle Rentals,Yes,"'7519':{'combined description':'Motor Home and Recreational Vehicle Rentals', 'USDA description':'Motor Home and Recreational Vehicle Rentals','IRS Description':'Recreational Vehicle Rentals', 'reportable':'Yes'}," 7523,Automobile Parking Lots and Garages,Automobile Parking Lots and Garages,"Parking Lots, Garages",Yes,"'7523':{'combined description':'Automobile Parking Lots and Garages', 'USDA description':'Automobile Parking Lots and Garages','IRS Description':'Parking Lots, Garages', 'reportable':'Yes'}," 7531,Automotive Body Repair Shops,Automotive Body Repair Shops,Auto Body Repair Shops,Yes,"'7531':{'combined description':'Automotive Body Repair Shops', 'USDA description':'Automotive Body Repair Shops','IRS Description':'Auto Body Repair Shops', 'reportable':'Yes'}," 7534,Tire Re-treading and Repair Shops,Tire Re-treading and Repair Shops,Tire Retreading and Repair,Yes,"'7534':{'combined description':'Tire Re-treading and Repair Shops', 'USDA description':'Tire Re-treading and Repair Shops','IRS Description':'Tire Retreading and Repair', 'reportable':'Yes'}," 7535,Paint Shops & Automotive,Paint Shops & Automotive,Auto Paint Shops,Yes,"'7535':{'combined description':'Paint Shops & Automotive', 'USDA description':'Paint Shops & Automotive','IRS Description':'Auto Paint Shops', 'reportable':'Yes'}," 7538,Automotive Service Shops,Automotive Service Shops,Auto Service Shops,Yes,"'7538':{'combined description':'Automotive Service Shops', 'USDA description':'Automotive Service Shops','IRS Description':'Auto Service Shops', 'reportable':'Yes'}," 7542,Car Washes,Car Washes,Car Washes,Yes,"'7542':{'combined description':'Car Washes', 'USDA description':'Car Washes','IRS Description':'Car Washes', 'reportable':'Yes'}," 7549,Towing Services,Towing Services,Towing Services,Yes,"'7549':{'combined description':'Towing Services', 'USDA description':'Towing Services','IRS Description':'Towing Services', 'reportable':'Yes'}," 7622,Radio Repair Shops,Radio Repair Shops,Electronics Repair Shops,Yes,"'7622':{'combined description':'Radio Repair Shops', 'USDA description':'Radio Repair Shops','IRS Description':'Electronics Repair Shops', 'reportable':'Yes'}," 7623,Air Conditioning and Refrigeration Repair Shops,Air Conditioning and Refrigeration Repair Shops,"A/C, Refrigeration Repair",Yes,"'7623':{'combined description':'Air Conditioning and Refrigeration Repair Shops', 'USDA description':'Air Conditioning and Refrigeration Repair Shops','IRS Description':'A/C, Refrigeration Repair', 'reportable':'Yes'}," 7629,Electrical And Small Appliance Repair Shops,Electrical And Small Appliance Repair Shops,Small Appliance Repair,Yes,"'7629':{'combined description':'Electrical And Small Appliance Repair Shops', 'USDA description':'Electrical And Small Appliance Repair Shops','IRS Description':'Small Appliance Repair', 'reportable':'Yes'}," 7631,"Watch, Clock, and Jewelry Repair","Watch, Clock, and Jewelry Repair",Watch/Jewelry Repair,Yes,"'7631':{'combined description':'Watch, Clock, and Jewelry Repair', 'USDA description':'Watch, Clock, and Jewelry Repair','IRS Description':'Watch/Jewelry Repair', 'reportable':'Yes'}," 7641,"Furniture, Furniture Repair, and Furniture Refinishing","Furniture, Furniture Repair, and Furniture Refinishing","Furniture Repair, Refinishing",Yes,"'7641':{'combined description':'Furniture, Furniture Repair, and Furniture Refinishing', 'USDA description':'Furniture, Furniture Repair, and Furniture Refinishing','IRS Description':'Furniture Repair, Refinishing', 'reportable':'Yes'}," 7692,Welding Repair,Welding Repair,Welding Repair,Yes,"'7692':{'combined description':'Welding Repair', 'USDA description':'Welding Repair','IRS Description':'Welding Repair', 'reportable':'Yes'}," 7699,Repair Shops and Related Services &Miscellaneous,Repair Shops and Related Services &Miscellaneous,Miscellaneous Repair Shops,Yes,"'7699':{'combined description':'Repair Shops and Related Services &Miscellaneous', 'USDA description':'Repair Shops and Related Services &Miscellaneous','IRS Description':'Miscellaneous Repair Shops', 'reportable':'Yes'}," 7829,Motion Pictures and Video Tape Production and Distribution,Motion Pictures and Video Tape Production and Distribution,Picture/Video Production,Yes,"'7829':{'combined description':'Motion Pictures and Video Tape Production and Distribution', 'USDA description':'Motion Pictures and Video Tape Production and Distribution','IRS Description':'Picture/Video Production', 'reportable':'Yes'}," 7832,Motion Picture Theaters,Motion Picture Theaters,Motion Picture Theaters,Yes,"'7832':{'combined description':'Motion Picture Theaters', 'USDA description':'Motion Picture Theaters','IRS Description':'Motion Picture Theaters', 'reportable':'Yes'}," 7841,Video Tape Rental Stores,Video Tape Rental Stores,Video Tape Rental Stores,Yes,"'7841':{'combined description':'Video Tape Rental Stores', 'USDA description':'Video Tape Rental Stores','IRS Description':'Video Tape Rental Stores', 'reportable':'Yes'}," 7911,"Dance Halls, Studios and Schools","Dance Halls, Studios and Schools","Dance Hall, Studios, Schools",Yes,"'7911':{'combined description':'Dance Halls, Studios and Schools', 'USDA description':'Dance Halls, Studios and Schools','IRS Description':'Dance Hall, Studios, Schools', 'reportable':'Yes'}," 7922,"Theatrical Producers (Except Motion Pictures), Ticket Agencies","Theatrical Producers (Except Motion Pictures), Ticket Agencies",Theatrical Ticket Agencies,Yes,"'7922':{'combined description':'Theatrical Producers (Except Motion Pictures), Ticket Agencies', 'USDA description':'Theatrical Producers (Except Motion Pictures), Ticket Agencies','IRS Description':'Theatrical Ticket Agencies', 'reportable':'Yes'}," 7929,"Bands, Orchestras, and Miscellaneous Entertainers (Not Elsewhere Classified)","Bands, Orchestras, and Miscellaneous Entertainers (Not Elsewhere Classified)","Bands, Orchestras",Yes,"'7929':{'combined description':'Bands, Orchestras, and Miscellaneous Entertainers (Not Elsewhere Classified)', 'USDA description':'Bands, Orchestras, and Miscellaneous Entertainers (Not Elsewhere Classified)','IRS Description':'Bands, Orchestras', 'reportable':'Yes'}," 7932,Billiard and Pool Establishments,Billiard and Pool Establishments,Billiard/Pool Establishments,Yes,"'7932':{'combined description':'Billiard and Pool Establishments', 'USDA description':'Billiard and Pool Establishments','IRS Description':'Billiard/Pool Establishments', 'reportable':'Yes'}," 7933,Bowling Alleys,Bowling Alleys,Bowling Alleys,Yes,"'7933':{'combined description':'Bowling Alleys', 'USDA description':'Bowling Alleys','IRS Description':'Bowling Alleys', 'reportable':'Yes'}," 7941,"Commercial Sports, Athletic Fields, Professional Sport Clubs, and Sport Promoters","Commercial Sports, Athletic Fields, Professional Sport Clubs, and Sport Promoters",Sports Clubs/Fields,Yes,"'7941':{'combined description':'Commercial Sports, Athletic Fields, Professional Sport Clubs, and Sport Promoters', 'USDA description':'Commercial Sports, Athletic Fields, Professional Sport Clubs, and Sport Promoters','IRS Description':'Sports Clubs/Fields', 'reportable':'Yes'}," 7991,Tourist Attractions and Exhibits,Tourist Attractions and Exhibits,Tourist Attractions and Exhibits,Yes,"'7991':{'combined description':'Tourist Attractions and Exhibits', 'USDA description':'Tourist Attractions and Exhibits','IRS Description':'Tourist Attractions and Exhibits', 'reportable':'Yes'}," 7992,Golf Courses & Public,Golf Courses & Public,Golf Courses - Public,Yes,"'7992':{'combined description':'Golf Courses & Public', 'USDA description':'Golf Courses & Public','IRS Description':'Golf Courses - Public', 'reportable':'Yes'}," 7993,Video Amusement Game Supplies,Video Amusement Game Supplies,Video Amusement Game Supplies,No1.6041-3(c),"'7993':{'combined description':'Video Amusement Game Supplies', 'USDA description':'Video Amusement Game Supplies','IRS Description':'Video Amusement Game Supplies', 'reportable':'No1.6041-3(c)'}," 7994,Video Game Arcades/Establishments,Video Game Arcades/Establishments,Video Game Arcades,Yes,"'7994':{'combined description':'Video Game Arcades/Establishments', 'USDA description':'Video Game Arcades/Establishments','IRS Description':'Video Game Arcades', 'reportable':'Yes'}," 7995,"Betting (including Lottery Tickets, Casino Gaming Chips, Off-track Betting and Wagers)","Betting (including Lottery Tickets, Casino Gaming Chips, Off-track Betting and Wagers)",Betting/Casino Gambling,Yes,"'7995':{'combined description':'Betting (including Lottery Tickets, Casino Gaming Chips, Off-track Betting and Wagers)', 'USDA description':'Betting (including Lottery Tickets, Casino Gaming Chips, Off-track Betting and Wagers)','IRS Description':'Betting/Casino Gambling', 'reportable':'Yes'}," 7996,"Amusement Parks, Carnivals, Circuses, Fortune Tellers","Amusement Parks, Carnivals, Circuses, Fortune Tellers",Amusement Parks/Carnivals,Yes,"'7996':{'combined description':'Amusement Parks, Carnivals, Circuses, Fortune Tellers', 'USDA description':'Amusement Parks, Carnivals, Circuses, Fortune Tellers','IRS Description':'Amusement Parks/Carnivals', 'reportable':'Yes'}," 7997,"Membership Clubs (Sports, Recreation, Athletic), Country Clubs, and Private Golf Courses","Membership Clubs (Sports, Recreation, Athletic), Country Clubs, and Private Golf Courses",Country Clubs,Yes,"'7997':{'combined description':'Membership Clubs (Sports, Recreation, Athletic), Country Clubs, and Private Golf Courses', 'USDA description':'Membership Clubs (Sports, Recreation, Athletic), Country Clubs, and Private Golf Courses','IRS Description':'Country Clubs', 'reportable':'Yes'}," 7998,"Aquariums, Sea-aquariums, Dolphinariums","Aquariums, Sea-aquariums, Dolphinariums",Aquariums,Yes,"'7998':{'combined description':'Aquariums, Sea-aquariums, Dolphinariums', 'USDA description':'Aquariums, Sea-aquariums, Dolphinariums','IRS Description':'Aquariums', 'reportable':'Yes'}," 7999,Recreation Services (Not Elsewhere Classified),Recreation Services (Not Elsewhere Classified),Miscellaneous Recreation Services,Yes,"'7999':{'combined description':'Recreation Services (Not Elsewhere Classified)', 'USDA description':'Recreation Services (Not Elsewhere Classified)','IRS Description':'Miscellaneous Recreation Services', 'reportable':'Yes'}," 8011,Doctors and Physicians (Not Elsewhere Classified),Doctors and Physicians (Not Elsewhere Classified),Doctors,Yes,"'8011':{'combined description':'Doctors and Physicians (Not Elsewhere Classified)', 'USDA description':'Doctors and Physicians (Not Elsewhere Classified)','IRS Description':'Doctors', 'reportable':'Yes'}," 8021,Dentists and Orthodontists,Dentists and Orthodontists,"Dentists, Orthodontists",Yes,"'8021':{'combined description':'Dentists and Orthodontists', 'USDA description':'Dentists and Orthodontists','IRS Description':'Dentists, Orthodontists', 'reportable':'Yes'}," 8031,Osteopaths,Osteopaths,Osteopaths,Yes,"'8031':{'combined description':'Osteopaths', 'USDA description':'Osteopaths','IRS Description':'Osteopaths', 'reportable':'Yes'}," 8041,Chiropractors,Chiropractors,Chiropractors,Yes,"'8041':{'combined description':'Chiropractors', 'USDA description':'Chiropractors','IRS Description':'Chiropractors', 'reportable':'Yes'}," 8042,Optometrists and Ophthalmologists,Optometrists and Ophthalmologists,"Optometrists, Ophthalmologist",Yes,"'8042':{'combined description':'Optometrists and Ophthalmologists', 'USDA description':'Optometrists and Ophthalmologists','IRS Description':'Optometrists, Ophthalmologist', 'reportable':'Yes'}," 8043,"Opticians, Opticians Goods and Eyeglasses","Opticians, Opticians Goods and Eyeglasses","Opticians, Eyeglasses",Yes,"'8043':{'combined description':'Opticians, Opticians Goods and Eyeglasses', 'USDA description':'Opticians, Opticians Goods and Eyeglasses','IRS Description':'Opticians, Eyeglasses', 'reportable':'Yes'}," 8044,"Opticians, Optical Goods, and Eyeglasses (no longer validfor first presentments)","Opticians, Optical Goods, and Eyeglasses (no longer validfor first presentments)",,,"'8044':{'combined description':'Opticians, Optical Goods, and Eyeglasses (no longer validfor first presentments)', 'USDA description':'Opticians, Optical Goods, and Eyeglasses (no longer validfor first presentments)','IRS Description':'', 'reportable':''}," 8049,Podiatrists and Chiropodists,Podiatrists and Chiropodists,"Chiropodists, Podiatrists",Yes,"'8049':{'combined description':'Podiatrists and Chiropodists', 'USDA description':'Podiatrists and Chiropodists','IRS Description':'Chiropodists, Podiatrists', 'reportable':'Yes'}," 8050,Nursing and Personal Care Facilities,Nursing and Personal Care Facilities,Nursing/Personal Care ,Yes,"'8050':{'combined description':'Nursing and Personal Care Facilities', 'USDA description':'Nursing and Personal Care Facilities','IRS Description':'Nursing/Personal Care ', 'reportable':'Yes'}," 8062,Hospitals,Hospitals,Hospitals,Yes,"'8062':{'combined description':'Hospitals', 'USDA description':'Hospitals','IRS Description':'Hospitals', 'reportable':'Yes'}," 8071,Medical and Dental Laboratories,Medical and Dental Laboratories,Medical and Dental Labs,Yes,"'8071':{'combined description':'Medical and Dental Laboratories', 'USDA description':'Medical and Dental Laboratories','IRS Description':'Medical and Dental Labs', 'reportable':'Yes'}," 8099,Medical Services and Health Practitioners (Not Elsewhere Classified),Medical Services and Health Practitioners (Not Elsewhere Classified),Medical Services ,Yes,"'8099':{'combined description':'Medical Services and Health Practitioners (Not Elsewhere Classified)', 'USDA description':'Medical Services and Health Practitioners (Not Elsewhere Classified)','IRS Description':'Medical Services ', 'reportable':'Yes'}," 8111,Legal Services and Attorneys,Legal Services and Attorneys,"Legal Services, Attorneys",Yes,"'8111':{'combined description':'Legal Services and Attorneys', 'USDA description':'Legal Services and Attorneys','IRS Description':'Legal Services, Attorneys', 'reportable':'Yes'}," 8211,Elementary and Secondary Schools,Elementary and Secondary Schools,"Elementary, Secondary Schools",No1.6041-3(p)(2),"'8211':{'combined description':'Elementary and Secondary Schools', 'USDA description':'Elementary and Secondary Schools','IRS Description':'Elementary, Secondary Schools', 'reportable':'No1.6041-3(p)(2)'}," 8220,"Colleges, Junior Colleges, Universities, and ProfessionalSchools","Colleges, Junior Colleges, Universities, and ProfessionalSchools","Colleges, Universities",No1.6041-3(p)(2),"'8220':{'combined description':'Colleges, Junior Colleges, Universities, and ProfessionalSchools', 'USDA description':'Colleges, Junior Colleges, Universities, and ProfessionalSchools','IRS Description':'Colleges, Universities', 'reportable':'No1.6041-3(p)(2)'}," 8241,Correspondence Schools,Correspondence Schools,Correspondence Schools,No1.6041-3(p)(2),"'8241':{'combined description':'Correspondence Schools', 'USDA description':'Correspondence Schools','IRS Description':'Correspondence Schools', 'reportable':'No1.6041-3(p)(2)'}," 8244,Business and Secretarial Schools,Business and Secretarial Schools,Business/Secretarial Schools,No1.6041-3(p)(2),"'8244':{'combined description':'Business and Secretarial Schools', 'USDA description':'Business and Secretarial Schools','IRS Description':'Business/Secretarial Schools', 'reportable':'No1.6041-3(p)(2)'}," 8249,Vocational Schools and Trade Schools,Vocational Schools and Trade Schools,Vocational/Trade Schools,No1.6041-3(p)(2),"'8249':{'combined description':'Vocational Schools and Trade Schools', 'USDA description':'Vocational Schools and Trade Schools','IRS Description':'Vocational/Trade Schools', 'reportable':'No1.6041-3(p)(2)'}," 8299,Schools and Educational Services ( Not Elsewhere Classified),Schools and Educational Services ( Not Elsewhere Classified),Educational Services ,Yes,"'8299':{'combined description':'Schools and Educational Services ( Not Elsewhere Classified)', 'USDA description':'Schools and Educational Services ( Not Elsewhere Classified)','IRS Description':'Educational Services ', 'reportable':'Yes'}," 8351,Child Care Services,Child Care Services,Child Care Services,Yes,"'8351':{'combined description':'Child Care Services', 'USDA description':'Child Care Services','IRS Description':'Child Care Services', 'reportable':'Yes'}," 8398,Charitable and Social Service Organizations,Charitable and Social Service Organizations,Charitable and Social Service Organizations - Fundraising,No1.6041-3(p)(2),"'8398':{'combined description':'Charitable and Social Service Organizations', 'USDA description':'Charitable and Social Service Organizations','IRS Description':'Charitable and Social Service Organizations - Fundraising', 'reportable':'No1.6041-3(p)(2)'}," 8641,"Civic, Fraternal, and Social Associations","Civic, Fraternal, and Social Associations","Civic, Social, Fraternal Associations",No1.6041-3(p)(2),"'8641':{'combined description':'Civic, Fraternal, and Social Associations', 'USDA description':'Civic, Fraternal, and Social Associations','IRS Description':'Civic, Social, Fraternal Associations', 'reportable':'No1.6041-3(p)(2)'}," 8651,Political Organizations,Political Organizations,Political Organizations,Yes,"'8651':{'combined description':'Political Organizations', 'USDA description':'Political Organizations','IRS Description':'Political Organizations', 'reportable':'Yes'}," 8661,Religious Organizations,Religious Organizations,Religious Organizations,No1.6041-3(p)(2),"'8661':{'combined description':'Religious Organizations', 'USDA description':'Religious Organizations','IRS Description':'Religious Organizations', 'reportable':'No1.6041-3(p)(2)'}," 8675,Automobile Associations,Automobile Associations,Automobile Associations,Yes,"'8675':{'combined description':'Automobile Associations', 'USDA description':'Automobile Associations','IRS Description':'Automobile Associations', 'reportable':'Yes'}," 8699,Membership Organizations ( Not Elsewhere Classified),Membership Organizations ( Not Elsewhere Classified),Membership Organizations,Yes,"'8699':{'combined description':'Membership Organizations ( Not Elsewhere Classified)', 'USDA description':'Membership Organizations ( Not Elsewhere Classified)','IRS Description':'Membership Organizations', 'reportable':'Yes'}," 8734,Testing Laboratories ( non-medical),Testing Laboratories ( non-medical),Testing Laboratories,Yes,"'8734':{'combined description':'Testing Laboratories ( non-medical)', 'USDA description':'Testing Laboratories ( non-medical)','IRS Description':'Testing Laboratories', 'reportable':'Yes'}," 8911,Architectural & Engineering and Surveying Services,Architectural & Engineering and Surveying Services,Architectural/Surveying Services,Yes,"'8911':{'combined description':'Architectural & Engineering and Surveying Services', 'USDA description':'Architectural & Engineering and Surveying Services','IRS Description':'Architectural/Surveying Services', 'reportable':'Yes'}," 8931,"Accounting, Auditing, and Bookkeeping Services","Accounting, Auditing, and Bookkeeping Services",Accounting/Bookkeeping Services,Yes,"'8931':{'combined description':'Accounting, Auditing, and Bookkeeping Services', 'USDA description':'Accounting, Auditing, and Bookkeeping Services','IRS Description':'Accounting/Bookkeeping Services', 'reportable':'Yes'}," 8999,Professional Services ( Not Elsewhere Defined),Professional Services ( Not Elsewhere Defined),Professional Services,Yes,"'8999':{'combined description':'Professional Services ( Not Elsewhere Defined)', 'USDA description':'Professional Services ( Not Elsewhere Defined)','IRS Description':'Professional Services', 'reportable':'Yes'}," 9211,"Court Costs, including Alimony and Child Support","Court Costs, including Alimony and Child Support","Court Costs, Including Alimony and Child Support - Courts of Law",No1.6041-3(p)(4),"'9211':{'combined description':'Court Costs, including Alimony and Child Support', 'USDA description':'Court Costs, including Alimony and Child Support','IRS Description':'Court Costs, Including Alimony and Child Support - Courts of Law', 'reportable':'No1.6041-3(p)(4)'}," 9222,Fines,Fines,Fines - Government Administrative Entities,No1.6041-3(p)(4),"'9222':{'combined description':'Fines', 'USDA description':'Fines','IRS Description':'Fines - Government Administrative Entities', 'reportable':'No1.6041-3(p)(4)'}," 9223,Bail and Bond Payments,Bail and Bond Payments,"Bail and Bond Payments (payment to the surety for the bond, not the actual bond paid to the government agency) ",Yes,"'9223':{'combined description':'Bail and Bond Payments', 'USDA description':'Bail and Bond Payments','IRS Description':'Bail and Bond Payments (payment to the surety for the bond, not the actual bond paid to the government agency) ', 'reportable':'Yes'}," 9311,Tax Payments,Tax Payments,Tax Payments - Government Agencies,No1.6041-3(p)(4),"'9311':{'combined description':'Tax Payments', 'USDA description':'Tax Payments','IRS Description':'Tax Payments - Government Agencies', 'reportable':'No1.6041-3(p)(4)'}," 9399,Government Services ( Not Elsewhere Classified),Government Services ( Not Elsewhere Classified),Government Services (Not Elsewhere Classified),No1.6041-3(p)(4),"'9399':{'combined description':'Government Services ( Not Elsewhere Classified)', 'USDA description':'Government Services ( Not Elsewhere Classified)','IRS Description':'Government Services (Not Elsewhere Classified)', 'reportable':'No1.6041-3(p)(4)'}," 9402,Postal Services & Government Only,Postal Services & Government Only,Postal Services - Government Only,No1.6041-3(p)(3),"'9402':{'combined description':'Postal Services & Government Only', 'USDA description':'Postal Services & Government Only','IRS Description':'Postal Services - Government Only', 'reportable':'No1.6041-3(p)(3)'}," 9405,Intra & Government Transactions,Intra & Government Transactions,U.S. Federal Government Agencies or Departments,No1.6041-3(p)(3),"'9405':{'combined description':'Intra & Government Transactions', 'USDA description':'Intra & Government Transactions','IRS Description':'U.S. Federal Government Agencies or Departments', 'reportable':'No1.6041-3(p)(3)'}," 9700,Automated Referral Service ( For Visa Only),Automated Referral Service ( For Visa Only),,,"'9700':{'combined description':'Automated Referral Service ( For Visa Only)', 'USDA description':'Automated Referral Service ( For Visa Only)','IRS Description':'', 'reportable':''}," 9701,Visa Credential Service ( For Visa Only),Visa Credential Service ( For Visa Only),,,"'9701':{'combined description':'Visa Credential Service ( For Visa Only)', 'USDA description':'Visa Credential Service ( For Visa Only)','IRS Description':'', 'reportable':''}," 9702,GCAS Emergency Services ( For Visa Only),GCAS Emergency Services ( For Visa Only),,,"'9702':{'combined description':'GCAS Emergency Services ( For Visa Only)', 'USDA description':'GCAS Emergency Services ( For Visa Only)','IRS Description':'', 'reportable':''}," 9950,Intra & Company Purchases ( For Visa Only),Intra & Company Purchases ( For Visa Only),Intra-Company Purchases,No1.6041-3(c),"'9950':{'combined description':'Intra & Company Purchases ( For Visa Only)', 'USDA description':'Intra & Company Purchases ( For Visa Only)','IRS Description':'Intra-Company Purchases', 'reportable':'No1.6041-3(c)'}," \ No newline at end of file diff --git a/ofxparse.egg-info/PKG-INFO b/ofxparse.egg-info/PKG-INFO new file mode 100644 index 0000000..a80c066 --- /dev/null +++ b/ofxparse.egg-info/PKG-INFO @@ -0,0 +1,200 @@ +Metadata-Version: 1.1 +Name: ofxparse +Version: 0.19 +Summary: Tools for working with the OFX (Open Financial Exchange) file format +Home-page: http://sites.google.com/site/ofxparse +Author: Jerry Seutter +Author-email: jseutter.ofxparse@gmail.com +License: MIT License +Description-Content-Type: UNKNOWN +Description: ofxparse + ======== + + ofxparse is a parser for Open Financial Exchange (.ofx) format files. OFX + files are available from almost any online banking site, so they work well + if you want to pull together your finances from multiple sources. Online + trading accounts also provide account statements in OFX files. + + There are three different types of OFX files, called BankAccount, + CreditAccount and InvestmentAccount files. This library has been tested with + real-world samples of all three types. If you find a file that does not work + with this library, please consider contributing the file so ofxparse can be + improved. See the Help! section below for directions on how to do this. + + Example Usage + ============= + + Here's a sample program + + .. code:: python + + from ofxparse import OfxParser + with codecs.open('file.ofx') as fileobj: + ofx = OfxParser.parse(fileobj) + + # The OFX object + + ofx.account # An Account object + + # AccountType + # (Unknown, Bank, CreditCard, Investment) + + # Account + + account = ofx.occount + account.account_id # The account number + account.number # The account number (deprecated -- returns account_id) + account.routing_number # The bank routing number + account.branch_id # Transit ID / branch number + account.type # An AccountType object + account.statement # A Statement object + account.institution # An Institution object + + # InvestmentAccount(Account) + + account.brokerid # Investment broker ID + account.statement # An InvestmentStatement object + + # Institution + + institution = account.institution + institution.organization + institution.fid + + # Statement + + statement = account.statement + statement.start_date # The start date of the transactions + statement.end_date # The end date of the transactions + statement.balance # The money in the account as of the statement date + statement.available_balance # The money available from the account as of the statement date + statement.transactions # A list of Transaction objects + + # InvestmentStatement + + statement = account.statement + statement.positions # A list of Position objects + statement.transactions # A list of InvestmentTransaction objects + + # Transaction + + for transaction in statement.transactions: + transaction.payee + transaction.type + transaction.date + transaction.amount + transaction.id + transaction.memo + transaction.sic + transaction.mcc + transaction.checknum + + # InvestmentTransaction + + for transaction in statement.transactions: + transaction.type + transaction.tradeDate + transaction.settleDate + transaction.memo + transaction.security # A Security object + transaction.income_type + transaction.units + transaction.unit_price + transaction.comission + transaction.fees + transaction.total + transaction.tferaction + + # Positions + + for position in statement.positions: + position.security # A Security object + position.units + position.unit_price + position.market_value + + # Security + + security = transaction.security + # or + security = position.security + security.uniqueid + security.name + security.ticker + security.memo + + + Help! + ===== + + Sample ``.ofx`` and ``.qfx`` files are very useful. If you want to help us out, + please edit all identifying information from the file and then email it to + jseutter dot ofxparse at gmail dot com. + + Development + =========== + + Prerequisites:: + # Ubuntu + sudo apt-get install python-beautifulsoup python-nose python-coverage-test-runner + # Python 3 (pip) + pip install BeautifulSoup4 six lxml nose coverage + # Python 2 (pip) + pip install BeautifulSoup six nose coverage + + The `six` package is required for python 2.X compatibility + + Tests: + Simply running the ``nosetests`` command should run the tests. + + .. code:: bash + + nosetests + + If you don't have nose installed, the following might also work: + + .. code:: bash + + python -m unittest tests.test_parse + + Test Coverage Report: + + .. code:: bash + + coverage run -m unittest tests.test_parse + + # text report + coverage report + + # html report + coverage html + firefox htmlcov/index.html + + + Homepage + ======== + | Homepage: https://sites.google.com/site/ofxparse + | Source: https://github.com/jseutter/ofxparse + + License + ======= + + ofxparse is released under an MIT license. See the LICENSE file for the actual + license text. The basic idea is that if you can use Python to do what you are + doing, you can also use this library. + + +Keywords: ofx,Open Financial Exchange,file formats +Platform: UNKNOWN +Classifier: Development Status :: 4 - Beta +Classifier: Intended Audience :: Developers +Classifier: Natural Language :: English +Classifier: Operating System :: OS Independent +Classifier: Programming Language :: Python :: 2.7 +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.4 +Classifier: Programming Language :: Python :: 3.5 +Classifier: Programming Language :: Python :: 3.6 +Classifier: Topic :: Software Development :: Libraries :: Python Modules +Classifier: Topic :: Utilities +Classifier: License :: OSI Approved :: MIT License diff --git a/ofxparse.egg-info/SOURCES.txt b/ofxparse.egg-info/SOURCES.txt new file mode 100644 index 0000000..d0ee20b --- /dev/null +++ b/ofxparse.egg-info/SOURCES.txt @@ -0,0 +1,45 @@ +AUTHORS +LICENSE +MANIFEST.in +README.rst +setup.cfg +setup.py +ofxparse/__init__.py +ofxparse/mcc.py +ofxparse/ofxparse.py +ofxparse/ofxprinter.py +ofxparse/ofxutil.py +ofxparse.egg-info/PKG-INFO +ofxparse.egg-info/SOURCES.txt +ofxparse.egg-info/dependency_links.txt +ofxparse.egg-info/entry_points.txt +ofxparse.egg-info/requires.txt +ofxparse.egg-info/top_level.txt +ofxparse.egg-info/zip-safe +tests/__init__.py +tests/support.py +tests/test_parse.py +tests/test_write.py +tests/fixtures/account_listing_aggregation.ofx +tests/fixtures/anzcc.ofx +tests/fixtures/bank_medium.ofx +tests/fixtures/bank_small.ofx +tests/fixtures/checking.ofx +tests/fixtures/fidelity-savings.ofx +tests/fixtures/fidelity.ofx +tests/fixtures/investment_401k.ofx +tests/fixtures/investment_medium.ofx +tests/fixtures/multiple_accounts.ofx +tests/fixtures/multiple_accounts2.ofx +tests/fixtures/ofx-v102-empty-tags.ofx +tests/fixtures/signon_fail.ofx +tests/fixtures/signon_success.ofx +tests/fixtures/signon_success_no_message.ofx +tests/fixtures/suncorp.ofx +tests/fixtures/td_ameritrade.ofx +tests/fixtures/tiaacref.ofx +tests/fixtures/vanguard.ofx +tests/fixtures/vanguard401k.ofx +tests/fixtures/fail_nice/date_missing.ofx +tests/fixtures/fail_nice/decimal_error.ofx +tests/fixtures/fail_nice/empty_balance.ofx \ No newline at end of file diff --git a/ofxparse.egg-info/dependency_links.txt b/ofxparse.egg-info/dependency_links.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/ofxparse.egg-info/dependency_links.txt @@ -0,0 +1 @@ + diff --git a/ofxparse.egg-info/entry_points.txt b/ofxparse.egg-info/entry_points.txt new file mode 100644 index 0000000..b0dac65 --- /dev/null +++ b/ofxparse.egg-info/entry_points.txt @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/ofxparse.egg-info/requires.txt b/ofxparse.egg-info/requires.txt new file mode 100644 index 0000000..63e9d64 --- /dev/null +++ b/ofxparse.egg-info/requires.txt @@ -0,0 +1,3 @@ +beautifulsoup4 +lxml +six diff --git a/ofxparse.egg-info/top_level.txt b/ofxparse.egg-info/top_level.txt new file mode 100644 index 0000000..ae82238 --- /dev/null +++ b/ofxparse.egg-info/top_level.txt @@ -0,0 +1 @@ +ofxparse diff --git a/ofxparse.egg-info/zip-safe b/ofxparse.egg-info/zip-safe new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/ofxparse.egg-info/zip-safe @@ -0,0 +1 @@ + diff --git a/ofxparse/__init__.py b/ofxparse/__init__.py index d9d4d5e..e939657 100644 --- a/ofxparse/__init__.py +++ b/ofxparse/__init__.py @@ -1,6 +1,16 @@ from __future__ import absolute_import -from .ofxparse import OfxParser, OfxParserException, AccountType, Account, Statement, Transaction +from .ofxparse import (OfxParser, OfxParserException, AccountType, Account, + Statement, Transaction) from .ofxprinter import OfxPrinter -__version__ = '0.14' +__version__ = '0.19' +__all__ = [ + 'OfxParser', + 'OfxParserException', + 'AccountType', + 'Account', + 'Statement', + 'Transaction', + 'OfxPrinter' +] diff --git a/ofxparse/mcc.py b/ofxparse/mcc.py index 4eff74c..41cf925 100644 --- a/ofxparse/mcc.py +++ b/ofxparse/mcc.py @@ -2,980 +2,980 @@ # * https://github.com/greggles/mcc-codes -codes={ - '0':{'combined description':'none', 'USDA description':'none','IRS Description':'none', 'Reportable under 6041/6041A and Authority for Exception':'no'}, - '742':{'combined description':'Veterinary Services', 'USDA description':'Veterinary Services','IRS Description':'Veterinary Services', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '763':{'combined description':'Agricultural Co-operatives', 'USDA description':'Agricultural Co-operatives','IRS Description':'Agricultural Cooperative', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '780':{'combined description':'Horticultural Services, Landscaping Services', 'USDA description':'Horticultural Services','IRS Description':'Landscaping Services', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '1520':{'combined description':'General Contractors-Residential and Commercial', 'USDA description':'General Contractors-Residential and Commercial','IRS Description':'General Contractors', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '1711':{'combined description':'Air Conditioning Contractors & Sales and Installation, Heating Contractors & Sales, Service, Installation', 'USDA description':'Air Conditioning Contractors & Sales and Installation','IRS Description':'Heating, Plumbing, A/C', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '1731':{'combined description':'Electrical Contractors', 'USDA description':'Electrical Contractors','IRS Description':'Electrical Contractors', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '1740':{'combined description':'Insulation & Contractors, Masonry, Stonework Contractors, Plastering Contractors, Stonework and Masonry Contractors, Tile Settings Contractors', 'USDA description':'Insulation & Contractors','IRS Description':'Masonry, Stonework, and Plaster', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '1750':{'combined description':'Carpentry Contractors', 'USDA description':'Carpentry Contractors','IRS Description':'Carpentry Contractors', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '1761':{'combined description':'Roofing & Contractors, Sheet Metal Work & Contractors, Siding & Contractors', 'USDA description':'Roofing - Contractors','IRS Description':'Roofing/Siding, Sheet Metal', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '1771':{'combined description':'Contractors & Concrete Work', 'USDA description':'Contractors & Concrete Work','IRS Description':'Concrete Work Contractors', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '1799':{'combined description':'Contractors & Special Trade, Not Elsewhere Classified', 'USDA description':'Contractors & Special Trade, Not Elsewhere Classified','IRS Description':'Special Trade Contractors', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '2741':{'combined description':'Miscellaneous Publishing and Printing', 'USDA description':'Miscellaneous Publishing and Printing','IRS Description':'Miscellaneous Publishing and Printing', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '2791':{'combined description':'Typesetting, Plate Making, & Related Services', 'USDA description':'Typesetting, Plate Making, & Related Services','IRS Description':'Typesetting, Plate Making, and Related Services', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '2842':{'combined description':'Specialty Cleaning, Polishing, and Sanitation Preparations', 'USDA description':'Specialty Cleaning, Polishing, and Sanitation Preparations','IRS Description':'Specialty Cleaning', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3000':{'combined description':'UNITED AIRLINES', 'USDA description':'UNITED AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3001':{'combined description':'AMERICAN AIRLINES', 'USDA description':'AMERICAN AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3002':{'combined description':'PAN AMERICAN - PAN AM', 'USDA description':'PAN AMERICAN','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3003':{'combined description':'EURO-FLY', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3004':{'combined description':'TRANS WORLD AIRLINES', 'USDA description':'TRANS WORLD AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3005':{'combined description':'BRITSH AIRWAYS - BRITISH A', 'USDA description':'BRITISH AIRWAYS','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3006':{'combined description':'JAPAN AIR LINES', 'USDA description':'JAPAN AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3007':{'combined description':'AIR FRANCE', 'USDA description':'AIR FRANCE','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3008':{'combined description':'LUFTHANSA', 'USDA description':'LUFTHANSA','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3009':{'combined description':'AIR CANADA - AIR CAN', 'USDA description':'AIR CANADA','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3010':{'combined description':'KLM', 'USDA description':'KLM (ROYAL DUTCH AIRLINES)','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3011':{'combined description':'AEROFLOT', 'USDA description':'AEORFLOT','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3012':{'combined description':'QANTAS AIR', 'USDA description':'QUANTAS','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3013':{'combined description':'ALITALIA', 'USDA description':'ALITALIA','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3014':{'combined description':'SAUDI ARABIAN AIRLINES', 'USDA description':'SAUDIA ARABIAN AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3015':{'combined description':'SWISS INTERNATIONAL AIR LINES-SWISS AIR', 'USDA description':'SWISSAIR','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3016':{'combined description':'SCANDINAVIAN AIRLINE SYSTEM (SAS)', 'USDA description':'SAS','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3017':{'combined description':'SOUTH AFRICAN AIRWAYS', 'USDA description':'SOUTH AFRICAN AIRWAYS','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3018':{'combined description':'VARIG AIR (BRAZIL)', 'USDA description':'VARIG (BRAZIL)','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3019':{'combined description':'GERMANWINGS--GRMNWGAIR', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3020':{'combined description':'AIR INDIA', 'USDA description':'AIR-INDIA','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3021':{'combined description':'AIR ALGERIE', 'USDA description':'AIR ALGERIE','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3022':{'combined description':'PHILIPPINE AIRLINES', 'USDA description':'PHILIPPINE AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3023':{'combined description':'MEXICANA', 'USDA description':'MEXICANA','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3024':{'combined description':'PAKISTAN INTERNATIONAL', 'USDA description':'PAKISTAN INTERNATIONAL','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3025':{'combined description':'AIR NEW ZEALAND LTD. INTERNATIONAL', 'USDA description':'AIR NEW ZEALAND','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3026':{'combined description':'EMIRATES AIRLINES', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3027':{'combined description':'UNION DE TRANSPORTS AERIENS (UTA/INTERAI', 'USDA description':'UTA/INTERAIR','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3028':{'combined description':'AIR MALTA', 'USDA description':'AIR MALTA','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3029':{'combined description':'SN BRUSSELS AIRLINES - SNBRU AIR', 'USDA description':'SABENA','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3030':{'combined description':'AEROLINEAS ARGENTINAS', 'USDA description':'AEROLINEAS ARGENTINAS','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3031':{'combined description':'OLYMPIC AIRWAYS', 'USDA description':'OLYMPIC AIRWAYS','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3032':{'combined description':'EL AL', 'USDA description':'EL AL','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3033':{'combined description':'ANSETT AIRLINES', 'USDA description':'ANSETT AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3034':{'combined description':'TRANS AUSTRALIAN AIRWAYS (TAA)', 'USDA description':'AUSTRAINLIAN AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3035':{'combined description':'TAP AIRLINE (PORTUGAL)', 'USDA description':'TAP (PORTUGAL)','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3036':{'combined description':'VASP AIR (BRAZIL)', 'USDA description':'VASP (BRAZIL)','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3037':{'combined description':'EGYPTAIR', 'USDA description':'EGYPTAIR','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3038':{'combined description':'KUWAIT AIRWAYS', 'USDA description':'KUWAIT AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3039':{'combined description':'AVIANCA', 'USDA description':'AVIANCA','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3040':{'combined description':'GULF AIR (BAHRAIN)', 'USDA description':'GULF AIR (BAHRAIN)','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3041':{'combined description':'BALKAN-BULGARIAN AIRLINES', 'USDA description':'BALKAN-BULGARIAN AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3042':{'combined description':'FINNAIR', 'USDA description':'FINNAIR','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3043':{'combined description':'AER LINGUS', 'USDA description':'AER LINGUS','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3044':{'combined description':'AIR LANKA', 'USDA description':'AIR LANKA','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3045':{'combined description':'NIGERIA AIRWAYS', 'USDA description':'NIGERIA AIRWAYS','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3046':{'combined description':'CRUZEIRO DO SUL AIR (BRAZIL)', 'USDA description':'CRUZEIRO DO SUL (BRAZIJ)','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3047':{'combined description':'THY AIRLINE (TURKEY)', 'USDA description':'THY (TURKEY)','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3048':{'combined description':'AIRMARO', 'USDA description':'ROYAL AIR MAROC','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3049':{'combined description':'TUNIS AIR', 'USDA description':'TUNIS AIR','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3050':{'combined description':'ICELANDAIR', 'USDA description':'ICELANDAIR','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3051':{'combined description':'AUSTRIAN AIRLINES', 'USDA description':'AUSTRIAN AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3052':{'combined description':'LAN AIRLINES-LANAIR', 'USDA description':'LANCHILE','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3053':{'combined description':'AVIACO AIR (SPAIN)', 'USDA description':'AVIACO (SPAIN)','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3054':{'combined description':'LADECO AIR (CHILE)', 'USDA description':'LADECO (CHILE)','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3055':{'combined description':'LAB AIRLINE (BOLIVIA)', 'USDA description':'LAB (BOLIVIA)','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3056':{'combined description':'QUEBECAIRE', 'USDA description':'QUEBECAIRE','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3057':{'combined description':'EAST/WEST AIRLINES (AUSTRALIA)', 'USDA description':'EASTWEST AIRLINES (AUSTRALIA)','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3058':{'combined description':'DELTA', 'USDA description':'DELTA','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3059':{'combined description':'DBA AIRLINES - DBA AIR', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3060':{'combined description':'NORTHWEST AIRLINES', 'USDA description':'NORTHWEST','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3061':{'combined description':'CONTINENTAL', 'USDA description':'CONTINENTAL','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3062':{'combined description':'HAPAG-LLOYD EXPRESS - HLX', 'USDA description':'WESTERN','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3063':{'combined description':'US AIRWAYS', 'USDA description':'US AIR','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3064':{'combined description':'ADRIA AIRWAYS', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3065':{'combined description':'AIRINTER', 'USDA description':'AIRINTER','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3066':{'combined description':'SOUTHWEST AIRLINES', 'USDA description':'SOUTHWEST','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3067':{'combined description':'VANGUARD AIRLINES', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3068':{'combined description':'AIR ASTANA-AIRSTANA', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3069':{'combined description':'AIR EUROPE', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3070':{'combined description':'PACIFIC SOUTHWEST AIRLINE', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3071':{'combined description':'AIR BRITISH COLUMBIA', 'USDA description':'AIR BRITISH COLUBIA','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3072':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3073':{'combined description':'AIR CAL', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3074':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3075':{'combined description':'SINGAPORE AIRLINES', 'USDA description':'SINGAPORE AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3076':{'combined description':'AEROMEXICO', 'USDA description':'AEROMEXICO','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3077':{'combined description':'THAI AIRWAYS', 'USDA description':'THAI AIRWAYS','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3078':{'combined description':'CHINA AIRLINES', 'USDA description':'CHINA AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3079':{'combined description':'JETSTAR', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3080':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3081':{'combined description':'NORDAIR', 'USDA description':'NORDAIR','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3082':{'combined description':'KOREAN AIRLINES', 'USDA description':'KOREAN AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3083':{'combined description':'AIR AFRIQUE - AIR AFRIQ', 'USDA description':'AIR AFRIGUE','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3084':{'combined description':'EVA AIRLINES', 'USDA description':'EVA AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3085':{'combined description':'MIDWEST EXPRESS AIRLINES - MIDWEST', 'USDA description':'MIDWEST EXPRESS AIRLINES, INC.','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3086':{'combined description':'CARNIVAL AIRLINES', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3087':{'combined description':'METRO AIRLINES', 'USDA description':'METRO AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3088':{'combined description':'CROATIA AIR - CROATIA', 'USDA description':'CROATIA AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3089':{'combined description':'TRANSAERO', 'USDA description':'TRANSAERO','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3090':{'combined description':'UNI AIRWAYS', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3091':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3092':{'combined description':'MIDWAY AIRLINES', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3093':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3094':{'combined description':'ZAMBIA AIRWAYS', 'USDA description':'ZAMBIA AIRWAYS','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3095':{'combined description':'WARDAIR', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3096':{'combined description':'AIR ZIMBABWE', 'USDA description':'AIR ZIMBABWE','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3097':{'combined description':'SPANAIR', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3098':{'combined description':'ASIANA AIRLINES - ASIANA', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3099':{'combined description':'CATHAY PACIFIC', 'USDA description':'CATHAY PACIFIC','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3100':{'combined description':'MALAYSIAN AIRLINE SYSTEM', 'USDA description':'MALAYSIAN AIRLINE SYSTEM','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3101':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3102':{'combined description':'IBERIA', 'USDA description':'IBERIA','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3103':{'combined description':'GARUDA AIR (INDONESIA)', 'USDA description':'GARUDA (INDONESIA)','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3104':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3105':{'combined description':'PIEDMONT', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3106':{'combined description':'BRAATHENS AIR S.A.F.E. (NORWAY)', 'USDA description':'BRAATHENS S.A.F.E. (NORWAY)','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3107':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3108':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3109':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3110':{'combined description':'WINGS AIRWAYS', 'USDA description':'WINGS AIRWAYS','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3111':{'combined description':'BRITISH MIDLAND', 'USDA description':'BRITISH MIDLAND','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3112':{'combined description':'WINDWARD ISLAND', 'USDA description':'WINDWARD ISLAND','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3113':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3114':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3115':{'combined description':'TOWER AIR', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3116':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3117':{'combined description':'VENEZOLANA INTERNATIONAL DE AVIACION (VI', 'USDA description':'VIASA','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3118':{'combined description':'VALLEY AIRLINES', 'USDA description':'VALLEY AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3119':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3120':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3121':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3122':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3123':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3124':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3125':{'combined description':'TAN AIRLINES', 'USDA description':'TAN','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3126':{'combined description':'TALAIR', 'USDA description':'TALAIR','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3127':{'combined description':'TACA INTERNATIONAL', 'USDA description':'TACA INTERNATIONAL','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3128':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3129':{'combined description':'SURINAM AIRWAYS', 'USDA description':'SURINAM AIRWAYS','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3130':{'combined description':'SUNWORLD INTERNATIONAL AIR', 'USDA description':'SUN WORLD INTERNATIONAL','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3131':{'combined description':'VLM AIRLINES', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3132':{'combined description':'FRONTIER AIRLINES - FRONTIER', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3133':{'combined description':'SUNBELT AIRLINES', 'USDA description':'SUNBELT AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3134':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3135':{'combined description':'SUDAN AIRWAYS', 'USDA description':'SUDAN AIRWAYS','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3136':{'combined description':'QATAR AIRWAYS', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3137':{'combined description':'SINGLETION AIR', 'USDA description':'SINGLETON','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3138':{'combined description':'SIMMONS AIRLINES', 'USDA description':'SIMMONS AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3139':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3140':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3141':{'combined description':'SEAIR ALASKA', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3142':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3143':{'combined description':'SCENIC AIRLINES', 'USDA description':'SCENIC AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3144':{'combined description':'VIRGIN ATLANTIC', 'USDA description':'VIRGIN ATLANTIC','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3145':{'combined description':'SAN JUAN AIRLINES', 'USDA description':'SAN JUAN AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3146':{'combined description':'LUXAIR', 'USDA description':'LUXAIR','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3147':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3148':{'combined description':'AIR LITTORAL, S.A.', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3149':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3150':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3151':{'combined description':'AIR ZAIRE', 'USDA description':'AIR ZAIRE','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3152':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3153':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3154':{'combined description':'PRINCEVILLE', 'USDA description':'PRINCEVILLE','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3155':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3156':{'combined description':'GO FLY, LTD.', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3157':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3158':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3159':{'combined description':'PROVINCETOWN-BOSTON AIRWAYS (PBA) AIRLIN', 'USDA description':'PBA','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3160':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3161':{'combined description':'ALL NIPON AIRWAYS', 'USDA description':'ALL NIPPON AIRWAYS','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3162':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3163':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3164':{'combined description':'NORONTAIR', 'USDA description':'NORONTAIR','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3165':{'combined description':'NEW YORK HELICOPTER', 'USDA description':'NEW YORK HELICOPTER','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3166':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3167':{'combined description':'AERO CONTINENTE - AERO CONT', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3168':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3169':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3170':{'combined description':'MOUNT COOK', 'USDA description':'NOUNT COOK','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3171':{'combined description':'CANADIAN AIRLINES INTERNATIONAL', 'USDA description':'CANADIAN AIRLINES INTERNATIONAL','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3172':{'combined description':'NATIONAIR', 'USDA description':'NATIONAIR','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3173':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3174':{'combined description':'JETBLUE AIRLINES', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3175':{'combined description':'MIDDLE EAST AIR', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3176':{'combined description':'METROFLIGHT AIRLINES', 'USDA description':'METROFLIGHT AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3177':{'combined description':'AIRTRAN AIRWAYS - AIRTRAN A', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3178':{'combined description':'MESA AIR', 'USDA description':'MESA AIR','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3179':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3180':{'combined description':'WESTJETAIR', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3181':{'combined description':'MALEV AIR', 'USDA description':'MALEV','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3182':{'combined description':'LOT (POLISH AIRLINES)', 'USDA description':'LOT (POLAND)','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3183':{'combined description':'OMANAIR', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3184':{'combined description':'LIAT', 'USDA description':'LIAT','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3185':{'combined description':'LINEA AEROPOSTAL VENEZOLANA (LAV)', 'USDA description':'LAV (VENEZUELA)','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3186':{'combined description':'LINEAS AEREAS PARAGUAYAS (LAP)', 'USDA description':'LAP (PARAGUAY)','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3187':{'combined description':'LACSA AIR (COSTA RICA)', 'USDA description':'LACSA (COSTA RICA)','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3188':{'combined description':'VIRGINEXPAIR', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3189':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3190':{'combined description':'JUGOSLAV AIR', 'USDA description':'JUGOSLAV AIR','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3191':{'combined description':'ISLAND AIRLINES', 'USDA description':'ISLAND AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3192':{'combined description':'IRAN AIR', 'USDA description':'IRAN AIR','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3193':{'combined description':'INDIAN AIRLINES', 'USDA description':'INDIAN AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3194':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3195':{'combined description':'HOLIDAY AIRLINES', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3196':{'combined description':'HAWAIIAN AIR', 'USDA description':'HAWAIIAN AIR','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3197':{'combined description':'HAVASU AIRLINES', 'USDA description':'HAVASU AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3198':{'combined description':'HARBOR AIRLINES', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3199':{'combined description':'SERVICIOS AEREOS MILITARES', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3200':{'combined description':'GUYANA AIRWAYS', 'USDA description':'FUYANA AIRWAYS','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3201':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3202':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3203':{'combined description':'GOLDEN PACIFIC AIR', 'USDA description':'GOLDEN PACIFIC AIR','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3204':{'combined description':'FREEDOM AIRLINES', 'USDA description':'FREEDOM AIR','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3205':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3206':{'combined description':'CHINA EASTERN AIRLINES - CHINAEAST', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3207':{'combined description':'EMPRESA ECUATORIANA', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3208':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3209':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3210':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3211':{'combined description':'NORWEGIAN AIR SHUTTLE - NORWEGIAN', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3212':{'combined description':'DOMINICANA DE AVIACION', 'USDA description':'DOMINICANA','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3213':{'combined description':'MALMO AVIATION', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3214':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3215':{'combined description':'DAN AIR SERVICES', 'USDA description':'DAN AIR SERVICES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3216':{'combined description':'CUMBERLAND AIRLINES', 'USDA description':'CUMBERLAND AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3217':{'combined description':'CESKOSLOVENSKE AEROLINIE (CSA)', 'USDA description':'CSA','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3218':{'combined description':'CROWN AIR', 'USDA description':'CROWN AIR','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3219':{'combined description':'COMPANIA PANAMENA DE AVIACION (COPA)', 'USDA description':'COPA','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3220':{'combined description':'COMPANIA FAUCETT', 'USDA description':'COMPANIA FAUCETT','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3221':{'combined description':'TRANSPORTES AEROS MILITARES ECUATORIANOS', 'USDA description':'TRANSPORTES AEROS MILITARES ECCUATORANOS','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3222':{'combined description':'COMMAND AIRWAYS', 'USDA description':'COMMAND AIRWAYS','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3223':{'combined description':'COMAIR', 'USDA description':'COMAIR','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3224':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3225':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3226':{'combined description':'SKYWAYS AIR', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3227':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3228':{'combined description':'CAYMAN AIRWAYS', 'USDA description':'CAYMAN AIRWAYS','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3229':{'combined description':'SAETA (SOCIEDAD ECUATORIANOS DE TRANSPOR', 'USDA description':'SAETA SOCIAEDAD ECUATORIANOS DE TRANSPORTES AEREOS','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3230':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3231':{'combined description':'SAHSA (SERVICIO AERO DE HONDURAS)', 'USDA description':'SASHA SERVICIO AERO DE HONDURAS','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3232':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3233':{'combined description':'CAPITOL AIR', 'USDA description':'CAPITOL AIR','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3234':{'combined description':'CARIBBEAN AIRLINES', 'USDA description':'BWIA','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3235':{'combined description':'BROCKWAY AIR', 'USDA description':'BROKWAY AIR','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3236':{'combined description':'AIR ARABIA', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3237':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3238':{'combined description':'BEMIDJI AVIATION', 'USDA description':'BEMIDJI AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3239':{'combined description':'BAR HARBOR AIRLINES', 'USDA description':'BAR HARBOR AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3240':{'combined description':'BAHAMASAIR', 'USDA description':'BAHAMASAIR','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3241':{'combined description':'AVIATECA AIR (GUATEMALA)', 'USDA description':'AVIATECA (GUATEMALA)','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3242':{'combined description':'CARIBBEAN AIRLINES--CARIBBEAN', 'USDA description':'AVENSA','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3243':{'combined description':'AUSTRIAN AIR SERVICE', 'USDA description':'AUSTRIAN AIR SERVICE','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3244':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3245':{'combined description':'EASYJET AIR', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3246':{'combined description':'RYANAIR', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3247':{'combined description':'GOL AIR', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3248':{'combined description':'TAM AIR', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3249':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3250':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3251':{'combined description':'ALOHA AIR', 'USDA description':'ALOHA AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3252':{'combined description':'ANTILEAN AIRLINES (ALM)', 'USDA description':'ALM','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3253':{'combined description':'AMERICA WEST', 'USDA description':'AMERICA WEST','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3254':{'combined description':'U.S. AIR SHUTTLE', 'USDA description':'TRUMP AIRLINE','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3255':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3256':{'combined description':'ALASKA AIRLINES INC.', 'USDA description':'ALASKA AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3257':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3258':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3259':{'combined description':'AMERICAN TRANS AIR', 'USDA description':'AMERICAN TRANS AIR','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3260':{'combined description':'SPIRIT AIRLINES', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3261':{'combined description':'AIR CHINA', 'USDA description':'AIR CHINA','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3262':{'combined description':'RENO AIR', 'USDA description':'RENO AIR, INC.','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3263':{'combined description':'AERO SERVICIO CARABOBO - ASERCA', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3264':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3265':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3266':{'combined description':'AIR SEYCHELLES', 'USDA description':'AIR SEYCHELLES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3267':{'combined description':'AIR PANAMA INTERNATIONAL', 'USDA description':'AIR PANAMA','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3268':{'combined description':'AIR PACIFIC', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3269':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3270':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3271':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3272':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3273':{'combined description':'RICA HOTELS', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3274':{'combined description':'INTER NOR HOTELS', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3275':{'combined description':'AIR NEVADA', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3276':{'combined description':'AIR MIDWEST', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3277':{'combined description':'AIR MADAGASCAR', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3278':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3279':{'combined description':'AIR LA', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3280':{'combined description':'AIR JAMAICA', 'USDA description':'AIR JAMAICA','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3281':{'combined description':'AIR DJIBOUTI', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3282':{'combined description':'AIR DJIBOUTI', 'USDA description':'AIR DJIBOUTI','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3283':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3284':{'combined description':'AERO VIRGIN ISLANDS', 'USDA description':'AERO VIRGIN ISLANDS','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3285':{'combined description':'AERO PERU', 'USDA description':'AERO PERU','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3286':{'combined description':'AERO NICARAGUENSIS', 'USDA description':'AEROLINEAS NICARAGUENSIS','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3287':{'combined description':'AERO COACH AVIATION', 'USDA description':'AERO COACH AVAIATION','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3288':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3289':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3290':{'combined description':'airlines', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3291':{'combined description':'ARIANA AFGHAN', 'USDA description':'ARIANA AFGHAN','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3292':{'combined description':'CYPRUS AIRWAYS', 'USDA description':'CYPRUS AIRWAYS','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3293':{'combined description':'EQUATORIANA', 'USDA description':'ECUATORIANA','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3294':{'combined description':'ETHIOPIAN AIRLINES', 'USDA description':'ETHIOPIAN AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3295':{'combined description':'KENYA AIRWAYS', 'USDA description':'KENYA AIRLINES','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3296':{'combined description':'AIR BERLIN - AIRBERLIN', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3297':{'combined description':'TAROM ROMANIAN AIR TRANSPORT', 'USDA description':'','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3298':{'combined description':'AIR MAURITIUS', 'USDA description':'AIR MAURITIUS','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3299':{'combined description':'WIDEROE\'S FLYVESELSKAP', 'USDA description':'WIDERO\'S FLYVESELSKAP','IRS Description':'Airlines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3351':{'combined description':'AFFILIATED AUTO RENTAL', 'USDA description':'AFFILIATED AUTO RENTAL','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3352':{'combined description':'AMERICAN INTL RENT-A-CAR', 'USDA description':'AMERICAN INTL RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3353':{'combined description':'BROOKS RENT-A-CAR', 'USDA description':'BROOKS RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3354':{'combined description':'ACTION AUTO RENTAL', 'USDA description':'ACTION AUTO RENTAL','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3355':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3356':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3357':{'combined description':'HERTZ RENT-A-CAR', 'USDA description':'HERTZ RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3358':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3359':{'combined description':'PAYLESS CAR RENTAL', 'USDA description':'PAYLESS CAR RENTAL','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3360':{'combined description':'SNAPPY CAR RENTAL', 'USDA description':'SNAPPY CAR RENTAL','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3361':{'combined description':'AIRWAYS RENT-A-CAR', 'USDA description':'AIRWAYS RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3362':{'combined description':'ALTRA AUTO RENTAL', 'USDA description':'ALTRA AUTO RENTAL','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3363':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3364':{'combined description':'AGENCY RENT-A-CAR', 'USDA description':'AGENCY RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3365':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3366':{'combined description':'BUDGET RENT-A-CAR', 'USDA description':'BUDGET RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3367':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3368':{'combined description':'HOLIDAY RENT-A-WRECK', 'USDA description':'HOLIDAY RENT-A-WRECK','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3369':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3370':{'combined description':'RENT-A-WRECK', 'USDA description':'RENT-A-WRECK','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3371':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3372':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3373':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3374':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3375':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3376':{'combined description':'AJAX RENT-A-CAR', 'USDA description':'AJAX RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3377':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3378':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3379':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3380':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3381':{'combined description':'EUROP CAR', 'USDA description':'EUROP CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3382':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3383':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3384':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3385':{'combined description':'TROPICAL RENT-A-CAR', 'USDA description':'TROPICAL RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3386':{'combined description':'SHOWCASE RENTAL CARS', 'USDA description':'SHOWCASE RENTAL CARS','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3387':{'combined description':'ALAMO RENT-A-CAR', 'USDA description':'ALAMO RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3388':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3389':{'combined description':'AVIS RENT-A-CAR', 'USDA description':'AVIS RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3390':{'combined description':'DOLLAR RENT-A-CAR', 'USDA description':'DOLLAR RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3391':{'combined description':'EUROPE BY CAR', 'USDA description':'EUROPE BY CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3392':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3393':{'combined description':'NATIONAL CAR RENTAL', 'USDA description':'NATIONAL CAR RENTAL','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3394':{'combined description':'KEMWELL GROUP RENT-A-CAR', 'USDA description':'KEMWELL GROUP RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3395':{'combined description':'THRIFTY RENT-A-CAR', 'USDA description':'THRIFTY RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3396':{'combined description':'TILDEN TENT-A-CAR', 'USDA description':'TILDEN TENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3397':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3398':{'combined description':'ECONO-CAR RENT-A-CAR', 'USDA description':'ECONO-CAR RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3399':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3400':{'combined description':'AUTO HOST COST CAR RENTALS', 'USDA description':'AUTO HOST COST CAR RENTALS','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3401':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3402':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3403':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3404':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3405':{'combined description':'ENTERPRISE RENT-A-CAR', 'USDA description':'ENTERPRISE RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3406':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3407':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3408':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3409':{'combined description':'GENERAL RENT-A-CAR', 'USDA description':'GENERAL RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3410':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3411':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3412':{'combined description':'A-1 RENT-A-CAR', 'USDA description':'A-1 RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3413':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3414':{'combined description':'GODFREY NATL RENT-A-CAR', 'USDA description':'GODFREY NATL RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3415':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3416':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3417':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3418':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3419':{'combined description':'ALPHA RENT-A-CAR', 'USDA description':'ALPHA RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3420':{'combined description':'ANSA INTL RENT-A-CAR', 'USDA description':'ANSA INTL RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3421':{'combined description':'ALLSTAE RENT-A-CAR', 'USDA description':'ALLSTAE RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3422':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3423':{'combined description':'AVCAR RENT-A-CAR', 'USDA description':'AVCAR RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3424':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3425':{'combined description':'AUTOMATE RENT-A-CAR', 'USDA description':'AUTOMATE RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3426':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3427':{'combined description':'AVON RENT-A-CAR', 'USDA description':'AVON RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3428':{'combined description':'CAREY RENT-A-CAR', 'USDA description':'CAREY RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3429':{'combined description':'INSURANCE RENT-A-CAR', 'USDA description':'INSURANCE RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3430':{'combined description':'MAJOR RENT-A-CAR', 'USDA description':'MAJOR RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3431':{'combined description':'REPLACEMENT RENT-A-CAR', 'USDA description':'REPLACEMENT RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3432':{'combined description':'RESERVE RENT-A-CAR', 'USDA description':'RESERVE RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3433':{'combined description':'UGLY DUCKLING RENT-A-CAR', 'USDA description':'UGLY DUCKLING RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3434':{'combined description':'USA RENT-A-CAR', 'USDA description':'USA RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3435':{'combined description':'VALUE RENT-A-CAR', 'USDA description':'VALUE RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3436':{'combined description':'AUTOHANSA RENT-A-CAR', 'USDA description':'AUTOHANSA RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3437':{'combined description':'CITE RENT-A-CAR', 'USDA description':'CITE RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3438':{'combined description':'INTERENT RENT-A-CAR', 'USDA description':'INTERENT RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3439':{'combined description':'MILLEVILLE RENT-A-CAR', 'USDA description':'MILLEVILLE RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3440':{'combined description':'VIA ROUTE RENT-A-CAR', 'USDA description':'VIA ROUTE RENT-A-CAR','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3441':{'combined description':'Car Rental', 'USDA description':'','IRS Description':'Car Rental', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3501':{'combined description':'HOLIDAY INNS, HOLIDAY INN EXPRESS', 'USDA description':'HOLIDAY INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3502':{'combined description':'BEST WESTERN HOTELS', 'USDA description':'BEST WESTERN HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3503':{'combined description':'SHERATON HOTELS', 'USDA description':'SHERATON HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3504':{'combined description':'HILTON HOTELS', 'USDA description':'HILTON HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3505':{'combined description':'FORTE HOTELS', 'USDA description':'FORTE HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3506':{'combined description':'GOLDEN TULIP HOTELS', 'USDA description':'GOLDEN TULIP HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3507':{'combined description':'FRIENDSHIP INNS', 'USDA description':'FRIENDSHIP INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3508':{'combined description':'QUALITY INNS, QUALITY SUITES', 'USDA description':'QUALITY INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3509':{'combined description':'MARRIOTT HOTELS', 'USDA description':'MARRIOTT HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3510':{'combined description':'DAYS INN, DAYSTOP', 'USDA description':'DAYS INN','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3511':{'combined description':'ARABELLA HOTELS', 'USDA description':'ARABELLA HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3512':{'combined description':'INTER-CONTINENTAL HOTELS', 'USDA description':'INTER-CONTINENTAL HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3513':{'combined description':'WESTIN HOTELS', 'USDA description':'WESTIN HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3514':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3515':{'combined description':'RODEWAY INNS', 'USDA description':'RODEWAY INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3516':{'combined description':'LA QUINTA MOTOR INNS', 'USDA description':'LA QUINTA MOTOR INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3517':{'combined description':'AMERICANA HOTELS', 'USDA description':'AMERICANA HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3518':{'combined description':'SOL HOTELS', 'USDA description':'SOL HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3519':{'combined description':'PULLMAN INTERNATIONAL HOTELS', 'USDA description':'PULLMAN INTERNATIONAL HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3520':{'combined description':'MERIDIEN HOTELS', 'USDA description':'MERIDIEN HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3521':{'combined description':'CREST HOTELS (see FORTE HOTELS)', 'USDA description':'CREST HOTELS (see FORTE HOTELS)','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3522':{'combined description':'TOKYO HOTEL', 'USDA description':'TOKYO HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3523':{'combined description':'PENNSULA HOTEL', 'USDA description':'PENNSULA HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3524':{'combined description':'WELCOMGROUP HOTELS', 'USDA description':'WELCOMGROUP HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3525':{'combined description':'DUNFEY HOTELS', 'USDA description':'DUNFEY HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3526':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3527':{'combined description':'DOWNTOWNER-PASSPORT HOTEL', 'USDA description':'DOWNTOWNER-PASSPORT HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3528':{'combined description':'RED LION HOTELS, RED LION INNS', 'USDA description':'RED LION HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3529':{'combined description':'CP HOTELS', 'USDA description':'CP HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3530':{'combined description':'RENAISSANCE HOTELS, STOUFFER HOTELS', 'USDA description':'RENAISSANCE HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3531':{'combined description':'ASTIR HOTELS', 'USDA description':'ASTIR HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3532':{'combined description':'SUN ROUTE HOTELS', 'USDA description':'SUN ROUTE HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3533':{'combined description':'HOTEL IBIS', 'USDA description':'HOTEL IBIS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3534':{'combined description':'SOUTHERN PACIFIC HOTELS', 'USDA description':'SOUTHERN PACIFIC HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3535':{'combined description':'HILTON INTERNATIONAL', 'USDA description':'HILTON INTERNATIONAL','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3536':{'combined description':'AMFAC HOTELS', 'USDA description':'AMFAC HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3537':{'combined description':'ANA HOTEL', 'USDA description':'ANA HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3538':{'combined description':'CONCORDE HOTELS', 'USDA description':'CONCORDE HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3539':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3540':{'combined description':'IBEROTEL HOTELS', 'USDA description':'IBEROTEL HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3541':{'combined description':'HOTEL OKURA', 'USDA description':'HOTEL OKURA','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3542':{'combined description':'ROYAL HOTELS', 'USDA description':'ROYAL HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3543':{'combined description':'FOUR SEASONS HOTELS', 'USDA description':'FOUR SEASONS HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3544':{'combined description':'CIGA HOTELS', 'USDA description':'CIGA HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3545':{'combined description':'SHANGRI-LA INTERNATIONAL', 'USDA description':'SHANGRI-LA INTERNATIONAL','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3546':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3547':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3548':{'combined description':'HOTELES MELIA', 'USDA description':'HOTELES MELIA','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3549':{'combined description':'AUBERGE DES GOVERNEURS', 'USDA description':'AUBERGE DES GOVERNEURS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3550':{'combined description':'REGAL 8 INNS', 'USDA description':'REGAL 8 INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3551':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3552':{'combined description':'COAST HOTELS', 'USDA description':'COAST HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3553':{'combined description':'PARK INNS INTERNATIONAL', 'USDA description':'PARK INNS INTERNATIONAL','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3554':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3555':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3556':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3557':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3558':{'combined description':'JOLLY HOTELS', 'USDA description':'JOLLY HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3559':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3560':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3561':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3562':{'combined description':'COMFORT INNS', 'USDA description':'COMFORT INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3563':{'combined description':'JOURNEY\'S END MOTLS', 'USDA description':'JOURNEY\'S END MOTLS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3564':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3565':{'combined description':'RELAX INNS', 'USDA description':'RELAX INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3566':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3567':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3568':{'combined description':'LADBROKE HOTELS', 'USDA description':'LADBROKE HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3569':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3570':{'combined description':'FORUM HOTELS', 'USDA description':'FORUM HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3571':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3572':{'combined description':'MIYAKO HOTELS', 'USDA description':'MIYAKO HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3573':{'combined description':'SANDMAN HOTELS', 'USDA description':'SANDMAN HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3574':{'combined description':'VENTURE INNS', 'USDA description':'VENTURE INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3575':{'combined description':'VAGABOND HOTELS', 'USDA description':'VAGABOND HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3576':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3577':{'combined description':'MANDARIN ORIENTAL HOTEL', 'USDA description':'MANDARIN ORIENTAL HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3578':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3579':{'combined description':'HOTEL MERCURE', 'USDA description':'HOTEL MERCURE','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3580':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3581':{'combined description':'DELTA HOTEL', 'USDA description':'DELTA HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3582':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3583':{'combined description':'SAS HOTELS', 'USDA description':'SAS HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3584':{'combined description':'PRINCESS HOTELS INTERNATIONAL', 'USDA description':'PRINCESS HOTELS INTERNATIONAL','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3585':{'combined description':'HUNGAR HOTELS', 'USDA description':'HUNGAR HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3586':{'combined description':'SOKOS HOTELS', 'USDA description':'SOKOS HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3587':{'combined description':'DORAL HOTELS', 'USDA description':'DORAL HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3588':{'combined description':'HELMSLEY HOTELS', 'USDA description':'HELMSLEY HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3589':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3590':{'combined description':'FAIRMONT HOTELS', 'USDA description':'FAIRMONT HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3591':{'combined description':'SONESTA HOTELS', 'USDA description':'SONESTA HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3592':{'combined description':'OMNI HOTELS', 'USDA description':'OMNI HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3593':{'combined description':'CUNARD HOTELS', 'USDA description':'CUNARD HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3594':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3595':{'combined description':'HOSPITALITY INTERNATIONAL', 'USDA description':'HOSPITALITY INTERNATIONAL','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3596':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3597':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3598':{'combined description':'REGENT INTERNATIONAL HOTELS', 'USDA description':'REGENT INTERNATIONAL HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3599':{'combined description':'PANNONIA HOTELS', 'USDA description':'PANNONIA HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3600':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3601':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3602':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3603':{'combined description':'NOAH\'S HOTELS', 'USDA description':'NOAH\'S HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3604':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3605':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3606':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3607':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3608':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3609':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3610':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3611':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3612':{'combined description':'MOVENPICK HOTELS', 'USDA description':'MOVENPICK HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3613':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3614':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3615':{'combined description':'TRAVELODGE', 'USDA description':'TRAVELODGE','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3616':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3617':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3618':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3619':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3620':{'combined description':'TELFORD INTERNATIONAL', 'USDA description':'TELFORD INTERNATIONAL','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3621':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3622':{'combined description':'MERLIN HOTELS', 'USDA description':'MERLIN HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3623':{'combined description':'DORINT HOTELS', 'USDA description':'DORINT HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3624':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3625':{'combined description':'HOTLE UNIVERSALE', 'USDA description':'HOTLE UNIVERSALE','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3626':{'combined description':'PRINCE HOTELS', 'USDA description':'PRINCE HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3627':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3628':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3629':{'combined description':'DAN HOTELS', 'USDA description':'DAN HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3630':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3631':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3632':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3633':{'combined description':'RANK HOTELS', 'USDA description':'RANK HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3634':{'combined description':'SWISSOTEL', 'USDA description':'SWISSOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3635':{'combined description':'RESO HOTELS', 'USDA description':'RESO HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3636':{'combined description':'SAROVA HOTELS', 'USDA description':'SAROVA HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3637':{'combined description':'RAMADA INNS, RAMADA LIMITED', 'USDA description':'RAMADA INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3638':{'combined description':'HO JO INN, HOWARD JOHNSON', 'USDA description':'HO JO INN','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3639':{'combined description':'MOUNT CHARLOTTE THISTLE', 'USDA description':'MOUNT CHARLOTTE THISTLE','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3640':{'combined description':'HYATT HOTEL', 'USDA description':'HYATT HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3641':{'combined description':'SOFITEL HOTELS', 'USDA description':'SOFITEL HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3642':{'combined description':'NOVOTEL HOTELS', 'USDA description':'NOVOTEL HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3643':{'combined description':'STEIGENBERGER HOTELS', 'USDA description':'STEIGENBERGER HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3644':{'combined description':'ECONO LODGES', 'USDA description':'ECONO LODGES','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3645':{'combined description':'QUEENS MOAT HOUSES', 'USDA description':'QUEENS MOAT HOUSES','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3646':{'combined description':'SWALLOW HOTELS', 'USDA description':'SWALLOW HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3647':{'combined description':'HUSA HOTELS', 'USDA description':'HUSA HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3648':{'combined description':'DE VERE HOTELS', 'USDA description':'DE VERE HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3649':{'combined description':'RADISSON HOTELS', 'USDA description':'RADISSON HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3650':{'combined description':'RED ROOK INNS', 'USDA description':'RED ROOK INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3651':{'combined description':'IMPERIAL LONDON HOTEL', 'USDA description':'IMPERIAL LONDON HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3652':{'combined description':'EMBASSY HOTELS', 'USDA description':'EMBASSY HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3653':{'combined description':'PENTA HOTELS', 'USDA description':'PENTA HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3654':{'combined description':'LOEWS HOTELS', 'USDA description':'LOEWS HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3655':{'combined description':'SCANDIC HOTELS', 'USDA description':'SCANDIC HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3656':{'combined description':'SARA HOTELS', 'USDA description':'SARA HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3657':{'combined description':'OBEROI HOTELS', 'USDA description':'OBEROI HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3658':{'combined description':'OTANI HOTELS', 'USDA description':'OTANI HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3659':{'combined description':'TAJ HOTELS INTERNATIONAL', 'USDA description':'TAJ HOTELS INTERNATIONAL','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3660':{'combined description':'KNIGHTS INNS', 'USDA description':'KNIGHTS INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3661':{'combined description':'METROPOLE HOTELS', 'USDA description':'METROPOLE HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3662':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3663':{'combined description':'HOTELES EL PRESIDENTS', 'USDA description':'HOTELES EL PRESIDENTS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3664':{'combined description':'FLAG INN', 'USDA description':'FLAG INN','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3665':{'combined description':'HAMPTON INNS', 'USDA description':'HAMPTON INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3666':{'combined description':'STAKIS HOTELS', 'USDA description':'STAKIS HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3667':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3668':{'combined description':'MARITIM HOTELS', 'USDA description':'MARITIM HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3669':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3670':{'combined description':'ARCARD HOTELS', 'USDA description':'ARCARD HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3671':{'combined description':'ARCTIA HOTELS', 'USDA description':'ARCTIA HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3672':{'combined description':'CAMPANIEL HOTELS', 'USDA description':'CAMPANIEL HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3673':{'combined description':'IBUSZ HOTELS', 'USDA description':'IBUSZ HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3674':{'combined description':'RANTASIPI HOTELS', 'USDA description':'RANTASIPI HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3675':{'combined description':'INTERHOTEL CEDOK', 'USDA description':'INTERHOTEL CEDOK','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3676':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3677':{'combined description':'CLIMAT DE FRANCE HOTELS', 'USDA description':'CLIMAT DE FRANCE HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3678':{'combined description':'CUMULUS HOTELS', 'USDA description':'CUMULUS HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3679':{'combined description':'DANUBIUS HOTEL', 'USDA description':'DANUBIUS HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3680':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3681':{'combined description':'ADAMS MARK HOTELS', 'USDA description':'ADAMS MARK HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3682':{'combined description':'ALLSTAR INNS', 'USDA description':'ALLSTAR INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3683':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3684':{'combined description':'BUDGET HOST INNS', 'USDA description':'BUDGET HOST INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3685':{'combined description':'BUDGETEL HOTELS', 'USDA description':'BUDGETEL HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3686':{'combined description':'SUISSE CHALETS', 'USDA description':'SUISSE CHALETS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3687':{'combined description':'CLARION HOTELS', 'USDA description':'CLARION HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3688':{'combined description':'COMPRI HOTELS', 'USDA description':'COMPRI HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3689':{'combined description':'CONSORT HOTELS', 'USDA description':'CONSORT HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3690':{'combined description':'COURTYARD BY MARRIOTT', 'USDA description':'COURTYARD BY MARRIOTT','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3691':{'combined description':'DILLION INNS', 'USDA description':'DILLION INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3692':{'combined description':'DOUBLETREE HOTELS', 'USDA description':'DOUBLETREE HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3693':{'combined description':'DRURY INNS', 'USDA description':'DRURY INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3694':{'combined description':'ECONOMY INNS OF AMERICA', 'USDA description':'ECONOMY INNS OF AMERICA','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3695':{'combined description':'EMBASSY SUITES', 'USDA description':'EMBASSY SUITES','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3696':{'combined description':'EXEL INNS', 'USDA description':'EXEL INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3697':{'combined description':'FARFIELD HOTELS', 'USDA description':'FARFIELD HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3698':{'combined description':'HARLEY HOTELS', 'USDA description':'HARLEY HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3699':{'combined description':'MIDWAY MOTOR LODGE', 'USDA description':'MIDWAY MOTOR LODGE','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3700':{'combined description':'MOTEL 6', 'USDA description':'MOTEL 6','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3701':{'combined description':'GUEST QUARTERS (Formally PICKETT SUITE HOTELS)', 'USDA description':'GUEST QUARTERS (Formally PICKETT SUITE HOTELS)','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3702':{'combined description':'THE REGISTRY HOTELS', 'USDA description':'THE REGISTRY HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3703':{'combined description':'RESIDENCE INNS', 'USDA description':'RESIDENCE INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3704':{'combined description':'ROYCE HOTELS', 'USDA description':'ROYCE HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3705':{'combined description':'SANDMAN INNS', 'USDA description':'SANDMAN INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3706':{'combined description':'SHILO INNS', 'USDA description':'SHILO INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3707':{'combined description':'SHONEY\'S INNS', 'USDA description':'SHONEY\'S INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3708':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3709':{'combined description':'SUPER8 MOTELS', 'USDA description':'SUPER8 MOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3710':{'combined description':'THE RITZ CARLTON HOTELS', 'USDA description':'THE RITZ CARLTON HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3711':{'combined description':'FLAG INNS (AUSRALIA)', 'USDA description':'FLAG INNS (AUSRALIA)','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3712':{'combined description':'GOLDEN CHAIN HOTEL', 'USDA description':'GOLDEN CHAIN HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3713':{'combined description':'QUALITY PACIFIC HOTEL', 'USDA description':'QUALITY PACIFIC HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3714':{'combined description':'FOUR SEASONS HOTEL (AUSTRALIA)', 'USDA description':'FOUR SEASONS HOTEL (AUSTRALIA)','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3715':{'combined description':'FARIFIELD INN', 'USDA description':'FARIFIELD INN','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3716':{'combined description':'CARLTON HOTELS', 'USDA description':'CARLTON HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3717':{'combined description':'CITY LODGE HOTELS', 'USDA description':'CITY LODGE HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3718':{'combined description':'KAROS HOTELS', 'USDA description':'KAROS HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3719':{'combined description':'PROTEA HOTELS', 'USDA description':'PROTEA HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3720':{'combined description':'SOUTHERN SUN HOTELS', 'USDA description':'SOUTHERN SUN HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3721':{'combined description':'HILTON CONRAD', 'USDA description':'HILTON CONRAD','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3722':{'combined description':'WYNDHAM HOTEL AND RESORTS', 'USDA description':'WYNDHAM HOTEL AND RESORTS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3723':{'combined description':'RICA HOTELS', 'USDA description':'RICA HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3724':{'combined description':'INER NOR HOTELS', 'USDA description':'INER NOR HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3725':{'combined description':'SEAINES PLANATION', 'USDA description':'SEAINES PLANATION','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3726':{'combined description':'RIO SUITES', 'USDA description':'RIO SUITES','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3727':{'combined description':'BROADMOOR HOTEL', 'USDA description':'BROADMOOR HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3728':{'combined description':'BALLY\'S HOTEL AND CASINO', 'USDA description':'BALLY\'S HOTEL AND CASINO','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3729':{'combined description':'JOHN ASCUAGA\'S NUGGET', 'USDA description':'JOHN ASCUAGA\'S NUGGET','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3730':{'combined description':'MGM GRAND HOTEL', 'USDA description':'MGM GRAND HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3731':{'combined description':'HARRAH\'S HOTELS AND CASINOS', 'USDA description':'HARRAH\'S HOTELS AND CASINOS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3732':{'combined description':'OPRYLAND HOTEL', 'USDA description':'OPRYLAND HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3733':{'combined description':'BOCA RATON RESORT', 'USDA description':'BOCA RATON RESORT','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3734':{'combined description':'HARVEY/BRISTOL HOTELS', 'USDA description':'HARVEY/BRISTOL HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3735':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3736':{'combined description':'COLORADO BELLE/EDGEWATER RESORT', 'USDA description':'COLORADO BELLE/EDGEWATER RESORT','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3737':{'combined description':'RIVIERA HOTEL AND CASINO', 'USDA description':'RIVIERA HOTEL AND CASINO','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3738':{'combined description':'TROPICANA RESORT AND CASINO', 'USDA description':'TROPICANA RESORT AND CASINO','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3739':{'combined description':'WOODSIDE HOTELS AND RESORTS', 'USDA description':'WOODSIDE HOTELS AND RESORTS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3740':{'combined description':'TOWNPLACE SUITES', 'USDA description':'TOWNPLACE SUITES','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3741':{'combined description':'MILLENIUM BROADWAY HOTEL', 'USDA description':'MILLENIUM BROADWAY HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3742':{'combined description':'CLUB MED', 'USDA description':'CLUB MED','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3743':{'combined description':'BILTMORE HOTEL AND SUITES', 'USDA description':'BILTMORE HOTEL AND SUITES','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3744':{'combined description':'CAREFREE RESORTS', 'USDA description':'CAREFREE RESORTS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3745':{'combined description':'ST. REGIS HOTEL', 'USDA description':'ST. REGIS HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3746':{'combined description':'THE ELIOT HOTEL', 'USDA description':'THE ELIOT HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3747':{'combined description':'CLUBCORP/CLUB RESORTS', 'USDA description':'CLUBCORP/CLUB RESORTS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3748':{'combined description':'WELESLEY INNS', 'USDA description':'WELESLEY INNS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3749':{'combined description':'THE BEVERLY HILLS HOTEL', 'USDA description':'THE BEVERLY HILLS HOTEL','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3750':{'combined description':'CROWNE PLAZA HOTELS', 'USDA description':'CROWNE PLAZA HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3751':{'combined description':'HOMEWOOD SUITES', 'USDA description':'HOMEWOOD SUITES','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3752':{'combined description':'PEABODY HOTELS', 'USDA description':'PEABODY HOTELS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3753':{'combined description':'GREENBRIAH RESORTS', 'USDA description':'GREENBRIAH RESORTS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3754':{'combined description':'AMELIA ISLAND PLANATION', 'USDA description':'AMELIA ISLAND PLANATION','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3755':{'combined description':'THE HOMESTEAD', 'USDA description':'THE HOMESTEAD','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3756':{'combined description':'SOUTH SEAS RESORTS', 'USDA description':'SOUTH SEAS RESORTS','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3757':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3758':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3759':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3760':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3761':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3762':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3763':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3764':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3765':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3766':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3767':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3768':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3769':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3770':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3771':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3772':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3773':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3774':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3775':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3776':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3777':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3778':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3779':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3780':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3781':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3782':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3783':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3784':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3785':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3786':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3787':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3788':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3789':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3790':{'combined description':'Hotels/Motels/Inns/Resorts', 'USDA description':'','IRS Description':'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '3835':{'combined description':'* MASTERS ECONOMY INNS', 'USDA description':'* MASTERS ECONOMY INNS','IRS Description':'', 'Reportable under 6041/6041A and Authority for Exception':''}, - '4011':{'combined description':'Railroads', 'USDA description':'','IRS Description':'Railroads', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '4111':{'combined description':'Local/Suburban Commuter Passenger Transportation & Railroads, Feries, Local Water Transportation.', 'USDA description':'Local/Suburban Commuter Passenger Transportation & Railroads, Feries, Local Water Transportation.','IRS Description':'Commuter Transport, Ferries', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '4112':{'combined description':'Passenger Railways', 'USDA description':'Passenger Railways','IRS Description':'Passenger Railways', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '4119':{'combined description':'Ambulance Services', 'USDA description':'Ambulance Services','IRS Description':'Ambulance Services', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '4121':{'combined description':'Taxicabs and Limousines', 'USDA description':'Taxicabs and Limousines','IRS Description':'Taxicabs/Limousines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '4131':{'combined description':'Bus Lines, Including Charters, Tour Buses', 'USDA description':'Bus Lines, Including Charters, Tour Buses','IRS Description':'Bus Lines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '4214':{'combined description':'Motor Freight Carriers, Moving and Storage Companies, Trucking & Local/Long Distance, Delivery Services & Local', 'USDA description':'Motor Freight Carriers','IRS Description':'Motor Freight Carriers and Trucking - Local and Long Distance, Moving and Storage Companies, and Local Delivery Services ', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '4215':{'combined description':'Courier Services & Air or Ground, Freight forwarders', 'USDA description':'Courier Services & Air or Ground','IRS Description':'Courier Services ', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '4225':{'combined description':'Public warehousing, Storage', 'USDA description':'Warehousing, Public','IRS Description':'Public Warehousing and Storage - Farm Products, Refrigerated Goods, Household Goods, and Storage ', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '4411':{'combined description':'Cruise and Steamship Lines', 'USDA description':'Cruise Lines','IRS Description':'Cruise Lines', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '4457':{'combined description':'Boat Rentals and Leases', 'USDA description':'Boat Rentals and Leases','IRS Description':'Boat Rentals and Leases', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '4468':{'combined description':'Marinas, Marine Service, and Supplies', 'USDA description':'Marinas, Marine Service, and Supplies','IRS Description':'Marinas, Service and Supplies', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '4511':{'combined description':'Airlines, Air Carriers ( not listed elsewhere)', 'USDA description':'Airlines, Air Carriers ( not listed elsewhere)','IRS Description':'Airlines, Air Carriers', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '4582':{'combined description':'Airports, Airport Terminals, Flying Fields', 'USDA description':'Airports, Airport Terminals','IRS Description':'Airports, Flying Fields', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '4722':{'combined description':'Travel Agencies and Tour Operations', 'USDA description':'Travel Agencies and Tour Operations','IRS Description':'Travel Agencies, Tour Operators', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '4723':{'combined description':'Package Tour Operators (For use in Germany only)', 'USDA description':'Package Tour Operators (For use in Germany only)','IRS Description':'TUI Travel - Germany', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '4784':{'combined description':'Toll and Bridge Fees', 'USDA description':'Toll and Bridge Fees','IRS Description':'Tolls/Bridge Fees', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '4789':{'combined description':'Transportation Services, Not elsewhere classified)', 'USDA description':'Transportation Services, Not elsewhere classified)','IRS Description':'Transportation Services (Not Elsewhere Classified)', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '4812':{'combined description':'Telecommunications Equipment including telephone sales', 'USDA description':'Telecommunications Equipment including telephone sales','IRS Description':'Telecommunication Equipment and Telephone Sales', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '4814':{'combined description':'Fax services, Telecommunication Services', 'USDA description':'Fax services','IRS Description':'Telecommunication Services', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '4815':{'combined description':'VisaPhone', 'USDA description':'VisaPhone','IRS Description':'', 'Reportable under 6041/6041A and Authority for Exception':''}, - '4816':{'combined description':'Computer Network Services', 'USDA description':'','IRS Description':'Computer Network Services', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '4821':{'combined description':'Telegraph services', 'USDA description':'Telegraph services','IRS Description':'Telegraph Services', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '4829':{'combined description':'Money Orders & Wire Transfer', 'USDA description':'Money Orders & Wire Transfer','IRS Description':'Wires, Money Orders', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '4899':{'combined description':'Cable and other pay television (previously Cable Services)', 'USDA description':'Cable and other pay television (previously Cable Services)','IRS Description':'Cable, Satellite, and Other Pay Television and Radio', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '4900':{'combined description':'Electric, Gas, Sanitary and Water Utilities', 'USDA description':'Electric, Gas, Sanitary and Water Utilities','IRS Description':'Utilities ', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5013':{'combined description':'Motor vehicle supplies and new parts', 'USDA description':'Motor vehicle supplies and new parts','IRS Description':'Motor Vehicle Supplies and New Parts', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5021':{'combined description':'Office and Commercial Furniture', 'USDA description':'Office and Commercial Furniture','IRS Description':'Office and Commercial Furniture', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5039':{'combined description':'Construction Materials, Not Elsewhere Classified', 'USDA description':'Construction Materials, Not Elsewhere Classified','IRS Description':'Construction Materials (Not Elsewhere Classified)', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5044':{'combined description':'Office, Photographic, Photocopy, and Microfilm Equipment', 'USDA description':'Office, Photographic, Photocopy, and Microfilm Equipment','IRS Description':'Photographic, Photocopy, Microfilm Equipment, and Supplies', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5045':{'combined description':'Computers, Computer Peripheral Equipment, Software', 'USDA description':'Computers, Computer Peripheral Equipment, Software','IRS Description':'Computers, Peripherals, and Software', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5046':{'combined description':'Commercial Equipment, Not Elsewhere Classified', 'USDA description':'Commercial Equipment, Not Elsewhere Classified','IRS Description':'Commercial Equipment (Not Elsewhere Classified)', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5047':{'combined description':'Medical, Dental Ophthalmic, Hospital Equipment and Supplies', 'USDA description':'Medical, Dental Ophthalmic, Hospital Equipment and Supplies','IRS Description':'Medical, Dental, Ophthalmic, and Hospital Equipment and Supplies', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5051':{'combined description':'Metal Service Centers and Offices', 'USDA description':'Metal Service Centers and Offices','IRS Description':'Metal Service Centers', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5065':{'combined description':'Electrical Parts and Equipment', 'USDA description':'Electrical Parts and Equipment','IRS Description':'Electrical Parts and Equipment', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5072':{'combined description':'Hardware Equipment and Supplies', 'USDA description':'Hardware Equipment and Supplies','IRS Description':'Hardware, Equipment, and Supplies', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5074':{'combined description':'Plumbing and Heating Equipment and Supplies', 'USDA description':'Plumbing and Heating Equipment and Supplies','IRS Description':'Plumbing, Heating Equipment, and Supplies', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5085':{'combined description':'Industrial Supplies, Not Elsewhere Classified', 'USDA description':'Industrial Supplies, Not Elsewhere Classified','IRS Description':'Industrial Supplies (Not Elsewhere Classified)', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5094':{'combined description':'Precious Stones and Metals, Watches and Jewelry', 'USDA description':'Precious Stones and Metals, Watches and Jewelry','IRS Description':'Precious Stones and Metals, Watches and Jewelry', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5099':{'combined description':'Durable Goods, Not Elsewhere Classified', 'USDA description':'Durable Goods, Not Elsewhere Classified','IRS Description':'Durable Goods (Not Elsewhere Classified)', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5111':{'combined description':'Stationery, Office Supplies, Printing, and Writing Paper', 'USDA description':'Stationery, Office Supplies, Printing, and Writing Paper','IRS Description':'Stationary, Office Supplies, Printing and Writing Paper', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5122':{'combined description':'Drugs, Drug Proprietors, and Druggist\'s Sundries', 'USDA description':'Drugs, Drug Proprietors, and Druggist\'s Sundries','IRS Description':'Drugs, Drug Proprietaries, and Druggist Sundries', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5131':{'combined description':'Piece Goods, Notions, and Other Dry Goods', 'USDA description':'Piece Goods, Notions, and Other Dry Goods','IRS Description':'Piece Goods, Notions, and Other Dry Goods', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5137':{'combined description':'Men\'s Women\'s and Children\'s Uniforms and Commercial Clothing', 'USDA description':'Men\'s Women\'s and Children\'s Uniforms and Commercial Clothing','IRS Description':'Uniforms, Commercial Clothing', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5139':{'combined description':'Commercial Footwear', 'USDA description':'Commercial Footwear','IRS Description':'Commercial Footwear', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5169':{'combined description':'Chemicals and Allied Products, Not Elsewhere Classified', 'USDA description':'Chemicals and Allied Products, Not Elsewhere Classified','IRS Description':'Chemicals and Allied Products (Not Elsewhere Classified)', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5172':{'combined description':'Petroleum and Petroleum Products', 'USDA description':'Petroleum and Petroleum Products','IRS Description':'Petroleum and Petroleum Products', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5192':{'combined description':'Books, Periodicals, and Newspapers', 'USDA description':'Books, Periodicals, and Newspapers','IRS Description':'Books, Periodicals, and Newspapers', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5193':{'combined description':'Florists\' Supplies, Nursery Stock and Flowers', 'USDA description':'Florists\' Supplies, Nursery Stock and Flowers','IRS Description':'Florists Supplies, Nursery Stock, and Flowers', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5198':{'combined description':'Paints, Varnishes, and Supplies', 'USDA description':'Paints, Varnishes, and Supplies','IRS Description':'Paints, Varnishes, and Supplies', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5199':{'combined description':'Non-durable Goods, Not Elsewhere Classified', 'USDA description':'Non-durable Goods, Not Elsewhere Classified','IRS Description':'Nondurable Goods (Not Elsewhere Classified)', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5200':{'combined description':'Home Supply Warehouse Stores', 'USDA description':'Home Supply Warehouse Stores','IRS Description':'Home Supply Warehouse Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5211':{'combined description':'Lumber and Building Materials Stores', 'USDA description':'Lumber and Building Materials Stores','IRS Description':'Lumber, Building Materials Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5231':{'combined description':'Glass, Paint, and Wallpaper Stores', 'USDA description':'Wallpaper Stores','IRS Description':'Glass, Paint, and Wallpaper Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5251':{'combined description':'Hardware Stores', 'USDA description':'Hardware Stores','IRS Description':'Hardware Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5261':{'combined description':'Nurseries & Lawn and Garden Supply Store', 'USDA description':'Nurseries & Lawn and Garden Supply Store','IRS Description':'Nurseries, Lawn and Garden Supply Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5271':{'combined description':'Mobile Home Dealers', 'USDA description':'Mobile Home Dealers','IRS Description':'Mobile Home Dealers', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5300':{'combined description':'Wholesale Clubs', 'USDA description':'Wholesale Clubs','IRS Description':'Wholesale Clubs', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5309':{'combined description':'Duty Free Store', 'USDA description':'Duty Free Store','IRS Description':'Duty Free Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5310':{'combined description':'Discount Stores', 'USDA description':'Discount Stores','IRS Description':'Discount Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5311':{'combined description':'Department Stores', 'USDA description':'Department Stores','IRS Description':'Department Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5331':{'combined description':'Variety Stores', 'USDA description':'Variety Stores','IRS Description':'Variety Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5399':{'combined description':'Misc. General Merchandise', 'USDA description':'Misc. General Merchandise','IRS Description':'Miscellaneous General Merchandise', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5411':{'combined description':'Grocery Stores, Supermarkets', 'USDA description':'Grocery Stores','IRS Description':'Grocery Stores, Supermarkets', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5422':{'combined description':'Meat Provisioners & Freezer and Locker', 'USDA description':'Meat Provisioners & Freezer and Locker','IRS Description':'Freezer and Locker Meat Provisioners', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5441':{'combined description':'Candy, Nut, and Confectionery Stores', 'USDA description':'Candy Stores','IRS Description':'Candy, Nut, and Confectionery Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5451':{'combined description':'Dairy Products Stores', 'USDA description':'Dairy Products Stores','IRS Description':'Dairy Products Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5462':{'combined description':'Bakeries', 'USDA description':'Bakeries','IRS Description':'Bakeries', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5499':{'combined description':'Misc. Food Stores & Convenience Stores and Specialty Markets', 'USDA description':'Misc. Food Stores & Convenience Stores and Specialty Markets','IRS Description':'Miscellaneous Food Stores - Convenience Stores and Specialty Markets', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5511':{'combined description':'Car and Truck Dealers (New and Used) Sales, Service, Repairs, Parts, and Leasing', 'USDA description':'Car and Truck Dealers (New and Used) Sales, Service, Repairs, Parts, and Leasing','IRS Description':'Car and Truck Dealers (New & Used) Sales, Service, Repairs Parts and Leasing ', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5521':{'combined description':'Automobile and Truck Dealers (Used Only)', 'USDA description':'Automobile and Truck Dealers (Used Only)','IRS Description':'Car and Truck Dealers (Used Only) Sales, Service, Repairs Parts and Leasing ', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5531':{'combined description':'Automobile Supply Stores', 'USDA description':'Automobile Supply Stores','IRS Description':'Auto and Home Supply Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5532':{'combined description':'Automotive Tire Stores', 'USDA description':'Automotive Tire Stores','IRS Description':'Automotive Tire Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5533':{'combined description':'Automotive Parts, Accessories Stores', 'USDA description':'Automotive Parts, Accessories Stores','IRS Description':'Automotive Parts and Accessories Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5541':{'combined description':'Service Stations ( with or without ancillary services)', 'USDA description':'Service Stations ( with or without ancillary services)','IRS Description':'Service Stations ', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5542':{'combined description':'Automated Fuel Dispensers', 'USDA description':'Automated Fuel Dispensers','IRS Description':'Automated Fuel Dispensers', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5551':{'combined description':'Boat Dealers', 'USDA description':'Boat Dealers','IRS Description':'Boat Dealers', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5561':{'combined description':'Recreational and Utility Trailers, Camp Dealers', 'USDA description':'Recreational and Utility Trailers, Camp Dealers','IRS Description':'Motorcycle Shops, Dealers', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5571':{'combined description':'Motorcycle Dealers', 'USDA description':'Motorcycle Dealers','IRS Description':'Motorcycle Shops and Dealers', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5592':{'combined description':'Motor Home Dealers', 'USDA description':'Motor Home Dealers','IRS Description':'Motor Homes Dealers', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5598':{'combined description':'Snowmobile Dealers', 'USDA description':'Snowmobile Dealers','IRS Description':'Snowmobile Dealers', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5599':{'combined description':'Miscellaneous Auto Dealers ', 'USDA description':'','IRS Description':'Miscellaneous Auto Dealers ', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5611':{'combined description':'Men\'s and Boy\'s Clothing and Accessories Stores', 'USDA description':'Men\'s and Boy\'s Clothing and Accessories Stores','IRS Description':'Men\'s and Boy\'s Clothing and Accessories Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5621':{'combined description':'Women\'s Ready-to-Wear Stores', 'USDA description':'Women\'s Ready-to-Wear Stores','IRS Description':'Women\'s Ready-To-Wear Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5631':{'combined description':'Women\'s Accessory and Specialty Shops', 'USDA description':'Women\'s Accessory and Specialty Shops','IRS Description':'Women\'s Accessory and Specialty Shops', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5641':{'combined description':'Children\'s and Infant\'s Wear Stores', 'USDA description':'Children\'s and Infant\'s Wear Stores','IRS Description':'Children\'s and Infant\'s Wear Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5651':{'combined description':'Family Clothing Stores', 'USDA description':'Family Clothing Stores','IRS Description':'Family Clothing Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5655':{'combined description':'Sports Apparel, Riding Apparel Stores', 'USDA description':'Sports Apparel, Riding Apparel Stores','IRS Description':'Sports and Riding Apparel Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5661':{'combined description':'Shoe Stores', 'USDA description':'Shoe Stores','IRS Description':'Shoe Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5681':{'combined description':'Furriers and Fur Shops', 'USDA description':'Furriers and Fur Shops','IRS Description':'Furriers and Fur Shops', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5691':{'combined description':'Men\'s and Women\'s Clothing Stores', 'USDA description':'Men\'s and Women\'s Clothing Stores','IRS Description':'Men\'s, Women\'s Clothing Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5697':{'combined description':'Tailors, Seamstress, Mending, and Alterations', 'USDA description':'Tailors, Seamstress, Mending, and Alterations','IRS Description':'Tailors, Alterations', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '5698':{'combined description':'Wig and Toupee Stores', 'USDA description':'Wig and Toupee Stores','IRS Description':'Wig and Toupee Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5699':{'combined description':'Miscellaneous Apparel and Accessory Shops', 'USDA description':'Miscellaneous Apparel and Accessory Shops','IRS Description':'Miscellaneous Apparel and Accessory Shops', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5712':{'combined description':'Furniture, Home Furnishings, and Equipment Stores, ExceptAppliances', 'USDA description':'Furniture, Home Furnishings, and Equipment Stores, ExceptAppliances','IRS Description':'Furniture, Home Furnishings, and Equipment Stores, Except Appliances', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5713':{'combined description':'Floor Covering Stores', 'USDA description':'Floor Covering Stores','IRS Description':'Floor Covering Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5714':{'combined description':'Drapery, Window Covering and Upholstery Stores', 'USDA description':'Drapery, Window Covering and Upholstery Stores','IRS Description':'Drapery, Window Covering, and Upholstery Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5718':{'combined description':'Fireplace, Fireplace Screens, and Accessories Stores', 'USDA description':'Fireplace, Fireplace Screens, and Accessories Stores','IRS Description':'Fireplace, Fireplace Screens, and Accessories Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5719':{'combined description':'Miscellaneous Home Furnishing Specialty Stores', 'USDA description':'Miscellaneous Home Furnishing Specialty Stores','IRS Description':'Miscellaneous Home Furnishing Specialty Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5722':{'combined description':'Household Appliance Stores', 'USDA description':'Household Appliance Stores','IRS Description':'Household Appliance Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5732':{'combined description':'Electronic Sales', 'USDA description':'Electronic Sales','IRS Description':'Electronics Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5733':{'combined description':'Music Stores, Musical Instruments, Piano Sheet Music', 'USDA description':'Music Stores, Musical Instruments, Piano Sheet Music','IRS Description':'Music Stores-Musical Instruments, Pianos, and Sheet Music', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5734':{'combined description':'Computer Software Stores', 'USDA description':'Computer Software Stores','IRS Description':'Computer Software Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5735':{'combined description':'Record Shops', 'USDA description':'Record Shops','IRS Description':'Record Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5811':{'combined description':'Caterers', 'USDA description':'Caterers','IRS Description':'Caterers', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '5812':{'combined description':'Eating places and Restaurants', 'USDA description':'Eating places and Restaurants','IRS Description':'Eating Places, Restaurants', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5813':{'combined description':'Drinking Places (Alcoholic Beverages), Bars, Taverns, Cocktail lounges, Nightclubs and Discotheques', 'USDA description':'Drinking Places (Alcoholic Beverages), Bars, Taverns, Cocktail lounges, Nightclubs and Discotheques','IRS Description':'Drinking Places', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5814':{'combined description':'Fast Food Restaurants', 'USDA description':'Fast Food Restaurants','IRS Description':'Fast Food Restaurants', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5832':{'combined description':'Antique Shops & Sales, Repairs, and Restoration Services', 'USDA description':'Antique Shops & Sales, Repairs, and Restoration Services','IRS Description':'', 'Reportable under 6041/6041A and Authority for Exception':''}, - '5912':{'combined description':'Drug Stores and Pharmacies', 'USDA description':'Drug Stores and Pharmacies','IRS Description':'Drug Stores and Pharmacies', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5921':{'combined description':'Package Stores & Beer, Wine, and Liquor', 'USDA description':'Package Stores & Beer, Wine, and Liquor','IRS Description':'Package Stores-Beer, Wine, and Liquor', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5931':{'combined description':'Used Merchandise and Secondhand Stores', 'USDA description':'Used Merchandise and Secondhand Stores','IRS Description':'Used Merchandise and Secondhand Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5932':{'combined description':'Antique Shops', 'USDA description':'','IRS Description':'Antique Shops', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5933':{'combined description':'Pawn Shops and Salvage Yards', 'USDA description':'Pawn Shops and Salvage Yards','IRS Description':'Pawn Shops', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5935':{'combined description':'Wrecking and Salvage Yards', 'USDA description':'Wrecking and Salvage Yards','IRS Description':'Wrecking and Salvage Yards', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '5937':{'combined description':'Antique Reproductions', 'USDA description':'Antique Reproductions','IRS Description':'Antique Reproductions', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5940':{'combined description':'Bicycle Shops & Sales and Service', 'USDA description':'Bicycle Shops & Sales and Service','IRS Description':'Bicycle Shops', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5941':{'combined description':'Sporting Goods Stores', 'USDA description':'Sporting Goods Stores','IRS Description':'Sporting Goods Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5942':{'combined description':'Book Stores', 'USDA description':'Book Stores','IRS Description':'Book Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5943':{'combined description':'Stationery Stores, Office and School Supply Stores', 'USDA description':'Stationery Stores, Office and School Supply Stores','IRS Description':'Stationery Stores, Office, and School Supply Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5944':{'combined description':'Watch, Clock, Jewelry, and Silverware Stores', 'USDA description':'Watch, Clock, Jewelry, and Silverware Stores','IRS Description':'Jewelry Stores, Watches, Clocks, and Silverware Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5945':{'combined description':'Hobby, Toy, and Game Shops', 'USDA description':'Hobby, Toy, and Game Shops','IRS Description':'Hobby, Toy, and Game Shops', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5946':{'combined description':'Camera and Photographic Supply Stores', 'USDA description':'Camera and Photographic Supply Stores','IRS Description':'Camera and Photographic Supply Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5947':{'combined description':'Card Shops, Gift, Novelty, and Souvenir Shops', 'USDA description':'Card Shops, Gift, Novelty, and Souvenir Shops','IRS Description':'Gift, Card, Novelty, and Souvenir Shops', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5948':{'combined description':'Leather Foods Stores', 'USDA description':'Leather Foods Stores','IRS Description':'Luggage and Leather Goods Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5949':{'combined description':'Sewing, Needle, Fabric, and Price Goods Stores', 'USDA description':'Sewing, Needle, Fabric, and Price Goods Stores','IRS Description':'Sewing, Needlework, Fabric, and Piece Goods Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5950':{'combined description':'Glassware/Crystal Stores', 'USDA description':'Glassware/Crystal Stores','IRS Description':'Glassware, Crystal Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5960':{'combined description':'Direct Marketing- Insurance Service', 'USDA description':'Direct Marketing- Insurance Service','IRS Description':'Direct Marketing - Insurance Services', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '5961':{'combined description':'Mail Order Houses Including Catalog Order Stores, Book/Record Clubs (No longer permitted for U.S. original presentments)', 'USDA description':'Mail Order Houses Including Catalog Order Stores, Book/Record Clubs (No longer permitted for U.S. original presentments)','IRS Description':'', 'Reportable under 6041/6041A and Authority for Exception':''}, - '5962':{'combined description':'Direct Marketing & Travel Related Arrangements Services', 'USDA description':'Direct Marketing & Travel Related Arrangements Services','IRS Description':'Direct Marketing - Travel', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '5963':{'combined description':'Door-to-Door Sales', 'USDA description':'Door-to-Door Sales','IRS Description':'Door-To-Door Sales', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5964':{'combined description':'Direct Marketing & Catalog Merchant', 'USDA description':'Direct Marketing & Catalog Merchant','IRS Description':'Direct Marketing - Catalog Merchant', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5965':{'combined description':'Direct Marketing & Catalog and Catalog and Retail Merchant', 'USDA description':'Direct Marketing & Catalog and Catalog and Retail Merchant','IRS Description':'Direct Marketing - Combination Catalog and Retail Merchant', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5966':{'combined description':'Direct Marketing- Outbound Telemarketing Merchant', 'USDA description':'Direct Marketing- Outbound Telemarketing Merchant','IRS Description':'Direct Marketing - Outbound Tele', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5967':{'combined description':'Direct Marketing & Inbound Teleservices Merchant', 'USDA description':'Direct Marketing & Inbound Teleservices Merchant','IRS Description':'Direct Marketing - Inbound Tele', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5968':{'combined description':'Direct Marketing & Continuity/Subscription Merchant', 'USDA description':'Direct Marketing & Continuity/Subscription Merchant','IRS Description':'Direct Marketing - Subscription', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5969':{'combined description':'Direct Marketing & Not Elsewhere Classified', 'USDA description':'Direct Marketing & Not Elsewhere Classified','IRS Description':'Direct Marketing - Other ', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5970':{'combined description':'Artist\'s Supply and Craft Shops', 'USDA description':'Artist\'s Supply and Craft Shops','IRS Description':'Artist\'s Supply and Craft Shops', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5971':{'combined description':'Art Dealers and Galleries', 'USDA description':'Art Dealers and Galleries','IRS Description':'Art Dealers and Galleries', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5972':{'combined description':'Stamp and Coin Stores & Philatelic and Numismatic Supplies', 'USDA description':'Stamp and Coin Stores & Philatelic and Numismatic Supplies','IRS Description':'Stamp and Coin Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5973':{'combined description':'Religious Goods Stores', 'USDA description':'Religious Goods Stores','IRS Description':'Religious Goods Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5975':{'combined description':'Hearing Aids & Sales, Service, and Supply Stores', 'USDA description':'Hearing Aids & Sales, Service, and Supply Stores','IRS Description':'Hearing Aids Sales and Supplies', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5976':{'combined description':'Orthopedic Goods Prosthetic Devices', 'USDA description':'Orthopedic Goods Prosthetic Devices','IRS Description':'Orthopedic Goods - Prosthetic Devices', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5977':{'combined description':'Cosmetic Stores', 'USDA description':'Cosmetic Stores','IRS Description':'Cosmetic Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5978':{'combined description':'Typewriter Stores & Sales, Rental, Service', 'USDA description':'Typewriter Stores & Sales, Rental, Service','IRS Description':'Typewriter Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5983':{'combined description':'Fuel & Fuel Oil, Wood, Coal, Liquefied Petroleum', 'USDA description':'Fuel & Fuel Oil, Wood, Coal, Liquefied Petroleum','IRS Description':'Fuel Dealers (Non Automotive)', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5992':{'combined description':'Florists', 'USDA description':'Florists','IRS Description':'Florists', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5993':{'combined description':'Cigar Stores and Stands', 'USDA description':'Cigar Stores and Stands','IRS Description':'Cigar Stores and Stands', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5994':{'combined description':'News Dealers and Newsstands', 'USDA description':'News Dealers and Newsstands','IRS Description':'News Dealers and Newsstands', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5995':{'combined description':'Pet Shops, Pet Foods, and Supplies Stores', 'USDA description':'Pet Shops, Pet Foods, and Supplies Stores','IRS Description':'Pet Shops, Pet Food, and Supplies', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5996':{'combined description':'Swimming Pools & Sales, Service, and Supplies', 'USDA description':'Swimming Pools & Sales, Service, and Supplies','IRS Description':'Swimming Pools Sales', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5997':{'combined description':'Electric Razor Stores & Sales and Service', 'USDA description':'Electric Razor Stores & Sales and Service','IRS Description':'Electric Razor Stores', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5998':{'combined description':'Tent and Awning Shops', 'USDA description':'Tent and Awning Shops','IRS Description':'Tent and Awning Shops', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '5999':{'combined description':'Miscellaneous and Specialty Retail Stores', 'USDA description':'Miscellaneous and Specialty Retail Stores','IRS Description':'Miscellaneous Specialty Retail', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '6010':{'combined description':'Financial Institutions & Manual Cash Disbursements', 'USDA description':'Financial Institutions & Manual Cash Disbursements','IRS Description':'Manual Cash Disburse', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '6011':{'combined description':'Financial Institutions & Manual Cash Disbursements', 'USDA description':'Financial Institutions & Manual Cash Disbursements','IRS Description':'Automated Cash Disburse', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '6012':{'combined description':'Financial Institutions & Merchandise and Services', 'USDA description':'Financial Institutions & Merchandise and Services','IRS Description':'Financial Institutions', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '6051':{'combined description':'Non-Financial Institutions & Foreign Currency, Money Orders (not wire transfer) and Travelers Cheques', 'USDA description':'Non-Financial Institutions & Foreign Currency, Money Orders (not wire transfer) and Travelers Cheques','IRS Description':'Non-FI, Money Orders', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '6211':{'combined description':'Security Brokers/Dealers', 'USDA description':'Security Brokers/Dealers','IRS Description':'Security Brokers/Dealers', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '6300':{'combined description':'Insurance Sales, Underwriting, and Premiums', 'USDA description':'Insurance Sales, Underwriting, and Premiums','IRS Description':'Insurance Underwriting, Premiums', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '6381':{'combined description':'Insurance Premiums, (no longer valid for first presentment work)', 'USDA description':'Insurance Premiums, (no longer valid for first presentment work)','IRS Description':'', 'Reportable under 6041/6041A and Authority for Exception':''}, - '6399':{'combined description':'Insurance, Not Elsewhere Classified ( no longer valid forfirst presentment work)', 'USDA description':'Insurance, Not Elsewhere Classified ( no longer valid forfirst presentment work)','IRS Description':'Insurance - Default', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '6513':{'combined description':'Real Estate Agents and Managers - Rentals', 'USDA description':'','IRS Description':'Real Estate Agents and Managers - Rentals', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7011':{'combined description':'Lodging & Hotels, Motels, Resorts, Central Reservation Services (not elsewhere classified)', 'USDA description':'Lodging & Hotels, Motels, Resorts, Central Reservation Services (not elsewhere classified)','IRS Description':'Hotels, Motels, and Resorts', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7012':{'combined description':'Timeshares', 'USDA description':'Timeshares','IRS Description':'Timeshares', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7032':{'combined description':'Sporting and Recreational Camps', 'USDA description':'Sporting and Recreational Camps','IRS Description':'Sporting/Recreation Camps', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7033':{'combined description':'Trailer Parks and Camp Grounds', 'USDA description':'Trailer Parks and Camp Grounds','IRS Description':'Trailer Parks, Campgrounds', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7210':{'combined description':'Laundry, Cleaning, and Garment Services', 'USDA description':'Laundry, Cleaning, and Garment Services','IRS Description':'Laundry, Cleaning Services', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7211':{'combined description':'Laundry & Family and Commercial', 'USDA description':'Laundry & Family and Commercial','IRS Description':'Laundries ', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7216':{'combined description':'Dry Cleaners', 'USDA description':'Dry Cleaners','IRS Description':'Dry Cleaners', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7217':{'combined description':'Carpet and Upholstery Cleaning', 'USDA description':'Carpet and Upholstery Cleaning','IRS Description':'Carpet/Upholstery Cleaning', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7221':{'combined description':'Photographic Studios', 'USDA description':'Photographic Studios','IRS Description':'Photographic Studios', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7230':{'combined description':'Barber and Beauty Shops', 'USDA description':'Barber and Beauty Shops','IRS Description':'Barber and Beauty Shops', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7251':{'combined description':'Shop Repair Shops and Shoe Shine Parlors, and Hat Cleaning Shops', 'USDA description':'Shop Repair Shops and Shoe Shine Parlors, and Hat Cleaning Shops','IRS Description':'Shoe Repair/Hat Cleaning', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7261':{'combined description':'Funeral Service and Crematories', 'USDA description':'Funeral Service and Crematories','IRS Description':'Funeral Services, Crematories', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7273':{'combined description':'Dating and Escort Services', 'USDA description':'Dating and Escort Services','IRS Description':'Dating/Escort Services', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7276':{'combined description':'Tax Preparation Service', 'USDA description':'Tax Preparation Service','IRS Description':'Tax Preparation Services', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7277':{'combined description':'Counseling Service & Debt, Marriage, Personal', 'USDA description':'Counseling Service & Debt, Marriage, Personal','IRS Description':'Counseling Services', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7278':{'combined description':'Buying/Shopping Services, Clubs', 'USDA description':'Buying/Shopping Services, Clubs','IRS Description':'Buying/Shopping Services', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7296':{'combined description':'Clothing Rental & Costumes, Formal Wear, Uniforms', 'USDA description':'Clothing Rental & Costumes, Formal Wear, Uniforms','IRS Description':'Clothing Rental ', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7297':{'combined description':'Massage Parlors', 'USDA description':'Massage Parlors','IRS Description':'Massage Parlors', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7298':{'combined description':'Health and Beauty Shops', 'USDA description':'Health and Beauty Shops','IRS Description':'Health and Beauty Spas', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7299':{'combined description':'Miscellaneous Personal Services ( not elsewhere classifies)', 'USDA description':'Miscellaneous Personal Services ( not elsewhere classifies)','IRS Description':'Miscellaneous General Services', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7311':{'combined description':'Advertising Services', 'USDA description':'Advertising Services','IRS Description':'Advertising Services', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7321':{'combined description':'Consumer Credit Reporting Agencies', 'USDA description':'Consumer Credit Reporting Agencies','IRS Description':'Credit Reporting Agencies', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7332':{'combined description':'Blueprinting and Photocopying Services', 'USDA description':'Blueprinting and Photocopying Services','IRS Description':'', 'Reportable under 6041/6041A and Authority for Exception':''}, - '7333':{'combined description':'Commercial Photography, Art and Graphics', 'USDA description':'Commercial Photography, Art and Graphics','IRS Description':'Commercial Photography, Art and Graphics', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7338':{'combined description':'Quick Copy, Reproduction and Blueprinting Services', 'USDA description':'Quick Copy, Reproduction and Blueprinting Services','IRS Description':'Quick Copy, Repro, and Blueprint', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7339':{'combined description':'Stenographic and Secretarial Support Services', 'USDA description':'Stenographic and Secretarial Support Services','IRS Description':'Secretarial Support Services', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7342':{'combined description':'Exterminating and Disinfecting Services', 'USDA description':'Exterminating and Disinfecting Services','IRS Description':'Exterminating Services', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7349':{'combined description':'Cleaning and Maintenance, Janitorial Services', 'USDA description':'Cleaning and Maintenance, Janitorial Services','IRS Description':'Cleaning and Maintenance', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7361':{'combined description':'Employment Agencies, Temporary Help Services', 'USDA description':'Employment Agencies, Temporary Help Services','IRS Description':'Employment/Temp Agencies', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7372':{'combined description':'Computer Programming, Integrated Systems Design and Data Processing Services', 'USDA description':'Computer Programming, Integrated Systems Design and Data Processing Services','IRS Description':'Computer Programming', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7375':{'combined description':'Information Retrieval Services', 'USDA description':'Information Retrieval Services','IRS Description':'Information Retrieval Services', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7379':{'combined description':'Computer Maintenance and Repair Services, Not Elsewhere Classified', 'USDA description':'Computer Maintenance and Repair Services, Not Elsewhere Classified','IRS Description':'Computer Repair', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7392':{'combined description':'Management, Consulting, and Public Relations Services', 'USDA description':'Management, Consulting, and Public Relations Services','IRS Description':'Consulting, Public Relations', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7393':{'combined description':'Protective and Security Services & Including Armored Carsand Guard Dogs', 'USDA description':'Protective and Security Services & Including Armored Carsand Guard Dogs','IRS Description':'Detective Agencies', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7394':{'combined description':'Equipment Rental and Leasing Services, Tool Rental, Furniture Rental, and Appliance Rental', 'USDA description':'Equipment Rental and Leasing Services, Tool Rental, Furniture Rental, and Appliance Rental','IRS Description':'Equipment Rental ', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7395':{'combined description':'Photofinishing Laboratories, Photo Developing', 'USDA description':'Photofinishing Laboratories, Photo Developing','IRS Description':'Photo Developing', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7399':{'combined description':'Business Services, Not Elsewhere Classified', 'USDA description':'Business Services, Not Elsewhere Classified','IRS Description':'Miscellaneous Business Services ', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7511':{'combined description':'Truck Stop', 'USDA description':'','IRS Description':'Truck Stop', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7512':{'combined description':'Car Rental Companies ( Not Listed Below)', 'USDA description':'Car Rental Companies ( Not Listed Below)','IRS Description':'Car Rental Agencies', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7513':{'combined description':'Truck and Utility Trailer Rentals', 'USDA description':'Truck and Utility Trailer Rentals','IRS Description':'Truck/Utility Trailer Rentals', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7519':{'combined description':'Motor Home and Recreational Vehicle Rentals', 'USDA description':'Motor Home and Recreational Vehicle Rentals','IRS Description':'Recreational Vehicle Rentals', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7523':{'combined description':'Automobile Parking Lots and Garages', 'USDA description':'Automobile Parking Lots and Garages','IRS Description':'Parking Lots, Garages', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7531':{'combined description':'Automotive Body Repair Shops', 'USDA description':'Automotive Body Repair Shops','IRS Description':'Auto Body Repair Shops', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7534':{'combined description':'Tire Re-treading and Repair Shops', 'USDA description':'Tire Re-treading and Repair Shops','IRS Description':'Tire Retreading and Repair', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7535':{'combined description':'Paint Shops & Automotive', 'USDA description':'Paint Shops & Automotive','IRS Description':'Auto Paint Shops', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7538':{'combined description':'Automotive Service Shops', 'USDA description':'Automotive Service Shops','IRS Description':'Auto Service Shops', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7542':{'combined description':'Car Washes', 'USDA description':'Car Washes','IRS Description':'Car Washes', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7549':{'combined description':'Towing Services', 'USDA description':'Towing Services','IRS Description':'Towing Services', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7622':{'combined description':'Radio Repair Shops', 'USDA description':'Radio Repair Shops','IRS Description':'Electronics Repair Shops', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7623':{'combined description':'Air Conditioning and Refrigeration Repair Shops', 'USDA description':'Air Conditioning and Refrigeration Repair Shops','IRS Description':'A/C, Refrigeration Repair', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7629':{'combined description':'Electrical And Small Appliance Repair Shops', 'USDA description':'Electrical And Small Appliance Repair Shops','IRS Description':'Small Appliance Repair', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7631':{'combined description':'Watch, Clock, and Jewelry Repair', 'USDA description':'Watch, Clock, and Jewelry Repair','IRS Description':'Watch/Jewelry Repair', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7641':{'combined description':'Furniture, Furniture Repair, and Furniture Refinishing', 'USDA description':'Furniture, Furniture Repair, and Furniture Refinishing','IRS Description':'Furniture Repair, Refinishing', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7692':{'combined description':'Welding Repair', 'USDA description':'Welding Repair','IRS Description':'Welding Repair', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7699':{'combined description':'Repair Shops and Related Services &Miscellaneous', 'USDA description':'Repair Shops and Related Services &Miscellaneous','IRS Description':'Miscellaneous Repair Shops', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7829':{'combined description':'Motion Pictures and Video Tape Production and Distribution', 'USDA description':'Motion Pictures and Video Tape Production and Distribution','IRS Description':'Picture/Video Production', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7832':{'combined description':'Motion Picture Theaters', 'USDA description':'Motion Picture Theaters','IRS Description':'Motion Picture Theaters', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7841':{'combined description':'Video Tape Rental Stores', 'USDA description':'Video Tape Rental Stores','IRS Description':'Video Tape Rental Stores', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7911':{'combined description':'Dance Halls, Studios and Schools', 'USDA description':'Dance Halls, Studios and Schools','IRS Description':'Dance Hall, Studios, Schools', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7922':{'combined description':'Theatrical Producers (Except Motion Pictures), Ticket Agencies', 'USDA description':'Theatrical Producers (Except Motion Pictures), Ticket Agencies','IRS Description':'Theatrical Ticket Agencies', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7929':{'combined description':'Bands, Orchestras, and Miscellaneous Entertainers (Not Elsewhere Classified)', 'USDA description':'Bands, Orchestras, and Miscellaneous Entertainers (Not Elsewhere Classified)','IRS Description':'Bands, Orchestras', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7932':{'combined description':'Billiard and Pool Establishments', 'USDA description':'Billiard and Pool Establishments','IRS Description':'Billiard/Pool Establishments', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7933':{'combined description':'Bowling Alleys', 'USDA description':'Bowling Alleys','IRS Description':'Bowling Alleys', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7941':{'combined description':'Commercial Sports, Athletic Fields, Professional Sport Clubs, and Sport Promoters', 'USDA description':'Commercial Sports, Athletic Fields, Professional Sport Clubs, and Sport Promoters','IRS Description':'Sports Clubs/Fields', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7991':{'combined description':'Tourist Attractions and Exhibits', 'USDA description':'Tourist Attractions and Exhibits','IRS Description':'Tourist Attractions and Exhibits', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7992':{'combined description':'Golf Courses & Public', 'USDA description':'Golf Courses & Public','IRS Description':'Golf Courses - Public', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7993':{'combined description':'Video Amusement Game Supplies', 'USDA description':'Video Amusement Game Supplies','IRS Description':'Video Amusement Game Supplies', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '7994':{'combined description':'Video Game Arcades/Establishments', 'USDA description':'Video Game Arcades/Establishments','IRS Description':'Video Game Arcades', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7995':{'combined description':'Betting (including Lottery Tickets, Casino Gaming Chips, Off-track Betting and Wagers)', 'USDA description':'Betting (including Lottery Tickets, Casino Gaming Chips, Off-track Betting and Wagers)','IRS Description':'Betting/Casino Gambling', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7996':{'combined description':'Amusement Parks, Carnivals, Circuses, Fortune Tellers', 'USDA description':'Amusement Parks, Carnivals, Circuses, Fortune Tellers','IRS Description':'Amusement Parks/Carnivals', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7997':{'combined description':'Membership Clubs (Sports, Recreation, Athletic), Country Clubs, and Private Golf Courses', 'USDA description':'Membership Clubs (Sports, Recreation, Athletic), Country Clubs, and Private Golf Courses','IRS Description':'Country Clubs', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7998':{'combined description':'Aquariums, Sea-aquariums, Dolphinariums', 'USDA description':'Aquariums, Sea-aquariums, Dolphinariums','IRS Description':'Aquariums', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '7999':{'combined description':'Recreation Services (Not Elsewhere Classified)', 'USDA description':'Recreation Services (Not Elsewhere Classified)','IRS Description':'Miscellaneous Recreation Services', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '8011':{'combined description':'Doctors and Physicians (Not Elsewhere Classified)', 'USDA description':'Doctors and Physicians (Not Elsewhere Classified)','IRS Description':'Doctors', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '8021':{'combined description':'Dentists and Orthodontists', 'USDA description':'Dentists and Orthodontists','IRS Description':'Dentists, Orthodontists', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '8031':{'combined description':'Osteopaths', 'USDA description':'Osteopaths','IRS Description':'Osteopaths', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '8041':{'combined description':'Chiropractors', 'USDA description':'Chiropractors','IRS Description':'Chiropractors', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '8042':{'combined description':'Optometrists and Ophthalmologists', 'USDA description':'Optometrists and Ophthalmologists','IRS Description':'Optometrists, Ophthalmologist', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '8043':{'combined description':'Opticians, Opticians Goods and Eyeglasses', 'USDA description':'Opticians, Opticians Goods and Eyeglasses','IRS Description':'Opticians, Eyeglasses', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '8044':{'combined description':'Opticians, Optical Goods, and Eyeglasses (no longer validfor first presentments)', 'USDA description':'Opticians, Optical Goods, and Eyeglasses (no longer validfor first presentments)','IRS Description':'', 'Reportable under 6041/6041A and Authority for Exception':''}, - '8049':{'combined description':'Podiatrists and Chiropodists', 'USDA description':'Podiatrists and Chiropodists','IRS Description':'Chiropodists, Podiatrists', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '8050':{'combined description':'Nursing and Personal Care Facilities', 'USDA description':'Nursing and Personal Care Facilities','IRS Description':'Nursing/Personal Care ', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '8062':{'combined description':'Hospitals', 'USDA description':'Hospitals','IRS Description':'Hospitals', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '8071':{'combined description':'Medical and Dental Laboratories', 'USDA description':'Medical and Dental Laboratories','IRS Description':'Medical and Dental Labs', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '8099':{'combined description':'Medical Services and Health Practitioners (Not Elsewhere Classified)', 'USDA description':'Medical Services and Health Practitioners (Not Elsewhere Classified)','IRS Description':'Medical Services ', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '8111':{'combined description':'Legal Services and Attorneys', 'USDA description':'Legal Services and Attorneys','IRS Description':'Legal Services, Attorneys', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '8211':{'combined description':'Elementary and Secondary Schools', 'USDA description':'Elementary and Secondary Schools','IRS Description':'Elementary, Secondary Schools', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(p)(2)'}, - '8220':{'combined description':'Colleges, Junior Colleges, Universities, and ProfessionalSchools', 'USDA description':'Colleges, Junior Colleges, Universities, and ProfessionalSchools','IRS Description':'Colleges, Universities', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(p)(2)'}, - '8241':{'combined description':'Correspondence Schools', 'USDA description':'Correspondence Schools','IRS Description':'Correspondence Schools', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(p)(2)'}, - '8244':{'combined description':'Business and Secretarial Schools', 'USDA description':'Business and Secretarial Schools','IRS Description':'Business/Secretarial Schools', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(p)(2)'}, - '8249':{'combined description':'Vocational Schools and Trade Schools', 'USDA description':'Vocational Schools and Trade Schools','IRS Description':'Vocational/Trade Schools', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(p)(2)'}, - '8299':{'combined description':'Schools and Educational Services ( Not Elsewhere Classified)', 'USDA description':'Schools and Educational Services ( Not Elsewhere Classified)','IRS Description':'Educational Services ', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '8351':{'combined description':'Child Care Services', 'USDA description':'Child Care Services','IRS Description':'Child Care Services', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '8398':{'combined description':'Charitable and Social Service Organizations', 'USDA description':'Charitable and Social Service Organizations','IRS Description':'Charitable and Social Service Organizations - Fundraising', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(p)(2)'}, - '8641':{'combined description':'Civic, Fraternal, and Social Associations', 'USDA description':'Civic, Fraternal, and Social Associations','IRS Description':'Civic, Social, Fraternal Associations', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(p)(2)'}, - '8651':{'combined description':'Political Organizations', 'USDA description':'Political Organizations','IRS Description':'Political Organizations', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '8661':{'combined description':'Religious Organizations', 'USDA description':'Religious Organizations','IRS Description':'Religious Organizations', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(p)(2)'}, - '8675':{'combined description':'Automobile Associations', 'USDA description':'Automobile Associations','IRS Description':'Automobile Associations', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '8699':{'combined description':'Membership Organizations ( Not Elsewhere Classified)', 'USDA description':'Membership Organizations ( Not Elsewhere Classified)','IRS Description':'Membership Organizations', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '8734':{'combined description':'Testing Laboratories ( non-medical)', 'USDA description':'Testing Laboratories ( non-medical)','IRS Description':'Testing Laboratories', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '8911':{'combined description':'Architectural & Engineering and Surveying Services', 'USDA description':'Architectural & Engineering and Surveying Services','IRS Description':'Architectural/Surveying Services', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '8931':{'combined description':'Accounting, Auditing, and Bookkeeping Services', 'USDA description':'Accounting, Auditing, and Bookkeeping Services','IRS Description':'Accounting/Bookkeeping Services', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '8999':{'combined description':'Professional Services ( Not Elsewhere Defined)', 'USDA description':'Professional Services ( Not Elsewhere Defined)','IRS Description':'Professional Services', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '9211':{'combined description':'Court Costs, including Alimony and Child Support', 'USDA description':'Court Costs, including Alimony and Child Support','IRS Description':'Court Costs, Including Alimony and Child Support - Courts of Law', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(p)(4)'}, - '9222':{'combined description':'Fines', 'USDA description':'Fines','IRS Description':'Fines - Government Administrative Entities', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(p)(4)'}, - '9223':{'combined description':'Bail and Bond Payments', 'USDA description':'Bail and Bond Payments','IRS Description':'Bail and Bond Payments (payment to the surety for the bond, not the actual bond paid to the government agency) ', 'Reportable under 6041/6041A and Authority for Exception':'Yes'}, - '9311':{'combined description':'Tax Payments', 'USDA description':'Tax Payments','IRS Description':'Tax Payments - Government Agencies', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(p)(4)'}, - '9399':{'combined description':'Government Services ( Not Elsewhere Classified)', 'USDA description':'Government Services ( Not Elsewhere Classified)','IRS Description':'Government Services (Not Elsewhere Classified)', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(p)(4)'}, - '9402':{'combined description':'Postal Services & Government Only', 'USDA description':'Postal Services & Government Only','IRS Description':'Postal Services - Government Only', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(p)(3)'}, - '9405':{'combined description':'Intra & Government Transactions', 'USDA description':'Intra & Government Transactions','IRS Description':'U.S. Federal Government Agencies or Departments', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(p)(3)'}, - '9700':{'combined description':'Automated Referral Service ( For Visa Only)', 'USDA description':'Automated Referral Service ( For Visa Only)','IRS Description':'', 'Reportable under 6041/6041A and Authority for Exception under 6041/6041A and Authority for Exception':''}, - '9701':{'combined description':'Visa Credential Service ( For Visa Only)', 'USDA description':'Visa Credential Service ( For Visa Only)','IRS Description':'', 'Reportable under 6041/6041A and Authority for Exception':''}, - '9702':{'combined description':'GCAS Emergency Services ( For Visa Only)', 'USDA description':'GCAS Emergency Services ( For Visa Only)','IRS Description':'', 'Reportable under 6041/6041A and Authority for Exception':''}, - '9950':{'combined description':'Intra & Company Purchases ( For Visa Only)', 'USDA description':'Intra & Company Purchases ( For Visa Only)','IRS Description':'Intra-Company Purchases', 'Reportable under 6041/6041A and Authority for Exception':'No1.6041-3(c)'}, - '9999':{'combined description':'MCC Invalid', 'USDA description':'MCC Invalid','IRS Description':'MCC Invalid', 'Reportable under 6041/6041A and Authority for Exception':'no'}, +codes = { + '0': {'combined description': 'none', 'USDA description': 'none', 'IRS Description': 'none', 'Reportable under 6041/6041A and Authority for Exception': 'no'}, + '742': {'combined description': 'Veterinary Services', 'USDA description': 'Veterinary Services', 'IRS Description': 'Veterinary Services', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '763': {'combined description': 'Agricultural Co-operatives', 'USDA description': 'Agricultural Co-operatives', 'IRS Description': 'Agricultural Cooperative', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '780': {'combined description': 'Horticultural Services, Landscaping Services', 'USDA description': 'Horticultural Services', 'IRS Description': 'Landscaping Services', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '1520': {'combined description': 'General Contractors-Residential and Commercial', 'USDA description': 'General Contractors-Residential and Commercial', 'IRS Description': 'General Contractors', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '1711': {'combined description': 'Air Conditioning Contractors & Sales and Installation, Heating Contractors & Sales, Service, Installation', 'USDA description': 'Air Conditioning Contractors & Sales and Installation', 'IRS Description': 'Heating, Plumbing, A/C', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '1731': {'combined description': 'Electrical Contractors', 'USDA description': 'Electrical Contractors', 'IRS Description': 'Electrical Contractors', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '1740': {'combined description': 'Insulation & Contractors, Masonry, Stonework Contractors, Plastering Contractors, Stonework and Masonry Contractors, Tile Settings Contractors', 'USDA description': 'Insulation & Contractors', 'IRS Description': 'Masonry, Stonework, and Plaster', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '1750': {'combined description': 'Carpentry Contractors', 'USDA description': 'Carpentry Contractors', 'IRS Description': 'Carpentry Contractors', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '1761': {'combined description': 'Roofing & Contractors, Sheet Metal Work & Contractors, Siding & Contractors', 'USDA description': 'Roofing - Contractors', 'IRS Description': 'Roofing/Siding, Sheet Metal', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '1771': {'combined description': 'Contractors & Concrete Work', 'USDA description': 'Contractors & Concrete Work', 'IRS Description': 'Concrete Work Contractors', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '1799': {'combined description': 'Contractors & Special Trade, Not Elsewhere Classified', 'USDA description': 'Contractors & Special Trade, Not Elsewhere Classified', 'IRS Description': 'Special Trade Contractors', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '2741': {'combined description': 'Miscellaneous Publishing and Printing', 'USDA description': 'Miscellaneous Publishing and Printing', 'IRS Description': 'Miscellaneous Publishing and Printing', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '2791': {'combined description': 'Typesetting, Plate Making, & Related Services', 'USDA description': 'Typesetting, Plate Making, & Related Services', 'IRS Description': 'Typesetting, Plate Making, and Related Services', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '2842': {'combined description': 'Specialty Cleaning, Polishing, and Sanitation Preparations', 'USDA description': 'Specialty Cleaning, Polishing, and Sanitation Preparations', 'IRS Description': 'Specialty Cleaning', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3000': {'combined description': 'UNITED AIRLINES', 'USDA description': 'UNITED AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3001': {'combined description': 'AMERICAN AIRLINES', 'USDA description': 'AMERICAN AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3002': {'combined description': 'PAN AMERICAN - PAN AM', 'USDA description': 'PAN AMERICAN', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3003': {'combined description': 'EURO-FLY', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3004': {'combined description': 'TRANS WORLD AIRLINES', 'USDA description': 'TRANS WORLD AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3005': {'combined description': 'BRITSH AIRWAYS - BRITISH A', 'USDA description': 'BRITISH AIRWAYS', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3006': {'combined description': 'JAPAN AIR LINES', 'USDA description': 'JAPAN AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3007': {'combined description': 'AIR FRANCE', 'USDA description': 'AIR FRANCE', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3008': {'combined description': 'LUFTHANSA', 'USDA description': 'LUFTHANSA', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3009': {'combined description': 'AIR CANADA - AIR CAN', 'USDA description': 'AIR CANADA', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3010': {'combined description': 'KLM', 'USDA description': 'KLM (ROYAL DUTCH AIRLINES)', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3011': {'combined description': 'AEROFLOT', 'USDA description': 'AEORFLOT', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3012': {'combined description': 'QANTAS AIR', 'USDA description': 'QUANTAS', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3013': {'combined description': 'ALITALIA', 'USDA description': 'ALITALIA', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3014': {'combined description': 'SAUDI ARABIAN AIRLINES', 'USDA description': 'SAUDIA ARABIAN AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3015': {'combined description': 'SWISS INTERNATIONAL AIR LINES-SWISS AIR', 'USDA description': 'SWISSAIR', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3016': {'combined description': 'SCANDINAVIAN AIRLINE SYSTEM (SAS)', 'USDA description': 'SAS', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3017': {'combined description': 'SOUTH AFRICAN AIRWAYS', 'USDA description': 'SOUTH AFRICAN AIRWAYS', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3018': {'combined description': 'VARIG AIR (BRAZIL)', 'USDA description': 'VARIG (BRAZIL)', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3019': {'combined description': 'GERMANWINGS--GRMNWGAIR', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3020': {'combined description': 'AIR INDIA', 'USDA description': 'AIR-INDIA', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3021': {'combined description': 'AIR ALGERIE', 'USDA description': 'AIR ALGERIE', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3022': {'combined description': 'PHILIPPINE AIRLINES', 'USDA description': 'PHILIPPINE AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3023': {'combined description': 'MEXICANA', 'USDA description': 'MEXICANA', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3024': {'combined description': 'PAKISTAN INTERNATIONAL', 'USDA description': 'PAKISTAN INTERNATIONAL', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3025': {'combined description': 'AIR NEW ZEALAND LTD. INTERNATIONAL', 'USDA description': 'AIR NEW ZEALAND', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3026': {'combined description': 'EMIRATES AIRLINES', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3027': {'combined description': 'UNION DE TRANSPORTS AERIENS (UTA/INTERAI', 'USDA description': 'UTA/INTERAIR', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3028': {'combined description': 'AIR MALTA', 'USDA description': 'AIR MALTA', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3029': {'combined description': 'SN BRUSSELS AIRLINES - SNBRU AIR', 'USDA description': 'SABENA', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3030': {'combined description': 'AEROLINEAS ARGENTINAS', 'USDA description': 'AEROLINEAS ARGENTINAS', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3031': {'combined description': 'OLYMPIC AIRWAYS', 'USDA description': 'OLYMPIC AIRWAYS', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3032': {'combined description': 'EL AL', 'USDA description': 'EL AL', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3033': {'combined description': 'ANSETT AIRLINES', 'USDA description': 'ANSETT AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3034': {'combined description': 'TRANS AUSTRALIAN AIRWAYS (TAA)', 'USDA description': 'AUSTRAINLIAN AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3035': {'combined description': 'TAP AIRLINE (PORTUGAL)', 'USDA description': 'TAP (PORTUGAL)', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3036': {'combined description': 'VASP AIR (BRAZIL)', 'USDA description': 'VASP (BRAZIL)', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3037': {'combined description': 'EGYPTAIR', 'USDA description': 'EGYPTAIR', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3038': {'combined description': 'KUWAIT AIRWAYS', 'USDA description': 'KUWAIT AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3039': {'combined description': 'AVIANCA', 'USDA description': 'AVIANCA', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3040': {'combined description': 'GULF AIR (BAHRAIN)', 'USDA description': 'GULF AIR (BAHRAIN)', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3041': {'combined description': 'BALKAN-BULGARIAN AIRLINES', 'USDA description': 'BALKAN-BULGARIAN AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3042': {'combined description': 'FINNAIR', 'USDA description': 'FINNAIR', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3043': {'combined description': 'AER LINGUS', 'USDA description': 'AER LINGUS', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3044': {'combined description': 'AIR LANKA', 'USDA description': 'AIR LANKA', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3045': {'combined description': 'NIGERIA AIRWAYS', 'USDA description': 'NIGERIA AIRWAYS', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3046': {'combined description': 'CRUZEIRO DO SUL AIR (BRAZIL)', 'USDA description': 'CRUZEIRO DO SUL (BRAZIJ)', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3047': {'combined description': 'THY AIRLINE (TURKEY)', 'USDA description': 'THY (TURKEY)', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3048': {'combined description': 'AIRMARO', 'USDA description': 'ROYAL AIR MAROC', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3049': {'combined description': 'TUNIS AIR', 'USDA description': 'TUNIS AIR', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3050': {'combined description': 'ICELANDAIR', 'USDA description': 'ICELANDAIR', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3051': {'combined description': 'AUSTRIAN AIRLINES', 'USDA description': 'AUSTRIAN AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3052': {'combined description': 'LAN AIRLINES-LANAIR', 'USDA description': 'LANCHILE', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3053': {'combined description': 'AVIACO AIR (SPAIN)', 'USDA description': 'AVIACO (SPAIN)', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3054': {'combined description': 'LADECO AIR (CHILE)', 'USDA description': 'LADECO (CHILE)', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3055': {'combined description': 'LAB AIRLINE (BOLIVIA)', 'USDA description': 'LAB (BOLIVIA)', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3056': {'combined description': 'QUEBECAIRE', 'USDA description': 'QUEBECAIRE', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3057': {'combined description': 'EAST/WEST AIRLINES (AUSTRALIA)', 'USDA description': 'EASTWEST AIRLINES (AUSTRALIA)', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3058': {'combined description': 'DELTA', 'USDA description': 'DELTA', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3059': {'combined description': 'DBA AIRLINES - DBA AIR', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3060': {'combined description': 'NORTHWEST AIRLINES', 'USDA description': 'NORTHWEST', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3061': {'combined description': 'CONTINENTAL', 'USDA description': 'CONTINENTAL', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3062': {'combined description': 'HAPAG-LLOYD EXPRESS - HLX', 'USDA description': 'WESTERN', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3063': {'combined description': 'US AIRWAYS', 'USDA description': 'US AIR', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3064': {'combined description': 'ADRIA AIRWAYS', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3065': {'combined description': 'AIRINTER', 'USDA description': 'AIRINTER', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3066': {'combined description': 'SOUTHWEST AIRLINES', 'USDA description': 'SOUTHWEST', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3067': {'combined description': 'VANGUARD AIRLINES', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3068': {'combined description': 'AIR ASTANA-AIRSTANA', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3069': {'combined description': 'AIR EUROPE', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3070': {'combined description': 'PACIFIC SOUTHWEST AIRLINE', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3071': {'combined description': 'AIR BRITISH COLUMBIA', 'USDA description': 'AIR BRITISH COLUBIA', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3072': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3073': {'combined description': 'AIR CAL', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3074': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3075': {'combined description': 'SINGAPORE AIRLINES', 'USDA description': 'SINGAPORE AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3076': {'combined description': 'AEROMEXICO', 'USDA description': 'AEROMEXICO', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3077': {'combined description': 'THAI AIRWAYS', 'USDA description': 'THAI AIRWAYS', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3078': {'combined description': 'CHINA AIRLINES', 'USDA description': 'CHINA AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3079': {'combined description': 'JETSTAR', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3080': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3081': {'combined description': 'NORDAIR', 'USDA description': 'NORDAIR', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3082': {'combined description': 'KOREAN AIRLINES', 'USDA description': 'KOREAN AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3083': {'combined description': 'AIR AFRIQUE - AIR AFRIQ', 'USDA description': 'AIR AFRIGUE', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3084': {'combined description': 'EVA AIRLINES', 'USDA description': 'EVA AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3085': {'combined description': 'MIDWEST EXPRESS AIRLINES - MIDWEST', 'USDA description': 'MIDWEST EXPRESS AIRLINES, INC.', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3086': {'combined description': 'CARNIVAL AIRLINES', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3087': {'combined description': 'METRO AIRLINES', 'USDA description': 'METRO AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3088': {'combined description': 'CROATIA AIR - CROATIA', 'USDA description': 'CROATIA AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3089': {'combined description': 'TRANSAERO', 'USDA description': 'TRANSAERO', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3090': {'combined description': 'UNI AIRWAYS', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3091': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3092': {'combined description': 'MIDWAY AIRLINES', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3093': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3094': {'combined description': 'ZAMBIA AIRWAYS', 'USDA description': 'ZAMBIA AIRWAYS', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3095': {'combined description': 'WARDAIR', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3096': {'combined description': 'AIR ZIMBABWE', 'USDA description': 'AIR ZIMBABWE', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3097': {'combined description': 'SPANAIR', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3098': {'combined description': 'ASIANA AIRLINES - ASIANA', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3099': {'combined description': 'CATHAY PACIFIC', 'USDA description': 'CATHAY PACIFIC', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3100': {'combined description': 'MALAYSIAN AIRLINE SYSTEM', 'USDA description': 'MALAYSIAN AIRLINE SYSTEM', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3101': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3102': {'combined description': 'IBERIA', 'USDA description': 'IBERIA', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3103': {'combined description': 'GARUDA AIR (INDONESIA)', 'USDA description': 'GARUDA (INDONESIA)', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3104': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3105': {'combined description': 'PIEDMONT', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3106': {'combined description': 'BRAATHENS AIR S.A.F.E. (NORWAY)', 'USDA description': 'BRAATHENS S.A.F.E. (NORWAY)', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3107': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3108': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3109': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3110': {'combined description': 'WINGS AIRWAYS', 'USDA description': 'WINGS AIRWAYS', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3111': {'combined description': 'BRITISH MIDLAND', 'USDA description': 'BRITISH MIDLAND', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3112': {'combined description': 'WINDWARD ISLAND', 'USDA description': 'WINDWARD ISLAND', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3113': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3114': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3115': {'combined description': 'TOWER AIR', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3116': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3117': {'combined description': 'VENEZOLANA INTERNATIONAL DE AVIACION (VI', 'USDA description': 'VIASA', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3118': {'combined description': 'VALLEY AIRLINES', 'USDA description': 'VALLEY AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3119': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3120': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3121': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3122': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3123': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3124': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3125': {'combined description': 'TAN AIRLINES', 'USDA description': 'TAN', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3126': {'combined description': 'TALAIR', 'USDA description': 'TALAIR', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3127': {'combined description': 'TACA INTERNATIONAL', 'USDA description': 'TACA INTERNATIONAL', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3128': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3129': {'combined description': 'SURINAM AIRWAYS', 'USDA description': 'SURINAM AIRWAYS', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3130': {'combined description': 'SUNWORLD INTERNATIONAL AIR', 'USDA description': 'SUN WORLD INTERNATIONAL', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3131': {'combined description': 'VLM AIRLINES', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3132': {'combined description': 'FRONTIER AIRLINES - FRONTIER', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3133': {'combined description': 'SUNBELT AIRLINES', 'USDA description': 'SUNBELT AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3134': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3135': {'combined description': 'SUDAN AIRWAYS', 'USDA description': 'SUDAN AIRWAYS', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3136': {'combined description': 'QATAR AIRWAYS', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3137': {'combined description': 'SINGLETION AIR', 'USDA description': 'SINGLETON', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3138': {'combined description': 'SIMMONS AIRLINES', 'USDA description': 'SIMMONS AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3139': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3140': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3141': {'combined description': 'SEAIR ALASKA', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3142': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3143': {'combined description': 'SCENIC AIRLINES', 'USDA description': 'SCENIC AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3144': {'combined description': 'VIRGIN ATLANTIC', 'USDA description': 'VIRGIN ATLANTIC', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3145': {'combined description': 'SAN JUAN AIRLINES', 'USDA description': 'SAN JUAN AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3146': {'combined description': 'LUXAIR', 'USDA description': 'LUXAIR', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3147': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3148': {'combined description': 'AIR LITTORAL, S.A.', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3149': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3150': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3151': {'combined description': 'AIR ZAIRE', 'USDA description': 'AIR ZAIRE', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3152': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3153': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3154': {'combined description': 'PRINCEVILLE', 'USDA description': 'PRINCEVILLE', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3155': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3156': {'combined description': 'GO FLY, LTD.', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3157': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3158': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3159': {'combined description': 'PROVINCETOWN-BOSTON AIRWAYS (PBA) AIRLIN', 'USDA description': 'PBA', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3160': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3161': {'combined description': 'ALL NIPON AIRWAYS', 'USDA description': 'ALL NIPPON AIRWAYS', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3162': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3163': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3164': {'combined description': 'NORONTAIR', 'USDA description': 'NORONTAIR', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3165': {'combined description': 'NEW YORK HELICOPTER', 'USDA description': 'NEW YORK HELICOPTER', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3166': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3167': {'combined description': 'AERO CONTINENTE - AERO CONT', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3168': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3169': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3170': {'combined description': 'MOUNT COOK', 'USDA description': 'NOUNT COOK', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3171': {'combined description': 'CANADIAN AIRLINES INTERNATIONAL', 'USDA description': 'CANADIAN AIRLINES INTERNATIONAL', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3172': {'combined description': 'NATIONAIR', 'USDA description': 'NATIONAIR', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3173': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3174': {'combined description': 'JETBLUE AIRLINES', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3175': {'combined description': 'MIDDLE EAST AIR', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3176': {'combined description': 'METROFLIGHT AIRLINES', 'USDA description': 'METROFLIGHT AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3177': {'combined description': 'AIRTRAN AIRWAYS - AIRTRAN A', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3178': {'combined description': 'MESA AIR', 'USDA description': 'MESA AIR', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3179': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3180': {'combined description': 'WESTJETAIR', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3181': {'combined description': 'MALEV AIR', 'USDA description': 'MALEV', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3182': {'combined description': 'LOT (POLISH AIRLINES)', 'USDA description': 'LOT (POLAND)', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3183': {'combined description': 'OMANAIR', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3184': {'combined description': 'LIAT', 'USDA description': 'LIAT', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3185': {'combined description': 'LINEA AEROPOSTAL VENEZOLANA (LAV)', 'USDA description': 'LAV (VENEZUELA)', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3186': {'combined description': 'LINEAS AEREAS PARAGUAYAS (LAP)', 'USDA description': 'LAP (PARAGUAY)', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3187': {'combined description': 'LACSA AIR (COSTA RICA)', 'USDA description': 'LACSA (COSTA RICA)', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3188': {'combined description': 'VIRGINEXPAIR', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3189': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3190': {'combined description': 'JUGOSLAV AIR', 'USDA description': 'JUGOSLAV AIR', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3191': {'combined description': 'ISLAND AIRLINES', 'USDA description': 'ISLAND AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3192': {'combined description': 'IRAN AIR', 'USDA description': 'IRAN AIR', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3193': {'combined description': 'INDIAN AIRLINES', 'USDA description': 'INDIAN AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3194': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3195': {'combined description': 'HOLIDAY AIRLINES', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3196': {'combined description': 'HAWAIIAN AIR', 'USDA description': 'HAWAIIAN AIR', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3197': {'combined description': 'HAVASU AIRLINES', 'USDA description': 'HAVASU AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3198': {'combined description': 'HARBOR AIRLINES', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3199': {'combined description': 'SERVICIOS AEREOS MILITARES', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3200': {'combined description': 'GUYANA AIRWAYS', 'USDA description': 'FUYANA AIRWAYS', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3201': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3202': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3203': {'combined description': 'GOLDEN PACIFIC AIR', 'USDA description': 'GOLDEN PACIFIC AIR', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3204': {'combined description': 'FREEDOM AIRLINES', 'USDA description': 'FREEDOM AIR', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3205': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3206': {'combined description': 'CHINA EASTERN AIRLINES - CHINAEAST', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3207': {'combined description': 'EMPRESA ECUATORIANA', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3208': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3209': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3210': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3211': {'combined description': 'NORWEGIAN AIR SHUTTLE - NORWEGIAN', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3212': {'combined description': 'DOMINICANA DE AVIACION', 'USDA description': 'DOMINICANA', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3213': {'combined description': 'MALMO AVIATION', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3214': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3215': {'combined description': 'DAN AIR SERVICES', 'USDA description': 'DAN AIR SERVICES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3216': {'combined description': 'CUMBERLAND AIRLINES', 'USDA description': 'CUMBERLAND AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3217': {'combined description': 'CESKOSLOVENSKE AEROLINIE (CSA)', 'USDA description': 'CSA', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3218': {'combined description': 'CROWN AIR', 'USDA description': 'CROWN AIR', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3219': {'combined description': 'COMPANIA PANAMENA DE AVIACION (COPA)', 'USDA description': 'COPA', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3220': {'combined description': 'COMPANIA FAUCETT', 'USDA description': 'COMPANIA FAUCETT', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3221': {'combined description': 'TRANSPORTES AEROS MILITARES ECUATORIANOS', 'USDA description': 'TRANSPORTES AEROS MILITARES ECCUATORANOS', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3222': {'combined description': 'COMMAND AIRWAYS', 'USDA description': 'COMMAND AIRWAYS', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3223': {'combined description': 'COMAIR', 'USDA description': 'COMAIR', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3224': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3225': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3226': {'combined description': 'SKYWAYS AIR', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3227': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3228': {'combined description': 'CAYMAN AIRWAYS', 'USDA description': 'CAYMAN AIRWAYS', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3229': {'combined description': 'SAETA (SOCIEDAD ECUATORIANOS DE TRANSPOR', 'USDA description': 'SAETA SOCIAEDAD ECUATORIANOS DE TRANSPORTES AEREOS', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3230': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3231': {'combined description': 'SAHSA (SERVICIO AERO DE HONDURAS)', 'USDA description': 'SASHA SERVICIO AERO DE HONDURAS', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3232': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3233': {'combined description': 'CAPITOL AIR', 'USDA description': 'CAPITOL AIR', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3234': {'combined description': 'CARIBBEAN AIRLINES', 'USDA description': 'BWIA', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3235': {'combined description': 'BROCKWAY AIR', 'USDA description': 'BROKWAY AIR', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3236': {'combined description': 'AIR ARABIA', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3237': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3238': {'combined description': 'BEMIDJI AVIATION', 'USDA description': 'BEMIDJI AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3239': {'combined description': 'BAR HARBOR AIRLINES', 'USDA description': 'BAR HARBOR AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3240': {'combined description': 'BAHAMASAIR', 'USDA description': 'BAHAMASAIR', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3241': {'combined description': 'AVIATECA AIR (GUATEMALA)', 'USDA description': 'AVIATECA (GUATEMALA)', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3242': {'combined description': 'CARIBBEAN AIRLINES--CARIBBEAN', 'USDA description': 'AVENSA', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3243': {'combined description': 'AUSTRIAN AIR SERVICE', 'USDA description': 'AUSTRIAN AIR SERVICE', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3244': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3245': {'combined description': 'EASYJET AIR', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3246': {'combined description': 'RYANAIR', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3247': {'combined description': 'GOL AIR', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3248': {'combined description': 'TAM AIR', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3249': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3250': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3251': {'combined description': 'ALOHA AIR', 'USDA description': 'ALOHA AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3252': {'combined description': 'ANTILEAN AIRLINES (ALM)', 'USDA description': 'ALM', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3253': {'combined description': 'AMERICA WEST', 'USDA description': 'AMERICA WEST', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3254': {'combined description': 'U.S. AIR SHUTTLE', 'USDA description': 'TRUMP AIRLINE', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3255': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3256': {'combined description': 'ALASKA AIRLINES INC.', 'USDA description': 'ALASKA AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3257': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3258': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3259': {'combined description': 'AMERICAN TRANS AIR', 'USDA description': 'AMERICAN TRANS AIR', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3260': {'combined description': 'SPIRIT AIRLINES', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3261': {'combined description': 'AIR CHINA', 'USDA description': 'AIR CHINA', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3262': {'combined description': 'RENO AIR', 'USDA description': 'RENO AIR, INC.', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3263': {'combined description': 'AERO SERVICIO CARABOBO - ASERCA', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3264': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3265': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3266': {'combined description': 'AIR SEYCHELLES', 'USDA description': 'AIR SEYCHELLES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3267': {'combined description': 'AIR PANAMA INTERNATIONAL', 'USDA description': 'AIR PANAMA', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3268': {'combined description': 'AIR PACIFIC', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3269': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3270': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3271': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3272': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3273': {'combined description': 'RICA HOTELS', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3274': {'combined description': 'INTER NOR HOTELS', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3275': {'combined description': 'AIR NEVADA', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3276': {'combined description': 'AIR MIDWEST', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3277': {'combined description': 'AIR MADAGASCAR', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3278': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3279': {'combined description': 'AIR LA', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3280': {'combined description': 'AIR JAMAICA', 'USDA description': 'AIR JAMAICA', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3281': {'combined description': 'AIR DJIBOUTI', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3282': {'combined description': 'AIR DJIBOUTI', 'USDA description': 'AIR DJIBOUTI', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3283': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3284': {'combined description': 'AERO VIRGIN ISLANDS', 'USDA description': 'AERO VIRGIN ISLANDS', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3285': {'combined description': 'AERO PERU', 'USDA description': 'AERO PERU', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3286': {'combined description': 'AERO NICARAGUENSIS', 'USDA description': 'AEROLINEAS NICARAGUENSIS', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3287': {'combined description': 'AERO COACH AVIATION', 'USDA description': 'AERO COACH AVAIATION', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3288': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3289': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3290': {'combined description': 'airlines', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3291': {'combined description': 'ARIANA AFGHAN', 'USDA description': 'ARIANA AFGHAN', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3292': {'combined description': 'CYPRUS AIRWAYS', 'USDA description': 'CYPRUS AIRWAYS', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3293': {'combined description': 'EQUATORIANA', 'USDA description': 'ECUATORIANA', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3294': {'combined description': 'ETHIOPIAN AIRLINES', 'USDA description': 'ETHIOPIAN AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3295': {'combined description': 'KENYA AIRWAYS', 'USDA description': 'KENYA AIRLINES', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3296': {'combined description': 'AIR BERLIN - AIRBERLIN', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3297': {'combined description': 'TAROM ROMANIAN AIR TRANSPORT', 'USDA description': '', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3298': {'combined description': 'AIR MAURITIUS', 'USDA description': 'AIR MAURITIUS', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3299': {'combined description': 'WIDEROE\'S FLYVESELSKAP', 'USDA description': 'WIDERO\'S FLYVESELSKAP', 'IRS Description': 'Airlines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3351': {'combined description': 'AFFILIATED AUTO RENTAL', 'USDA description': 'AFFILIATED AUTO RENTAL', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3352': {'combined description': 'AMERICAN INTL RENT-A-CAR', 'USDA description': 'AMERICAN INTL RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3353': {'combined description': 'BROOKS RENT-A-CAR', 'USDA description': 'BROOKS RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3354': {'combined description': 'ACTION AUTO RENTAL', 'USDA description': 'ACTION AUTO RENTAL', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3355': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3356': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3357': {'combined description': 'HERTZ RENT-A-CAR', 'USDA description': 'HERTZ RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3358': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3359': {'combined description': 'PAYLESS CAR RENTAL', 'USDA description': 'PAYLESS CAR RENTAL', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3360': {'combined description': 'SNAPPY CAR RENTAL', 'USDA description': 'SNAPPY CAR RENTAL', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3361': {'combined description': 'AIRWAYS RENT-A-CAR', 'USDA description': 'AIRWAYS RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3362': {'combined description': 'ALTRA AUTO RENTAL', 'USDA description': 'ALTRA AUTO RENTAL', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3363': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3364': {'combined description': 'AGENCY RENT-A-CAR', 'USDA description': 'AGENCY RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3365': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3366': {'combined description': 'BUDGET RENT-A-CAR', 'USDA description': 'BUDGET RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3367': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3368': {'combined description': 'HOLIDAY RENT-A-WRECK', 'USDA description': 'HOLIDAY RENT-A-WRECK', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3369': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3370': {'combined description': 'RENT-A-WRECK', 'USDA description': 'RENT-A-WRECK', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3371': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3372': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3373': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3374': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3375': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3376': {'combined description': 'AJAX RENT-A-CAR', 'USDA description': 'AJAX RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3377': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3378': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3379': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3380': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3381': {'combined description': 'EUROP CAR', 'USDA description': 'EUROP CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3382': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3383': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3384': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3385': {'combined description': 'TROPICAL RENT-A-CAR', 'USDA description': 'TROPICAL RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3386': {'combined description': 'SHOWCASE RENTAL CARS', 'USDA description': 'SHOWCASE RENTAL CARS', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3387': {'combined description': 'ALAMO RENT-A-CAR', 'USDA description': 'ALAMO RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3388': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3389': {'combined description': 'AVIS RENT-A-CAR', 'USDA description': 'AVIS RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3390': {'combined description': 'DOLLAR RENT-A-CAR', 'USDA description': 'DOLLAR RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3391': {'combined description': 'EUROPE BY CAR', 'USDA description': 'EUROPE BY CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3392': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3393': {'combined description': 'NATIONAL CAR RENTAL', 'USDA description': 'NATIONAL CAR RENTAL', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3394': {'combined description': 'KEMWELL GROUP RENT-A-CAR', 'USDA description': 'KEMWELL GROUP RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3395': {'combined description': 'THRIFTY RENT-A-CAR', 'USDA description': 'THRIFTY RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3396': {'combined description': 'TILDEN TENT-A-CAR', 'USDA description': 'TILDEN TENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3397': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3398': {'combined description': 'ECONO-CAR RENT-A-CAR', 'USDA description': 'ECONO-CAR RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3399': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3400': {'combined description': 'AUTO HOST COST CAR RENTALS', 'USDA description': 'AUTO HOST COST CAR RENTALS', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3401': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3402': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3403': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3404': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3405': {'combined description': 'ENTERPRISE RENT-A-CAR', 'USDA description': 'ENTERPRISE RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3406': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3407': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3408': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3409': {'combined description': 'GENERAL RENT-A-CAR', 'USDA description': 'GENERAL RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3410': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3411': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3412': {'combined description': 'A-1 RENT-A-CAR', 'USDA description': 'A-1 RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3413': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3414': {'combined description': 'GODFREY NATL RENT-A-CAR', 'USDA description': 'GODFREY NATL RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3415': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3416': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3417': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3418': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3419': {'combined description': 'ALPHA RENT-A-CAR', 'USDA description': 'ALPHA RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3420': {'combined description': 'ANSA INTL RENT-A-CAR', 'USDA description': 'ANSA INTL RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3421': {'combined description': 'ALLSTAE RENT-A-CAR', 'USDA description': 'ALLSTAE RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3422': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3423': {'combined description': 'AVCAR RENT-A-CAR', 'USDA description': 'AVCAR RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3424': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3425': {'combined description': 'AUTOMATE RENT-A-CAR', 'USDA description': 'AUTOMATE RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3426': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3427': {'combined description': 'AVON RENT-A-CAR', 'USDA description': 'AVON RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3428': {'combined description': 'CAREY RENT-A-CAR', 'USDA description': 'CAREY RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3429': {'combined description': 'INSURANCE RENT-A-CAR', 'USDA description': 'INSURANCE RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3430': {'combined description': 'MAJOR RENT-A-CAR', 'USDA description': 'MAJOR RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3431': {'combined description': 'REPLACEMENT RENT-A-CAR', 'USDA description': 'REPLACEMENT RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3432': {'combined description': 'RESERVE RENT-A-CAR', 'USDA description': 'RESERVE RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3433': {'combined description': 'UGLY DUCKLING RENT-A-CAR', 'USDA description': 'UGLY DUCKLING RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3434': {'combined description': 'USA RENT-A-CAR', 'USDA description': 'USA RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3435': {'combined description': 'VALUE RENT-A-CAR', 'USDA description': 'VALUE RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3436': {'combined description': 'AUTOHANSA RENT-A-CAR', 'USDA description': 'AUTOHANSA RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3437': {'combined description': 'CITE RENT-A-CAR', 'USDA description': 'CITE RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3438': {'combined description': 'INTERENT RENT-A-CAR', 'USDA description': 'INTERENT RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3439': {'combined description': 'MILLEVILLE RENT-A-CAR', 'USDA description': 'MILLEVILLE RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3440': {'combined description': 'VIA ROUTE RENT-A-CAR', 'USDA description': 'VIA ROUTE RENT-A-CAR', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3441': {'combined description': 'Car Rental', 'USDA description': '', 'IRS Description': 'Car Rental', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3501': {'combined description': 'HOLIDAY INNS, HOLIDAY INN EXPRESS', 'USDA description': 'HOLIDAY INNS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3502': {'combined description': 'BEST WESTERN HOTELS', 'USDA description': 'BEST WESTERN HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3503': {'combined description': 'SHERATON HOTELS', 'USDA description': 'SHERATON HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3504': {'combined description': 'HILTON HOTELS', 'USDA description': 'HILTON HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3505': {'combined description': 'FORTE HOTELS', 'USDA description': 'FORTE HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3506': {'combined description': 'GOLDEN TULIP HOTELS', 'USDA description': 'GOLDEN TULIP HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3507': {'combined description': 'FRIENDSHIP INNS', 'USDA description': 'FRIENDSHIP INNS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3508': {'combined description': 'QUALITY INNS, QUALITY SUITES', 'USDA description': 'QUALITY INNS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3509': {'combined description': 'MARRIOTT HOTELS', 'USDA description': 'MARRIOTT HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3510': {'combined description': 'DAYS INN, DAYSTOP', 'USDA description': 'DAYS INN', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3511': {'combined description': 'ARABELLA HOTELS', 'USDA description': 'ARABELLA HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3512': {'combined description': 'INTER-CONTINENTAL HOTELS', 'USDA description': 'INTER-CONTINENTAL HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3513': {'combined description': 'WESTIN HOTELS', 'USDA description': 'WESTIN HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3514': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3515': {'combined description': 'RODEWAY INNS', 'USDA description': 'RODEWAY INNS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3516': {'combined description': 'LA QUINTA MOTOR INNS', 'USDA description': 'LA QUINTA MOTOR INNS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3517': {'combined description': 'AMERICANA HOTELS', 'USDA description': 'AMERICANA HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3518': {'combined description': 'SOL HOTELS', 'USDA description': 'SOL HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3519': {'combined description': 'PULLMAN INTERNATIONAL HOTELS', 'USDA description': 'PULLMAN INTERNATIONAL HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3520': {'combined description': 'MERIDIEN HOTELS', 'USDA description': 'MERIDIEN HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3521': {'combined description': 'CREST HOTELS (see FORTE HOTELS)', 'USDA description': 'CREST HOTELS (see FORTE HOTELS)', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3522': {'combined description': 'TOKYO HOTEL', 'USDA description': 'TOKYO HOTEL', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3523': {'combined description': 'PENNSULA HOTEL', 'USDA description': 'PENNSULA HOTEL', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3524': {'combined description': 'WELCOMGROUP HOTELS', 'USDA description': 'WELCOMGROUP HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3525': {'combined description': 'DUNFEY HOTELS', 'USDA description': 'DUNFEY HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3526': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3527': {'combined description': 'DOWNTOWNER-PASSPORT HOTEL', 'USDA description': 'DOWNTOWNER-PASSPORT HOTEL', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3528': {'combined description': 'RED LION HOTELS, RED LION INNS', 'USDA description': 'RED LION HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3529': {'combined description': 'CP HOTELS', 'USDA description': 'CP HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3530': {'combined description': 'RENAISSANCE HOTELS, STOUFFER HOTELS', 'USDA description': 'RENAISSANCE HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3531': {'combined description': 'ASTIR HOTELS', 'USDA description': 'ASTIR HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3532': {'combined description': 'SUN ROUTE HOTELS', 'USDA description': 'SUN ROUTE HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3533': {'combined description': 'HOTEL IBIS', 'USDA description': 'HOTEL IBIS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3534': {'combined description': 'SOUTHERN PACIFIC HOTELS', 'USDA description': 'SOUTHERN PACIFIC HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3535': {'combined description': 'HILTON INTERNATIONAL', 'USDA description': 'HILTON INTERNATIONAL', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3536': {'combined description': 'AMFAC HOTELS', 'USDA description': 'AMFAC HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3537': {'combined description': 'ANA HOTEL', 'USDA description': 'ANA HOTEL', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3538': {'combined description': 'CONCORDE HOTELS', 'USDA description': 'CONCORDE HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3539': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3540': {'combined description': 'IBEROTEL HOTELS', 'USDA description': 'IBEROTEL HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3541': {'combined description': 'HOTEL OKURA', 'USDA description': 'HOTEL OKURA', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3542': {'combined description': 'ROYAL HOTELS', 'USDA description': 'ROYAL HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3543': {'combined description': 'FOUR SEASONS HOTELS', 'USDA description': 'FOUR SEASONS HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3544': {'combined description': 'CIGA HOTELS', 'USDA description': 'CIGA HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3545': {'combined description': 'SHANGRI-LA INTERNATIONAL', 'USDA description': 'SHANGRI-LA INTERNATIONAL', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3546': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3547': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3548': {'combined description': 'HOTELES MELIA', 'USDA description': 'HOTELES MELIA', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3549': {'combined description': 'AUBERGE DES GOVERNEURS', 'USDA description': 'AUBERGE DES GOVERNEURS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3550': {'combined description': 'REGAL 8 INNS', 'USDA description': 'REGAL 8 INNS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3551': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3552': {'combined description': 'COAST HOTELS', 'USDA description': 'COAST HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3553': {'combined description': 'PARK INNS INTERNATIONAL', 'USDA description': 'PARK INNS INTERNATIONAL', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3554': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3555': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3556': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3557': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3558': {'combined description': 'JOLLY HOTELS', 'USDA description': 'JOLLY HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3559': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3560': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3561': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3562': {'combined description': 'COMFORT INNS', 'USDA description': 'COMFORT INNS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3563': {'combined description': 'JOURNEY\'S END MOTLS', 'USDA description': 'JOURNEY\'S END MOTLS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3564': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3565': {'combined description': 'RELAX INNS', 'USDA description': 'RELAX INNS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3566': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3567': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3568': {'combined description': 'LADBROKE HOTELS', 'USDA description': 'LADBROKE HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3569': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3570': {'combined description': 'FORUM HOTELS', 'USDA description': 'FORUM HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3571': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3572': {'combined description': 'MIYAKO HOTELS', 'USDA description': 'MIYAKO HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3573': {'combined description': 'SANDMAN HOTELS', 'USDA description': 'SANDMAN HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3574': {'combined description': 'VENTURE INNS', 'USDA description': 'VENTURE INNS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3575': {'combined description': 'VAGABOND HOTELS', 'USDA description': 'VAGABOND HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3576': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3577': {'combined description': 'MANDARIN ORIENTAL HOTEL', 'USDA description': 'MANDARIN ORIENTAL HOTEL', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3578': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3579': {'combined description': 'HOTEL MERCURE', 'USDA description': 'HOTEL MERCURE', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3580': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3581': {'combined description': 'DELTA HOTEL', 'USDA description': 'DELTA HOTEL', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3582': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3583': {'combined description': 'SAS HOTELS', 'USDA description': 'SAS HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3584': {'combined description': 'PRINCESS HOTELS INTERNATIONAL', 'USDA description': 'PRINCESS HOTELS INTERNATIONAL', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3585': {'combined description': 'HUNGAR HOTELS', 'USDA description': 'HUNGAR HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3586': {'combined description': 'SOKOS HOTELS', 'USDA description': 'SOKOS HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3587': {'combined description': 'DORAL HOTELS', 'USDA description': 'DORAL HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3588': {'combined description': 'HELMSLEY HOTELS', 'USDA description': 'HELMSLEY HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3589': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3590': {'combined description': 'FAIRMONT HOTELS', 'USDA description': 'FAIRMONT HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3591': {'combined description': 'SONESTA HOTELS', 'USDA description': 'SONESTA HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3592': {'combined description': 'OMNI HOTELS', 'USDA description': 'OMNI HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3593': {'combined description': 'CUNARD HOTELS', 'USDA description': 'CUNARD HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3594': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3595': {'combined description': 'HOSPITALITY INTERNATIONAL', 'USDA description': 'HOSPITALITY INTERNATIONAL', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3596': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3597': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3598': {'combined description': 'REGENT INTERNATIONAL HOTELS', 'USDA description': 'REGENT INTERNATIONAL HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3599': {'combined description': 'PANNONIA HOTELS', 'USDA description': 'PANNONIA HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3600': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3601': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3602': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3603': {'combined description': 'NOAH\'S HOTELS', 'USDA description': 'NOAH\'S HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3604': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3605': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3606': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3607': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3608': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3609': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3610': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3611': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3612': {'combined description': 'MOVENPICK HOTELS', 'USDA description': 'MOVENPICK HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3613': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3614': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3615': {'combined description': 'TRAVELODGE', 'USDA description': 'TRAVELODGE', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3616': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3617': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3618': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3619': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3620': {'combined description': 'TELFORD INTERNATIONAL', 'USDA description': 'TELFORD INTERNATIONAL', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3621': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3622': {'combined description': 'MERLIN HOTELS', 'USDA description': 'MERLIN HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3623': {'combined description': 'DORINT HOTELS', 'USDA description': 'DORINT HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3624': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3625': {'combined description': 'HOTLE UNIVERSALE', 'USDA description': 'HOTLE UNIVERSALE', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3626': {'combined description': 'PRINCE HOTELS', 'USDA description': 'PRINCE HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3627': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3628': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3629': {'combined description': 'DAN HOTELS', 'USDA description': 'DAN HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3630': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3631': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3632': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3633': {'combined description': 'RANK HOTELS', 'USDA description': 'RANK HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3634': {'combined description': 'SWISSOTEL', 'USDA description': 'SWISSOTEL', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3635': {'combined description': 'RESO HOTELS', 'USDA description': 'RESO HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3636': {'combined description': 'SAROVA HOTELS', 'USDA description': 'SAROVA HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3637': {'combined description': 'RAMADA INNS, RAMADA LIMITED', 'USDA description': 'RAMADA INNS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3638': {'combined description': 'HO JO INN, HOWARD JOHNSON', 'USDA description': 'HO JO INN', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3639': {'combined description': 'MOUNT CHARLOTTE THISTLE', 'USDA description': 'MOUNT CHARLOTTE THISTLE', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3640': {'combined description': 'HYATT HOTEL', 'USDA description': 'HYATT HOTEL', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3641': {'combined description': 'SOFITEL HOTELS', 'USDA description': 'SOFITEL HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3642': {'combined description': 'NOVOTEL HOTELS', 'USDA description': 'NOVOTEL HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3643': {'combined description': 'STEIGENBERGER HOTELS', 'USDA description': 'STEIGENBERGER HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3644': {'combined description': 'ECONO LODGES', 'USDA description': 'ECONO LODGES', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3645': {'combined description': 'QUEENS MOAT HOUSES', 'USDA description': 'QUEENS MOAT HOUSES', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3646': {'combined description': 'SWALLOW HOTELS', 'USDA description': 'SWALLOW HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3647': {'combined description': 'HUSA HOTELS', 'USDA description': 'HUSA HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3648': {'combined description': 'DE VERE HOTELS', 'USDA description': 'DE VERE HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3649': {'combined description': 'RADISSON HOTELS', 'USDA description': 'RADISSON HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3650': {'combined description': 'RED ROOK INNS', 'USDA description': 'RED ROOK INNS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3651': {'combined description': 'IMPERIAL LONDON HOTEL', 'USDA description': 'IMPERIAL LONDON HOTEL', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3652': {'combined description': 'EMBASSY HOTELS', 'USDA description': 'EMBASSY HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3653': {'combined description': 'PENTA HOTELS', 'USDA description': 'PENTA HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3654': {'combined description': 'LOEWS HOTELS', 'USDA description': 'LOEWS HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3655': {'combined description': 'SCANDIC HOTELS', 'USDA description': 'SCANDIC HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3656': {'combined description': 'SARA HOTELS', 'USDA description': 'SARA HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3657': {'combined description': 'OBEROI HOTELS', 'USDA description': 'OBEROI HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3658': {'combined description': 'OTANI HOTELS', 'USDA description': 'OTANI HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3659': {'combined description': 'TAJ HOTELS INTERNATIONAL', 'USDA description': 'TAJ HOTELS INTERNATIONAL', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3660': {'combined description': 'KNIGHTS INNS', 'USDA description': 'KNIGHTS INNS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3661': {'combined description': 'METROPOLE HOTELS', 'USDA description': 'METROPOLE HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3662': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3663': {'combined description': 'HOTELES EL PRESIDENTS', 'USDA description': 'HOTELES EL PRESIDENTS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3664': {'combined description': 'FLAG INN', 'USDA description': 'FLAG INN', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3665': {'combined description': 'HAMPTON INNS', 'USDA description': 'HAMPTON INNS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3666': {'combined description': 'STAKIS HOTELS', 'USDA description': 'STAKIS HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3667': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3668': {'combined description': 'MARITIM HOTELS', 'USDA description': 'MARITIM HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3669': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3670': {'combined description': 'ARCARD HOTELS', 'USDA description': 'ARCARD HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3671': {'combined description': 'ARCTIA HOTELS', 'USDA description': 'ARCTIA HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3672': {'combined description': 'CAMPANIEL HOTELS', 'USDA description': 'CAMPANIEL HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3673': {'combined description': 'IBUSZ HOTELS', 'USDA description': 'IBUSZ HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3674': {'combined description': 'RANTASIPI HOTELS', 'USDA description': 'RANTASIPI HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3675': {'combined description': 'INTERHOTEL CEDOK', 'USDA description': 'INTERHOTEL CEDOK', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3676': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3677': {'combined description': 'CLIMAT DE FRANCE HOTELS', 'USDA description': 'CLIMAT DE FRANCE HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3678': {'combined description': 'CUMULUS HOTELS', 'USDA description': 'CUMULUS HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3679': {'combined description': 'DANUBIUS HOTEL', 'USDA description': 'DANUBIUS HOTEL', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3680': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3681': {'combined description': 'ADAMS MARK HOTELS', 'USDA description': 'ADAMS MARK HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3682': {'combined description': 'ALLSTAR INNS', 'USDA description': 'ALLSTAR INNS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3683': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3684': {'combined description': 'BUDGET HOST INNS', 'USDA description': 'BUDGET HOST INNS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3685': {'combined description': 'BUDGETEL HOTELS', 'USDA description': 'BUDGETEL HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3686': {'combined description': 'SUISSE CHALETS', 'USDA description': 'SUISSE CHALETS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3687': {'combined description': 'CLARION HOTELS', 'USDA description': 'CLARION HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3688': {'combined description': 'COMPRI HOTELS', 'USDA description': 'COMPRI HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3689': {'combined description': 'CONSORT HOTELS', 'USDA description': 'CONSORT HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3690': {'combined description': 'COURTYARD BY MARRIOTT', 'USDA description': 'COURTYARD BY MARRIOTT', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3691': {'combined description': 'DILLION INNS', 'USDA description': 'DILLION INNS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3692': {'combined description': 'DOUBLETREE HOTELS', 'USDA description': 'DOUBLETREE HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3693': {'combined description': 'DRURY INNS', 'USDA description': 'DRURY INNS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3694': {'combined description': 'ECONOMY INNS OF AMERICA', 'USDA description': 'ECONOMY INNS OF AMERICA', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3695': {'combined description': 'EMBASSY SUITES', 'USDA description': 'EMBASSY SUITES', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3696': {'combined description': 'EXEL INNS', 'USDA description': 'EXEL INNS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3697': {'combined description': 'FARFIELD HOTELS', 'USDA description': 'FARFIELD HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3698': {'combined description': 'HARLEY HOTELS', 'USDA description': 'HARLEY HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3699': {'combined description': 'MIDWAY MOTOR LODGE', 'USDA description': 'MIDWAY MOTOR LODGE', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3700': {'combined description': 'MOTEL 6', 'USDA description': 'MOTEL 6', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3701': {'combined description': 'GUEST QUARTERS (Formally PICKETT SUITE HOTELS)', 'USDA description': 'GUEST QUARTERS (Formally PICKETT SUITE HOTELS)', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3702': {'combined description': 'THE REGISTRY HOTELS', 'USDA description': 'THE REGISTRY HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3703': {'combined description': 'RESIDENCE INNS', 'USDA description': 'RESIDENCE INNS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3704': {'combined description': 'ROYCE HOTELS', 'USDA description': 'ROYCE HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3705': {'combined description': 'SANDMAN INNS', 'USDA description': 'SANDMAN INNS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3706': {'combined description': 'SHILO INNS', 'USDA description': 'SHILO INNS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3707': {'combined description': 'SHONEY\'S INNS', 'USDA description': 'SHONEY\'S INNS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3708': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3709': {'combined description': 'SUPER8 MOTELS', 'USDA description': 'SUPER8 MOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3710': {'combined description': 'THE RITZ CARLTON HOTELS', 'USDA description': 'THE RITZ CARLTON HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3711': {'combined description': 'FLAG INNS (AUSRALIA)', 'USDA description': 'FLAG INNS (AUSRALIA)', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3712': {'combined description': 'GOLDEN CHAIN HOTEL', 'USDA description': 'GOLDEN CHAIN HOTEL', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3713': {'combined description': 'QUALITY PACIFIC HOTEL', 'USDA description': 'QUALITY PACIFIC HOTEL', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3714': {'combined description': 'FOUR SEASONS HOTEL (AUSTRALIA)', 'USDA description': 'FOUR SEASONS HOTEL (AUSTRALIA)', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3715': {'combined description': 'FARIFIELD INN', 'USDA description': 'FARIFIELD INN', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3716': {'combined description': 'CARLTON HOTELS', 'USDA description': 'CARLTON HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3717': {'combined description': 'CITY LODGE HOTELS', 'USDA description': 'CITY LODGE HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3718': {'combined description': 'KAROS HOTELS', 'USDA description': 'KAROS HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3719': {'combined description': 'PROTEA HOTELS', 'USDA description': 'PROTEA HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3720': {'combined description': 'SOUTHERN SUN HOTELS', 'USDA description': 'SOUTHERN SUN HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3721': {'combined description': 'HILTON CONRAD', 'USDA description': 'HILTON CONRAD', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3722': {'combined description': 'WYNDHAM HOTEL AND RESORTS', 'USDA description': 'WYNDHAM HOTEL AND RESORTS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3723': {'combined description': 'RICA HOTELS', 'USDA description': 'RICA HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3724': {'combined description': 'INER NOR HOTELS', 'USDA description': 'INER NOR HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3725': {'combined description': 'SEAINES PLANATION', 'USDA description': 'SEAINES PLANATION', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3726': {'combined description': 'RIO SUITES', 'USDA description': 'RIO SUITES', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3727': {'combined description': 'BROADMOOR HOTEL', 'USDA description': 'BROADMOOR HOTEL', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3728': {'combined description': 'BALLY\'S HOTEL AND CASINO', 'USDA description': 'BALLY\'S HOTEL AND CASINO', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3729': {'combined description': 'JOHN ASCUAGA\'S NUGGET', 'USDA description': 'JOHN ASCUAGA\'S NUGGET', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3730': {'combined description': 'MGM GRAND HOTEL', 'USDA description': 'MGM GRAND HOTEL', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3731': {'combined description': 'HARRAH\'S HOTELS AND CASINOS', 'USDA description': 'HARRAH\'S HOTELS AND CASINOS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3732': {'combined description': 'OPRYLAND HOTEL', 'USDA description': 'OPRYLAND HOTEL', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3733': {'combined description': 'BOCA RATON RESORT', 'USDA description': 'BOCA RATON RESORT', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3734': {'combined description': 'HARVEY/BRISTOL HOTELS', 'USDA description': 'HARVEY/BRISTOL HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3735': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3736': {'combined description': 'COLORADO BELLE/EDGEWATER RESORT', 'USDA description': 'COLORADO BELLE/EDGEWATER RESORT', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3737': {'combined description': 'RIVIERA HOTEL AND CASINO', 'USDA description': 'RIVIERA HOTEL AND CASINO', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3738': {'combined description': 'TROPICANA RESORT AND CASINO', 'USDA description': 'TROPICANA RESORT AND CASINO', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3739': {'combined description': 'WOODSIDE HOTELS AND RESORTS', 'USDA description': 'WOODSIDE HOTELS AND RESORTS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3740': {'combined description': 'TOWNPLACE SUITES', 'USDA description': 'TOWNPLACE SUITES', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3741': {'combined description': 'MILLENIUM BROADWAY HOTEL', 'USDA description': 'MILLENIUM BROADWAY HOTEL', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3742': {'combined description': 'CLUB MED', 'USDA description': 'CLUB MED', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3743': {'combined description': 'BILTMORE HOTEL AND SUITES', 'USDA description': 'BILTMORE HOTEL AND SUITES', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3744': {'combined description': 'CAREFREE RESORTS', 'USDA description': 'CAREFREE RESORTS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3745': {'combined description': 'ST. REGIS HOTEL', 'USDA description': 'ST. REGIS HOTEL', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3746': {'combined description': 'THE ELIOT HOTEL', 'USDA description': 'THE ELIOT HOTEL', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3747': {'combined description': 'CLUBCORP/CLUB RESORTS', 'USDA description': 'CLUBCORP/CLUB RESORTS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3748': {'combined description': 'WELESLEY INNS', 'USDA description': 'WELESLEY INNS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3749': {'combined description': 'THE BEVERLY HILLS HOTEL', 'USDA description': 'THE BEVERLY HILLS HOTEL', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3750': {'combined description': 'CROWNE PLAZA HOTELS', 'USDA description': 'CROWNE PLAZA HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3751': {'combined description': 'HOMEWOOD SUITES', 'USDA description': 'HOMEWOOD SUITES', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3752': {'combined description': 'PEABODY HOTELS', 'USDA description': 'PEABODY HOTELS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3753': {'combined description': 'GREENBRIAH RESORTS', 'USDA description': 'GREENBRIAH RESORTS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3754': {'combined description': 'AMELIA ISLAND PLANATION', 'USDA description': 'AMELIA ISLAND PLANATION', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3755': {'combined description': 'THE HOMESTEAD', 'USDA description': 'THE HOMESTEAD', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3756': {'combined description': 'SOUTH SEAS RESORTS', 'USDA description': 'SOUTH SEAS RESORTS', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3757': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3758': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3759': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3760': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3761': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3762': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3763': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3764': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3765': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3766': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3767': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3768': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3769': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3770': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3771': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3772': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3773': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3774': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3775': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3776': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3777': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3778': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3779': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3780': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3781': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3782': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3783': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3784': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3785': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3786': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3787': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3788': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3789': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3790': {'combined description': 'Hotels/Motels/Inns/Resorts', 'USDA description': '', 'IRS Description': 'Hotels/Motels/Inns/Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '3835': {'combined description': '* MASTERS ECONOMY INNS', 'USDA description': '* MASTERS ECONOMY INNS', 'IRS Description': '', 'Reportable under 6041/6041A and Authority for Exception': ''}, + '4011': {'combined description': 'Railroads', 'USDA description': '', 'IRS Description': 'Railroads', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '4111': {'combined description': 'Local/Suburban Commuter Passenger Transportation & Railroads, Feries, Local Water Transportation.', 'USDA description': 'Local/Suburban Commuter Passenger Transportation & Railroads, Feries, Local Water Transportation.', 'IRS Description': 'Commuter Transport, Ferries', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '4112': {'combined description': 'Passenger Railways', 'USDA description': 'Passenger Railways', 'IRS Description': 'Passenger Railways', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '4119': {'combined description': 'Ambulance Services', 'USDA description': 'Ambulance Services', 'IRS Description': 'Ambulance Services', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '4121': {'combined description': 'Taxicabs and Limousines', 'USDA description': 'Taxicabs and Limousines', 'IRS Description': 'Taxicabs/Limousines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '4131': {'combined description': 'Bus Lines, Including Charters, Tour Buses', 'USDA description': 'Bus Lines, Including Charters, Tour Buses', 'IRS Description': 'Bus Lines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '4214': {'combined description': 'Motor Freight Carriers, Moving and Storage Companies, Trucking & Local/Long Distance, Delivery Services & Local', 'USDA description': 'Motor Freight Carriers', 'IRS Description': 'Motor Freight Carriers and Trucking - Local and Long Distance, Moving and Storage Companies, and Local Delivery Services ', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '4215': {'combined description': 'Courier Services & Air or Ground, Freight forwarders', 'USDA description': 'Courier Services & Air or Ground', 'IRS Description': 'Courier Services ', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '4225': {'combined description': 'Public warehousing, Storage', 'USDA description': 'Warehousing, Public', 'IRS Description': 'Public Warehousing and Storage - Farm Products, Refrigerated Goods, Household Goods, and Storage ', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '4411': {'combined description': 'Cruise and Steamship Lines', 'USDA description': 'Cruise Lines', 'IRS Description': 'Cruise Lines', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '4457': {'combined description': 'Boat Rentals and Leases', 'USDA description': 'Boat Rentals and Leases', 'IRS Description': 'Boat Rentals and Leases', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '4468': {'combined description': 'Marinas, Marine Service, and Supplies', 'USDA description': 'Marinas, Marine Service, and Supplies', 'IRS Description': 'Marinas, Service and Supplies', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '4511': {'combined description': 'Airlines, Air Carriers ( not listed elsewhere)', 'USDA description': 'Airlines, Air Carriers ( not listed elsewhere)', 'IRS Description': 'Airlines, Air Carriers', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '4582': {'combined description': 'Airports, Airport Terminals, Flying Fields', 'USDA description': 'Airports, Airport Terminals', 'IRS Description': 'Airports, Flying Fields', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '4722': {'combined description': 'Travel Agencies and Tour Operations', 'USDA description': 'Travel Agencies and Tour Operations', 'IRS Description': 'Travel Agencies, Tour Operators', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '4723': {'combined description': 'Package Tour Operators (For use in Germany only)', 'USDA description': 'Package Tour Operators (For use in Germany only)', 'IRS Description': 'TUI Travel - Germany', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '4784': {'combined description': 'Toll and Bridge Fees', 'USDA description': 'Toll and Bridge Fees', 'IRS Description': 'Tolls/Bridge Fees', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '4789': {'combined description': 'Transportation Services, Not elsewhere classified)', 'USDA description': 'Transportation Services, Not elsewhere classified)', 'IRS Description': 'Transportation Services (Not Elsewhere Classified)', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '4812': {'combined description': 'Telecommunications Equipment including telephone sales', 'USDA description': 'Telecommunications Equipment including telephone sales', 'IRS Description': 'Telecommunication Equipment and Telephone Sales', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '4814': {'combined description': 'Fax services, Telecommunication Services', 'USDA description': 'Fax services', 'IRS Description': 'Telecommunication Services', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '4815': {'combined description': 'VisaPhone', 'USDA description': 'VisaPhone', 'IRS Description': '', 'Reportable under 6041/6041A and Authority for Exception': ''}, + '4816': {'combined description': 'Computer Network Services', 'USDA description': '', 'IRS Description': 'Computer Network Services', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '4821': {'combined description': 'Telegraph services', 'USDA description': 'Telegraph services', 'IRS Description': 'Telegraph Services', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '4829': {'combined description': 'Money Orders & Wire Transfer', 'USDA description': 'Money Orders & Wire Transfer', 'IRS Description': 'Wires, Money Orders', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '4899': {'combined description': 'Cable and other pay television (previously Cable Services)', 'USDA description': 'Cable and other pay television (previously Cable Services)', 'IRS Description': 'Cable, Satellite, and Other Pay Television and Radio', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '4900': {'combined description': 'Electric, Gas, Sanitary and Water Utilities', 'USDA description': 'Electric, Gas, Sanitary and Water Utilities', 'IRS Description': 'Utilities ', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5013': {'combined description': 'Motor vehicle supplies and new parts', 'USDA description': 'Motor vehicle supplies and new parts', 'IRS Description': 'Motor Vehicle Supplies and New Parts', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5021': {'combined description': 'Office and Commercial Furniture', 'USDA description': 'Office and Commercial Furniture', 'IRS Description': 'Office and Commercial Furniture', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5039': {'combined description': 'Construction Materials, Not Elsewhere Classified', 'USDA description': 'Construction Materials, Not Elsewhere Classified', 'IRS Description': 'Construction Materials (Not Elsewhere Classified)', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5044': {'combined description': 'Office, Photographic, Photocopy, and Microfilm Equipment', 'USDA description': 'Office, Photographic, Photocopy, and Microfilm Equipment', 'IRS Description': 'Photographic, Photocopy, Microfilm Equipment, and Supplies', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5045': {'combined description': 'Computers, Computer Peripheral Equipment, Software', 'USDA description': 'Computers, Computer Peripheral Equipment, Software', 'IRS Description': 'Computers, Peripherals, and Software', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5046': {'combined description': 'Commercial Equipment, Not Elsewhere Classified', 'USDA description': 'Commercial Equipment, Not Elsewhere Classified', 'IRS Description': 'Commercial Equipment (Not Elsewhere Classified)', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5047': {'combined description': 'Medical, Dental Ophthalmic, Hospital Equipment and Supplies', 'USDA description': 'Medical, Dental Ophthalmic, Hospital Equipment and Supplies', 'IRS Description': 'Medical, Dental, Ophthalmic, and Hospital Equipment and Supplies', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5051': {'combined description': 'Metal Service Centers and Offices', 'USDA description': 'Metal Service Centers and Offices', 'IRS Description': 'Metal Service Centers', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5065': {'combined description': 'Electrical Parts and Equipment', 'USDA description': 'Electrical Parts and Equipment', 'IRS Description': 'Electrical Parts and Equipment', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5072': {'combined description': 'Hardware Equipment and Supplies', 'USDA description': 'Hardware Equipment and Supplies', 'IRS Description': 'Hardware, Equipment, and Supplies', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5074': {'combined description': 'Plumbing and Heating Equipment and Supplies', 'USDA description': 'Plumbing and Heating Equipment and Supplies', 'IRS Description': 'Plumbing, Heating Equipment, and Supplies', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5085': {'combined description': 'Industrial Supplies, Not Elsewhere Classified', 'USDA description': 'Industrial Supplies, Not Elsewhere Classified', 'IRS Description': 'Industrial Supplies (Not Elsewhere Classified)', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5094': {'combined description': 'Precious Stones and Metals, Watches and Jewelry', 'USDA description': 'Precious Stones and Metals, Watches and Jewelry', 'IRS Description': 'Precious Stones and Metals, Watches and Jewelry', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5099': {'combined description': 'Durable Goods, Not Elsewhere Classified', 'USDA description': 'Durable Goods, Not Elsewhere Classified', 'IRS Description': 'Durable Goods (Not Elsewhere Classified)', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5111': {'combined description': 'Stationery, Office Supplies, Printing, and Writing Paper', 'USDA description': 'Stationery, Office Supplies, Printing, and Writing Paper', 'IRS Description': 'Stationary, Office Supplies, Printing and Writing Paper', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5122': {'combined description': 'Drugs, Drug Proprietors, and Druggist\'s Sundries', 'USDA description': 'Drugs, Drug Proprietors, and Druggist\'s Sundries', 'IRS Description': 'Drugs, Drug Proprietaries, and Druggist Sundries', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5131': {'combined description': 'Piece Goods, Notions, and Other Dry Goods', 'USDA description': 'Piece Goods, Notions, and Other Dry Goods', 'IRS Description': 'Piece Goods, Notions, and Other Dry Goods', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5137': {'combined description': 'Men\'s Women\'s and Children\'s Uniforms and Commercial Clothing', 'USDA description': 'Men\'s Women\'s and Children\'s Uniforms and Commercial Clothing', 'IRS Description': 'Uniforms, Commercial Clothing', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5139': {'combined description': 'Commercial Footwear', 'USDA description': 'Commercial Footwear', 'IRS Description': 'Commercial Footwear', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5169': {'combined description': 'Chemicals and Allied Products, Not Elsewhere Classified', 'USDA description': 'Chemicals and Allied Products, Not Elsewhere Classified', 'IRS Description': 'Chemicals and Allied Products (Not Elsewhere Classified)', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5172': {'combined description': 'Petroleum and Petroleum Products', 'USDA description': 'Petroleum and Petroleum Products', 'IRS Description': 'Petroleum and Petroleum Products', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5192': {'combined description': 'Books, Periodicals, and Newspapers', 'USDA description': 'Books, Periodicals, and Newspapers', 'IRS Description': 'Books, Periodicals, and Newspapers', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5193': {'combined description': 'Florists\' Supplies, Nursery Stock and Flowers', 'USDA description': 'Florists\' Supplies, Nursery Stock and Flowers', 'IRS Description': 'Florists Supplies, Nursery Stock, and Flowers', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5198': {'combined description': 'Paints, Varnishes, and Supplies', 'USDA description': 'Paints, Varnishes, and Supplies', 'IRS Description': 'Paints, Varnishes, and Supplies', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5199': {'combined description': 'Non-durable Goods, Not Elsewhere Classified', 'USDA description': 'Non-durable Goods, Not Elsewhere Classified', 'IRS Description': 'Nondurable Goods (Not Elsewhere Classified)', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5200': {'combined description': 'Home Supply Warehouse Stores', 'USDA description': 'Home Supply Warehouse Stores', 'IRS Description': 'Home Supply Warehouse Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5211': {'combined description': 'Lumber and Building Materials Stores', 'USDA description': 'Lumber and Building Materials Stores', 'IRS Description': 'Lumber, Building Materials Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5231': {'combined description': 'Glass, Paint, and Wallpaper Stores', 'USDA description': 'Wallpaper Stores', 'IRS Description': 'Glass, Paint, and Wallpaper Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5251': {'combined description': 'Hardware Stores', 'USDA description': 'Hardware Stores', 'IRS Description': 'Hardware Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5261': {'combined description': 'Nurseries & Lawn and Garden Supply Store', 'USDA description': 'Nurseries & Lawn and Garden Supply Store', 'IRS Description': 'Nurseries, Lawn and Garden Supply Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5271': {'combined description': 'Mobile Home Dealers', 'USDA description': 'Mobile Home Dealers', 'IRS Description': 'Mobile Home Dealers', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5300': {'combined description': 'Wholesale Clubs', 'USDA description': 'Wholesale Clubs', 'IRS Description': 'Wholesale Clubs', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5309': {'combined description': 'Duty Free Store', 'USDA description': 'Duty Free Store', 'IRS Description': 'Duty Free Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5310': {'combined description': 'Discount Stores', 'USDA description': 'Discount Stores', 'IRS Description': 'Discount Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5311': {'combined description': 'Department Stores', 'USDA description': 'Department Stores', 'IRS Description': 'Department Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5331': {'combined description': 'Variety Stores', 'USDA description': 'Variety Stores', 'IRS Description': 'Variety Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5399': {'combined description': 'Misc. General Merchandise', 'USDA description': 'Misc. General Merchandise', 'IRS Description': 'Miscellaneous General Merchandise', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5411': {'combined description': 'Grocery Stores, Supermarkets', 'USDA description': 'Grocery Stores', 'IRS Description': 'Grocery Stores, Supermarkets', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5422': {'combined description': 'Meat Provisioners & Freezer and Locker', 'USDA description': 'Meat Provisioners & Freezer and Locker', 'IRS Description': 'Freezer and Locker Meat Provisioners', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5441': {'combined description': 'Candy, Nut, and Confectionery Stores', 'USDA description': 'Candy Stores', 'IRS Description': 'Candy, Nut, and Confectionery Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5451': {'combined description': 'Dairy Products Stores', 'USDA description': 'Dairy Products Stores', 'IRS Description': 'Dairy Products Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5462': {'combined description': 'Bakeries', 'USDA description': 'Bakeries', 'IRS Description': 'Bakeries', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5499': {'combined description': 'Misc. Food Stores & Convenience Stores and Specialty Markets', 'USDA description': 'Misc. Food Stores & Convenience Stores and Specialty Markets', 'IRS Description': 'Miscellaneous Food Stores - Convenience Stores and Specialty Markets', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5511': {'combined description': 'Car and Truck Dealers (New and Used) Sales, Service, Repairs, Parts, and Leasing', 'USDA description': 'Car and Truck Dealers (New and Used) Sales, Service, Repairs, Parts, and Leasing', 'IRS Description': 'Car and Truck Dealers (New & Used) Sales, Service, Repairs Parts and Leasing ', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5521': {'combined description': 'Automobile and Truck Dealers (Used Only)', 'USDA description': 'Automobile and Truck Dealers (Used Only)', 'IRS Description': 'Car and Truck Dealers (Used Only) Sales, Service, Repairs Parts and Leasing ', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5531': {'combined description': 'Automobile Supply Stores', 'USDA description': 'Automobile Supply Stores', 'IRS Description': 'Auto and Home Supply Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5532': {'combined description': 'Automotive Tire Stores', 'USDA description': 'Automotive Tire Stores', 'IRS Description': 'Automotive Tire Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5533': {'combined description': 'Automotive Parts, Accessories Stores', 'USDA description': 'Automotive Parts, Accessories Stores', 'IRS Description': 'Automotive Parts and Accessories Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5541': {'combined description': 'Service Stations ( with or without ancillary services)', 'USDA description': 'Service Stations ( with or without ancillary services)', 'IRS Description': 'Service Stations ', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5542': {'combined description': 'Automated Fuel Dispensers', 'USDA description': 'Automated Fuel Dispensers', 'IRS Description': 'Automated Fuel Dispensers', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5551': {'combined description': 'Boat Dealers', 'USDA description': 'Boat Dealers', 'IRS Description': 'Boat Dealers', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5561': {'combined description': 'Recreational and Utility Trailers, Camp Dealers', 'USDA description': 'Recreational and Utility Trailers, Camp Dealers', 'IRS Description': 'Motorcycle Shops, Dealers', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5571': {'combined description': 'Motorcycle Dealers', 'USDA description': 'Motorcycle Dealers', 'IRS Description': 'Motorcycle Shops and Dealers', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5592': {'combined description': 'Motor Home Dealers', 'USDA description': 'Motor Home Dealers', 'IRS Description': 'Motor Homes Dealers', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5598': {'combined description': 'Snowmobile Dealers', 'USDA description': 'Snowmobile Dealers', 'IRS Description': 'Snowmobile Dealers', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5599': {'combined description': 'Miscellaneous Auto Dealers ', 'USDA description': '', 'IRS Description': 'Miscellaneous Auto Dealers ', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5611': {'combined description': 'Men\'s and Boy\'s Clothing and Accessories Stores', 'USDA description': 'Men\'s and Boy\'s Clothing and Accessories Stores', 'IRS Description': 'Men\'s and Boy\'s Clothing and Accessories Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5621': {'combined description': 'Women\'s Ready-to-Wear Stores', 'USDA description': 'Women\'s Ready-to-Wear Stores', 'IRS Description': 'Women\'s Ready-To-Wear Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5631': {'combined description': 'Women\'s Accessory and Specialty Shops', 'USDA description': 'Women\'s Accessory and Specialty Shops', 'IRS Description': 'Women\'s Accessory and Specialty Shops', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5641': {'combined description': 'Children\'s and Infant\'s Wear Stores', 'USDA description': 'Children\'s and Infant\'s Wear Stores', 'IRS Description': 'Children\'s and Infant\'s Wear Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5651': {'combined description': 'Family Clothing Stores', 'USDA description': 'Family Clothing Stores', 'IRS Description': 'Family Clothing Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5655': {'combined description': 'Sports Apparel, Riding Apparel Stores', 'USDA description': 'Sports Apparel, Riding Apparel Stores', 'IRS Description': 'Sports and Riding Apparel Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5661': {'combined description': 'Shoe Stores', 'USDA description': 'Shoe Stores', 'IRS Description': 'Shoe Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5681': {'combined description': 'Furriers and Fur Shops', 'USDA description': 'Furriers and Fur Shops', 'IRS Description': 'Furriers and Fur Shops', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5691': {'combined description': 'Men\'s and Women\'s Clothing Stores', 'USDA description': 'Men\'s and Women\'s Clothing Stores', 'IRS Description': 'Men\'s, Women\'s Clothing Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5697': {'combined description': 'Tailors, Seamstress, Mending, and Alterations', 'USDA description': 'Tailors, Seamstress, Mending, and Alterations', 'IRS Description': 'Tailors, Alterations', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '5698': {'combined description': 'Wig and Toupee Stores', 'USDA description': 'Wig and Toupee Stores', 'IRS Description': 'Wig and Toupee Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5699': {'combined description': 'Miscellaneous Apparel and Accessory Shops', 'USDA description': 'Miscellaneous Apparel and Accessory Shops', 'IRS Description': 'Miscellaneous Apparel and Accessory Shops', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5712': {'combined description': 'Furniture, Home Furnishings, and Equipment Stores, ExceptAppliances', 'USDA description': 'Furniture, Home Furnishings, and Equipment Stores, ExceptAppliances', 'IRS Description': 'Furniture, Home Furnishings, and Equipment Stores, Except Appliances', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5713': {'combined description': 'Floor Covering Stores', 'USDA description': 'Floor Covering Stores', 'IRS Description': 'Floor Covering Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5714': {'combined description': 'Drapery, Window Covering and Upholstery Stores', 'USDA description': 'Drapery, Window Covering and Upholstery Stores', 'IRS Description': 'Drapery, Window Covering, and Upholstery Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5718': {'combined description': 'Fireplace, Fireplace Screens, and Accessories Stores', 'USDA description': 'Fireplace, Fireplace Screens, and Accessories Stores', 'IRS Description': 'Fireplace, Fireplace Screens, and Accessories Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5719': {'combined description': 'Miscellaneous Home Furnishing Specialty Stores', 'USDA description': 'Miscellaneous Home Furnishing Specialty Stores', 'IRS Description': 'Miscellaneous Home Furnishing Specialty Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5722': {'combined description': 'Household Appliance Stores', 'USDA description': 'Household Appliance Stores', 'IRS Description': 'Household Appliance Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5732': {'combined description': 'Electronic Sales', 'USDA description': 'Electronic Sales', 'IRS Description': 'Electronics Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5733': {'combined description': 'Music Stores, Musical Instruments, Piano Sheet Music', 'USDA description': 'Music Stores, Musical Instruments, Piano Sheet Music', 'IRS Description': 'Music Stores-Musical Instruments, Pianos, and Sheet Music', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5734': {'combined description': 'Computer Software Stores', 'USDA description': 'Computer Software Stores', 'IRS Description': 'Computer Software Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5735': {'combined description': 'Record Shops', 'USDA description': 'Record Shops', 'IRS Description': 'Record Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5811': {'combined description': 'Caterers', 'USDA description': 'Caterers', 'IRS Description': 'Caterers', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '5812': {'combined description': 'Eating places and Restaurants', 'USDA description': 'Eating places and Restaurants', 'IRS Description': 'Eating Places, Restaurants', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5813': {'combined description': 'Drinking Places (Alcoholic Beverages), Bars, Taverns, Cocktail lounges, Nightclubs and Discotheques', 'USDA description': 'Drinking Places (Alcoholic Beverages), Bars, Taverns, Cocktail lounges, Nightclubs and Discotheques', 'IRS Description': 'Drinking Places', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5814': {'combined description': 'Fast Food Restaurants', 'USDA description': 'Fast Food Restaurants', 'IRS Description': 'Fast Food Restaurants', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5832': {'combined description': 'Antique Shops & Sales, Repairs, and Restoration Services', 'USDA description': 'Antique Shops & Sales, Repairs, and Restoration Services', 'IRS Description': '', 'Reportable under 6041/6041A and Authority for Exception': ''}, + '5912': {'combined description': 'Drug Stores and Pharmacies', 'USDA description': 'Drug Stores and Pharmacies', 'IRS Description': 'Drug Stores and Pharmacies', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5921': {'combined description': 'Package Stores & Beer, Wine, and Liquor', 'USDA description': 'Package Stores & Beer, Wine, and Liquor', 'IRS Description': 'Package Stores-Beer, Wine, and Liquor', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5931': {'combined description': 'Used Merchandise and Secondhand Stores', 'USDA description': 'Used Merchandise and Secondhand Stores', 'IRS Description': 'Used Merchandise and Secondhand Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5932': {'combined description': 'Antique Shops', 'USDA description': '', 'IRS Description': 'Antique Shops', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5933': {'combined description': 'Pawn Shops and Salvage Yards', 'USDA description': 'Pawn Shops and Salvage Yards', 'IRS Description': 'Pawn Shops', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5935': {'combined description': 'Wrecking and Salvage Yards', 'USDA description': 'Wrecking and Salvage Yards', 'IRS Description': 'Wrecking and Salvage Yards', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '5937': {'combined description': 'Antique Reproductions', 'USDA description': 'Antique Reproductions', 'IRS Description': 'Antique Reproductions', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5940': {'combined description': 'Bicycle Shops & Sales and Service', 'USDA description': 'Bicycle Shops & Sales and Service', 'IRS Description': 'Bicycle Shops', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5941': {'combined description': 'Sporting Goods Stores', 'USDA description': 'Sporting Goods Stores', 'IRS Description': 'Sporting Goods Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5942': {'combined description': 'Book Stores', 'USDA description': 'Book Stores', 'IRS Description': 'Book Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5943': {'combined description': 'Stationery Stores, Office and School Supply Stores', 'USDA description': 'Stationery Stores, Office and School Supply Stores', 'IRS Description': 'Stationery Stores, Office, and School Supply Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5944': {'combined description': 'Watch, Clock, Jewelry, and Silverware Stores', 'USDA description': 'Watch, Clock, Jewelry, and Silverware Stores', 'IRS Description': 'Jewelry Stores, Watches, Clocks, and Silverware Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5945': {'combined description': 'Hobby, Toy, and Game Shops', 'USDA description': 'Hobby, Toy, and Game Shops', 'IRS Description': 'Hobby, Toy, and Game Shops', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5946': {'combined description': 'Camera and Photographic Supply Stores', 'USDA description': 'Camera and Photographic Supply Stores', 'IRS Description': 'Camera and Photographic Supply Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5947': {'combined description': 'Card Shops, Gift, Novelty, and Souvenir Shops', 'USDA description': 'Card Shops, Gift, Novelty, and Souvenir Shops', 'IRS Description': 'Gift, Card, Novelty, and Souvenir Shops', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5948': {'combined description': 'Leather Foods Stores', 'USDA description': 'Leather Foods Stores', 'IRS Description': 'Luggage and Leather Goods Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5949': {'combined description': 'Sewing, Needle, Fabric, and Price Goods Stores', 'USDA description': 'Sewing, Needle, Fabric, and Price Goods Stores', 'IRS Description': 'Sewing, Needlework, Fabric, and Piece Goods Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5950': {'combined description': 'Glassware/Crystal Stores', 'USDA description': 'Glassware/Crystal Stores', 'IRS Description': 'Glassware, Crystal Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5960': {'combined description': 'Direct Marketing- Insurance Service', 'USDA description': 'Direct Marketing- Insurance Service', 'IRS Description': 'Direct Marketing - Insurance Services', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '5961': {'combined description': 'Mail Order Houses Including Catalog Order Stores, Book/Record Clubs (No longer permitted for U.S. original presentments)', 'USDA description': 'Mail Order Houses Including Catalog Order Stores, Book/Record Clubs (No longer permitted for U.S. original presentments)', 'IRS Description': '', 'Reportable under 6041/6041A and Authority for Exception': ''}, + '5962': {'combined description': 'Direct Marketing & Travel Related Arrangements Services', 'USDA description': 'Direct Marketing & Travel Related Arrangements Services', 'IRS Description': 'Direct Marketing - Travel', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '5963': {'combined description': 'Door-to-Door Sales', 'USDA description': 'Door-to-Door Sales', 'IRS Description': 'Door-To-Door Sales', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5964': {'combined description': 'Direct Marketing & Catalog Merchant', 'USDA description': 'Direct Marketing & Catalog Merchant', 'IRS Description': 'Direct Marketing - Catalog Merchant', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5965': {'combined description': 'Direct Marketing & Catalog and Catalog and Retail Merchant', 'USDA description': 'Direct Marketing & Catalog and Catalog and Retail Merchant', 'IRS Description': 'Direct Marketing - Combination Catalog and Retail Merchant', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5966': {'combined description': 'Direct Marketing- Outbound Telemarketing Merchant', 'USDA description': 'Direct Marketing- Outbound Telemarketing Merchant', 'IRS Description': 'Direct Marketing - Outbound Tele', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5967': {'combined description': 'Direct Marketing & Inbound Teleservices Merchant', 'USDA description': 'Direct Marketing & Inbound Teleservices Merchant', 'IRS Description': 'Direct Marketing - Inbound Tele', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5968': {'combined description': 'Direct Marketing & Continuity/Subscription Merchant', 'USDA description': 'Direct Marketing & Continuity/Subscription Merchant', 'IRS Description': 'Direct Marketing - Subscription', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5969': {'combined description': 'Direct Marketing & Not Elsewhere Classified', 'USDA description': 'Direct Marketing & Not Elsewhere Classified', 'IRS Description': 'Direct Marketing - Other ', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5970': {'combined description': 'Artist\'s Supply and Craft Shops', 'USDA description': 'Artist\'s Supply and Craft Shops', 'IRS Description': 'Artist\'s Supply and Craft Shops', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5971': {'combined description': 'Art Dealers and Galleries', 'USDA description': 'Art Dealers and Galleries', 'IRS Description': 'Art Dealers and Galleries', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5972': {'combined description': 'Stamp and Coin Stores & Philatelic and Numismatic Supplies', 'USDA description': 'Stamp and Coin Stores & Philatelic and Numismatic Supplies', 'IRS Description': 'Stamp and Coin Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5973': {'combined description': 'Religious Goods Stores', 'USDA description': 'Religious Goods Stores', 'IRS Description': 'Religious Goods Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5975': {'combined description': 'Hearing Aids & Sales, Service, and Supply Stores', 'USDA description': 'Hearing Aids & Sales, Service, and Supply Stores', 'IRS Description': 'Hearing Aids Sales and Supplies', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5976': {'combined description': 'Orthopedic Goods Prosthetic Devices', 'USDA description': 'Orthopedic Goods Prosthetic Devices', 'IRS Description': 'Orthopedic Goods - Prosthetic Devices', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5977': {'combined description': 'Cosmetic Stores', 'USDA description': 'Cosmetic Stores', 'IRS Description': 'Cosmetic Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5978': {'combined description': 'Typewriter Stores & Sales, Rental, Service', 'USDA description': 'Typewriter Stores & Sales, Rental, Service', 'IRS Description': 'Typewriter Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5983': {'combined description': 'Fuel & Fuel Oil, Wood, Coal, Liquefied Petroleum', 'USDA description': 'Fuel & Fuel Oil, Wood, Coal, Liquefied Petroleum', 'IRS Description': 'Fuel Dealers (Non Automotive)', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5992': {'combined description': 'Florists', 'USDA description': 'Florists', 'IRS Description': 'Florists', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5993': {'combined description': 'Cigar Stores and Stands', 'USDA description': 'Cigar Stores and Stands', 'IRS Description': 'Cigar Stores and Stands', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5994': {'combined description': 'News Dealers and Newsstands', 'USDA description': 'News Dealers and Newsstands', 'IRS Description': 'News Dealers and Newsstands', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5995': {'combined description': 'Pet Shops, Pet Foods, and Supplies Stores', 'USDA description': 'Pet Shops, Pet Foods, and Supplies Stores', 'IRS Description': 'Pet Shops, Pet Food, and Supplies', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5996': {'combined description': 'Swimming Pools & Sales, Service, and Supplies', 'USDA description': 'Swimming Pools & Sales, Service, and Supplies', 'IRS Description': 'Swimming Pools Sales', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5997': {'combined description': 'Electric Razor Stores & Sales and Service', 'USDA description': 'Electric Razor Stores & Sales and Service', 'IRS Description': 'Electric Razor Stores', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5998': {'combined description': 'Tent and Awning Shops', 'USDA description': 'Tent and Awning Shops', 'IRS Description': 'Tent and Awning Shops', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '5999': {'combined description': 'Miscellaneous and Specialty Retail Stores', 'USDA description': 'Miscellaneous and Specialty Retail Stores', 'IRS Description': 'Miscellaneous Specialty Retail', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '6010': {'combined description': 'Financial Institutions & Manual Cash Disbursements', 'USDA description': 'Financial Institutions & Manual Cash Disbursements', 'IRS Description': 'Manual Cash Disburse', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '6011': {'combined description': 'Financial Institutions & Manual Cash Disbursements', 'USDA description': 'Financial Institutions & Manual Cash Disbursements', 'IRS Description': 'Automated Cash Disburse', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '6012': {'combined description': 'Financial Institutions & Merchandise and Services', 'USDA description': 'Financial Institutions & Merchandise and Services', 'IRS Description': 'Financial Institutions', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '6051': {'combined description': 'Non-Financial Institutions & Foreign Currency, Money Orders (not wire transfer) and Travelers Cheques', 'USDA description': 'Non-Financial Institutions & Foreign Currency, Money Orders (not wire transfer) and Travelers Cheques', 'IRS Description': 'Non-FI, Money Orders', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '6211': {'combined description': 'Security Brokers/Dealers', 'USDA description': 'Security Brokers/Dealers', 'IRS Description': 'Security Brokers/Dealers', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '6300': {'combined description': 'Insurance Sales, Underwriting, and Premiums', 'USDA description': 'Insurance Sales, Underwriting, and Premiums', 'IRS Description': 'Insurance Underwriting, Premiums', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '6381': {'combined description': 'Insurance Premiums, (no longer valid for first presentment work)', 'USDA description': 'Insurance Premiums, (no longer valid for first presentment work)', 'IRS Description': '', 'Reportable under 6041/6041A and Authority for Exception': ''}, + '6399': {'combined description': 'Insurance, Not Elsewhere Classified ( no longer valid forfirst presentment work)', 'USDA description': 'Insurance, Not Elsewhere Classified ( no longer valid forfirst presentment work)', 'IRS Description': 'Insurance - Default', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '6513': {'combined description': 'Real Estate Agents and Managers - Rentals', 'USDA description': '', 'IRS Description': 'Real Estate Agents and Managers - Rentals', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7011': {'combined description': 'Lodging & Hotels, Motels, Resorts, Central Reservation Services (not elsewhere classified)', 'USDA description': 'Lodging & Hotels, Motels, Resorts, Central Reservation Services (not elsewhere classified)', 'IRS Description': 'Hotels, Motels, and Resorts', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7012': {'combined description': 'Timeshares', 'USDA description': 'Timeshares', 'IRS Description': 'Timeshares', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7032': {'combined description': 'Sporting and Recreational Camps', 'USDA description': 'Sporting and Recreational Camps', 'IRS Description': 'Sporting/Recreation Camps', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7033': {'combined description': 'Trailer Parks and Camp Grounds', 'USDA description': 'Trailer Parks and Camp Grounds', 'IRS Description': 'Trailer Parks, Campgrounds', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7210': {'combined description': 'Laundry, Cleaning, and Garment Services', 'USDA description': 'Laundry, Cleaning, and Garment Services', 'IRS Description': 'Laundry, Cleaning Services', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7211': {'combined description': 'Laundry & Family and Commercial', 'USDA description': 'Laundry & Family and Commercial', 'IRS Description': 'Laundries ', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7216': {'combined description': 'Dry Cleaners', 'USDA description': 'Dry Cleaners', 'IRS Description': 'Dry Cleaners', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7217': {'combined description': 'Carpet and Upholstery Cleaning', 'USDA description': 'Carpet and Upholstery Cleaning', 'IRS Description': 'Carpet/Upholstery Cleaning', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7221': {'combined description': 'Photographic Studios', 'USDA description': 'Photographic Studios', 'IRS Description': 'Photographic Studios', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7230': {'combined description': 'Barber and Beauty Shops', 'USDA description': 'Barber and Beauty Shops', 'IRS Description': 'Barber and Beauty Shops', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7251': {'combined description': 'Shop Repair Shops and Shoe Shine Parlors, and Hat Cleaning Shops', 'USDA description': 'Shop Repair Shops and Shoe Shine Parlors, and Hat Cleaning Shops', 'IRS Description': 'Shoe Repair/Hat Cleaning', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7261': {'combined description': 'Funeral Service and Crematories', 'USDA description': 'Funeral Service and Crematories', 'IRS Description': 'Funeral Services, Crematories', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7273': {'combined description': 'Dating and Escort Services', 'USDA description': 'Dating and Escort Services', 'IRS Description': 'Dating/Escort Services', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7276': {'combined description': 'Tax Preparation Service', 'USDA description': 'Tax Preparation Service', 'IRS Description': 'Tax Preparation Services', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7277': {'combined description': 'Counseling Service & Debt, Marriage, Personal', 'USDA description': 'Counseling Service & Debt, Marriage, Personal', 'IRS Description': 'Counseling Services', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7278': {'combined description': 'Buying/Shopping Services, Clubs', 'USDA description': 'Buying/Shopping Services, Clubs', 'IRS Description': 'Buying/Shopping Services', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7296': {'combined description': 'Clothing Rental & Costumes, Formal Wear, Uniforms', 'USDA description': 'Clothing Rental & Costumes, Formal Wear, Uniforms', 'IRS Description': 'Clothing Rental ', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7297': {'combined description': 'Massage Parlors', 'USDA description': 'Massage Parlors', 'IRS Description': 'Massage Parlors', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7298': {'combined description': 'Health and Beauty Shops', 'USDA description': 'Health and Beauty Shops', 'IRS Description': 'Health and Beauty Spas', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7299': {'combined description': 'Miscellaneous Personal Services ( not elsewhere classifies)', 'USDA description': 'Miscellaneous Personal Services ( not elsewhere classifies)', 'IRS Description': 'Miscellaneous General Services', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7311': {'combined description': 'Advertising Services', 'USDA description': 'Advertising Services', 'IRS Description': 'Advertising Services', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7321': {'combined description': 'Consumer Credit Reporting Agencies', 'USDA description': 'Consumer Credit Reporting Agencies', 'IRS Description': 'Credit Reporting Agencies', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7332': {'combined description': 'Blueprinting and Photocopying Services', 'USDA description': 'Blueprinting and Photocopying Services', 'IRS Description': '', 'Reportable under 6041/6041A and Authority for Exception': ''}, + '7333': {'combined description': 'Commercial Photography, Art and Graphics', 'USDA description': 'Commercial Photography, Art and Graphics', 'IRS Description': 'Commercial Photography, Art and Graphics', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7338': {'combined description': 'Quick Copy, Reproduction and Blueprinting Services', 'USDA description': 'Quick Copy, Reproduction and Blueprinting Services', 'IRS Description': 'Quick Copy, Repro, and Blueprint', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7339': {'combined description': 'Stenographic and Secretarial Support Services', 'USDA description': 'Stenographic and Secretarial Support Services', 'IRS Description': 'Secretarial Support Services', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7342': {'combined description': 'Exterminating and Disinfecting Services', 'USDA description': 'Exterminating and Disinfecting Services', 'IRS Description': 'Exterminating Services', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7349': {'combined description': 'Cleaning and Maintenance, Janitorial Services', 'USDA description': 'Cleaning and Maintenance, Janitorial Services', 'IRS Description': 'Cleaning and Maintenance', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7361': {'combined description': 'Employment Agencies, Temporary Help Services', 'USDA description': 'Employment Agencies, Temporary Help Services', 'IRS Description': 'Employment/Temp Agencies', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7372': {'combined description': 'Computer Programming, Integrated Systems Design and Data Processing Services', 'USDA description': 'Computer Programming, Integrated Systems Design and Data Processing Services', 'IRS Description': 'Computer Programming', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7375': {'combined description': 'Information Retrieval Services', 'USDA description': 'Information Retrieval Services', 'IRS Description': 'Information Retrieval Services', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7379': {'combined description': 'Computer Maintenance and Repair Services, Not Elsewhere Classified', 'USDA description': 'Computer Maintenance and Repair Services, Not Elsewhere Classified', 'IRS Description': 'Computer Repair', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7392': {'combined description': 'Management, Consulting, and Public Relations Services', 'USDA description': 'Management, Consulting, and Public Relations Services', 'IRS Description': 'Consulting, Public Relations', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7393': {'combined description': 'Protective and Security Services & Including Armored Carsand Guard Dogs', 'USDA description': 'Protective and Security Services & Including Armored Carsand Guard Dogs', 'IRS Description': 'Detective Agencies', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7394': {'combined description': 'Equipment Rental and Leasing Services, Tool Rental, Furniture Rental, and Appliance Rental', 'USDA description': 'Equipment Rental and Leasing Services, Tool Rental, Furniture Rental, and Appliance Rental', 'IRS Description': 'Equipment Rental ', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7395': {'combined description': 'Photofinishing Laboratories, Photo Developing', 'USDA description': 'Photofinishing Laboratories, Photo Developing', 'IRS Description': 'Photo Developing', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7399': {'combined description': 'Business Services, Not Elsewhere Classified', 'USDA description': 'Business Services, Not Elsewhere Classified', 'IRS Description': 'Miscellaneous Business Services ', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7511': {'combined description': 'Truck Stop', 'USDA description': '', 'IRS Description': 'Truck Stop', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7512': {'combined description': 'Car Rental Companies ( Not Listed Below)', 'USDA description': 'Car Rental Companies ( Not Listed Below)', 'IRS Description': 'Car Rental Agencies', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7513': {'combined description': 'Truck and Utility Trailer Rentals', 'USDA description': 'Truck and Utility Trailer Rentals', 'IRS Description': 'Truck/Utility Trailer Rentals', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7519': {'combined description': 'Motor Home and Recreational Vehicle Rentals', 'USDA description': 'Motor Home and Recreational Vehicle Rentals', 'IRS Description': 'Recreational Vehicle Rentals', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7523': {'combined description': 'Automobile Parking Lots and Garages', 'USDA description': 'Automobile Parking Lots and Garages', 'IRS Description': 'Parking Lots, Garages', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7531': {'combined description': 'Automotive Body Repair Shops', 'USDA description': 'Automotive Body Repair Shops', 'IRS Description': 'Auto Body Repair Shops', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7534': {'combined description': 'Tire Re-treading and Repair Shops', 'USDA description': 'Tire Re-treading and Repair Shops', 'IRS Description': 'Tire Retreading and Repair', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7535': {'combined description': 'Paint Shops & Automotive', 'USDA description': 'Paint Shops & Automotive', 'IRS Description': 'Auto Paint Shops', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7538': {'combined description': 'Automotive Service Shops', 'USDA description': 'Automotive Service Shops', 'IRS Description': 'Auto Service Shops', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7542': {'combined description': 'Car Washes', 'USDA description': 'Car Washes', 'IRS Description': 'Car Washes', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7549': {'combined description': 'Towing Services', 'USDA description': 'Towing Services', 'IRS Description': 'Towing Services', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7622': {'combined description': 'Radio Repair Shops', 'USDA description': 'Radio Repair Shops', 'IRS Description': 'Electronics Repair Shops', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7623': {'combined description': 'Air Conditioning and Refrigeration Repair Shops', 'USDA description': 'Air Conditioning and Refrigeration Repair Shops', 'IRS Description': 'A/C, Refrigeration Repair', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7629': {'combined description': 'Electrical And Small Appliance Repair Shops', 'USDA description': 'Electrical And Small Appliance Repair Shops', 'IRS Description': 'Small Appliance Repair', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7631': {'combined description': 'Watch, Clock, and Jewelry Repair', 'USDA description': 'Watch, Clock, and Jewelry Repair', 'IRS Description': 'Watch/Jewelry Repair', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7641': {'combined description': 'Furniture, Furniture Repair, and Furniture Refinishing', 'USDA description': 'Furniture, Furniture Repair, and Furniture Refinishing', 'IRS Description': 'Furniture Repair, Refinishing', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7692': {'combined description': 'Welding Repair', 'USDA description': 'Welding Repair', 'IRS Description': 'Welding Repair', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7699': {'combined description': 'Repair Shops and Related Services &Miscellaneous', 'USDA description': 'Repair Shops and Related Services &Miscellaneous', 'IRS Description': 'Miscellaneous Repair Shops', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7829': {'combined description': 'Motion Pictures and Video Tape Production and Distribution', 'USDA description': 'Motion Pictures and Video Tape Production and Distribution', 'IRS Description': 'Picture/Video Production', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7832': {'combined description': 'Motion Picture Theaters', 'USDA description': 'Motion Picture Theaters', 'IRS Description': 'Motion Picture Theaters', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7841': {'combined description': 'Video Tape Rental Stores', 'USDA description': 'Video Tape Rental Stores', 'IRS Description': 'Video Tape Rental Stores', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7911': {'combined description': 'Dance Halls, Studios and Schools', 'USDA description': 'Dance Halls, Studios and Schools', 'IRS Description': 'Dance Hall, Studios, Schools', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7922': {'combined description': 'Theatrical Producers (Except Motion Pictures), Ticket Agencies', 'USDA description': 'Theatrical Producers (Except Motion Pictures), Ticket Agencies', 'IRS Description': 'Theatrical Ticket Agencies', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7929': {'combined description': 'Bands, Orchestras, and Miscellaneous Entertainers (Not Elsewhere Classified)', 'USDA description': 'Bands, Orchestras, and Miscellaneous Entertainers (Not Elsewhere Classified)', 'IRS Description': 'Bands, Orchestras', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7932': {'combined description': 'Billiard and Pool Establishments', 'USDA description': 'Billiard and Pool Establishments', 'IRS Description': 'Billiard/Pool Establishments', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7933': {'combined description': 'Bowling Alleys', 'USDA description': 'Bowling Alleys', 'IRS Description': 'Bowling Alleys', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7941': {'combined description': 'Commercial Sports, Athletic Fields, Professional Sport Clubs, and Sport Promoters', 'USDA description': 'Commercial Sports, Athletic Fields, Professional Sport Clubs, and Sport Promoters', 'IRS Description': 'Sports Clubs/Fields', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7991': {'combined description': 'Tourist Attractions and Exhibits', 'USDA description': 'Tourist Attractions and Exhibits', 'IRS Description': 'Tourist Attractions and Exhibits', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7992': {'combined description': 'Golf Courses & Public', 'USDA description': 'Golf Courses & Public', 'IRS Description': 'Golf Courses - Public', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7993': {'combined description': 'Video Amusement Game Supplies', 'USDA description': 'Video Amusement Game Supplies', 'IRS Description': 'Video Amusement Game Supplies', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '7994': {'combined description': 'Video Game Arcades/Establishments', 'USDA description': 'Video Game Arcades/Establishments', 'IRS Description': 'Video Game Arcades', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7995': {'combined description': 'Betting (including Lottery Tickets, Casino Gaming Chips, Off-track Betting and Wagers)', 'USDA description': 'Betting (including Lottery Tickets, Casino Gaming Chips, Off-track Betting and Wagers)', 'IRS Description': 'Betting/Casino Gambling', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7996': {'combined description': 'Amusement Parks, Carnivals, Circuses, Fortune Tellers', 'USDA description': 'Amusement Parks, Carnivals, Circuses, Fortune Tellers', 'IRS Description': 'Amusement Parks/Carnivals', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7997': {'combined description': 'Membership Clubs (Sports, Recreation, Athletic), Country Clubs, and Private Golf Courses', 'USDA description': 'Membership Clubs (Sports, Recreation, Athletic), Country Clubs, and Private Golf Courses', 'IRS Description': 'Country Clubs', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7998': {'combined description': 'Aquariums, Sea-aquariums, Dolphinariums', 'USDA description': 'Aquariums, Sea-aquariums, Dolphinariums', 'IRS Description': 'Aquariums', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '7999': {'combined description': 'Recreation Services (Not Elsewhere Classified)', 'USDA description': 'Recreation Services (Not Elsewhere Classified)', 'IRS Description': 'Miscellaneous Recreation Services', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '8011': {'combined description': 'Doctors and Physicians (Not Elsewhere Classified)', 'USDA description': 'Doctors and Physicians (Not Elsewhere Classified)', 'IRS Description': 'Doctors', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '8021': {'combined description': 'Dentists and Orthodontists', 'USDA description': 'Dentists and Orthodontists', 'IRS Description': 'Dentists, Orthodontists', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '8031': {'combined description': 'Osteopaths', 'USDA description': 'Osteopaths', 'IRS Description': 'Osteopaths', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '8041': {'combined description': 'Chiropractors', 'USDA description': 'Chiropractors', 'IRS Description': 'Chiropractors', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '8042': {'combined description': 'Optometrists and Ophthalmologists', 'USDA description': 'Optometrists and Ophthalmologists', 'IRS Description': 'Optometrists, Ophthalmologist', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '8043': {'combined description': 'Opticians, Opticians Goods and Eyeglasses', 'USDA description': 'Opticians, Opticians Goods and Eyeglasses', 'IRS Description': 'Opticians, Eyeglasses', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '8044': {'combined description': 'Opticians, Optical Goods, and Eyeglasses (no longer validfor first presentments)', 'USDA description': 'Opticians, Optical Goods, and Eyeglasses (no longer validfor first presentments)', 'IRS Description': '', 'Reportable under 6041/6041A and Authority for Exception': ''}, + '8049': {'combined description': 'Podiatrists and Chiropodists', 'USDA description': 'Podiatrists and Chiropodists', 'IRS Description': 'Chiropodists, Podiatrists', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '8050': {'combined description': 'Nursing and Personal Care Facilities', 'USDA description': 'Nursing and Personal Care Facilities', 'IRS Description': 'Nursing/Personal Care ', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '8062': {'combined description': 'Hospitals', 'USDA description': 'Hospitals', 'IRS Description': 'Hospitals', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '8071': {'combined description': 'Medical and Dental Laboratories', 'USDA description': 'Medical and Dental Laboratories', 'IRS Description': 'Medical and Dental Labs', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '8099': {'combined description': 'Medical Services and Health Practitioners (Not Elsewhere Classified)', 'USDA description': 'Medical Services and Health Practitioners (Not Elsewhere Classified)', 'IRS Description': 'Medical Services ', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '8111': {'combined description': 'Legal Services and Attorneys', 'USDA description': 'Legal Services and Attorneys', 'IRS Description': 'Legal Services, Attorneys', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '8211': {'combined description': 'Elementary and Secondary Schools', 'USDA description': 'Elementary and Secondary Schools', 'IRS Description': 'Elementary, Secondary Schools', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(p)(2)'}, + '8220': {'combined description': 'Colleges, Junior Colleges, Universities, and ProfessionalSchools', 'USDA description': 'Colleges, Junior Colleges, Universities, and ProfessionalSchools', 'IRS Description': 'Colleges, Universities', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(p)(2)'}, + '8241': {'combined description': 'Correspondence Schools', 'USDA description': 'Correspondence Schools', 'IRS Description': 'Correspondence Schools', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(p)(2)'}, + '8244': {'combined description': 'Business and Secretarial Schools', 'USDA description': 'Business and Secretarial Schools', 'IRS Description': 'Business/Secretarial Schools', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(p)(2)'}, + '8249': {'combined description': 'Vocational Schools and Trade Schools', 'USDA description': 'Vocational Schools and Trade Schools', 'IRS Description': 'Vocational/Trade Schools', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(p)(2)'}, + '8299': {'combined description': 'Schools and Educational Services ( Not Elsewhere Classified)', 'USDA description': 'Schools and Educational Services ( Not Elsewhere Classified)', 'IRS Description': 'Educational Services ', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '8351': {'combined description': 'Child Care Services', 'USDA description': 'Child Care Services', 'IRS Description': 'Child Care Services', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '8398': {'combined description': 'Charitable and Social Service Organizations', 'USDA description': 'Charitable and Social Service Organizations', 'IRS Description': 'Charitable and Social Service Organizations - Fundraising', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(p)(2)'}, + '8641': {'combined description': 'Civic, Fraternal, and Social Associations', 'USDA description': 'Civic, Fraternal, and Social Associations', 'IRS Description': 'Civic, Social, Fraternal Associations', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(p)(2)'}, + '8651': {'combined description': 'Political Organizations', 'USDA description': 'Political Organizations', 'IRS Description': 'Political Organizations', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '8661': {'combined description': 'Religious Organizations', 'USDA description': 'Religious Organizations', 'IRS Description': 'Religious Organizations', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(p)(2)'}, + '8675': {'combined description': 'Automobile Associations', 'USDA description': 'Automobile Associations', 'IRS Description': 'Automobile Associations', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '8699': {'combined description': 'Membership Organizations ( Not Elsewhere Classified)', 'USDA description': 'Membership Organizations ( Not Elsewhere Classified)', 'IRS Description': 'Membership Organizations', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '8734': {'combined description': 'Testing Laboratories ( non-medical)', 'USDA description': 'Testing Laboratories ( non-medical)', 'IRS Description': 'Testing Laboratories', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '8911': {'combined description': 'Architectural & Engineering and Surveying Services', 'USDA description': 'Architectural & Engineering and Surveying Services', 'IRS Description': 'Architectural/Surveying Services', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '8931': {'combined description': 'Accounting, Auditing, and Bookkeeping Services', 'USDA description': 'Accounting, Auditing, and Bookkeeping Services', 'IRS Description': 'Accounting/Bookkeeping Services', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '8999': {'combined description': 'Professional Services ( Not Elsewhere Defined)', 'USDA description': 'Professional Services ( Not Elsewhere Defined)', 'IRS Description': 'Professional Services', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '9211': {'combined description': 'Court Costs, including Alimony and Child Support', 'USDA description': 'Court Costs, including Alimony and Child Support', 'IRS Description': 'Court Costs, Including Alimony and Child Support - Courts of Law', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(p)(4)'}, + '9222': {'combined description': 'Fines', 'USDA description': 'Fines', 'IRS Description': 'Fines - Government Administrative Entities', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(p)(4)'}, + '9223': {'combined description': 'Bail and Bond Payments', 'USDA description': 'Bail and Bond Payments', 'IRS Description': 'Bail and Bond Payments (payment to the surety for the bond, not the actual bond paid to the government agency) ', 'Reportable under 6041/6041A and Authority for Exception': 'Yes'}, + '9311': {'combined description': 'Tax Payments', 'USDA description': 'Tax Payments', 'IRS Description': 'Tax Payments - Government Agencies', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(p)(4)'}, + '9399': {'combined description': 'Government Services ( Not Elsewhere Classified)', 'USDA description': 'Government Services ( Not Elsewhere Classified)', 'IRS Description': 'Government Services (Not Elsewhere Classified)', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(p)(4)'}, + '9402': {'combined description': 'Postal Services & Government Only', 'USDA description': 'Postal Services & Government Only', 'IRS Description': 'Postal Services - Government Only', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(p)(3)'}, + '9405': {'combined description': 'Intra & Government Transactions', 'USDA description': 'Intra & Government Transactions', 'IRS Description': 'U.S. Federal Government Agencies or Departments', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(p)(3)'}, + '9700': {'combined description': 'Automated Referral Service ( For Visa Only)', 'USDA description': 'Automated Referral Service ( For Visa Only)', 'IRS Description': '', 'Reportable under 6041/6041A and Authority for Exception under 6041/6041A and Authority for Exception': ''}, + '9701': {'combined description': 'Visa Credential Service ( For Visa Only)', 'USDA description': 'Visa Credential Service ( For Visa Only)', 'IRS Description': '', 'Reportable under 6041/6041A and Authority for Exception': ''}, + '9702': {'combined description': 'GCAS Emergency Services ( For Visa Only)', 'USDA description': 'GCAS Emergency Services ( For Visa Only)', 'IRS Description': '', 'Reportable under 6041/6041A and Authority for Exception': ''}, + '9950': {'combined description': 'Intra & Company Purchases ( For Visa Only)', 'USDA description': 'Intra & Company Purchases ( For Visa Only)', 'IRS Description': 'Intra-Company Purchases', 'Reportable under 6041/6041A and Authority for Exception': 'No1.6041-3(c)'}, + '9999': {'combined description': 'MCC Invalid', 'USDA description': 'MCC Invalid', 'IRS Description': 'MCC Invalid', 'Reportable under 6041/6041A and Authority for Exception': 'no'}, } diff --git a/ofxparse/ofxparse.py b/ofxparse/ofxparse.py index 18b9667..2621286 100644 --- a/ofxparse/ofxparse.py +++ b/ofxparse/ofxparse.py @@ -1,4 +1,4 @@ -from __future__ import absolute_import, with_statement +from __future__ import absolute_import import sys import decimal @@ -14,45 +14,18 @@ except ImportError: from io import StringIO import six - -if 'OrderedDict' in dir(collections): - odict = collections -else: - import ordereddict as odict - from . import mcc +odict = collections -def skip_headers(fh): - ''' - Prepare `fh` for parsing by BeautifulSoup by skipping its OFX - headers. - ''' - if fh is None or isinstance(fh, six.string_types): - return - fh.seek(0) - header_re = re.compile(r"^\s*\w+:\s*\w+\s*$") - while True: - pos = fh.tell() - line = fh.readline() - if not line: - break - if header_re.search(line) is None: - fh.seek(pos) - return - +try: + from bs4 import BeautifulSoup -def soup_maker(fh): - skip_headers(fh) - try: - from bs4 import BeautifulSoup - soup = BeautifulSoup(fh, "html.parser") - for tag in soup.findAll(): - tag.name = tag.name.lower() - except ImportError: - from BeautifulSoup import BeautifulStoneSoup - soup = BeautifulStoneSoup(fh) - return soup + def soup_maker(fh): + return BeautifulSoup(fh, 'html.parser') +except ImportError: + from BeautifulSoup import BeautifulStoneSoup + soup_maker = BeautifulStoneSoup def try_decode(string, encoding): @@ -94,6 +67,12 @@ class OfxFile(object): if not hasattr(self.fh, "seek"): return # fh is not a file object, we're doomed. + # If the file handler is text stream, convert to bytes one: + first = self.fh.read(1) + self.fh.seek(0) + if not isinstance(first, bytes): + self.fh = six.BytesIO(six.b(self.fh.read())) + with save_pos(self.fh): self.read_headers() self.handle_encoding() @@ -174,14 +153,14 @@ class OfxPreprocessedFile(OfxFile): # find all closing tags as hints closing_tags = [t.upper() for t in re.findall(r'(?i)', - ofx_string)] + ofx_string)] # close all tags that don't have closing tags and # leave all other data intact last_open_tag = None tokens = re.split(r'(?i)()', ofx_string) new_fh = StringIO() - for idx, token in enumerate(tokens): + for token in tokens: is_closing_tag = token.startswith('\r\n" if self.intu_bid is not None: ret += "\t\t\t" + self.intu_bid + "\r\n" - ret += "\t\t\r\n" + ret += "\t\t\r\n" ret += "\t\r\n" return ret @@ -354,6 +335,7 @@ class InvestmentTransaction(object): self.commission = decimal.Decimal(0) self.fees = decimal.Decimal(0) self.total = decimal.Decimal(0) + self.tferaction = None def __repr__(self): return "[-+]?\d+\.?\d*)\:\w*\]$", ofxDateTime) + res = re.search(r"\[(?P[-+]?\d+\.?\d*)\:\w*\]$", ofxDateTime) if res: tz = float(res.group('tz')) else: @@ -475,42 +473,44 @@ class OfxParser(object): timeZoneOffset = datetime.timedelta(hours=tz) - res = re.search("^[0-9]*\.([0-9]{0,5})", ofxDateTime) + res = re.search(r"^[0-9]*\.([0-9]{0,5})", ofxDateTime) if res: msec = datetime.timedelta(seconds=float("0." + res.group(1))) else: msec = datetime.timedelta(seconds=0) try: - local_date = datetime.datetime.strptime( - ofxDateTime[:14], '%Y%m%d%H%M%S' - ) + local_date = datetime.datetime.strptime(ofxDateTime[:14], '%Y%m%d%H%M%S') return local_date - timeZoneOffset + msec - except: + except ValueError: if ofxDateTime[:8] == "00000000": return None - return datetime.datetime.strptime( - ofxDateTime[:8], '%Y%m%d') - timeZoneOffset + msec + if not cls.custom_date_format: + return datetime.datetime.strptime( + ofxDateTime[:8], '%Y%m%d') - timeZoneOffset + msec + else: + return datetime.datetime.strptime( + ofxDateTime[:8], cls.custom_date_format) - timeZoneOffset + msec @classmethod - def parseAcctinfors(cls_, acctinfors_ofx, ofx): + def parseAcctinfors(cls, acctinfors_ofx, ofx): all_accounts = [] for i in acctinfors_ofx.findAll('acctinfo'): accounts = [] if i.find('invacctinfo'): - accounts += cls_.parseInvstmtrs([i]) + accounts += cls.parseInvstmtrs([i]) elif i.find('ccacctinfo'): - accounts += cls_.parseStmtrs([i], AccountType.CreditCard) + accounts += cls.parseStmtrs([i], AccountType.CreditCard) elif i.find('bankacctinfo'): - accounts += cls_.parseStmtrs([i], AccountType.Bank) + accounts += cls.parseStmtrs([i], AccountType.Bank) else: continue - fi_ofx = ofx.find('fi') - if fi_ofx: - for account in ofx_obj.accounts: - account.institution = cls_.parseOrg(fi_ofx) + fi_ofx = ofx.find('fi') + if fi_ofx: + for account in all_accounts: + account.institution = cls.parseOrg(fi_ofx) desc = i.find('desc') if hasattr(desc, 'contents'): @@ -520,40 +520,40 @@ class OfxParser(object): return all_accounts @classmethod - def parseInvstmtrs(cls_, invstmtrs_list): + def parseInvstmtrs(cls, invstmtrs_list): ret = [] for invstmtrs_ofx in invstmtrs_list: account = InvestmentAccount() acctid_tag = invstmtrs_ofx.find('acctid') - if (hasattr(acctid_tag, 'contents')): + if hasattr(acctid_tag, 'contents'): try: account.account_id = acctid_tag.contents[0].strip() except IndexError: account.warnings.append( six.u("Empty acctid tag for %s") % invstmtrs_ofx) - if cls_.fail_fast: + if cls.fail_fast: raise brokerid_tag = invstmtrs_ofx.find('brokerid') - if (hasattr(brokerid_tag, 'contents')): + if hasattr(brokerid_tag, 'contents'): try: account.brokerid = brokerid_tag.contents[0].strip() except IndexError: account.warnings.append( six.u("Empty brokerid tag for %s") % invstmtrs_ofx) - if cls_.fail_fast: + if cls.fail_fast: raise account.type = AccountType.Investment - if (invstmtrs_ofx): - account.statement = cls_.parseInvestmentStatement( + if invstmtrs_ofx: + account.statement = cls.parseInvestmentStatement( invstmtrs_ofx) ret.append(account) return ret @classmethod - def parseSeclist(cls_, seclist_ofx): + def parseSeclist(cls, seclist_ofx): securityList = [] for secinfo_ofx in seclist_ofx.findAll('secinfo'): uniqueid_tag = secinfo_ofx.find('uniqueid') @@ -579,102 +579,108 @@ class OfxParser(object): return securityList @classmethod - def parseInvestmentPosition(cls_, ofx): + def parseInvestmentPosition(cls, ofx): position = Position() tag = ofx.find('uniqueid') - if (hasattr(tag, 'contents')): + if hasattr(tag, 'contents'): position.security = tag.contents[0].strip() tag = ofx.find('units') - if (hasattr(tag, 'contents')): - position.units = cls_.toDecimal(tag) + if hasattr(tag, 'contents'): + position.units = cls.toDecimal(tag) tag = ofx.find('unitprice') - if (hasattr(tag, 'contents')): - position.unit_price = cls_.toDecimal(tag) + if hasattr(tag, 'contents'): + position.unit_price = cls.toDecimal(tag) + tag = ofx.find('mktval') + if hasattr(tag, 'contents'): + position.market_value = cls.toDecimal(tag) tag = ofx.find('dtpriceasof') - if (hasattr(tag, 'contents')): + if hasattr(tag, 'contents'): try: - position.date = cls_.parseOfxDateTime(tag.contents[0].strip()) + position.date = cls.parseOfxDateTime(tag.contents[0].strip()) except ValueError: raise return position @classmethod - def parseInvestmentTransaction(cls_, ofx): + def parseInvestmentTransaction(cls, ofx): transaction = InvestmentTransaction(ofx.name) tag = ofx.find('fitid') - if (hasattr(tag, 'contents')): + if hasattr(tag, 'contents'): transaction.id = tag.contents[0].strip() tag = ofx.find('memo') - if (hasattr(tag, 'contents')): + if hasattr(tag, 'contents'): transaction.memo = tag.contents[0].strip() tag = ofx.find('dttrade') - if (hasattr(tag, 'contents')): + if hasattr(tag, 'contents'): try: - transaction.tradeDate = cls_.parseOfxDateTime( + transaction.tradeDate = cls.parseOfxDateTime( tag.contents[0].strip()) except ValueError: raise tag = ofx.find('dtsettle') - if (hasattr(tag, 'contents')): + if hasattr(tag, 'contents'): try: - transaction.settleDate = cls_.parseOfxDateTime( + transaction.settleDate = cls.parseOfxDateTime( tag.contents[0].strip()) except ValueError: raise tag = ofx.find('uniqueid') - if (hasattr(tag, 'contents')): + if hasattr(tag, 'contents'): transaction.security = tag.contents[0].strip() tag = ofx.find('incometype') - if (hasattr(tag, 'contents')): + if hasattr(tag, 'contents'): transaction.income_type = tag.contents[0].strip() tag = ofx.find('units') - if (hasattr(tag, 'contents')): - transaction.units = cls_.toDecimal(tag) + if hasattr(tag, 'contents'): + transaction.units = cls.toDecimal(tag) tag = ofx.find('unitprice') - if (hasattr(tag, 'contents')): - transaction.unit_price = cls_.toDecimal(tag) + if hasattr(tag, 'contents'): + transaction.unit_price = cls.toDecimal(tag) tag = ofx.find('commission') - if (hasattr(tag, 'contents')): - transaction.commission = cls_.toDecimal(tag) + if hasattr(tag, 'contents'): + transaction.commission = cls.toDecimal(tag) tag = ofx.find('fees') - if (hasattr(tag, 'contents')): - transaction.fees = cls_.toDecimal(tag) + if hasattr(tag, 'contents'): + transaction.fees = cls.toDecimal(tag) tag = ofx.find('total') - if (hasattr(tag, 'contents')): - transaction.total = cls_.toDecimal(tag) + if hasattr(tag, 'contents'): + transaction.total = cls.toDecimal(tag) tag = ofx.find('inv401ksource') - if (hasattr(tag, 'contents')): + if hasattr(tag, 'contents'): transaction.inv401ksource = tag.contents[0].strip() + tag = ofx.find('tferaction') + if hasattr(tag, 'contents'): + transaction.tferaction = tag.contents[0].strip() return transaction @classmethod - def parseInvestmentStatement(cls_, invstmtrs_ofx): + def parseInvestmentStatement(cls, invstmtrs_ofx): statement = InvestmentStatement() currency_tag = invstmtrs_ofx.find('curdef') if hasattr(currency_tag, "contents"): statement.currency = currency_tag.contents[0].strip().lower() invtranlist_ofx = invstmtrs_ofx.find('invtranlist') - if (invtranlist_ofx is not None): + if invtranlist_ofx is not None: tag = invtranlist_ofx.find('dtstart') - if (hasattr(tag, 'contents')): + if hasattr(tag, 'contents'): try: - statement.start_date = cls_.parseOfxDateTime( + statement.start_date = cls.parseOfxDateTime( tag.contents[0].strip()) except IndexError: statement.warnings.append(six.u('Empty start date.')) - if cls_.fail_fast: + if cls.fail_fast: raise except ValueError: e = sys.exc_info()[1] statement.warnings.append(six.u('Invalid start date:\ %s') % e) - if cls_.fail_fast: + if cls.fail_fast: raise tag = invtranlist_ofx.find('dtend') - if (hasattr(tag, 'contents')): + if hasattr(tag, 'contents'): try: - statement.end_date = cls_.parseOfxDateTime( + statement.end_date = cls.parseOfxDateTime( tag.contents[0].strip()) except IndexError: statement.warnings.append(six.u('Empty end date.')) @@ -682,18 +688,19 @@ class OfxParser(object): e = sys.exc_info()[1] statement.warnings.append(six.u('Invalid end date: \ %s') % e) - if cls_.fail_fast: + if cls.fail_fast: raise - for transaction_type in ['posmf', 'posstock', 'posopt']: + for transaction_type in ['posmf', 'posstock', 'posopt', 'posother', + 'posdebt']: try: for investment_ofx in invstmtrs_ofx.findAll(transaction_type): statement.positions.append( - cls_.parseInvestmentPosition(investment_ofx)) + cls.parseInvestmentPosition(investment_ofx)) except (ValueError, IndexError, decimal.InvalidOperation, TypeError): e = sys.exc_info()[1] - if cls_.fail_fast: + if cls.fail_fast: raise statement.discarded_entries.append( {six.u('error'): six.u("Error parsing positions: \ @@ -704,31 +711,43 @@ class OfxParser(object): try: for investment_ofx in invstmtrs_ofx.findAll(transaction_type): statement.transactions.append( - cls_.parseInvestmentTransaction(investment_ofx)) + cls.parseInvestmentTransaction(investment_ofx)) except (ValueError, IndexError, decimal.InvalidOperation): e = sys.exc_info()[1] - if cls_.fail_fast: + if cls.fail_fast: raise statement.discarded_entries.append( {six.u('error'): transaction_type + ": " + str(e), six.u('content'): investment_ofx} ) + for transaction_ofx in invstmtrs_ofx.findAll('invbanktran'): + for stmt_ofx in transaction_ofx.findAll('stmttrn'): + try: + statement.transactions.append( + cls.parseTransaction(stmt_ofx)) + except OfxParserException: + ofxError = sys.exc_info()[1] + statement.discarded_entries.append( + {'error': str(ofxError), 'content': transaction_ofx}) + if cls.fail_fast: + raise + invbal_ofx = invstmtrs_ofx.find('invbal') if invbal_ofx is not None: - #18073.98+00000000000.00+00000000000.00+00000000000.00 + # 18073.98+00000000000.00+00000000000.00+00000000000.00 availcash_ofx = invbal_ofx.find('availcash') if availcash_ofx is not None: - statement.available_cash = cls_.toDecimal(availcash_ofx) + statement.available_cash = cls.toDecimal(availcash_ofx) margin_balance_ofx = invbal_ofx.find('marginbalance') if margin_balance_ofx is not None: - statement.margin_balance = cls_.toDecimal(margin_balance_ofx) + statement.margin_balance = cls.toDecimal(margin_balance_ofx) short_balance_ofx = invbal_ofx.find('shortbalance') if short_balance_ofx is not None: - statement.short_balance = cls_.toDecimal(short_balance_ofx) + statement.short_balance = cls.toDecimal(short_balance_ofx) buy_power_ofx = invbal_ofx.find('buypower') if buy_power_ofx is not None: - statement.buy_power = cls_.toDecimal(buy_power_ofx) + statement.buy_power = cls.toDecimal(buy_power_ofx) ballist_ofx = invbal_ofx.find('ballist') if ballist_ofx is not None: @@ -740,16 +759,17 @@ class OfxParser(object): brokerage_balance.name = name_ofx.contents[0].strip() description_ofx = balance_ofx.find('desc') if description_ofx is not None: - brokerage_balance.description = description_ofx.contents[0].strip() + brokerage_balance.description = \ + description_ofx.contents[0].strip() value_ofx = balance_ofx.find('value') if value_ofx is not None: - brokerage_balance.value = cls_.toDecimal(value_ofx) + brokerage_balance.value = cls.toDecimal(value_ofx) statement.balance_list.append(brokerage_balance) return statement @classmethod - def parseOrg(cls_, fi_ofx): + def parseOrg(cls, fi_ofx): institution = Institution() org = fi_ofx.find('org') if hasattr(org, 'contents'): @@ -762,7 +782,7 @@ class OfxParser(object): return institution @classmethod - def parseSonrs(cls_, sonrs): + def parseSonrs(cls, sonrs): items = [ 'code', @@ -779,7 +799,7 @@ class OfxParser(object): for i in items: try: idict[i] = sonrs.find(i).contents[0].strip() - except: + except Exception: idict[i] = None idict['code'] = int(idict['code']) if idict['message'] is None: @@ -788,35 +808,35 @@ class OfxParser(object): return Signon(idict) @classmethod - def parseStmtrs(cls_, stmtrs_list, accountType): + def parseStmtrs(cls, stmtrs_list, accountType): ''' Parse the tags and return a list of Accounts object. ''' ret = [] for stmtrs_ofx in stmtrs_list: account = Account() act_curdef = stmtrs_ofx.find('curdef') - if act_curdef: + if act_curdef and act_curdef.contents: account.curdef = act_curdef.contents[0].strip() acctid_tag = stmtrs_ofx.find('acctid') - if hasattr(acctid_tag, 'contents'): + if acctid_tag and acctid_tag.contents: account.account_id = acctid_tag.contents[0].strip() bankid_tag = stmtrs_ofx.find('bankid') - if hasattr(bankid_tag, 'contents'): + if bankid_tag and bankid_tag.contents: account.routing_number = bankid_tag.contents[0].strip() branchid_tag = stmtrs_ofx.find('branchid') - if hasattr(branchid_tag, 'contents'): + if branchid_tag and branchid_tag.contents: account.branch_id = branchid_tag.contents[0].strip() type_tag = stmtrs_ofx.find('accttype') - if hasattr(type_tag, 'contents'): + if type_tag and type_tag.contents: account.account_type = type_tag.contents[0].strip() account.type = accountType if stmtrs_ofx: - account.statement = cls_.parseStatement(stmtrs_ofx) + account.statement = cls.parseStatement(stmtrs_ofx) ret.append(account) return ret @classmethod - def parseBalance(cls_, statement, stmt_ofx, bal_tag_name, bal_attr, + def parseBalance(cls, statement, stmt_ofx, bal_tag_name, bal_attr, bal_date_attr, bal_type_string): bal_tag = stmt_ofx.find(bal_tag_name) if hasattr(bal_tag, "contents"): @@ -824,34 +844,33 @@ class OfxParser(object): dtasof_tag = bal_tag.find('dtasof') if hasattr(balamt_tag, "contents"): try: - setattr(statement, bal_attr, cls_.toDecimal(balamt_tag)) + setattr(statement, bal_attr, cls.toDecimal(balamt_tag)) except (IndexError, decimal.InvalidOperation): - ex = sys.exc_info()[1] statement.warnings.append( six.u("%s balance amount was empty for \ %s") % (bal_type_string, stmt_ofx)) - if cls_.fail_fast: + if cls.fail_fast: raise OfxParserException("Empty %s balance\ " % bal_type_string) if hasattr(dtasof_tag, "contents"): try: - setattr(statement, bal_date_attr, cls_.parseOfxDateTime( + setattr(statement, bal_date_attr, cls.parseOfxDateTime( dtasof_tag.contents[0].strip())) except IndexError: statement.warnings.append( six.u("%s balance date was empty for %s\ ") % (bal_type_string, stmt_ofx)) - if cls_.fail_fast: + if cls.fail_fast: raise except ValueError: statement.warnings.append( six.u("%s balance date was not allowed for \ %s") % (bal_type_string, stmt_ofx)) - if cls_.fail_fast: + if cls.fail_fast: raise @classmethod - def parseStatement(cls_, stmt_ofx): + def parseStatement(cls, stmt_ofx): ''' Parse a statement in ofx-land and return a Statement object. ''' @@ -859,42 +878,41 @@ class OfxParser(object): dtstart_tag = stmt_ofx.find('dtstart') if hasattr(dtstart_tag, "contents"): try: - statement.start_date = cls_.parseOfxDateTime( + statement.start_date = cls.parseOfxDateTime( dtstart_tag.contents[0].strip()) except IndexError: statement.warnings.append( six.u("Statement start date was empty for %s") % stmt_ofx) - if cls_.fail_fast: + if cls.fail_fast: raise except ValueError: statement.warnings.append( six.u("Statement start date was not allowed for \ %s") % stmt_ofx) - if cls_.fail_fast: + if cls.fail_fast: raise dtend_tag = stmt_ofx.find('dtend') if hasattr(dtend_tag, "contents"): try: - statement.end_date = cls_.parseOfxDateTime( + statement.end_date = cls.parseOfxDateTime( dtend_tag.contents[0].strip()) except IndexError: statement.warnings.append( six.u("Statement start date was empty for %s") % stmt_ofx) - if cls_.fail_fast: + if cls.fail_fast: raise except ValueError: - ve = sys.exc_info()[1] msg = six.u("Statement start date was not formatted " "correctly for %s") statement.warnings.append(msg % stmt_ofx) - if cls_.fail_fast: + if cls.fail_fast: raise except TypeError: statement.warnings.append( six.u("Statement start date was not allowed for \ %s") % stmt_ofx) - if cls_.fail_fast: + if cls.fail_fast: raise currency_tag = stmt_ofx.find('curdef') @@ -904,30 +922,30 @@ class OfxParser(object): except IndexError: statement.warnings.append( six.u("Currency definition was empty for %s") % stmt_ofx) - if cls_.fail_fast: + if cls.fail_fast: raise - cls_.parseBalance(statement, stmt_ofx, 'ledgerbal', - 'balance', 'balance_date', 'ledger') + cls.parseBalance(statement, stmt_ofx, 'ledgerbal', + 'balance', 'balance_date', 'ledger') - cls_.parseBalance(statement, stmt_ofx, 'availbal', 'available_balance', - 'available_balance_date', 'ledger') + cls.parseBalance(statement, stmt_ofx, 'availbal', 'available_balance', + 'available_balance_date', 'ledger') for transaction_ofx in stmt_ofx.findAll('stmttrn'): try: statement.transactions.append( - cls_.parseTransaction(transaction_ofx)) + cls.parseTransaction(transaction_ofx)) except OfxParserException: ofxError = sys.exc_info()[1] statement.discarded_entries.append( {'error': str(ofxError), 'content': transaction_ofx}) - if cls_.fail_fast: + if cls.fail_fast: raise return statement @classmethod - def parseTransaction(cls_, txn_ofx): + def parseTransaction(cls, txn_ofx): ''' Parse a transaction in ofx-land and return a Transaction object. ''' @@ -966,7 +984,7 @@ class OfxParser(object): amt_tag = txn_ofx.find('trnamt') if hasattr(amt_tag, "contents"): try: - transaction.amount = cls_.toDecimal(amt_tag) + transaction.amount = cls.toDecimal(amt_tag) except IndexError: raise OfxParserException("Invalid Transaction Date") except decimal.InvalidOperation: @@ -987,7 +1005,7 @@ class OfxParser(object): date_tag = txn_ofx.find('dtposted') if hasattr(date_tag, "contents"): try: - transaction.date = cls_.parseOfxDateTime( + transaction.date = cls.parseOfxDateTime( date_tag.contents[0].strip()) except IndexError: raise OfxParserException("Invalid Transaction Date") @@ -1030,7 +1048,7 @@ class OfxParser(object): raise OfxParserException(six.u("Empty transaction Merchant Category \ Code (MCC)")) except AttributeError: - if cls._fail_fast: + if cls.fail_fast: raise checknum_tag = txn_ofx.find('checknum') @@ -1044,8 +1062,15 @@ class OfxParser(object): return transaction @classmethod - def toDecimal(cls_, tag): + def toDecimal(cls, tag): d = tag.contents[0].strip() + # Handle 10,000.50 formatted numbers + if re.search(r'.*\..*,', d): + d = d.replace('.', '') + # Handle 10.000,50 formatted numbers + if re.search(r'.*,.*\.', d): + d = d.replace(',', '') + # Handle 10000,50 formatted numbers if '.' not in d and ',' in d: d = d.replace(',', '.') return decimal.Decimal(d) diff --git a/ofxparse/ofxprinter.py b/ofxparse/ofxprinter.py index 4c0a13d..e39b895 100644 --- a/ofxparse/ofxprinter.py +++ b/ofxparse/ofxprinter.py @@ -1,3 +1,6 @@ +import six + + class OfxPrinter(): ofx = None out_filename = None @@ -24,7 +27,7 @@ class OfxPrinter(): ) def writeHeaders(self): - for k, v in self.ofx.headers.iteritems(): + for k, v in six.iteritems(self.ofx.headers): if v is None: self.writeLine("{0}:NONE".format(k)) else: @@ -71,8 +74,8 @@ class OfxPrinter(): self.writeLine("", tabs=tabs) def writeLedgerBal(self, statement, tabs=4): - bal = getattr(statement, 'balance') - baldt = getattr(statement, 'balance_date') + bal = getattr(statement, 'balance', None) + baldt = getattr(statement, 'balance_date', None) if bal and baldt: self.writeLine("", tabs=tabs) @@ -83,8 +86,8 @@ class OfxPrinter(): self.writeLine("", tabs=tabs) def writeAvailBal(self, statement, tabs=4): - bal = getattr(statement, 'available_balance') - baldt = getattr(statement, 'available_balance_date') + bal = getattr(statement, 'available_balance', None) + baldt = getattr(statement, 'available_balance_date', None) if bal and baldt: self.writeLine("", tabs=tabs) @@ -176,19 +179,22 @@ class OfxPrinter(): # No newline at end of file self.writeLine("", tabs=tabs, term="") - def write(self, filename=None, tabs=0): + def writeToFile(self, fileObject, tabs=0): if self.out_handle: raise Exception("Already writing file") - if filename is None: - filename = self.out_filename - - self.out_handle = open(filename, 'wb') + self.out_handle = fileObject self.writeHeaders() self.writeOfx(tabs=tabs) self.out_handle.flush() - self.out_handle.close() self.out_handle = None + + def write(self, filename=None, tabs=0): + if filename is None: + filename = self.out_filename + + with open(filename, 'w') as f: + self.writeToFile(f) diff --git a/ofxparse/ofxutil.py b/ofxparse/ofxutil.py index 0002ee1..391c221 100644 --- a/ofxparse/ofxutil.py +++ b/ofxparse/ofxutil.py @@ -1,17 +1,15 @@ from __future__ import absolute_import, with_statement import os -import copy import collections import xml.etree.ElementTree as ET +import six if 'OrderedDict' in dir(collections): odict = collections else: import ordereddict as odict -import six - class InvalidOFXStructureException(Exception): pass @@ -103,18 +101,18 @@ class OfxData(object): return len(self.nodes) def __str__(self): - return os.linesep.join("\t" * line[1] + line[0] for line \ - in self.format()) + return os.linesep.join("\t" * line[1] + line[0] for line in + self.format()) def format(self): if self.data or not self.nodes: if self.tag.upper() == "OFX": - return [["<%s>%s" % (self.tag, self.data \ + return [["<%s>%s" % (self.tag, self.data if self.data else "", self.tag), 0]] return [["<%s>%s" % (self.tag, self.data), 0]] else: ret = [["<%s>" % self.tag, -1]] - for name, child in six.iteritems(self.nodes): + for _, child in six.iteritems(self.nodes): if isinstance(child, OfxData): ret.extend(child.format()) else: @@ -138,7 +136,7 @@ class OfxUtil(OfxData): ofx_data.lower().endswith('.ofx'): self.parse(ofx_data) else: - self.parse(open(ofx_data).read() if isinstance(\ + self.parse(open(ofx_data).read() if isinstance( ofx_data, six.string_types) else ofx_data.read()) def parse(self, ofx): @@ -150,8 +148,6 @@ class OfxUtil(OfxData): self.headers[header] = value except ValueError: pass - except: - raise finally: if "OFXHEADER" not in self.headers: self.headers["OFXHEADER"] = "100" @@ -201,7 +197,7 @@ class OfxUtil(OfxData): self.xml = ET.fromstringlist(tags) self.load_from_xml(self, self.xml) - except: + except Exception: raise InvalidOFXStructureException def load_from_xml(self, ofx, xml): @@ -219,11 +215,12 @@ class OfxUtil(OfxData): f.write(str(self)) def __str__(self): - ret = os.linesep.join(":".join(line) for line in \ + ret = os.linesep.join(":".join(line) for line in six.iteritems(self.headers)) + os.linesep * 2 ret += super(OfxUtil, self).__str__() return ret + if __name__ == "__main__": here = os.path.dirname(__file__) fixtures = os.path.join(here, '../tests/fixtures/') diff --git a/setup.cfg b/setup.cfg index 20a7f5e..7749061 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,7 @@ [egg_info] tag_svn_revision = false +tag_build = +tag_date = 0 [aliases] release = register sdist bdist_egg upload diff --git a/setup.py b/setup.py index 7ef8b6c..c3b0123 100644 --- a/setup.py +++ b/setup.py @@ -12,26 +12,11 @@ from setuptools import setup, find_packages VERSION = re.search(r"__version__ = '(.*?)'", open("ofxparse/__init__.py").read()).group(1) -# Use BeautifulSoup 3 on Python 2.5 and earlier and BeautifulSoup 4 otherwise -if sys.version_info < (2, 6): - REQUIRES = [ - "beautifulSoup>=3.0", - ] -else: - REQUIRES = [ - "beautifulsoup4", - "lxml", - ] - -if sys.version_info < (2, 7): - REQUIRES.extend([ - "ordereddict>=1.1", - ]) - -REQUIRES.extend([ +REQUIRES = [ + "beautifulsoup4", + "lxml", 'six', - 'lxml' -]) +] README = os.path.join(os.path.dirname(__file__), 'README.rst') @@ -50,10 +35,11 @@ setup_params = dict( "Intended Audience :: Developers", "Natural Language :: English", "Operating System :: OS Independent", - "Programming Language :: Python :: 2.5", - "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Utilities", "License :: OSI Approved :: MIT License", diff --git a/tests/fixtures/anzcc.ofx b/tests/fixtures/anzcc.ofx new file mode 100644 index 0000000..59c31a6 --- /dev/null +++ b/tests/fixtures/anzcc.ofx @@ -0,0 +1,49 @@ + + + + + + +0 +INFO + +20170510192849 +ENG + + + + +1 + +0 +INFO + + +AUD + +1234123412341234 + + +20170311 +20170509 + +DEBIT +20170508000000 +20170508000000 +-5.50 +201705080001 +SOME MEMO + + + +-123.45 +20170510192849 + + +123.45 +20170510192849 + + + + + diff --git a/tests/fixtures/fidelity-savings.ofx b/tests/fixtures/fidelity-savings.ofx new file mode 100644 index 0000000..90a77a9 --- /dev/null +++ b/tests/fixtures/fidelity-savings.ofx @@ -0,0 +1,111 @@ +OFXHEADER:100 +DATA:OFXSGML +VERSION:102 +SECURITY:NONE +ENCODING:USASCII +CHARSET:1252 +COMPRESSION:NONE +OLDFILEUID:NONE +NEWFILEUID:a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0 + + + + + + + 0 + INFO + SUCCESS + + 20120908190849.317[-4:EDT] + ENG + + fidelity.com + 7776 + + + + + + 00000000000000000000000001 + + 0 + INFO + SUCCESS + + + 20120908190851.317[-4:EDT] + USD + + fidelity.com + X0000001 + + + 20120710000000.000[-4:EDT] + 20120908190849.555[-4:EDT] + + + CHECK + 20120720000000.000[-4:EDT] + -00000000001500.0000 + X0000000000000000000001 + 0000001001 + Check Paid #0000001001 + Check Paid #0000001001 + + 1.00 + USD + + + CASH + + + + DEP + 20120727000000.000[-4:EDT] + +00000000000115.8331 + X0000000000000000000002 + TRANSFERRED FROM VS X10-08144 + TRANSFERRED FROM VS X10-08144-1 + + 1.00 + USD + + + CASH + + + + PAYMENT + 20120727000000.000[-4:EDT] + -00000000000197.1063 + X0000000000000000000003 + BILL PAYMENT CITICORP CH + BILL PAYMENT CITICORP CHOICE /0001/N******** + + 1.00 + USD + + + CASH + + + + CASH + 20120727000000.000[-4:EDT] + -00000000000197.1220 + X0000000000000000000004 + DIRECT DEBIT HOMES + DIRECT DEBIT HOMESTREET LS LOAN PMT + + 1.00 + USD + + + CASH + + + + + + diff --git a/tests/fixtures/ofx-v102-empty-tags.ofx b/tests/fixtures/ofx-v102-empty-tags.ofx new file mode 100644 index 0000000..143ad1c --- /dev/null +++ b/tests/fixtures/ofx-v102-empty-tags.ofx @@ -0,0 +1,23 @@ + + + + + + + + + + + + +OFXHEADER:100 +DATA:OFXSGML +VERSION:102 +SECURITY:NONE +ENCODING:USASCII +CHARSET:1252 +COMPRESSION:NONE +OLDFILEUID:NONE +NEWFILEUID:NONE + +0INFO20180804093914:01400INFONPBS123456782018050620180804Credit2018050712.3420180507NoUncategorised123.45CBA:Transfer1.0000AUD \ No newline at end of file diff --git a/tests/fixtures/td_ameritrade.ofx b/tests/fixtures/td_ameritrade.ofx new file mode 100644 index 0000000..4eaf6b5 --- /dev/null +++ b/tests/fixtures/td_ameritrade.ofx @@ -0,0 +1,205 @@ +OFXHEADER:100 +DATA:OFXSGML +VERSION:102 +SECURITY:NONE +ENCODING:USASCII +CHARSET:1252 +COMPRESSION:NONE +OLDFILEUID:NONE +NEWFILEUID:11111111111111111111111111111111 + + + + + + 0 + INFO + Success + + 20171203121212 + ENG + + ameritrade.com + 5024 + + + + + + 11111111111111111111111111111111 + + 0 + INFO + XX-XXXXXXX-XXXX-clientsys Success + + 4 + + 20171203121212 + USD + + ameritrade.com + 121212121 + + + 20171130000000 + 20171203000000 + + + + + + 023135106 + CUSIP + + CASH + LONG + 1 + 1000 + 1000 + 20171203120000 + + + + + + 912810RW0 + CUSIP + + CASH + LONG + 1000 + 100 + 1000 + 20171203120000 + + + + + 0 + 0 + 0 + 0 + + + MoneyMarket + MoneyMarket + DOLLAR + 0 + 20171203121212 + + + LongStock + LongStock + DOLLAR + 1000 + 20171203121212 + + + LongOption + LongOption + DOLLAR + 0 + 20171203121212 + + + ShortOption + ShortOption + DOLLAR + 0 + 20171203121212 + + + MutualFund + MutualFund + DOLLAR + 0 + 20171203121212 + + + Savings + Savings + DOLLAR + 0 + 20171203121212 + + + BondValue + BondValue + DOLLAR + 1000 + 20171203121212 + + + AccountValue + AccountValue + DOLLAR + 2000 + 20171203121212 + + + PendingDeposits + PendingDeposits + DOLLAR + 0 + 20171203121212 + + + CashForWithdrawl + CashForWithdrawl + DOLLAR + 0 + 20171203121212 + + + UnsettledCash + UnsettledCash + DOLLAR + 0 + 20171203121212 + + + CashDebitCall + CashDebitCall + DOLLAR + 0 + 20171203121212 + + + AvailableFunds + AvailableFunds + DOLLAR + 0 + 20171203121212 + + + + + + + + + + + + 023135106 + CUSIP + + Amazon.com, Inc. - Common Stock + AMZN + + + + + + 912810RW0 + CUSIP + + US Treasury 2047 + 912810RW0 + + 1000 + ZERO + + + + diff --git a/tests/fixtures/tiaacref.ofx b/tests/fixtures/tiaacref.ofx new file mode 100644 index 0000000..14a2a86 --- /dev/null +++ b/tests/fixtures/tiaacref.ofx @@ -0,0 +1,11 @@ +OFXHEADER:100 +DATA:OFXSGML +VERSION:102 +SECURITY:NONE +ENCODING:USASCII +CHARSET:1252 +COMPRESSION:NONE +OLDFILEUID:NONE +NEWFILEUID:a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0 + +0INFOThe operation succeeded.20170308020026.712[-5:EST]ENGTIAA-CREF1304bb4829bb4829bb4829bb4829bb4829bb0INFO420170308020027.199[-5:EST]USDTIAA-CREF.ORG111A1111 22B222 33C33320170204230100.000[-5:EST]20170307230100.000[-5:EST]TIAA#20170307160000.000[-4:EDT]160000.000[-4:EDT]20170307150000.000[-5:EST]20170307150000.000[-5:EST]TIAA Traditional Balance Update111111111CUSIPCASH0INLONG1222222126CUSIPCASHLONG13.07631.000013.076320170307150000.000[-5:EST]222222217CUSIPCASHLONG1.000025.578525.578520170307150000.000[-5:EST]222222233CUSIPCASHLONG8.760512.4823109.351220170307150000.000[-5:EST]222222258CUSIPCASHLONG339.201212.34564187.642320170307150000.000[-5:EST]111111111CUSIPCASHLONG543.711543.7120170307150000.000[-5:EST]333333200CUSIPCASHLONG2.0010.0020.0020170307150000.000[-5:EST]000333333200CUSIPTIAA Real EstateQREARX222222233CUSIPCREF Bond Market R3QCBMIX111111111CUSIPTIAA TraditionalTIAAtrad333333126CUSIPCREF Stock R3QCSTIX333333258CUSIPCREF Equity Index R3QCEQIX333333217CUSIPCREF Money Market R3QCMMIX \ No newline at end of file diff --git a/tests/support.py b/tests/support.py index fe381f5..9e02a28 100644 --- a/tests/support.py +++ b/tests/support.py @@ -1,9 +1,11 @@ import os -def open_file(filename): - ''' Load a file from the fixtures directory. ''' - path = 'fixtures/' + filename - if ('tests' in os.listdir('.')): - path = 'tests/' + path - return open(path, mode='rb') +def open_file(filename, mode='rb'): + """ + Load a file from the fixtures directory. + """ + path = os.path.join('fixtures', filename) + if 'tests' in os.listdir('.'): + path = os.path.join('tests', path) + return open(path, mode=mode) diff --git a/tests/test_parse.py b/tests/test_parse.py index 6d3ab63..46ad680 100644 --- a/tests/test_parse.py +++ b/tests/test_parse.py @@ -14,36 +14,18 @@ from ofxparse import OfxParser, AccountType, Account, Statement, Transaction from ofxparse.ofxparse import OfxFile, OfxPreprocessedFile, OfxParserException, soup_maker -class TestOfxPreprocessedFile(TestCase): - - def testPreprocess(self): - fh = six.BytesIO(six.b("""OFXHEADER:100 -DATA:OFXSGML -VERSION:102 -SECURITY:NONE -ENCODING:USASCII -CHARSET:1252 -COMPRESSION:NONE -OLDFILEUID:NONE -NEWFILEUID:NONE +class TestOfxFile(TestCase): + OfxFileCls = OfxFile -abNet2222Gross3333 -""")) - expect = """OFXHEADER:100 -DATA:OFXSGML -VERSION:102 -SECURITY:NONE -ENCODING:USASCII -CHARSET:1252 -COMPRESSION:NONE -OLDFILEUID:NONE -NEWFILEUID:NONE + def assertHeadersTypes(self, headers): + """ + Assert that the headers keys and values have the correct types -abNet2222Gross3333 -""" - ofx_file = OfxPreprocessedFile(fh) - data = ofx_file.fh.read() - self.assertEqual(data, expect) + :param headers: headers dict from a OfxFile or OfxPreprocessedFile instance + """ + for key, value in six.iteritems(headers): + self.assertTrue(type(key) is six.text_type) + self.assertTrue(type(value) is not six.binary_type) def testHeaders(self): expect = {"OFXHEADER": six.u("100"), @@ -56,8 +38,31 @@ NEWFILEUID:NONE "OLDFILEUID": None, "NEWFILEUID": None, } - ofx = OfxParser.parse(open_file('bank_medium.ofx')) - self.assertEquals(expect, ofx.headers) + with open_file('bank_medium.ofx') as f: + ofx = OfxParser.parse(f) + self.assertEqual(expect, ofx.headers) + + def testTextFileHandler(self): + with open_file("bank_medium.ofx") as fh: + with open_file("bank_medium.ofx", mode="r") as fh_str: + ofx_file = self.OfxFileCls(fh) + headers = ofx_file.headers + data = ofx_file.fh.read() + + self.assertTrue(type(data) is six.text_type) + self.assertHeadersTypes(headers) + + ofx_file = self.OfxFileCls(fh_str) + headers = ofx_file.headers + data = ofx_file.fh.read() + + self.assertTrue(type(data) is six.text_type) + self.assertHeadersTypes(headers) + + def testTextStartsWithTag(self): + with open_file('anzcc.ofx', mode='r') as f: + ofx = OfxParser.parse(f) + self.assertEqual(ofx.account.number, '1234123412341234') def testUTF8(self): fh = six.BytesIO(six.b("""OFXHEADER:100 @@ -70,14 +75,12 @@ OLDFILEUID:NONE NEWFILEUID:NONE """)) - ofx_file = OfxPreprocessedFile(fh) + ofx_file = self.OfxFileCls(fh) headers = ofx_file.headers data = ofx_file.fh.read() self.assertTrue(type(data) is six.text_type) - for key, value in six.iteritems(headers): - self.assertTrue(type(key) is six.text_type) - self.assertTrue(type(value) is not six.binary_type) + self.assertHeadersTypes(headers) def testCP1252(self): fh = six.BytesIO(six.b("""OFXHEADER:100 @@ -90,14 +93,12 @@ COMPRESSION:NONE OLDFILEUID:NONE NEWFILEUID:NONE """)) - ofx_file = OfxPreprocessedFile(fh) + ofx_file = self.OfxFileCls(fh) headers = ofx_file.headers result = ofx_file.fh.read() self.assertTrue(type(result) is six.text_type) - for key, value in six.iteritems(headers): - self.assertTrue(type(key) is six.text_type) - self.assertTrue(type(value) is not six.binary_type) + self.assertHeadersTypes(headers) def testUTF8Japanese(self): fh = six.BytesIO(six.b("""OFXHEADER:100 @@ -110,100 +111,50 @@ COMPRESSION:NONE OLDFILEUID:NONE NEWFILEUID:NONE """)) - ofx_file = OfxPreprocessedFile(fh) + ofx_file = self.OfxFileCls(fh) headers = ofx_file.headers result = ofx_file.fh.read() self.assertTrue(type(result) is six.text_type) - for key, value in six.iteritems(headers): - self.assertTrue(type(key) is six.text_type) - self.assertTrue(type(value) is not six.binary_type) + self.assertHeadersTypes(headers) def testBrokenLineEndings(self): fh = six.BytesIO(six.b("OFXHEADER:100\rDATA:OFXSGML\r")) - ofx_file = OfxPreprocessedFile(fh) - self.assertEquals(len(ofx_file.headers.keys()), 2) + ofx_file = self.OfxFileCls(fh) + self.assertEqual(len(ofx_file.headers.keys()), 2) -class TestOfxFile(TestCase): - def testHeaders(self): - expect = {"OFXHEADER": six.u("100"), - "DATA": six.u("OFXSGML"), - "VERSION": six.u("102"), - "SECURITY": None, - "ENCODING": six.u("USASCII"), - "CHARSET": six.u("1252"), - "COMPRESSION": None, - "OLDFILEUID": None, - "NEWFILEUID": None, - } - ofx = OfxParser.parse(open_file('bank_medium.ofx')) - self.assertEquals(expect, ofx.headers) +class TestOfxPreprocessedFile(TestOfxFile): + OfxFileCls = OfxPreprocessedFile - def testUTF8(self): + def testPreprocess(self): fh = six.BytesIO(six.b("""OFXHEADER:100 DATA:OFXSGML VERSION:102 SECURITY:NONE -ENCODING:UNICODE +ENCODING:USASCII +CHARSET:1252 COMPRESSION:NONE OLDFILEUID:NONE NEWFILEUID:NONE +abNet2222Gross3333 """)) - ofx_file = OfxFile(fh) - headers = ofx_file.headers - data = ofx_file.fh.read() - - self.assertTrue(type(data) is six.text_type) - for key, value in six.iteritems(headers): - self.assertTrue(type(key) is six.text_type) - self.assertTrue(type(value) is not six.binary_type) - - def testCP1252(self): - fh = six.BytesIO(six.b("""OFXHEADER:100 + expect = """OFXHEADER:100 DATA:OFXSGML VERSION:102 SECURITY:NONE ENCODING:USASCII -CHARSET: 1252 -COMPRESSION:NONE -OLDFILEUID:NONE -NEWFILEUID:NONE -""")) - ofx_file = OfxFile(fh) - headers = ofx_file.headers - result = ofx_file.fh.read() - - self.assertTrue(type(result) is six.text_type) - for key, value in six.iteritems(headers): - self.assertTrue(type(key) is six.text_type) - self.assertTrue(type(value) is not six.binary_type) - - def testUTF8Japanese(self): - fh = six.BytesIO(six.b("""OFXHEADER:100 -DATA:OFXSGML -VERSION:102 -SECURITY:NONE -ENCODING:UTF-8 -CHARSET:CSUNICODE +CHARSET:1252 COMPRESSION:NONE OLDFILEUID:NONE NEWFILEUID:NONE -""")) - ofx_file = OfxFile(fh) - headers = ofx_file.headers - result = ofx_file.fh.read() - - self.assertTrue(type(result) is six.text_type) - for key, value in six.iteritems(headers): - self.assertTrue(type(key) is six.text_type) - self.assertTrue(type(value) is not six.binary_type) - def testBrokenLineEndings(self): - fh = six.BytesIO(six.b("OFXHEADER:100\rDATA:OFXSGML\r")) - ofx_file = OfxFile(fh) - self.assertEquals(len(ofx_file.headers.keys()), 2) +abNet2222Gross3333 +""" + ofx_file = OfxPreprocessedFile(fh) + data = ofx_file.fh.read() + self.assertEqual(data, expect) class TestParse(TestCase): @@ -212,7 +163,8 @@ class TestParse(TestCase): self.assertRaises(OfxParserException, OfxParser.parse, fh) def testThatParseWorksWithoutErrors(self): - OfxParser.parse(open_file('bank_medium.ofx')) + with open_file('bank_medium.ofx') as f: + OfxParser.parse(f) def testThatParseFailsIfNothingToParse(self): self.assertRaises(TypeError, OfxParser.parse, None) @@ -222,48 +174,51 @@ class TestParse(TestCase): self.assertRaises(TypeError, OfxParser.parse, '/foo/bar') def testThatParseReturnsAResultWithABankAccount(self): - ofx = OfxParser.parse(open_file('bank_medium.ofx')) + with open_file('bank_medium.ofx') as f: + ofx = OfxParser.parse(f) self.assertTrue(ofx.account is not None) def testEverything(self): - ofx = OfxParser.parse(open_file('bank_medium.ofx')) - self.assertEquals('12300 000012345678', ofx.account.number) - self.assertEquals('160000100', ofx.account.routing_number) - self.assertEquals('00', ofx.account.branch_id) - self.assertEquals('CHECKING', ofx.account.account_type) - self.assertEquals(Decimal('382.34'), ofx.account.statement.balance) - self.assertEquals(datetime(2009, 5, 23, 12, 20, 17), + with open_file('bank_medium.ofx') as f: + ofx = OfxParser.parse(f) + self.assertEqual('12300 000012345678', ofx.account.number) + self.assertEqual('160000100', ofx.account.routing_number) + self.assertEqual('00', ofx.account.branch_id) + self.assertEqual('CHECKING', ofx.account.account_type) + self.assertEqual(Decimal('382.34'), ofx.account.statement.balance) + self.assertEqual(datetime(2009, 5, 23, 12, 20, 17), ofx.account.statement.balance_date) # Todo: support values in decimal or int form. - # self.assertEquals('15', + # self.assertEqual('15', # ofx.bank_account.statement.balance_in_pennies) - self.assertEquals( + self.assertEqual( Decimal('682.34'), ofx.account.statement.available_balance) - self.assertEquals(datetime(2009, 5, 23, 12, 20, 17), + self.assertEqual(datetime(2009, 5, 23, 12, 20, 17), ofx.account.statement.available_balance_date) - self.assertEquals( + self.assertEqual( datetime(2009, 4, 1), ofx.account.statement.start_date) - self.assertEquals( + self.assertEqual( datetime(2009, 5, 23, 12, 20, 17), ofx.account.statement.end_date) - self.assertEquals(3, len(ofx.account.statement.transactions)) + self.assertEqual(3, len(ofx.account.statement.transactions)) transaction = ofx.account.statement.transactions[0] - self.assertEquals("MCDONALD'S #112", transaction.payee) - self.assertEquals('pos', transaction.type) - self.assertEquals(Decimal('-6.60'), transaction.amount) + self.assertEqual("MCDONALD'S #112", transaction.payee) + self.assertEqual('pos', transaction.type) + self.assertEqual(Decimal('-6.60'), transaction.amount) # Todo: support values in decimal or int form. - # self.assertEquals('15', transaction.amount_in_pennies) + # self.assertEqual('15', transaction.amount_in_pennies) def testMultipleAccounts(self): - ofx = OfxParser.parse(open_file('multiple_accounts2.ofx')) - self.assertEquals(2, len(ofx.accounts)) - self.assertEquals('9100', ofx.accounts[0].number) - self.assertEquals('9200', ofx.accounts[1].number) - self.assertEquals('123', ofx.accounts[0].routing_number) - self.assertEquals('123', ofx.accounts[1].routing_number) - self.assertEquals('CHECKING', ofx.accounts[0].account_type) - self.assertEquals('SAVINGS', ofx.accounts[1].account_type) + with open_file('multiple_accounts2.ofx') as f: + ofx = OfxParser.parse(f) + self.assertEqual(2, len(ofx.accounts)) + self.assertEqual('9100', ofx.accounts[0].number) + self.assertEqual('9200', ofx.accounts[1].number) + self.assertEqual('123', ofx.accounts[0].routing_number) + self.assertEqual('123', ofx.accounts[1].routing_number) + self.assertEqual('CHECKING', ofx.accounts[0].account_type) + self.assertEqual('SAVINGS', ofx.accounts[1].account_type) class TestStringToDate(TestCase): @@ -285,32 +240,32 @@ class TestStringToDate(TestCase): def test_parses_correct_time(self): '''Test whether it can parse correct time for some valid time fields''' - self.assertEquals(OfxParser.parseOfxDateTime('19881201'), + self.assertEqual(OfxParser.parseOfxDateTime('19881201'), datetime(1988, 12, 1, 0, 0)) - self.assertEquals(OfxParser.parseOfxDateTime('19881201230100'), + self.assertEqual(OfxParser.parseOfxDateTime('19881201230100'), datetime(1988, 12, 1, 23, 1)) - self.assertEquals(OfxParser.parseOfxDateTime('20120229230100'), + self.assertEqual(OfxParser.parseOfxDateTime('20120229230100'), datetime(2012, 2, 29, 23, 1)) def test_parses_time_offset(self): ''' Test that we handle GMT offset ''' - self.assertEquals(OfxParser.parseOfxDateTime('20001201120000 [0:GMT]'), + self.assertEqual(OfxParser.parseOfxDateTime('20001201120000 [0:GMT]'), datetime(2000, 12, 1, 12, 0)) - self.assertEquals(OfxParser.parseOfxDateTime('19991201120000 [1:ITT]'), + self.assertEqual(OfxParser.parseOfxDateTime('19991201120000 [1:ITT]'), datetime(1999, 12, 1, 11, 0)) - self.assertEquals( + self.assertEqual( OfxParser.parseOfxDateTime('19881201230100 [-5:EST]'), datetime(1988, 12, 2, 4, 1)) - self.assertEquals( + self.assertEqual( OfxParser.parseOfxDateTime('20120229230100 [-6:CAT]'), datetime(2012, 3, 1, 5, 1)) - self.assertEquals( + self.assertEqual( OfxParser.parseOfxDateTime('20120412120000 [-5.5:XXX]'), datetime(2012, 4, 12, 17, 30)) - self.assertEquals( + self.assertEqual( OfxParser.parseOfxDateTime('20120412120000 [-5:XXX]'), datetime(2012, 4, 12, 17)) - self.assertEquals( + self.assertEqual( OfxParser.parseOfxDateTime('20120922230000 [+9:JST]'), datetime(2012, 9, 22, 14, 0)) @@ -327,9 +282,9 @@ class TestParseStmtrs(TestCase): stmtrs = soup_maker(self.input) account = OfxParser.parseStmtrs( stmtrs.find('stmtrs'), AccountType.Bank)[0] - self.assertEquals('12300 000012345678', account.number) - self.assertEquals('160000100', account.routing_number) - self.assertEquals('CHECKING', account.account_type) + self.assertEqual('12300 000012345678', account.number) + self.assertEqual('160000100', account.routing_number) + self.assertEqual('CHECKING', account.account_type) def testThatReturnedAccountAlsoHasAStatement(self): stmtrs = soup_maker(self.input) @@ -341,10 +296,10 @@ class TestParseStmtrs(TestCase): class TestAccount(TestCase): def testThatANewAccountIsValid(self): account = Account() - self.assertEquals('', account.number) - self.assertEquals('', account.routing_number) - self.assertEquals('', account.account_type) - self.assertEquals(None, account.statement) + self.assertEqual('', account.number) + self.assertEqual('', account.routing_number) + self.assertEqual('', account.account_type) + self.assertEqual(None, account.statement) class TestParseStatement(TestCase): @@ -389,14 +344,14 @@ class TestParseStatement(TestCase): ''' txn = soup_maker(input) statement = OfxParser.parseStatement(txn.find('stmttrnrs')) - self.assertEquals(datetime(2009, 4, 1), statement.start_date) - self.assertEquals( + self.assertEqual(datetime(2009, 4, 1), statement.start_date) + self.assertEqual( datetime(2009, 5, 23, 12, 20, 17), statement.end_date) - self.assertEquals(1, len(statement.transactions)) - self.assertEquals(Decimal('382.34'), statement.balance) - self.assertEquals(datetime(2009, 5, 23, 12, 20, 17), statement.balance_date) - self.assertEquals(Decimal('682.34'), statement.available_balance) - self.assertEquals(datetime(2009, 5, 23, 12, 20, 17), statement.available_balance_date) + self.assertEqual(1, len(statement.transactions)) + self.assertEqual(Decimal('382.34'), statement.balance) + self.assertEqual(datetime(2009, 5, 23, 12, 20, 17), statement.balance_date) + self.assertEqual(Decimal('682.34'), statement.available_balance) + self.assertEqual(datetime(2009, 5, 23, 12, 20, 17), statement.available_balance_date) def testThatParseStatementWithBlankDatesReturnsAStatement(self): input = ''' @@ -439,20 +394,20 @@ class TestParseStatement(TestCase): ''' txn = soup_maker(input) statement = OfxParser.parseStatement(txn.find('stmttrnrs')) - self.assertEquals(None, statement.start_date) - self.assertEquals(None, statement.end_date) - self.assertEquals(1, len(statement.transactions)) - self.assertEquals(Decimal('382.34'), statement.balance) - self.assertEquals(datetime(2009, 5, 23, 12, 20, 17), statement.balance_date) - self.assertEquals(Decimal('682.34'), statement.available_balance) - self.assertEquals(datetime(2009, 5, 23, 12, 20, 17), statement.available_balance_date) + self.assertEqual(None, statement.start_date) + self.assertEqual(None, statement.end_date) + self.assertEqual(1, len(statement.transactions)) + self.assertEqual(Decimal('382.34'), statement.balance) + self.assertEqual(datetime(2009, 5, 23, 12, 20, 17), statement.balance_date) + self.assertEqual(Decimal('682.34'), statement.available_balance) + self.assertEqual(datetime(2009, 5, 23, 12, 20, 17), statement.available_balance_date) class TestStatement(TestCase): def testThatANewStatementIsValid(self): statement = Statement() - self.assertEquals('', statement.start_date) - self.assertEquals('', statement.end_date) - self.assertEquals(0, len(statement.transactions)) + self.assertEqual('', statement.start_date) + self.assertEqual('', statement.end_date) + self.assertEqual(0, len(statement.transactions)) class TestParseTransaction(TestCase): @@ -469,13 +424,13 @@ class TestParseTransaction(TestCase): ''' txn = soup_maker(input) transaction = OfxParser.parseTransaction(txn.find('stmttrn')) - self.assertEquals('pos', transaction.type) - self.assertEquals(datetime( + self.assertEqual('pos', transaction.type) + self.assertEqual(datetime( 2009, 4, 1, 12, 20, 17) - timedelta(hours=-5), transaction.date) - self.assertEquals(Decimal('-6.60'), transaction.amount) - self.assertEquals('0000123456782009040100001', transaction.id) - self.assertEquals("MCDONALD'S #112", transaction.payee) - self.assertEquals("POS MERCHANDISE;MCDONALD'S #112", transaction.memo) + self.assertEqual(Decimal('-6.60'), transaction.amount) + self.assertEqual('0000123456782009040100001', transaction.id) + self.assertEqual("MCDONALD'S #112", transaction.payee) + self.assertEqual("POS MERCHANDISE;MCDONALD'S #112", transaction.memo) def testThatParseTransactionWithFieldCheckNum(self): input = ''' @@ -490,7 +445,7 @@ class TestParseTransaction(TestCase): ''' txn = soup_maker(input) transaction = OfxParser.parseTransaction(txn.find('stmttrn')) - self.assertEquals('700', transaction.checknum) + self.assertEqual('700', transaction.checknum) def testThatParseTransactionWithCommaAsDecimalPoint(self): input = ''' @@ -505,7 +460,7 @@ class TestParseTransaction(TestCase): ''' txn = soup_maker(input) transaction = OfxParser.parseTransaction(txn.find('stmttrn')) - self.assertEquals(Decimal('-1006.60'), transaction.amount) + self.assertEqual(Decimal('-1006.60'), transaction.amount) def testThatParseTransactionWithCommaAsDecimalPointAndDotAsSeparator(self): input = ''' @@ -519,8 +474,24 @@ class TestParseTransaction(TestCase): ''' txn = soup_maker(input) - with self.assertRaises(OfxParserException): - transaction = OfxParser.parseTransaction(txn.find('stmttrn')) + transaction = OfxParser.parseTransaction(txn.find('stmttrn')) + self.assertEqual(Decimal('-1006.60'), transaction.amount) + + def testThatParseTransactionWithDotAsDecimalPointAndCommaAsSeparator(self): + " The exact opposite of the previous test. Why are numbers so hard?" + input = ''' + + POS + 20090401122017.000[-5:EST] + -1,006.60 + 0000123456782009040100001 + MCDONALD'S #112 + POS MERCHANDISE;MCDONALD'S #112 + +''' + txn = soup_maker(input) + transaction = OfxParser.parseTransaction(txn.find('stmttrn')) + self.assertEqual(Decimal('-1006.60'), transaction.amount) def testThatParseTransactionWithNullAmountIgnored(self): """A null transaction value is converted to 0. @@ -544,19 +515,19 @@ class TestParseTransaction(TestCase): transaction = OfxParser.parseTransaction(txn.find('stmttrn')) - self.assertEquals(0, transaction.amount) + self.assertEqual(0, transaction.amount) class TestTransaction(TestCase): def testThatAnEmptyTransactionIsValid(self): t = Transaction() - self.assertEquals('', t.payee) - self.assertEquals('', t.type) - self.assertEquals(None, t.date) - self.assertEquals(None, t.amount) - self.assertEquals('', t.id) - self.assertEquals('', t.memo) - self.assertEquals('', t.checknum) + self.assertEqual('', t.payee) + self.assertEqual('', t.type) + self.assertEqual(None, t.date) + self.assertEqual(None, t.amount) + self.assertEqual('', t.id) + self.assertEqual('', t.memo) + self.assertEqual('', t.checknum) class TestInvestmentAccount(TestCase): @@ -586,160 +557,377 @@ class TestInvestmentAccount(TestCase): class TestVanguardInvestmentStatement(TestCase): def testForUnclosedTags(self): - ofx = OfxParser.parse(open_file('vanguard.ofx')) + with open_file('vanguard.ofx') as f: + ofx = OfxParser.parse(f) self.assertTrue(hasattr(ofx, 'account')) self.assertTrue(hasattr(ofx.account, 'statement')) self.assertTrue(hasattr(ofx.account.statement, 'transactions')) - self.assertEquals(len(ofx.account.statement.transactions), 1) - self.assertEquals(ofx.account.statement.transactions[0].id, + self.assertEqual(len(ofx.account.statement.transactions), 1) + self.assertEqual(ofx.account.statement.transactions[0].id, '01234567890.0123.07152011.0') - self.assertEquals(ofx.account.statement.transactions[0] + self.assertEqual(ofx.account.statement.transactions[0] .tradeDate, datetime(2011, 7, 15, 21)) - self.assertEquals(ofx.account.statement.transactions[0] + self.assertEqual(ofx.account.statement.transactions[0] .settleDate, datetime(2011, 7, 15, 21)) self.assertTrue(hasattr(ofx.account.statement, 'positions')) - self.assertEquals(len(ofx.account.statement.positions), 2) - self.assertEquals( + self.assertEqual(len(ofx.account.statement.positions), 2) + self.assertEqual( ofx.account.statement.positions[0].units, Decimal('102.0')) def testSecurityListSuccess(self): - ofx = OfxParser.parse(open_file('vanguard.ofx')) - self.assertEquals(len(ofx.security_list), 2) + with open_file('vanguard.ofx') as f: + ofx = OfxParser.parse(f) + self.assertEqual(len(ofx.security_list), 2) class TestVanguard401kStatement(TestCase): def testReadTransfer(self): - ofx = OfxParser.parse(open_file('vanguard401k.ofx')) + with open_file('vanguard401k.ofx') as f: + ofx = OfxParser.parse(f) self.assertTrue(hasattr(ofx, 'account')) self.assertTrue(hasattr(ofx.account, 'statement')) self.assertTrue(hasattr(ofx.account.statement, 'transactions')) - self.assertEquals(len(ofx.account.statement.transactions), 5) - self.assertEquals(ofx.account.statement.transactions[-1].id, + self.assertEqual(len(ofx.account.statement.transactions), 5) + self.assertEqual(ofx.account.statement.transactions[-1].id, '1234567890123456795AAA') - self.assertEquals('transfer', ofx.account.statement.transactions[-1].type) - self.assertEquals(ofx.account.statement.transactions[-1].inv401ksource, + self.assertEqual('transfer', ofx.account.statement.transactions[-1].type) + self.assertEqual(ofx.account.statement.transactions[-1].inv401ksource, 'MATCH') +class TestTiaaCrefStatement(TestCase): + def testReadAccount(self): + with open_file('tiaacref.ofx') as f: + ofx = OfxParser.parse(f) + self.assertTrue(hasattr(ofx, 'account')) + self.assertTrue(hasattr(ofx.account, 'account_id')) + self.assertEqual(ofx.account.account_id, '111A1111 22B222 33C333') + self.assertTrue(hasattr(ofx.account, 'type')) + self.assertEqual(ofx.account.type, AccountType.Investment) + + def testReadTransfer(self): + with open_file('tiaacref.ofx') as f: + ofx = OfxParser.parse(f) + self.assertTrue(hasattr(ofx, 'account')) + self.assertTrue(hasattr(ofx.account, 'statement')) + self.assertTrue(hasattr(ofx.account.statement, 'transactions')) + self.assertEqual(len(ofx.account.statement.transactions), 1) + self.assertEqual( + ofx.account.statement.transactions[-1].id, + 'TIAA#20170307160000.000[-4:EDT]160000.000[-4:EDT]' + ) + self.assertEqual( + 'transfer', + ofx.account.statement.transactions[-1].type + ) + + def testReadPositions(self): + with open_file('tiaacref.ofx') as f: + ofx = OfxParser.parse(f) + self.assertTrue(hasattr(ofx, 'account')) + self.assertTrue(hasattr(ofx.account, 'statement')) + self.assertTrue(hasattr(ofx.account.statement, 'positions')) + expected_positions = [ + { + 'security': '222222126', + 'units': Decimal('13.0763'), + 'unit_price': Decimal('1.0000'), + 'market_value': Decimal('13.0763') + }, + { + 'security': '222222217', + 'units': Decimal('1.0000'), + 'unit_price': Decimal('25.5785'), + 'market_value': Decimal('25.5785') + }, + { + 'security': '222222233', + 'units': Decimal('8.7605'), + 'unit_price': Decimal('12.4823'), + 'market_value': Decimal('109.3512') + }, + { + 'security': '222222258', + 'units': Decimal('339.2012'), + 'unit_price': Decimal('12.3456'), + 'market_value': Decimal('4187.6423') + }, + { + 'security': '111111111', + 'units': Decimal('543.71'), + 'unit_price': Decimal('1'), + 'market_value': Decimal('543.71') + }, + { + 'security': '333333200', + 'units': Decimal('2.00'), + 'unit_price': Decimal('10.00'), + 'market_value': Decimal('20.00') + } + ] + self.assertEqual( + len(ofx.account.statement.positions), + len(expected_positions) + ) + for pos, expected_pos in zip( + ofx.account.statement.positions, expected_positions + ): + self.assertEqual(pos.security, expected_pos['security']) + self.assertEqual(pos.units, expected_pos['units']) + self.assertEqual(pos.unit_price, expected_pos['unit_price']) + self.assertEqual(pos.market_value, expected_pos['market_value']) + + class TestFidelityInvestmentStatement(TestCase): def testForUnclosedTags(self): - ofx = OfxParser.parse(open_file('fidelity.ofx')) + with open_file('fidelity.ofx') as f: + ofx = OfxParser.parse(f) self.assertTrue(hasattr(ofx.account.statement, 'positions')) - self.assertEquals(len(ofx.account.statement.positions), 6) - self.assertEquals( + self.assertEqual(len(ofx.account.statement.positions), 6) + self.assertEqual( ofx.account.statement.positions[0].units, Decimal('128.0')) + self.assertEqual( + ofx.account.statement.positions[0].market_value, Decimal('5231.36') + ) def testSecurityListSuccess(self): - ofx = OfxParser.parse(open_file('fidelity.ofx')) - self.assertEquals(len(ofx.security_list), 7) + with open_file('fidelity.ofx') as f: + ofx = OfxParser.parse(f) + self.assertEqual(len(ofx.security_list), 7) def testBalanceList(self): - ofx = OfxParser.parse(open_file('fidelity.ofx')) - self.assertEquals(len(ofx.account.statement.balance_list), 18) - self.assertEquals(ofx.account.statement.balance_list[0].name, 'Networth') - self.assertEquals(ofx.account.statement.balance_list[0].description, 'The net market value of all long and short positions in the account') - self.assertEquals(ofx.account.statement.balance_list[0].value, Decimal('32993.79')) - self.assertEquals(ofx.account.statement.available_cash, Decimal('18073.98')) - self.assertEquals(ofx.account.statement.margin_balance, Decimal('0')) - self.assertEquals(ofx.account.statement.short_balance, Decimal('0')) - self.assertEquals(ofx.account.statement.buy_power, Decimal('0')) + with open_file('fidelity.ofx') as f: + ofx = OfxParser.parse(f) + self.assertEqual(len(ofx.account.statement.balance_list), 18) + self.assertEqual(ofx.account.statement.balance_list[0].name, 'Networth') + self.assertEqual(ofx.account.statement.balance_list[0].description, 'The net market value of all long and short positions in the account') + self.assertEqual(ofx.account.statement.balance_list[0].value, Decimal('32993.79')) + self.assertEqual(ofx.account.statement.available_cash, Decimal('18073.98')) + self.assertEqual(ofx.account.statement.margin_balance, Decimal('0')) + self.assertEqual(ofx.account.statement.short_balance, Decimal('0')) + self.assertEqual(ofx.account.statement.buy_power, Decimal('0')) + +class TestFidelitySavingsStatement(TestCase): + def testSTMTTRNInInvestmentBank(self): + with open_file('fidelity-savings.ofx') as f: + ofx = OfxParser.parse(f) + + self.assertTrue(hasattr(ofx.account.statement, 'transactions')) + self.assertEqual(len(ofx.account.statement.transactions), 4) + + tx = ofx.account.statement.transactions[0] + self.assertEqual('check', tx.type) + self.assertEqual(datetime( + 2012, 7, 20, 0, 0, 0) - timedelta(hours=-4), tx.date) + self.assertEqual(Decimal('-1500.00'), tx.amount) + self.assertEqual('X0000000000000000000001', tx.id) + self.assertEqual('Check Paid #0000001001', tx.payee) + self.assertEqual('Check Paid #0000001001', tx.memo) + + tx = ofx.account.statement.transactions[1] + self.assertEqual('dep', tx.type) + self.assertEqual(datetime( + 2012, 7, 27, 0, 0, 0) - timedelta(hours=-4), tx.date) + self.assertEqual(Decimal('115.8331'), tx.amount) + self.assertEqual('X0000000000000000000002', tx.id) + self.assertEqual('TRANSFERRED FROM VS X10-08144', tx.payee) + self.assertEqual('TRANSFERRED FROM VS X10-08144-1', tx.memo) class Test401InvestmentStatement(TestCase): def testTransferAggregate(self): - ofx = OfxParser.parse(open_file('investment_401k.ofx')) + with open_file('investment_401k.ofx') as f: + ofx = OfxParser.parse(f) expected_txns = [{'id': '1', 'type': 'buymf', 'units': Decimal('8.846699'), 'unit_price': Decimal('22.2908'), 'total': Decimal('-197.2'), - 'security': 'FOO'}, + 'security': 'FOO', + 'tferaction': None}, {'id': '2', 'type': 'transfer', 'units': Decimal('6.800992'), 'unit_price': Decimal('29.214856'), 'total': Decimal('0.0'), - 'security': 'BAR'}, + 'security': 'BAR', + 'tferaction': 'IN'}, {'id': '3', 'type': 'transfer', 'units': Decimal('-9.060702'), 'unit_price': Decimal('21.928764'), 'total': Decimal('0.0'), - 'security': 'BAZ'}] + 'security': 'BAZ', + 'tferaction': 'OUT'}] for txn, expected_txn in zip(ofx.account.statement.transactions, expected_txns): - self.assertEquals(txn.id, expected_txn['id']) - self.assertEquals(txn.type, expected_txn['type']) - self.assertEquals(txn.units, expected_txn['units']) - self.assertEquals(txn.unit_price, expected_txn['unit_price']) - self.assertEquals(txn.total, expected_txn['total']) - self.assertEquals(txn.security, expected_txn['security']) - - expected_positions = [{'security': 'FOO', - 'units': Decimal('17.604312'), - 'unit_price': Decimal('22.517211')}, - {'security': 'BAR', - 'units': Decimal('13.550983'), - 'unit_price': Decimal('29.214855')}, - {'security': 'BAZ', - 'units': Decimal('0.0'), - 'unit_price': Decimal('0.0')}] + self.assertEqual(txn.id, expected_txn['id']) + self.assertEqual(txn.type, expected_txn['type']) + self.assertEqual(txn.units, expected_txn['units']) + self.assertEqual(txn.unit_price, expected_txn['unit_price']) + self.assertEqual(txn.total, expected_txn['total']) + self.assertEqual(txn.security, expected_txn['security']) + self.assertEqual(txn.tferaction, expected_txn['tferaction']) + + expected_positions = [ + { + 'security': 'FOO', + 'units': Decimal('17.604312'), + 'unit_price': Decimal('22.517211'), + 'market_value': Decimal('396.4') + }, + { + 'security': 'BAR', + 'units': Decimal('13.550983'), + 'unit_price': Decimal('29.214855'), + 'market_value': Decimal('395.89') + }, + { + 'security': 'BAZ', + 'units': Decimal('0.0'), + 'unit_price': Decimal('0.0'), + 'market_value': Decimal('0.0') + } + ] for pos, expected_pos in zip(ofx.account.statement.positions, expected_positions): - self.assertEquals(pos.security, expected_pos['security']) - self.assertEquals(pos.units, expected_pos['units']) - self.assertEquals(pos.unit_price, expected_pos['unit_price']) + self.assertEqual(pos.security, expected_pos['security']) + self.assertEqual(pos.units, expected_pos['units']) + self.assertEqual(pos.unit_price, expected_pos['unit_price']) + self.assertEqual(pos.market_value, expected_pos['market_value']) + + +class TestEmptyTagsOFXv102(TestCase): + """ Test an OFX v1.02 file with the following empty fields: + * STMTRS.BANKACCTFROM.BRANCHID (optional according to spec) + * STMTRS.BANKACCTFROM.ACCTTYPE (mandatory) + * STMTRS.CURDEF (mandatory) + * STMTRS.BANKTRANLIST.STMTTRN.FITID + * STMTRS.BANKTRANLIST.STMTTRN.NAME + * STMTRS.BANKTRANLIST.STMTTRN.REFNUM (optional) + * STMTRS.BANKTRANLIST.STMTTRN.CHECKNUM (optional) + This file is from Newcastle Permanent in Australia + """ + def testEmptyAccountTags(self): + with open_file('ofx-v102-empty-tags.ofx') as f: + ofx = OfxParser.parse(f, fail_fast=False) + + account = ofx.accounts[0] + + # Verify empty tags have empty values + self.assertEqual(account.branch_id, '') + self.assertEqual(account.account_type, '') + self.assertEqual(account.curdef, None) + + # Verify non-empty tags are processed + self.assertEqual(account.account_id, "12345678") + # Bank-generated OFX uses org name in bankid field + self.assertEqual(account.routing_number, "NPBS") + + def testMissingTransactionHeader(self): + with open_file('ofx-v102-empty-tags.ofx') as f: + ofx = OfxParser.parse(f, fail_fast=False) + + # Empty currency definition + self.assertTrue(ofx.accounts[0].statement.warnings[0].startswith("Currency definition was empty for ")) class TestSuncorpBankStatement(TestCase): def testCDATATransactions(self): - ofx = OfxParser.parse(open_file('suncorp.ofx')) + with open_file('suncorp.ofx') as f: + ofx = OfxParser.parse(f) accounts = ofx.accounts - self.assertEquals(len(accounts), 1) + self.assertEqual(len(accounts), 1) account = accounts[0] transactions = account.statement.transactions - self.assertEquals(len(transactions), 1) + self.assertEqual(len(transactions), 1) transaction = transactions[0] - self.assertEquals(transaction.payee, "EFTPOS WDL HANDYWAY ALDI STORE") - self.assertEquals( + self.assertEqual(transaction.payee, "EFTPOS WDL HANDYWAY ALDI STORE") + self.assertEqual( transaction.memo, "EFTPOS WDL HANDYWAY ALDI STORE GEELONG WEST VICAU") - self.assertEquals(transaction.amount, Decimal("-16.85")) + self.assertEqual(transaction.amount, Decimal("-16.85")) +class TestTDAmeritrade(TestCase): + def testPositions(self): + with open_file('td_ameritrade.ofx') as f: + ofx = OfxParser.parse(f) + account = ofx.accounts[0] + statement = account.statement + positions = statement.positions + self.assertEquals(len(positions), 2) + + expected_positions = [ + { + 'security': '023135106', + 'units': Decimal('1'), + 'unit_price': Decimal('1000'), + 'market_value': Decimal('1000') + }, + { + 'security': '912810RW0', + 'units': Decimal('1000'), + 'unit_price': Decimal('100'), + 'market_value': Decimal('1000') + } + ] + for pos, expected_pos in zip(positions, expected_positions): + self.assertEqual(pos.security, expected_pos['security']) + self.assertEqual(pos.units, expected_pos['units']) + self.assertEqual(pos.unit_price, expected_pos['unit_price']) + self.assertEqual(pos.market_value, expected_pos['market_value']) + + expected_securities = [ + { + 'uniqueid': '023135106', + 'ticker': 'AMZN', + 'name': 'Amazon.com, Inc. - Common Stock' + }, + { + 'uniqueid': '912810RW0', + 'ticker': '912810RW0', + 'name': 'US Treasury 2047' + } + ] + for sec, expected_sec in zip(ofx.security_list, expected_securities): + self.assertEqual(sec.uniqueid, expected_sec['uniqueid']) + self.assertEqual(sec.ticker, expected_sec['ticker']) + self.assertEqual(sec.name, expected_sec['name']) class TestAccountInfoAggregation(TestCase): def testForFourAccounts(self): - ofx = OfxParser.parse(open_file('account_listing_aggregation.ofx')) + with open_file('account_listing_aggregation.ofx') as f: + ofx = OfxParser.parse(f) self.assertTrue(hasattr(ofx, 'accounts')) - self.assertEquals(len(ofx.accounts), 4) + self.assertEqual(len(ofx.accounts), 4) # first account account = ofx.accounts[0] - self.assertEquals(account.account_type, 'SAVINGS') - self.assertEquals(account.desc, 'USAA SAVINGS') - self.assertEquals(account.institution.organization, 'USAA') - self.assertEquals(account.number, '0000000001') - self.assertEquals(account.routing_number, '314074269') + self.assertEqual(account.account_type, 'SAVINGS') + self.assertEqual(account.desc, 'USAA SAVINGS') + self.assertEqual(account.institution.organization, 'USAA') + self.assertEqual(account.number, '0000000001') + self.assertEqual(account.routing_number, '314074269') # second account = ofx.accounts[1] - self.assertEquals(account.account_type, 'CHECKING') - self.assertEquals(account.desc, 'FOUR STAR CHECKING') - self.assertEquals(account.institution.organization, 'USAA') - self.assertEquals(account.number, '0000000002') - self.assertEquals(account.routing_number, '314074269') + self.assertEqual(account.account_type, 'CHECKING') + self.assertEqual(account.desc, 'FOUR STAR CHECKING') + self.assertEqual(account.institution.organization, 'USAA') + self.assertEqual(account.number, '0000000002') + self.assertEqual(account.routing_number, '314074269') # third account = ofx.accounts[2] - self.assertEquals(account.account_type, 'CREDITLINE') - self.assertEquals(account.desc, 'LINE OF CREDIT') - self.assertEquals(account.institution.organization, 'USAA') - self.assertEquals(account.number, '00000000000003') - self.assertEquals(account.routing_number, '314074269') + self.assertEqual(account.account_type, 'CREDITLINE') + self.assertEqual(account.desc, 'LINE OF CREDIT') + self.assertEqual(account.institution.organization, 'USAA') + self.assertEqual(account.number, '00000000000003') + self.assertEqual(account.routing_number, '314074269') # fourth account = ofx.accounts[3] - self.assertEquals(account.account_type, '') - self.assertEquals(account.desc, 'MY CREDIT CARD') - self.assertEquals(account.institution.organization, 'USAA') - self.assertEquals(account.number, '4111111111111111') + self.assertEqual(account.account_type, '') + self.assertEqual(account.desc, 'MY CREDIT CARD') + self.assertEqual(account.institution.organization, 'USAA') + self.assertEqual(account.number, '4111111111111111') class TestGracefulFailures(TestCase): @@ -755,63 +943,69 @@ class TestGracefulFailures(TestCase): 2) Empty date 3) Invalid date ''' - ofx = OfxParser.parse(open_file('fail_nice/date_missing.ofx'), False) - self.assertEquals(len(ofx.account.statement.transactions), 0) - self.assertEquals(len(ofx.account.statement.discarded_entries), 3) - self.assertEquals(len(ofx.account.statement.warnings), 0) + with open_file('fail_nice/date_missing.ofx') as f: + ofx = OfxParser.parse(f, False) + self.assertEqual(len(ofx.account.statement.transactions), 0) + self.assertEqual(len(ofx.account.statement.discarded_entries), 3) + self.assertEqual(len(ofx.account.statement.warnings), 0) # Test that it raises an error otherwise. - self.assertRaises(OfxParserException, OfxParser.parse, - open_file('fail_nice/date_missing.ofx')) + with open_file('fail_nice/date_missing.ofx') as f: + self.assertRaises(OfxParserException, OfxParser.parse, f) def testDecimalConversionError(self): ''' The test file contains a transaction that has a poorly formatted decimal number ($20). Test that we catch this. ''' - ofx = OfxParser.parse(open_file('fail_nice/decimal_error.ofx'), False) - self.assertEquals(len(ofx.account.statement.transactions), 0) - self.assertEquals(len(ofx.account.statement.discarded_entries), 1) + with open_file('fail_nice/decimal_error.ofx') as f: + ofx = OfxParser.parse(f, False) + self.assertEqual(len(ofx.account.statement.transactions), 0) + self.assertEqual(len(ofx.account.statement.discarded_entries), 1) # Test that it raises an error otherwise. - self.assertRaises(OfxParserException, OfxParser.parse, - open_file('fail_nice/decimal_error.ofx')) + with open_file('fail_nice/decimal_error.ofx') as f: + self.assertRaises(OfxParserException, OfxParser.parse, f) def testEmptyBalance(self): ''' The test file contains empty or blank strings in the balance fields. Fail nicely on those. ''' - ofx = OfxParser.parse(open_file('fail_nice/empty_balance.ofx'), False) - self.assertEquals(len(ofx.account.statement.transactions), 1) - self.assertEquals(len(ofx.account.statement.discarded_entries), 0) + with open_file('fail_nice/empty_balance.ofx') as f: + ofx = OfxParser.parse(f, False) + self.assertEqual(len(ofx.account.statement.transactions), 1) + self.assertEqual(len(ofx.account.statement.discarded_entries), 0) self.assertFalse(hasattr(ofx.account.statement, 'balance')) self.assertFalse(hasattr(ofx.account.statement, 'available_balance')) # Test that it raises an error otherwise. - self.assertRaises(OfxParserException, OfxParser.parse, - open_file('fail_nice/empty_balance.ofx')) + with open_file('fail_nice/empty_balance.ofx') as f: + self.assertRaises(OfxParserException, OfxParser.parse, f) class TestParseSonrs(TestCase): def testSuccess(self): - ofx = OfxParser.parse(open_file('signon_success.ofx'), True) + with open_file('signon_success.ofx') as f: + ofx = OfxParser.parse(f, True) self.assertTrue(ofx.signon.success) - self.assertEquals(ofx.signon.code, 0) - self.assertEquals(ofx.signon.severity, 'INFO') - self.assertEquals(ofx.signon.message, 'Login successful') + self.assertEqual(ofx.signon.code, 0) + self.assertEqual(ofx.signon.severity, 'INFO') + self.assertEqual(ofx.signon.message, 'Login successful') - ofx = OfxParser.parse(open_file('signon_success_no_message.ofx'), True) + with open_file('signon_success_no_message.ofx') as f: + ofx = OfxParser.parse(f, True) self.assertTrue(ofx.signon.success) - self.assertEquals(ofx.signon.code, 0) - self.assertEquals(ofx.signon.severity, 'INFO') - self.assertEquals(ofx.signon.message, '') + self.assertEqual(ofx.signon.code, 0) + self.assertEqual(ofx.signon.severity, 'INFO') + self.assertEqual(ofx.signon.message, '') def testFailure(self): - ofx = OfxParser.parse(open_file('signon_fail.ofx'), True) + with open_file('signon_fail.ofx') as f: + ofx = OfxParser.parse(f, True) self.assertFalse(ofx.signon.success) - self.assertEquals(ofx.signon.code, 15500) - self.assertEquals(ofx.signon.severity, 'ERROR') - self.assertEquals(ofx.signon.message, 'Your request could not be processed because you supplied an invalid identification code or your password was incorrect') + self.assertEqual(ofx.signon.code, 15500) + self.assertEqual(ofx.signon.severity, 'ERROR') + self.assertEqual(ofx.signon.message, 'Your request could not be processed because you supplied an invalid identification code or your password was incorrect') if __name__ == "__main__": import unittest diff --git a/tests/test_write.py b/tests/test_write.py index 28361b0..96d0792 100644 --- a/tests/test_write.py +++ b/tests/test_write.py @@ -1,7 +1,10 @@ from __future__ import absolute_import -from ofxparse import OfxParser as op +from ofxparse import OfxParser, OfxPrinter from unittest import TestCase +from six import StringIO +from os import close, remove +from tempfile import mkstemp import sys sys.path.append('..') from .support import open_file @@ -9,9 +12,25 @@ from .support import open_file class TestOfxWrite(TestCase): def test_write(self): - test_file = open_file('fidelity.ofx') - ofx_doc = op.parse(test_file) - self.assertEqual(str(ofx_doc), "") + with open_file('fidelity.ofx') as f: + ofx = OfxParser.parse(f) + self.assertEqual(str(ofx), "") + + def test_using_ofx_printer(self): + with open_file('checking.ofx') as f: + ofx = OfxParser.parse(f) + fd, name = mkstemp() + close(fd) + printer = OfxPrinter(ofx=ofx, filename=name) + printer.write(tabs=1) + + def test_using_ofx_printer_with_stringio(self): + with open_file('checking.ofx') as f: + ofx = OfxParser.parse(f) + output_buffer = StringIO() + printer = OfxPrinter(ofx=ofx, filename=None) + printer.writeToFile(output_buffer, tabs=1) + assert output_buffer.getvalue().startswith("OFXHEADER") if __name__ == "__main__": import unittest diff --git a/todo.txt b/todo.txt deleted file mode 100644 index f948b7c..0000000 --- a/todo.txt +++ /dev/null @@ -1,10 +0,0 @@ -- Add support for account types - Account - BankAccount, CreditAccount, InvestmentAccount - -- Better documentation - Statement - Transaction - Institute - -- Look into using a real sgml parser library like the one on PyPi. - diff --git a/utils/ofx2xlsx.py b/utils/ofx2xlsx.py deleted file mode 100644 index 32b19c6..0000000 --- a/utils/ofx2xlsx.py +++ /dev/null @@ -1,90 +0,0 @@ -from ofxparse import OfxParser -import pandas as pd - -import argparse - -# TODO automatically extract from transactions -fields = ['id','type', 'date', 'memo', 'payee', 'amount', 'checknum', 'mcc'] - -parser = argparse.ArgumentParser(description='Convert multiple .qfx or .ofx to' - ' .xlsx.\n' - 'Remove duplicate transactions ' - 'from different files.\n' - 'use fixed columns:' - ' %s'%', '.join(fields)) -parser.add_argument('files', metavar='*.ofx *.qfx', type=str, nargs='+', - help='.qfx or .ofx file names') -parser.add_argument('--start', type=str, metavar='2014-01-01', - default='2014-01-01', - help="Don't take transaction before this date") -parser.add_argument('--end', type=str, metavar='2014-12-31', - default='2014-12-31', - help="Don't take transaction after this date") -parser.add_argument('--output', metavar='output.xlsx', type=str, - default='output.xlsx', help='Were to store the xlsx') -parser.add_argument('--id-length', metavar='24', type=int, default=24, - help='Truncate the number of digits in a transaction ID.' - ' This is important because this program remove' - ' transactions with duplicate IDs (after verifing' - ' that they are identical.' - ' If you feel unsafe then use a large number but' - 'usually the last digits of the transaction ID are' - 'running numbers which change from download to download' - ' as a result you will have duplicate transactions' - ' unless you truncate the ID.') - - -args = parser.parse_args() - - -data = {} -for fname in args.files: - ofx = OfxParser.parse(file(fname)) - for account in ofx.accounts: - df = data.get(account.number, pd.DataFrame(columns=fields+['fname'])) - for transaction in account.statement.transactions: - s = pd.Series([getattr(transaction,f) for f in fields], index=fields) - s['fname'] = fname.split('/')[-1] - df = df.append(s, ignore_index=True) - df['id'] = df['id'].str[:args.id_length] # clip the last part of the ID which changes from download to download - data[account.number] = df - -print "Writing result to", args.output -writer = pd.ExcelWriter(args.output) - -for account_number, df in data.iteritems(): - # A transaction is identified using all `fields` - # collapse all repeated transactions from the same file into one row - # find the number of repeated transactions and - # put it in samedayrepeat column - df_count = df.groupby(fields+['fname']).size() - df_count = df_count.reset_index() - df_count.columns = list(df_count.columns[:-1]) + ['samedayrepeat'] - - # two transactions from the same file are always different - # but the same transaction can appear in multiple files if they overlap. - # check we have the same samedayrepeat for the same transaction on different files - df_size_fname_count = df_count.reset_index().groupby(fields).samedayrepeat.nunique() - assert (df_size_fname_count == 1).all(), "Different samedayrepeat in different files" - - # take one file as an example - df1 = df_count.reset_index().groupby(fields+['samedayrepeat']).first() - df1 = df1.reset_index() - - # expand back the collapsed transactions - # duplicate rows according to samedayrepeat value - df2 = df1.copy() - for i in range(2,df1.samedayrepeat.max()+1): - df2 = df2.append(df1[i<=df1.samedayrepeat]) - - # sort according to date - df2 = df2.reset_index().set_index('date').sort_index() - # filter dates - df2 = df2.ix[args.start:args.end] - - #cleanup - df2 = df2.reset_index()[fields] - - df2.to_excel(writer, account_number, index=False) - -writer.save() -- cgit v1.2.3