Skip to content

Instantly share code, notes, and snippets.

@CDRO
Last active August 9, 2017 12:37
Show Gist options
  • Save CDRO/f72a982d54496a2dcd7550f1cc0ee14a to your computer and use it in GitHub Desktop.
Save CDRO/f72a982d54496a2dcd7550f1cc0ee14a to your computer and use it in GitHub Desktop.
<?php
/***************************************************************
* Copyright notice
*
* (c) 2016 Nils Blattner <nb@cabag.ch>, cab services ag
* (c) 2017 Tizian Schmidlin <st@cabag.ch> cab services ag
*
* All rights reserved
*
* This script is part of the TYPO3 project. The TYPO3 project is
* free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* The GNU General Public License can be found at
* http://www.gnu.org/copyleft/gpl.html.
*
* This script is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* This copyright notice MUST APPEAR in all copies of the script!
***************************************************************/
class ReplaceOldClasses {
// script to replace occurences of old class names
/**
* Extensions and folders to ignore
*
* @var array
*/
private static $ignoreFolders = array(
'cabag_update76',
'cabag_sla',
'cabag_patch62'
);
/**
* Index of all classes to replace
* @var array
*/
private static $index = array(
'Tx_About_Controller_AboutController' => '\\TYPO3\\CMS\\About\\Controller\\AboutController',
'Tx_About_Domain_Model_Extension' => '\\TYPO3\\CMS\\About\\Domain\\Model\\Extension',
'Tx_About_Domain_Repository_ExtensionRepository' => '\\TYPO3\\CMS\\About\\Domain\\Repository\\ExtensionRepository',
'Tx_About_ViewHelpers_SkinImageViewHelper' => '\\TYPO3\\CMS\\About\\ViewHelpers\\SkinImageViewHelper',
'Tx_Aboutmodules_Controller_ModulesController' => '\\TYPO3\\CMS\\Aboutmodules\\Controller\\ModulesController',
'AjaxLogin' => '\\TYPO3\\CMS\\Backend\\AjaxLoginHandler',
'clickMenu' => '\\TYPO3\\CMS\\Backend\\ClickMenu\\ClickMenu',
't3lib_clipboard' => '\\TYPO3\\CMS\\Backend\\Clipboard\\Clipboard',
't3lib_transl8tools' => '\\TYPO3\\CMS\\Backend\\Configuration\\TranslationConfigurationProvider',
't3lib_TSparser_TSconfig' => '\\TYPO3\\CMS\\Backend\\Configuration\\TsConfigParser',
't3lib_matchCondition_backend' => '\\TYPO3\\CMS\\Backend\\Configuration\\TypoScript\\ConditionMatching\\ConditionMatcher',
't3lib_contextmenu_AbstractContextMenu' => '\\TYPO3\\CMS\\Backend\\ContextMenu\\AbstractContextMenu',
't3lib_contextmenu_AbstractDataProvider' => '\\TYPO3\\CMS\\Backend\\ContextMenu\\AbstractContextMenuDataProvider',
't3lib_contextmenu_Action' => '\\TYPO3\\CMS\\Backend\\ContextMenu\\ContextMenuAction',
't3lib_formmail' => '\\TYPO3\\CMS\\Frontend\\Controller\\DataSubmissionController',
't3lib_contextmenu_ActionCollection' => '\\TYPO3\\CMS\\Backend\\ContextMenu\\ContextMenuActionCollection',
't3lib_contextmenu_extdirect_ContextMenu' => '\\TYPO3\\CMS\\Backend\\ContextMenu\\Extdirect\\AbstractExtdirectContextMenu',
't3lib_contextmenu_pagetree_DataProvider' => '\\TYPO3\\CMS\\Backend\\ContextMenu\\Pagetree\\ContextMenuDataProvider',
't3lib_contextmenu_pagetree_extdirect_ContextMenu' => '\\TYPO3\\CMS\\Backend\\ContextMenu\\Pagetree\\Extdirect\\ContextMenuConfiguration',
't3lib_contextmenu_renderer_Abstract' => '\\TYPO3\\CMS\\Backend\\ContextMenu\\Renderer\\AbstractContextMenuRenderer',
'TYPO3backend' => '\\TYPO3\\CMS\\Backend\\Controller\\BackendController',
'SC_wizard_backend_layout' => '\\TYPO3\\CMS\\Backend\\Controller\\BackendLayoutWizardController',
'SC_alt_clickmenu' => '\\TYPO3\\CMS\\Backend\\Controller\\ClickMenuController',
'SC_show_rechis' => '\\TYPO3\\CMS\\Backend\\Controller\\ContentElement\\ElementHistoryController',
'SC_show_item' => '\\TYPO3\\CMS\\Backend\\Controller\\ContentElement\\ElementInformationController',
'SC_move_el' => '\\TYPO3\\CMS\\Backend\\Controller\\ContentElement\\MoveElementController',
'SC_db_new_content_el' => '\\TYPO3\\CMS\\Backend\\Controller\\ContentElement\\NewContentElementController',
'SC_dummy' => '\\TYPO3\\CMS\\Backend\\Controller\\DummyController',
'SC_alt_doc' => '\\TYPO3\\CMS\\Backend\\Controller\\EditDocumentController',
'SC_file_newfolder' => '\\TYPO3\\CMS\\Backend\\Controller\\File\\CreateFolderController',
'SC_file_edit' => '\\TYPO3\\CMS\\Backend\\Controller\\File\\EditFileController',
'TYPO3_tcefile' => '\\TYPO3\\CMS\\Backend\\Controller\\File\\FileController',
'SC_file_upload' => '\\TYPO3\\CMS\\Backend\\Controller\\File\\FileUploadController',
'SC_file_rename' => '\\TYPO3\\CMS\\Backend\\Controller\\File\\RenameFileController',
'SC_alt_file_navframe' => '\\TYPO3\\CMS\\Backend\\Controller\\FileSystemNavigationFrameController',
'SC_listframe_loader' => '\\TYPO3\\CMS\\Backend\\Controller\\ListFrameLoaderController',
'SC_index' => '\\TYPO3\\CMS\\Backend\\Controller\\LoginController',
'SC_login_frameset' => '\\TYPO3\\CMS\\Backend\\Controller\\LoginFramesetController',
'SC_logout' => '\\TYPO3\\CMS\\Backend\\Controller\\LogoutController',
'SC_db_new' => '\\TYPO3\\CMS\\Backend\\Controller\\NewRecordController',
'SC_alt_doc_nodoc' => '\\TYPO3\\CMS\\Backend\\Controller\\NoDocumentsOpenController',
'SC_db_layout' => '\\TYPO3\\CMS\\Backend\\Controller\\PageLayoutController',
'SC_alt_db_navframe' => '\\TYPO3\\CMS\\Backend\\Controller\\PageTreeNavigationController',
'SC_tce_db' => '\\TYPO3\\CMS\\Backend\\Controller\\SimpleDataHandlerController',
'SC_wizard_add' => '\\TYPO3\\CMS\\Backend\\Controller\\Wizard\\AddController',
'SC_wizard_colorpicker' => '\\TYPO3\\CMS\\Backend\\Controller\\Wizard\\ColorpickerController',
'SC_wizard_edit' => '\\TYPO3\\CMS\\Backend\\Controller\\Wizard\\EditController',
'SC_wizard_forms' => '\\TYPO3\\CMS\\Backend\\Controller\\Wizard\\FormsController',
'SC_wizard_list' => '\\TYPO3\\CMS\\Backend\\Controller\\Wizard\\ListController',
'SC_wizard_rte' => '\\TYPO3\\CMS\\Backend\\Controller\\Wizard\\RteController',
'SC_wizard_table' => '\\TYPO3\\CMS\\Backend\\Controller\\Wizard\\TableController',
't3lib_transferData' => '\\TYPO3\\CMS\\Backend\\Form\\DataPreprocessor',
't3lib_TCEforms_inline' => '\\TYPO3\\CMS\\Backend\\Form\\Element\\InlineElement',
't3lib_tceformsInlineHook' => '\\TYPO3\\CMS\\Backend\\Form\\Element\\InlineElementHookInterface',
't3lib_TCEforms_FE' => '\\TYPO3\\CMS\\Backend\\Form\\FrontendFormEngine',
't3lib_TCEforms_dbFileIconsHook' => '\\TYPO3\\CMS\\Backend\\Form\\DatabaseFileIconsHookInterface',
't3lib_TCEforms_Suggest_DefaultReceiver' => '\\TYPO3\\CMS\\Backend\\Form\\Element\\SuggestDefaultReceiver',
't3lib_TCEforms_Suggest' => '\\TYPO3\\CMS\\Backend\\Form\\Element\\SuggestElement',
't3lib_TCEforms_Tree' => '\\TYPO3\\CMS\\Backend\\Form\\Element\\TreeElement',
't3lib_TCEforms_ValueSlider' => '\\TYPO3\\CMS\\Backend\\Form\\Element\\ValueSlider',
't3lib_TCEforms_Flexforms' => '\\TYPO3\\CMS\\Backend\\Form\\FlexFormsHelper',
't3lib_TCEforms' => '\\TYPO3\\CMS\\Backend\\Form\\FormEngine',
't3lib_tsfeBeUserAuth' => '\\TYPO3\\CMS\\Backend\\FrontendBackendUserAuthentication',
'recordHistory' => '\\TYPO3\\CMS\\Backend\\History\\RecordHistory',
'extDirect_DataProvider_State' => '\\TYPO3\\CMS\\Backend\\InterfaceState\\ExtDirect\\DataProvider',
't3lib_extobjbase' => '\\TYPO3\\CMS\\Backend\\Module\\AbstractFunctionModule',
't3lib_SCbase' => '\\TYPO3\\CMS\\Backend\\Module\\BaseScriptClass',
't3lib_loadModules' => '\\TYPO3\\CMS\\Backend\\Module\\ModuleLoader',
'Typo3_ModuleStorage' => '\\TYPO3\\CMS\\Backend\\Module\\ModuleStorage',
't3lib_modSettings' => '\\TYPO3\\CMS\\Backend\\ModuleSettings',
't3lib_recordList' => '\\TYPO3\\CMS\\Backend\\RecordList\\AbstractRecordList',
'TBE_browser_recordList' => '\\TYPO3\\CMS\\Backend\\RecordList\\ElementBrowserRecordList',
't3lib_localRecordListGetTableHook' => '\\TYPO3\\CMS\\Backend\\RecordList\\RecordListGetTableHookInterface',
't3lib_rteapi' => '\\TYPO3\\CMS\\Backend\\Rte\\AbstractRte',
'extDirect_dataProvider_BackendLiveSearch' => '\\TYPO3\\CMS\\Backend\\Search\\LiveSearch\\ExtDirect\\LiveSearchDataProvider',
't3lib_search_liveSearch' => '\\TYPO3\\CMS\\Backend\\Search\\LiveSearch\\LiveSearch',
't3lib_search_liveSearch_queryParser' => '\\TYPO3\\CMS\\Backend\\Search\\LiveSearch\\QueryParser',
't3lib_spritemanager_AbstractHandler' => '\\TYPO3\\CMS\\Backend\\Sprite\\AbstractSpriteHandler',
't3lib_spritemanager_SimpleHandler' => '\\TYPO3\\CMS\\Backend\\Sprite\\SimpleSpriteHandler',
't3lib_spritemanager_SpriteBuildingHandler' => '\\TYPO3\\CMS\\Backend\\Sprite\\SpriteBuildingHandler',
't3lib_spritemanager_SpriteGenerator' => '\\TYPO3\\CMS\\Backend\\Sprite\\SpriteGenerator',
't3lib_spritemanager_SpriteIconGenerator' => '\\TYPO3\\CMS\\Backend\\Sprite\\SpriteIconGeneratorInterface',
't3lib_SpriteManager' => '\\TYPO3\\CMS\\Backend\\Sprite\\SpriteManager',
'bigDoc' => '\\TYPO3\\CMS\\Backend\\Template\\DocumentTemplate',
'template' => '\\TYPO3\\CMS\\Backend\\Template\\DocumentTemplate',
'frontendDoc' => '\\TYPO3\\CMS\\Backend\\Template\\DocumentTemplate',
'mediumDoc' => '\\TYPO3\\CMS\\Backend\\Template\\DocumentTemplate',
'smallDoc' => '\\TYPO3\\CMS\\Backend\\Template\\DocumentTemplate',
'noDoc' => '\\TYPO3\\CMS\\Backend\\Template\\DocumentTemplate',
'backend_cacheActionsHook' => '\\TYPO3\\CMS\\Backend\\Toolbar\\ClearCacheActionsHookInterface',
'ClearCacheMenu' => '\\TYPO3\\CMS\\Backend\\Toolbar\\ClearCacheToolbarItem',
'LiveSearch' => '\\TYPO3\\CMS\\Backend\\Toolbar\\LiveSearchToolbarItem',
'ShortcutMenu' => '\\TYPO3\\CMS\\Backend\\Toolbar\\ShortcutToolbarItem',
't3lib_tree_ExtDirect_AbstractExtJsTree' => '\\TYPO3\\CMS\\Backend\\Tree\\AbstractExtJsTree',
't3lib_tree_AbstractTree' => '\\TYPO3\\CMS\\Backend\\Tree\\AbstractTree',
't3lib_tree_AbstractDataProvider' => '\\TYPO3\\CMS\\Backend\\Tree\\AbstractTreeDataProvider',
't3lib_tree_AbstractStateProvider' => '\\TYPO3\\CMS\\Backend\\Tree\\AbstractTreeStateProvider',
't3lib_tree_ComparableNode' => '\\TYPO3\\CMS\\Backend\\Tree\\ComparableNodeInterface',
't3lib_tree_DraggableAndDropable' => '\\TYPO3\\CMS\\Backend\\Tree\\DraggableAndDropableNodeInterface',
't3lib_tree_LabelEditable' => '\\TYPO3\\CMS\\Backend\\Tree\\EditableNodeLabelInterface',
't3lib_tree_extdirect_Node' => '\\TYPO3\\CMS\\Backend\\Tree\\ExtDirectNode',
't3lib_tree_pagetree_interfaces_CollectionProcessor' => '\\TYPO3\\CMS\\Backend\\Tree\\Pagetree\\CollectionProcessorInterface',
't3lib_tree_pagetree_Commands' => '\\TYPO3\\CMS\\Backend\\Tree\\Pagetree\\Commands',
't3lib_tree_pagetree_DataProvider' => '\\TYPO3\\CMS\\Backend\\Tree\\Pagetree\\DataProvider',
't3lib_tree_pagetree_extdirect_Commands' => '\\TYPO3\\CMS\\Backend\\Tree\\Pagetree\\ExtdirectTreeCommands',
't3lib_tree_pagetree_extdirect_Tree' => '\\TYPO3\\CMS\\Backend\\Tree\\Pagetree\\ExtdirectTreeDataProvider',
't3lib_tree_pagetree_Indicator' => '\\TYPO3\\CMS\\Backend\\Tree\\Pagetree\\Indicator',
't3lib_tree_pagetree_interfaces_IndicatorProvider' => '\\TYPO3\\CMS\\Backend\\Tree\\Pagetree\\IndicatorProviderInterface',
't3lib_tree_pagetree_Node' => '\\TYPO3\\CMS\\Backend\\Tree\\Pagetree\\PagetreeNode',
't3lib_tree_pagetree_NodeCollection' => '\\TYPO3\\CMS\\Backend\\Tree\\Pagetree\\PagetreeNodeCollection',
't3lib_tree_Renderer_Abstract' => '\\TYPO3\\CMS\\Backend\\Tree\\Renderer\\AbstractTreeRenderer',
't3lib_tree_Renderer_ExtJsJson' => '\\TYPO3\\CMS\\Backend\\Tree\\Renderer\\ExtJsJsonTreeRenderer',
't3lib_tree_Renderer_UnorderedList' => '\\TYPO3\\CMS\\Backend\\Tree\\Renderer\\UnorderedListTreeRenderer',
't3lib_tree_SortedNodeCollection' => '\\TYPO3\\CMS\\Backend\\Tree\\SortedTreeNodeCollection',
't3lib_tree_Node' => '\\TYPO3\\CMS\\Backend\\Tree\\TreeNode',
't3lib_tree_NodeCollection' => '\\TYPO3\\CMS\\Backend\\Tree\\TreeNodeCollection',
't3lib_tree_RepresentationNode' => '\\TYPO3\\CMS\\Backend\\Tree\\TreeRepresentationNode',
't3lib_treeView' => '\\TYPO3\\CMS\\Backend\\Tree\\View\\AbstractTreeView',
't3lib_browseTree' => '\\TYPO3\\CMS\\Backend\\Tree\\View\\BrowseTreeView',
't3lib_folderTree' => '\\TYPO3\\CMS\\Backend\\Tree\\View\\FolderTreeView',
't3lib_positionMap' => '\\TYPO3\\CMS\\Backend\\Tree\\View\\PagePositionMap',
't3lib_pageTree' => '\\TYPO3\\CMS\\Backend\\Tree\\View\\PageTreeView',
'extDirect_DataProvider_BackendUserSettings' => '\\TYPO3\\CMS\\Backend\\User\\ExtDirect\\BackendUserSettingsDataProvider',
't3lib_BEfunc' => '\\TYPO3\\CMS\\Backend\\Utility\\BackendUtility',
't3lib_iconWorks' => '\\TYPO3\\CMS\\Backend\\Utility\\IconUtility',
'tx_cms_BackendLayout' => '\\TYPO3\\CMS\\Backend\\View\\BackendLayoutView',
'ModuleMenu' => '\\TYPO3\\CMS\\Backend\\View\\ModuleMenuView',
'tx_cms_layout' => '\\TYPO3\\CMS\\Backend\\View\\PageLayoutView',
'tx_cms_layout_tt_content_drawItemHook' => '\\TYPO3\\CMS\\Backend\\View\\PageLayoutViewDrawItemHookInterface',
'webPageTree' => '\\TYPO3\\CMS\\Backend\\View\\PageTreeView',
'SC_t3lib_thumbs' => '\\TYPO3\\CMS\\Backend\\View\\ThumbnailView',
'TYPO3Logo' => '\\TYPO3\\CMS\\Backend\\View\\LogoView',
'cms_newContentElementWizardsHook' => '\\TYPO3\\CMS\\Backend\\Wizard\\NewContentElementWizardHookInterface',
't3lib_extjs_ExtDirectRouter' => '\\TYPO3\\CMS\\Core\\ExtDirect\\ExtDirectRouter',
't3lib_extjs_ExtDirectApi' => '\\TYPO3\\CMS\\Core\\ExtDirect\\ExtDirectApi',
't3lib_extjs_ExtDirectDebug' => '\\TYPO3\\CMS\\Core\\ExtDirect\\ExtDirectDebug',
't3lib_cli' => '\\TYPO3\\CMS\\Core\\Controller\\CommandLineController',
'extDirect_DataProvider_ContextHelp' => '\\TYPO3\\CMS\\ContextHelp\\ExtDirect\\ContextHelpDataProvider',
't3lib_userAuth' => '\\TYPO3\\CMS\\Core\\Authentication\\AbstractUserAuthentication',
't3lib_beUserAuth' => '\\TYPO3\\CMS\\Core\\Authentication\\BackendUserAuthentication',
't3lib_autoloader' => '\\TYPO3\\CMS\\Core\\Core\\ClassLoader',
't3lib_cache_backend_AbstractBackend' => '\\TYPO3\\CMS\\Core\\Cache\\Backend\\AbstractBackend',
't3lib_cache_backend_ApcBackend' => '\\TYPO3\\CMS\\Core\\Cache\\Backend\\ApcBackend',
't3lib_cache_backend_Backend' => '\\TYPO3\\CMS\\Core\\Cache\\Backend\\BackendInterface',
't3lib_cache_backend_FileBackend' => '\\TYPO3\\CMS\\Core\\Cache\\Backend\\FileBackend',
't3lib_cache_backend_MemcachedBackend' => '\\TYPO3\\CMS\\Core\\Cache\\Backend\\MemcachedBackend',
't3lib_cache_backend_NullBackend' => '\\TYPO3\\CMS\\Core\\Cache\\Backend\\NullBackend',
't3lib_cache_backend_PdoBackend' => '\\TYPO3\\CMS\\Core\\Cache\\Backend\\PdoBackend',
't3lib_cache_backend_PhpCapableBackend' => '\\TYPO3\\CMS\\Core\\Cache\\Backend\\PhpCapableBackendInterface',
't3lib_cache_backend_RedisBackend' => '\\TYPO3\\CMS\\Core\\Cache\\Backend\\RedisBackend',
't3lib_cache_backend_TransientMemoryBackend' => '\\TYPO3\\CMS\\Core\\Cache\\Backend\\TransientMemoryBackend',
't3lib_cache_backend_DbBackend' => '\\TYPO3\\CMS\\Core\\Cache\\Backend\\Typo3DatabaseBackend',
't3lib_cache' => '\\TYPO3\\CMS\\Core\\Cache\\Cache',
't3lib_cache_Factory' => '\\TYPO3\\CMS\\Core\\Cache\\CacheFactory',
't3lib_cache_Manager' => '\\TYPO3\\CMS\\Core\\Cache\\CacheManager',
't3lib_cache_Exception' => '\\TYPO3\\CMS\\Core\\Cache\\Exception',
't3lib_cache_exception_ClassAlreadyLoaded' => '\\TYPO3\\CMS\\Core\\Cache\\Exception\\ClassAlreadyLoadedException',
't3lib_cache_exception_DuplicateIdentifier' => '\\TYPO3\\CMS\\Core\\Cache\\Exception\\DuplicateIdentifierException',
't3lib_cache_exception_InvalidBackend' => '\\TYPO3\\CMS\\Core\\Cache\\Exception\\InvalidBackendException',
't3lib_cache_exception_InvalidCache' => '\\TYPO3\\CMS\\Core\\Cache\\Exception\\InvalidCacheException',
't3lib_cache_exception_InvalidData' => '\\TYPO3\\CMS\\Core\\Cache\\Exception\\InvalidDataException',
't3lib_cache_exception_NoSuchCache' => '\\TYPO3\\CMS\\Core\\Cache\\Exception\\NoSuchCacheException',
't3lib_cache_frontend_AbstractFrontend' => '\\TYPO3\\CMS\\Core\\Cache\\Frontend\\AbstractFrontend',
't3lib_cache_frontend_Frontend' => '\\TYPO3\\CMS\\Core\\Cache\\Frontend\\FrontendInterface',
't3lib_cache_frontend_PhpFrontend' => '\\TYPO3\\CMS\\Core\\Cache\\Frontend\\PhpFrontend',
't3lib_cache_frontend_StringFrontend' => '\\TYPO3\\CMS\\Core\\Cache\\Frontend\\StringFrontend',
't3lib_cache_frontend_VariableFrontend' => '\\TYPO3\\CMS\\Core\\Cache\\Frontend\\VariableFrontend',
't3lib_cs' => '\\TYPO3\\CMS\\Core\\Charset\\CharsetConverter',
't3lib_collection_AbstractRecordCollection' => '\\TYPO3\\CMS\\Core\\Collection\\AbstractRecordCollection',
't3lib_collection_Collection' => '\\TYPO3\\CMS\\Core\\Collection\\CollectionInterface',
't3lib_collection_Editable' => '\\TYPO3\\CMS\\Core\\Collection\\EditableCollectionInterface',
't3lib_collection_Nameable' => '\\TYPO3\\CMS\\Core\\Collection\\NameableCollectionInterface',
't3lib_collection_Persistable' => '\\TYPO3\\CMS\\Core\\Collection\\PersistableCollectionInterface',
't3lib_collection_RecordCollection' => '\\TYPO3\\CMS\\Core\\Collection\\RecordCollectionInterface',
't3lib_collection_RecordCollectionRepository' => '\\TYPO3\\CMS\\Core\\Collection\\RecordCollectionRepository',
't3lib_collection_Sortable' => '\\TYPO3\\CMS\\Core\\Collection\\SortableCollectionInterface',
't3lib_collection_StaticRecordCollection' => '\\TYPO3\\CMS\\Core\\Collection\\StaticRecordCollection',
't3lib_flexformtools' => '\\TYPO3\\CMS\\Core\\Configuration\\FlexForm\\FlexFormTools',
't3lib_matchCondition_abstract' => '\\TYPO3\\CMS\\Core\\Configuration\\TypoScript\\ConditionMatching\\AbstractConditionMatcher',
't3lib_DB' => '\\TYPO3\\CMS\\Core\\Database\\DatabaseConnection',
't3lib_PdoHelper' => '\\TYPO3\\CMS\\Core\\Database\\PdoHelper',
't3lib_DB_postProcessQueryHook' => '\\TYPO3\\CMS\\Core\\Database\\PostProcessQueryHookInterface',
't3lib_db_PreparedStatement' => '\\TYPO3\\CMS\\Core\\Database\\PreparedStatement',
't3lib_DB_preProcessQueryHook' => '\\TYPO3\\CMS\\Core\\Database\\PreProcessQueryHookInterface',
't3lib_queryGenerator' => '\\TYPO3\\CMS\\Core\\Database\\QueryGenerator',
't3lib_fullsearch' => '\\TYPO3\\CMS\\Core\\Database\\QueryView',
't3lib_refindex' => '\\TYPO3\\CMS\\Core\\Database\\ReferenceIndex',
't3lib_loadDBGroup' => '\\TYPO3\\CMS\\Core\\Database\\RelationHandler',
't3lib_softrefproc' => '\\TYPO3\\CMS\\Core\\Database\\SoftReferenceIndex',
't3lib_sqlparser' => '\\TYPO3\\CMS\\Core\\Database\\SqlParser',
't3lib_extTables_PostProcessingHook' => '\\TYPO3\\CMS\\Core\\Database\\TableConfigurationPostProcessingHookInterface',
't3lib_TCEmain' => '\\TYPO3\\CMS\\Core\\DataHandling\\DataHandler',
't3lib_TCEmain_checkModifyAccessListHook' => '\\TYPO3\\CMS\\Core\\DataHandling\\DataHandlerCheckModifyAccessListHookInterface',
't3lib_TCEmain_processUploadHook' => '\\TYPO3\\CMS\\Core\\DataHandling\\DataHandlerProcessUploadHookInterface',
't3lib_browseLinksHook' => '\\TYPO3\\CMS\\Core\\ElementBrowser\\ElementBrowserHookInterface',
't3lib_codec_JavaScriptEncoder' => '\\TYPO3\\CMS\\Core\\Encoder\\JavaScriptEncoder',
't3lib_error_AbstractExceptionHandler' => '\\TYPO3\\CMS\\Core\\Error\\AbstractExceptionHandler',
't3lib_error_DebugExceptionHandler' => '\\TYPO3\\CMS\\Core\\Error\\DebugExceptionHandler',
't3lib_error_ErrorHandler' => '\\TYPO3\\CMS\\Core\\Error\\ErrorHandler',
't3lib_error_ErrorHandlerInterface' => '\\TYPO3\\CMS\\Core\\Error\\ErrorHandlerInterface',
't3lib_error_Exception' => '\\TYPO3\\CMS\\Core\\Error\\Exception',
't3lib_error_ExceptionHandlerInterface' => '\\TYPO3\\CMS\\Core\\Error\\ExceptionHandlerInterface',
't3lib_error_http_AbstractClientErrorException' => '\\TYPO3\\CMS\\Core\\Error\\Http\\AbstractClientErrorException',
't3lib_error_http_AbstractServerErrorException' => '\\TYPO3\\CMS\\Core\\Error\\Http\\AbstractServerErrorException',
't3lib_error_http_BadRequestException' => '\\TYPO3\\CMS\\Core\\Error\\Http\\BadRequestException',
't3lib_error_http_ForbiddenException' => '\\TYPO3\\CMS\\Core\\Error\\Http\\ForbiddenException',
't3lib_error_http_PageNotFoundException' => '\\TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException',
't3lib_error_http_ServiceUnavailableException' => '\\TYPO3\\CMS\\Core\\Error\\Http\\ServiceUnavailableException',
't3lib_error_http_StatusException' => '\\TYPO3\\CMS\\Core\\Error\\Http\\StatusException',
't3lib_error_http_UnauthorizedException' => '\\TYPO3\\CMS\\Core\\Error\\Http\\UnauthorizedException',
't3lib_error_ProductionExceptionHandler' => '\\TYPO3\\CMS\\Core\\Error\\ProductionExceptionHandler',
't3lib_exception' => '\\TYPO3\\CMS\\Core\\Exception',
't3lib_extMgm' => '\\TYPO3\\CMS\\Core\\Utility\\ExtensionManagementUtility',
't3lib_formprotection_Abstract' => '\\TYPO3\\CMS\\Core\\FormProtection\\AbstractFormProtection',
't3lib_formprotection_BackendFormProtection' => '\\TYPO3\\CMS\\Core\\FormProtection\\BackendFormProtection',
't3lib_formprotection_DisabledFormProtection' => '\\TYPO3\\CMS\\Core\\FormProtection\\DisabledFormProtection',
't3lib_formprotection_InvalidTokenException' => '\\TYPO3\\CMS\\Core\\FormProtection\\Exception',
't3lib_formprotection_Factory' => '\\TYPO3\\CMS\\Core\\FormProtection\\FormProtectionFactory',
't3lib_formprotection_InstallToolFormProtection' => '\\TYPO3\\CMS\\Core\\FormProtection\\InstallToolFormProtection',
't3lib_frontendedit' => '\\TYPO3\\CMS\\Core\\FrontendEditing\\FrontendEditingController',
't3lib_parsehtml' => '\\TYPO3\\CMS\\Core\\Html\\HtmlParser',
't3lib_parsehtml_proc' => '\\TYPO3\\CMS\\Core\\Html\\RteHtmlParser',
'TYPO3AJAX' => '\\TYPO3\\CMS\\Core\\Http\\AjaxRequestHandler',
't3lib_http_Request' => '\\TYPO3\\CMS\\Core\\Http\\HttpRequest',
't3lib_http_observer_Download' => '\\TYPO3\\CMS\\Core\\Http\\Observer\\Download',
't3lib_stdGraphic' => '\\TYPO3\\CMS\\Core\\Imaging\\GraphicalFunctions',
't3lib_admin' => '\\TYPO3\\CMS\\Core\\Integrity\\DatabaseIntegrityCheck',
't3lib_l10n_exception_FileNotFound' => '\\TYPO3\\CMS\\Core\\Localization\\Exception\\FileNotFoundException',
't3lib_l10n_exception_InvalidParser' => '\\TYPO3\\CMS\\Core\\Localization\\Exception\\InvalidParserException',
't3lib_l10n_exception_InvalidXmlFile' => '\\TYPO3\\CMS\\Core\\Localization\\Exception\\InvalidXmlFileException',
't3lib_l10n_Store' => '\\TYPO3\\CMS\\Core\\Localization\\LanguageStore',
't3lib_l10n_Locales' => '\\TYPO3\\CMS\\Core\\Localization\\Locales',
't3lib_l10n_Factory' => '\\TYPO3\\CMS\\Core\\Localization\\LocalizationFactory',
't3lib_l10n_parser_AbstractXml' => '\\TYPO3\\CMS\\Core\\Localization\\Parser\\AbstractXmlParser',
't3lib_l10n_parser' => '\\TYPO3\\CMS\\Core\\Localization\\Parser\\LocalizationParserInterface',
't3lib_l10n_parser_Llphp' => '\\TYPO3\\CMS\\Core\\Localization\\Parser\\LocallangArrayParser',
't3lib_l10n_parser_Llxml' => '\\TYPO3\\CMS\\Core\\Localization\\Parser\\LocallangXmlParser',
't3lib_l10n_parser_Xliff' => '\\TYPO3\\CMS\\Core\\Localization\\Parser\\XliffParser',
't3lib_lock' => '\\TYPO3\\CMS\\Core\\Locking\\Locker',
't3lib_mail_Mailer' => '\\TYPO3\\CMS\\Core\\Mail\\Mailer',
't3lib_mail_MailerAdapter' => '\\TYPO3\\CMS\\Core\\Mail\\MailerAdapterInterface',
't3lib_mail_Message' => '\\TYPO3\\CMS\\Core\\Mail\\MailMessage',
't3lib_mail_MboxTransport' => '\\TYPO3\\CMS\\Core\\Mail\\MboxTransport',
't3lib_mail_Rfc822AddressesParser' => '\\TYPO3\\CMS\\Core\\Mail\\Rfc822AddressesParser',
't3lib_mail_SwiftMailerAdapter' => '\\TYPO3\\CMS\\Core\\Mail\\SwiftMailerAdapter',
't3lib_message_AbstractMessage' => '\\TYPO3\\CMS\\Core\\Messaging\\AbstractMessage',
't3lib_message_AbstractStandaloneMessage' => '\\TYPO3\\CMS\\Core\\Messaging\\AbstractStandaloneMessage',
't3lib_message_ErrorpageMessage' => '\\TYPO3\\CMS\\Core\\Messaging\\ErrorpageMessage',
't3lib_FlashMessage' => '\\TYPO3\\CMS\\Core\\Messaging\\FlashMessage',
't3lib_FlashMessageQueue' => '\\TYPO3\\CMS\\Core\\Messaging\\FlashMessageQueue',
't3lib_PageRenderer' => '\\TYPO3\\CMS\\Core\\Page\\PageRenderer',
't3lib_Registry' => '\\TYPO3\\CMS\\Core\\Registry',
't3lib_Compressor' => '\\TYPO3\\CMS\\Core\\Resource\\ResourceCompressor',
't3lib_svbase' => '\\TYPO3\\CMS\\Core\\Service\\AbstractService',
't3lib_Singleton' => '\\TYPO3\\CMS\\Core\\SingletonInterface',
't3lib_TimeTrackNull' => '\\TYPO3\\CMS\\Core\\TimeTracker\\NullTimeTracker',
't3lib_timeTrack' => '\\TYPO3\\CMS\\Core\\TimeTracker\\TimeTracker',
't3lib_tree_Tca_AbstractTcaTreeDataProvider' => '\\TYPO3\\CMS\\Core\\Tree\\TableConfiguration\\AbstractTableConfigurationTreeDataProvider',
't3lib_tree_Tca_DatabaseTreeDataProvider' => '\\TYPO3\\CMS\\Core\\Tree\\TableConfiguration\\DatabaseTreeDataProvider',
't3lib_tree_Tca_DatabaseNode' => '\\TYPO3\\CMS\\Core\\Tree\\TableConfiguration\\DatabaseTreeNode',
't3lib_tree_Tca_ExtJsArrayRenderer' => '\\TYPO3\\CMS\\Core\\Tree\\TableConfiguration\\ExtJsArrayTreeRenderer',
't3lib_tree_Tca_TcaTree' => '\\TYPO3\\CMS\\Core\\Tree\\TableConfiguration\\TableConfigurationTree',
't3lib_tree_Tca_DataProviderFactory' => '\\TYPO3\\CMS\\Core\\Tree\\TableConfiguration\\TreeDataProviderFactory',
't3lib_tsStyleConfig' => '\\TYPO3\\CMS\\Core\\TypoScript\\ConfigurationForm',
't3lib_tsparser_ext' => '\\TYPO3\\CMS\\Core\\TypoScript\\ExtendedTemplateService',
't3lib_TSparser' => '\\TYPO3\\CMS\\Core\\TypoScript\\Parser\\TypoScriptParser',
't3lib_TStemplate' => '\\TYPO3\\CMS\\Core\\TypoScript\\TemplateService',
't3lib_utility_Array' => '\\TYPO3\\CMS\\Core\\Utility\\ArrayUtility',
't3lib_utility_Client' => '\\TYPO3\\CMS\\Core\\Utility\\ClientUtility',
't3lib_exec' => '\\TYPO3\\CMS\\Core\\Utility\\CommandUtility',
't3lib_utility_Command' => '\\TYPO3\\CMS\\Core\\Utility\\CommandUtility',
't3lib_utility_Debug' => '\\TYPO3\\CMS\\Core\\Utility\\DebugUtility',
't3lib_diff' => '\\TYPO3\\CMS\\Core\\Utility\\DiffUtility',
't3lib_basicFileFunctions' => '\\TYPO3\\CMS\\Core\\Utility\\File\\BasicFileUtility',
't3lib_extFileFunctions' => '\\TYPO3\\CMS\\Core\\Utility\\File\\ExtendedFileUtility',
't3lib_extFileFunctions_processDataHook' => '\\TYPO3\\CMS\\Core\\Utility\\File\\ExtendedFileUtilityProcessDataHookInterface',
't3lib_div' => '\\TYPO3\\CMS\\Core\\Utility\\GeneralUtility',
't3lib_utility_Http' => '\\TYPO3\\CMS\\Core\\Utility\\HttpUtility',
't3lib_utility_Mail' => '\\TYPO3\\CMS\\Core\\Utility\\MailUtility',
't3lib_utility_Math' => '\\TYPO3\\CMS\\Core\\Utility\\MathUtility',
't3lib_utility_Monitor' => '\\TYPO3\\CMS\\Core\\Utility\\MonitorUtility',
't3lib_utility_Path' => '\\TYPO3\\CMS\\Core\\Utility\\PathUtility',
't3lib_utility_PhpOptions' => '\\TYPO3\\CMS\\Core\\Utility\\PhpOptionsUtility',
't3lib_utility_VersionNumber' => '\\TYPO3\\CMS\\Core\\Utility\\VersionNumberUtility',
'SC_view_help' => '\\TYPO3\\CMS\\Cshmanual\\Controller\\HelpModuleController',
'tx_cssstyledcontent_pi1' => '\\TYPO3\\CMS\\CssStyledContent\\Controller\\CssStyledContentController',
'ux_t3lib_DB' => '\\TYPO3\\CMS\\Dbal\\Database\\DatabaseConnection',
'ux_t3lib_sqlparser' => '\\TYPO3\\CMS\\Dbal\\Database\\SqlParser',
'tx_dbal_module1' => '\\TYPO3\\CMS\\Dbal\\Controller\\ModuleController',
'tx_dbal_querycache' => '\\TYPO3\\CMS\\Dbal\\QueryCache',
'ux_localRecordList' => '\\TYPO3\\CMS\\Dbal\\RecordList\\DatabaseRecordList',
'Tx_Extbase_Command_HelpCommandController' => '\\TYPO3\\CMS\\Extbase\\Command\\HelpCommandController',
'Tx_Extbase_Configuration_AbstractConfigurationManager' => '\\TYPO3\\CMS\\Extbase\\Configuration\\AbstractConfigurationManager',
'Tx_Extbase_Configuration_BackendConfigurationManager' => '\\TYPO3\\CMS\\Extbase\\Configuration\\BackendConfigurationManager',
'Tx_Extbase_Configuration_ConfigurationManager' => '\\TYPO3\\CMS\\Extbase\\Configuration\\ConfigurationManager',
'Tx_Extbase_Configuration_ConfigurationManagerInterface' => '\\TYPO3\\CMS\\Extbase\\Configuration\\ConfigurationManagerInterface',
'Tx_Extbase_Configuration_Exception' => '\\TYPO3\\CMS\\Extbase\\Configuration\\Exception',
'Tx_Extbase_Configuration_Exception_ContainerIsLocked' => '\\TYPO3\\CMS\\Extbase\\Configuration\\Exception\\ContainerIsLockedException',
'Tx_Extbase_Configuration_Exception_InvalidConfigurationType' => '\\TYPO3\\CMS\\Extbase\\Configuration\\Exception\\InvalidConfigurationTypeException',
'Tx_Extbase_Configuration_Exception_NoSuchFile' => '\\TYPO3\\CMS\\Extbase\\Configuration\\Exception\\NoSuchFileException',
'Tx_Extbase_Configuration_Exception_NoSuchOption' => '\\TYPO3\\CMS\\Extbase\\Configuration\\Exception\\NoSuchOptionException',
'Tx_Extbase_Configuration_Exception_ParseError' => '\\TYPO3\\CMS\\Extbase\\Configuration\\Exception\\ParseErrorException',
'Tx_Extbase_Configuration_FrontendConfigurationManager' => '\\TYPO3\\CMS\\Extbase\\Configuration\\FrontendConfigurationManager',
'Tx_Extbase_Core_Bootstrap' => '\\TYPO3\\CMS\\Extbase\\Core\\Bootstrap',
'Tx_Extbase_Core_BootstrapInterface' => '\\TYPO3\\CMS\\Extbase\\Core\\BootstrapInterface',
'Tx_Extbase_Domain_Model_AbstractFileCollection' => '\\TYPO3\\CMS\\Extbase\\Domain\\Model\\AbstractFileCollection',
'Tx_Extbase_Domain_Model_AbstractFileFolder' => '\\TYPO3\\CMS\\Extbase\\Domain\\Model\\AbstractFileFolder',
'Tx_Extbase_Domain_Model_BackendUser' => '\\TYPO3\\CMS\\Extbase\\Domain\\Model\\BackendUser',
'Tx_Extbase_Domain_Model_BackendUserGroup' => '\\TYPO3\\CMS\\Extbase\\Domain\\Model\\BackendUserGroup',
'Tx_Extbase_Domain_Model_Category' => '\\TYPO3\\CMS\\Extbase\\Domain\\Model\\Category',
'Tx_Extbase_Domain_Model_File' => '\\TYPO3\\CMS\\Extbase\\Domain\\Model\\File',
'Tx_Extbase_Domain_Model_FileMount' => '\\TYPO3\\CMS\\Extbase\\Domain\\Model\\FileMount',
'Tx_Extbase_Domain_Model_FileReference' => '\\TYPO3\\CMS\\Extbase\\Domain\\Model\\FileReference',
'Tx_Extbase_Domain_Model_Folder' => '\\TYPO3\\CMS\\Extbase\\Domain\\Model\\Folder',
'Tx_Extbase_Domain_Model_FolderBasedFileCollection' => '\\TYPO3\\CMS\\Extbase\\Domain\\Model\\FolderBasedFileCollection',
'Tx_Extbase_Domain_Model_FrontendUser' => '\\TYPO3\\CMS\\Extbase\\Domain\\Model\\FrontendUser',
'Tx_Extbase_Domain_Model_FrontendUserGroup' => '\\TYPO3\\CMS\\Extbase\\Domain\\Model\\FrontendUserGroup',
'Tx_Extbase_Domain_Model_StaticFileCollection' => '\\TYPO3\\CMS\\Extbase\\Domain\\Model\\StaticFileCollection',
'Tx_Extbase_Domain_Repository_BackendUserRepository' => '\\TYPO3\\CMS\\Extbase\\Domain\\Repository\\BackendUserGroupRepository',
'Tx_Extbase_Domain_Repository_BackendUserGroupRepository' => '\\TYPO3\\CMS\\Extbase\\Domain\\Repository\\BackendUserGroupRepository',
'Tx_Extbase_Domain_Repository_CategoryRepository' => '\\TYPO3\\CMS\\Extbase\\Domain\\Repository\\CategoryRepository',
'Tx_Extbase_Domain_Repository_FileMountRepository' => '\\TYPO3\\CMS\\Extbase\\Domain\\Repository\\FileMountRepository',
'Tx_Extbase_Domain_Repository_FrontendUserGroupRepository' => '\\TYPO3\\CMS\\Extbase\\Domain\\Repository\\FrontendUserGroupRepository',
'Tx_Extbase_Domain_Repository_FrontendUserRepository' => '\\TYPO3\\CMS\\Extbase\\Domain\\Repository\\FrontendUserRepository',
'Tx_Extbase_DomainObject_AbstractDomainObject' => '\\TYPO3\\CMS\\Extbase\\DomainObject\\AbstractDomainObject',
'Tx_Extbase_DomainObject_AbstractEntity' => '\\TYPO3\\CMS\\Extbase\\DomainObject\\AbstractEntity',
'Tx_Extbase_DomainObject_AbstractValueObject' => '\\TYPO3\\CMS\\Extbase\\DomainObject\\AbstractValueObject',
'Tx_Extbase_DomainObject_DomainObjectInterface' => '\\TYPO3\\CMS\\Extbase\\DomainObject\\DomainObjectInterface',
'Tx_Extbase_Error_Error' => '\\TYPO3\\CMS\\Extbase\\Error\\Error',
'Tx_Extbase_Error_Message' => '\\TYPO3\\CMS\\Extbase\\Error\\Message',
'Tx_Extbase_Error_Notice' => '\\TYPO3\\CMS\\Extbase\\Error\\Notice',
'Tx_Extbase_Error_Result' => '\\TYPO3\\CMS\\Extbase\\Error\\Result',
'Tx_Extbase_Error_Warning' => '\\TYPO3\\CMS\\Extbase\\Error\\Warning',
'Tx_Extbase_Exception' => '\\TYPO3\\CMS\\Extbase\\Exception',
'Tx_Extbase_MVC_CLI_Command' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Cli\\Command',
'Tx_Extbase_MVC_CLI_CommandArgumentDefinition' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Cli\\CommandArgumentDefinition',
'Tx_Extbase_MVC_CLI_CommandManager' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Cli\\CommandManager',
'Tx_Extbase_MVC_CLI_Request' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Cli\\Request',
'Tx_Extbase_MVC_CLI_RequestBuilder' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Cli\\RequestBuilder',
'Tx_Extbase_MVC_CLI_RequestHandler' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Cli\\RequestHandler',
'Tx_Extbase_MVC_CLI_Response' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Cli\\Response',
'Tx_Extbase_MVC_Controller_AbstractController' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Controller\\AbstractController',
'Tx_Extbase_MVC_Controller_ActionController' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Controller\\ActionController',
'Tx_Extbase_MVC_Controller_Argument' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Controller\\Argument',
'Tx_Extbase_MVC_Controller_ArgumentError' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Controller\\ArgumentError',
'Tx_Extbase_MVC_Controller_Arguments' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Controller\\Arguments',
'Tx_Extbase_MVC_Controller_ArgumentsValidator' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Controller\\ArgumentsValidator',
'Tx_Extbase_MVC_Controller_CommandController' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Controller\\CommandController',
'Tx_Extbase_MVC_Controller_CommandControllerInterface' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Controller\\CommandControllerInterface',
'Tx_Extbase_MVC_Controller_ControllerContext' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Controller\\ControllerContext',
'Tx_Extbase_MVC_Controller_ControllerInterface' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Controller\\ControllerInterface',
'Tx_Extbase_MVC_Controller_Exception_RequiredArgumentMissingException' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Controller\\Exception\\RequiredArgumentMissingException',
'Tx_Extbase_MVC_Controller_FlashMessages' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Controller\\FlashMessageContainer',
'Tx_Extbase_MVC_Controller_MvcPropertyMappingConfiguration' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Controller\\MvcPropertyMappingConfiguration',
'Tx_Extbase_MVC_Dispatcher' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Dispatcher',
'Tx_Extbase_MVC_Exception' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Exception',
'Tx_Extbase_MVC_Exception_AmbiguousCommandIdentifier' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Exception\\AmbiguousCommandIdentifierException',
'Tx_Extbase_MVC_Exception_Command' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Exception\\CommandException',
'Tx_Extbase_MVC_Exception_InfiniteLoop' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Exception\\InfiniteLoopException',
'Tx_Extbase_MVC_Exception_InvalidActionName' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Exception\\InvalidActionNameException',
'Tx_Extbase_MVC_Exception_InvalidArgumentMixing' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Exception\\InvalidArgumentMixingException',
'Tx_Extbase_MVC_Exception_InvalidArgumentName' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Exception\\InvalidArgumentNameException',
'Tx_Extbase_MVC_Exception_InvalidArgumentType' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Exception\\InvalidArgumentTypeException',
'Tx_Extbase_MVC_Exception_InvalidArgumentValue' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Exception\\InvalidArgumentValueException',
'Tx_Extbase_MVC_Exception_InvalidCommandIdentifier' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Exception\\InvalidCommandIdentifierException',
'Tx_Extbase_MVC_Exception_InvalidController' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Exception\\InvalidControllerException',
'Tx_Extbase_MVC_Exception_InvalidControllerName' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Exception\\InvalidControllerNameException',
'Tx_Extbase_MVC_Exception_InvalidExtensionName' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Exception\\InvalidExtensionNameException',
'Tx_Extbase_MVC_Exception_InvalidMarker' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Exception\\InvalidMarkerException',
'Tx_Extbase_MVC_Exception_InvalidOrNoRequestHash' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Exception\\InvalidOrNoRequestHashException',
'Tx_Extbase_MVC_Exception_InvalidRequestMethod' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Exception\\InvalidRequestMethodException',
'Tx_Extbase_MVC_Exception_InvalidRequestType' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Exception\\InvalidRequestTypeException',
'Tx_Extbase_MVC_Exception_InvalidTemplateResource' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Exception\\InvalidTemplateResourceException',
'Tx_Extbase_MVC_Exception_InvalidUriPattern' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Exception\\InvalidUriPatternException',
'Tx_Extbase_MVC_Exception_InvalidViewHelper' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Exception\\InvalidViewHelperException',
'Tx_Extbase_MVC_Exception_NoSuchAction' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Exception\\NoSuchActionException',
'Tx_Extbase_MVC_Exception_NoSuchArgument' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Exception\\NoSuchArgumentException',
'Tx_Extbase_MVC_Exception_NoSuchCommand' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Exception\\NoSuchCommandException',
'Tx_Extbase_MVC_Exception_NoSuchController' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Exception\\NoSuchControllerException',
'Tx_Extbase_MVC_Exception_RequiredArgumentMissing' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Exception\\RequiredArgumentMissingException',
'Tx_Extbase_MVC_Exception_StopAction' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Exception\\StopActionException',
'Tx_Extbase_MVC_Exception_UnsupportedRequestType' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Exception\\UnsupportedRequestTypeException',
'Tx_Extbase_MVC_Request' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Request',
'Tx_Extbase_MVC_RequestHandlerInterface' => '\\TYPO3\\CMS\\Extbase\\Mvc\\RequestHandlerInterface',
'Tx_Extbase_MVC_RequestHandlerResolver' => '\\TYPO3\\CMS\\Extbase\\Mvc\\RequestHandlerResolver',
'Tx_Extbase_MVC_RequestInterface' => '\\TYPO3\\CMS\\Extbase\\Mvc\\RequestInterface',
'Tx_Extbase_MVC_Response' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Response',
'Tx_Extbase_MVC_ResponseInterface' => '\\TYPO3\\CMS\\Extbase\\Mvc\\ResponseInterface',
'Tx_Extbase_MVC_View_AbstractView' => '\\TYPO3\\CMS\\Extbase\\Mvc\\View\\AbstractView',
'Tx_Extbase_MVC_View_EmptyView' => '\\TYPO3\\CMS\\Extbase\\Mvc\\View\\EmptyView',
'Tx_Extbase_MVC_View_NotFoundView' => '\\TYPO3\\CMS\\Extbase\\Mvc\\View\\NotFoundView',
'Tx_Extbase_MVC_View_ViewInterface' => '\\TYPO3\\CMS\\Extbase\\Mvc\\View\\ViewInterface',
'Tx_Extbase_MVC_Web_AbstractRequestHandler' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Web\\AbstractRequestHandler',
'Tx_Extbase_MVC_Web_BackendRequestHandler' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Web\\BackendRequestHandler',
'Tx_Extbase_MVC_Web_FrontendRequestHandler' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Web\\FrontendRequestHandler',
'Tx_Extbase_MVC_Web_Request' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Web\\Request',
'Tx_Extbase_MVC_Web_RequestBuilder' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Web\\RequestBuilder',
'Tx_Extbase_MVC_Web_Response' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Web\\Response',
'Tx_Extbase_MVC_Web_Routing_UriBuilder' => '\\TYPO3\\CMS\\Extbase\\Mvc\\Web\\Routing\\UriBuilder',
'Tx_Extbase_Object_Container_ClassInfo' => '\\TYPO3\\CMS\\Extbase\\Object\\Container\\ClassInfo',
'Tx_Extbase_Object_Container_ClassInfoCache' => '\\TYPO3\\CMS\\Extbase\\Object\\Container\\ClassInfoCache',
'Tx_Extbase_Object_Container_ClassInfoFactory' => '\\TYPO3\\CMS\\Extbase\\Object\\Container\\ClassInfoFactory',
'Tx_Extbase_Object_Container_Container' => '\\TYPO3\\CMS\\Extbase\\Object\\Container\\Container',
'Tx_Extbase_Object_Container_Exception_CannotInitializeCacheException' => '\\TYPO3\\CMS\\Extbase\\Object\\Container\\Exception\\CannotInitializeCacheException',
'Tx_Extbase_Object_Container_Exception_TooManyRecursionLevelsException' => '\\TYPO3\\CMS\\Extbase\\Object\\Container\\Exception\\TooManyRecursionLevelsException',
'Tx_Extbase_Object_Container_Exception_UnknownObjectException' => '\\TYPO3\\CMS\\Extbase\\Object\\Container\\Exception\\UnknownObjectException',
'Tx_Extbase_Object_Exception' => '\\TYPO3\\CMS\\Extbase\\Object\\Exception',
'Tx_Extbase_Object_Exception_CannotBuildObject' => '\\TYPO3\\CMS\\Extbase\\Object\\Exception\\CannotBuildObjectException',
'Tx_Extbase_Object_Exception_CannotReconstituteObject' => '\\TYPO3\\CMS\\Extbase\\Object\\Exception\\CannotReconstituteObjectException',
'Tx_Extbase_Object_Exception_WrongScope' => '\\TYPO3\\CMS\\Extbase\\Object\\Exception\\WrongScopeException',
'Tx_Extbase_Object_InvalidClass' => '\\TYPO3\\CMS\\Extbase\\Object\\InvalidClassException',
'Tx_Extbase_Object_InvalidObjectConfiguration' => '\\TYPO3\\CMS\\Extbase\\Object\\InvalidObjectConfigurationException',
'Tx_Extbase_Object_InvalidObject' => '\\TYPO3\\CMS\\Extbase\\Object\\InvalidObjectException',
'Tx_Extbase_Object_ObjectAlreadyRegistered' => '\\TYPO3\\CMS\\Extbase\\Object\\ObjectAlreadyRegisteredException',
'Tx_Extbase_Object_ObjectManager' => '\\TYPO3\\CMS\\Extbase\\Object\\ObjectManager',
'Tx_Extbase_Object_ObjectManagerInterface' => '\\TYPO3\\CMS\\Extbase\\Object\\ObjectManagerInterface',
'Tx_Extbase_Object_UnknownClass' => '\\TYPO3\\CMS\\Extbase\\Object\\UnknownClassException',
'Tx_Extbase_Object_UnknownInterface' => '\\TYPO3\\CMS\\Extbase\\Object\\UnknownInterfaceException',
'Tx_Extbase_Object_UnresolvedDependencies' => '\\TYPO3\\CMS\\Extbase\\Object\\UnresolvedDependenciesException',
'Tx_Extbase_Persistence_Backend' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Backend',
'Tx_Extbase_Persistence_BackendInterface' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\BackendInterface',
'Tx_Extbase_Persistence_Exception' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Exception',
'Tx_Extbase_Persistence_Exception_CleanStateNotMemorized' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Exception\\CleanStateNotMemorizedException',
'Tx_Extbase_Persistence_Exception_IllegalObjectType' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Exception\\IllegalObjectTypeException',
'Tx_Extbase_Persistence_Exception_InvalidClass' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Exception\\InvalidClassException',
'Tx_Extbase_Persistence_Exception_InvalidNumberOfConstraints' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Exception\\InvalidNumberOfConstraintsException',
'Tx_Extbase_Persistence_Exception_InvalidPropertyType' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Exception\\InvalidPropertyTypeException',
'Tx_Extbase_Persistence_Exception_MissingBackend' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Exception\\MissingBackendException',
'Tx_Extbase_Persistence_Exception_RepositoryException' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Exception\\RepositoryException',
'Tx_Extbase_Persistence_Exception_TooDirty' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Exception\\TooDirtyException',
'Tx_Extbase_Persistence_Exception_UnexpectedTypeException' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Exception\\UnexpectedTypeException',
'Tx_Extbase_Persistence_Exception_UnknownObject' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Exception\\UnknownObjectException',
'Tx_Extbase_Persistence_Exception_UnsupportedMethod' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Exception\\UnsupportedMethodException',
'Tx_Extbase_Persistence_Exception_UnsupportedOrder' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Exception\\UnsupportedOrderException',
'Tx_Extbase_Persistence_Exception_UnsupportedRelation' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Exception\\UnsupportedRelationException',
'Tx_Extbase_Persistence_Generic_Exception_InconsistentQuerySettings' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Exception\\InconsistentQuerySettingsException',
'Tx_Extbase_Persistence_IdentityMap' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\IdentityMap',
'Tx_Extbase_Persistence_LazyLoadingProxy' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\LazyLoadingProxy',
'Tx_Extbase_Persistence_LazyObjectStorage' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\LazyObjectStorage',
'Tx_Extbase_Persistence_LoadingStrategyInterface' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\LoadingStrategyInterface',
'Tx_Extbase_Persistence_Mapper_ColumnMap' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Mapper\\ColumnMap',
'Tx_Extbase_Persistence_Mapper_DataMap' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Mapper\\DataMap',
'Tx_Extbase_Persistence_Mapper_DataMapFactory' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Mapper\\DataMapFactory',
'Tx_Extbase_Persistence_Mapper_DataMapper' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Mapper\\DataMapper',
'Tx_Extbase_Persistence_ObjectMonitoringInterface' => '\\TYPO3\\CMS\\Extbase\\Persistence\\ObjectMonitoringInterface',
'Tx_Extbase_Persistence_ObjectStorage' => '\\TYPO3\\CMS\\Extbase\\Persistence\\ObjectStorage',
'Tx_Extbase_Persistence_Manager' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\PersistenceManager',
'Tx_Extbase_Persistence_PersistenceManagerInterface' => '\\TYPO3\\CMS\\Extbase\\Persistence\\PersistenceManagerInterface',
'Tx_Extbase_Persistence_ManagerInterface' => '\\TYPO3\\CMS\\Extbase\\Persistence\\PersistenceManagerInterface',
'Tx_Extbase_Persistence_PropertyType' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\PropertyType',
'Tx_Extbase_Persistence_QOM_AndInterface' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\AndInterface',
'Tx_Extbase_Persistence_QOM_BindVariableValue' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\BindVariableValue',
'Tx_Extbase_Persistence_QOM_BindVariableValueInterface' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\BindVariableValueInterface',
'Tx_Extbase_Persistence_QOM_Comparison' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\Comparison',
'Tx_Extbase_Persistence_QOM_ComparisonInterface' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\ComparisonInterface',
'Tx_Extbase_Persistence_QOM_ConstraintInterface' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\ConstraintInterface',
'Tx_Extbase_Persistence_QOM_DynamicOperand' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\DynamicOperand',
'Tx_Extbase_Persistence_QOM_DynamicOperandInterface' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\DynamicOperandInterface',
'Tx_Extbase_Persistence_QOM_EquiJoinCondition' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\EquiJoinCondition',
'Tx_Extbase_Persistence_QOM_EquiJoinConditionInterface' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\EquiJoinConditionInterface',
'Tx_Extbase_Persistence_QOM_Join' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\Join',
'Tx_Extbase_Persistence_QOM_JoinConditionInterface' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\JoinConditionInterface',
'Tx_Extbase_Persistence_QOM_JoinInterface' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\JoinInterface',
'Tx_Extbase_Persistence_QOM_LogicalAnd' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\LogicalAnd',
'Tx_Extbase_Persistence_QOM_LogicalNot' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\LogicalNot',
'Tx_Extbase_Persistence_QOM_LogicalOr' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\LogicalOr',
'Tx_Extbase_Persistence_QOM_LowerCase' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\LowerCase',
'Tx_Extbase_Persistence_QOM_LowerCaseInterface' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\LowerCaseInterface',
'Tx_Extbase_Persistence_QOM_NotInterface' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\NotInterface',
'Tx_Extbase_Persistence_QOM_Operand' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\Operand',
'Tx_Extbase_Persistence_QOM_OperandInterface' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\OperandInterface',
'Tx_Extbase_Persistence_QOM_Ordering' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\Ordering',
'Tx_Extbase_Persistence_QOM_OrderingInterface' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\OrderingInterface',
'Tx_Extbase_Persistence_QOM_OrInterface' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\OrInterface',
'Tx_Extbase_Persistence_QOM_PropertyValue' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\PropertyValue',
'Tx_Extbase_Persistence_QOM_PropertyValueInterface' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\PropertyValueInterface',
'Tx_Extbase_Persistence_QOM_QueryObjectModelConstantsInterface' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\QueryObjectModelConstantsInterface',
'Tx_Extbase_Persistence_QOM_QueryObjectModelFactory' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\QueryObjectModelFactory',
'Tx_Extbase_Persistence_QOM_QueryObjectModelFactoryInterface' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\QueryObjectModelFactoryInterface',
'Tx_Extbase_Persistence_QOM_Selector' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\Selector',
'Tx_Extbase_Persistence_QOM_SelectorInterface' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\SelectorInterface',
'Tx_Extbase_Persistence_QOM_SourceInterface' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\SourceInterface',
'Tx_Extbase_Persistence_QOM_Statement' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\Statement',
'Tx_Extbase_Persistence_QOM_StaticOperand' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\StaticOperand',
'Tx_Extbase_Persistence_QOM_StaticOperandInterface' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\StaticOperandInterface',
'Tx_Extbase_Persistence_QOM_UpperCase' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\UpperCase',
'Tx_Extbase_Persistence_QOM_UpperCaseInterface' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Qom\\UpperCaseInterface',
'Tx_Extbase_Persistence_Query' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Query',
'Tx_Extbase_Persistence_QueryFactory' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\QueryFactory',
'Tx_Extbase_Persistence_QueryFactoryInterface' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\QueryFactoryInterface',
'Tx_Extbase_Persistence_QueryInterface' => '\\TYPO3\\CMS\\Extbase\\Persistence\\QueryInterface',
'Tx_Extbase_Persistence_QueryResult' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\QueryResult',
'Tx_Extbase_Persistence_QueryResultInterface' => '\\TYPO3\\CMS\\Extbase\\Persistence\\QueryResultInterface',
'Tx_Extbase_Persistence_QuerySettingsInterface' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\QuerySettingsInterface',
'Tx_Extbase_Persistence_Repository' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Repository',
'Tx_Extbase_Persistence_RepositoryInterface' => '\\TYPO3\\CMS\\Extbase\\Persistence\\RepositoryInterface',
'Tx_Extbase_Persistence_Session' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Session',
'Tx_Extbase_Persistence_Storage_BackendInterface' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Storage\\BackendInterface',
'Tx_Extbase_Persistence_Storage_Exception_BadConstraint' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Storage\\Exception\\BadConstraintException',
'Tx_Extbase_Persistence_Storage_Exception_SqlError' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Storage\\Exception\\SqlErrorException',
'Tx_Extbase_Persistence_Storage_Typo3DbBackend' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Storage\\Typo3DbBackend',
'Tx_Extbase_Persistence_Typo3QuerySettings' => '\\TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Typo3QuerySettings',
'Tx_Extbase_Property_Exception' => '\\TYPO3\\CMS\\Extbase\\Property\\Exception',
'Tx_Extbase_Property_Exception_DuplicateObjectException' => '\\TYPO3\\CMS\\Extbase\\Property\\Exception\\DuplicateObjectException',
'Tx_Extbase_Property_Exception_DuplicateTypeConverterException' => '\\TYPO3\\CMS\\Extbase\\Property\\Exception\\DuplicateTypeConverterException',
'Tx_Extbase_Property_Exception_FormatNotSupportedException' => '\\TYPO3\\CMS\\Extbase\\Property\\Exception\\FormatNotSupportedException',
'Tx_Extbase_Property_Exception_InvalidDataTypeException' => '\\TYPO3\\CMS\\Extbase\\Property\\Exception\\InvalidDataTypeException',
'Tx_Extbase_Property_Exception_InvalidFormatException' => '\\TYPO3\\CMS\\Extbase\\Property\\Exception\\InvalidFormatException',
'Tx_Extbase_Property_Exception_InvalidPropertyException' => '\\TYPO3\\CMS\\Extbase\\Property\\Exception\\InvalidPropertyException',
'Tx_Extbase_Property_Exception_InvalidPropertyMappingConfigurationException' => '\\TYPO3\\CMS\\Extbase\\Property\\Exception\\InvalidPropertyMappingConfigurationException',
'Tx_Extbase_Property_Exception_InvalidSource' => '\\TYPO3\\CMS\\Extbase\\Property\\Exception\\InvalidSourceException',
'Tx_Extbase_Property_Exception_InvalidSourceException' => '\\TYPO3\\CMS\\Extbase\\Property\\Exception\\InvalidSourceException',
'Tx_Extbase_Property_Exception_InvalidTarget' => '\\TYPO3\\CMS\\Extbase\\Property\\Exception\\InvalidTargetException',
'Tx_Extbase_Property_Exception_InvalidTargetException' => '\\TYPO3\\CMS\\Extbase\\Property\\Exception\\InvalidTargetException',
'Tx_Extbase_Property_Exception_TargetNotFoundException' => '\\TYPO3\\CMS\\Extbase\\Property\\Exception\\TargetNotFoundException',
'Tx_Extbase_Property_Exception_TypeConverterException' => '\\TYPO3\\CMS\\Extbase\\Property\\Exception\\TypeConverterException',
'Tx_Extbase_Property_Mapper' => '\\TYPO3\\CMS\\Extbase\\Property\\Mapper',
'Tx_Extbase_Property_MappingResults' => '\\TYPO3\\CMS\\Extbase\\Property\\MappingResults',
'Tx_Extbase_Property_PropertyMapper' => '\\TYPO3\\CMS\\Extbase\\Property\\PropertyMapper',
'Tx_Extbase_Property_PropertyMappingConfiguration' => '\\TYPO3\\CMS\\Extbase\\Property\\PropertyMappingConfiguration',
'Tx_Extbase_Property_PropertyMappingConfigurationBuilder' => '\\TYPO3\\CMS\\Extbase\\Property\\PropertyMappingConfigurationBuilder',
'Tx_Extbase_Property_PropertyMappingConfigurationInterface' => '\\TYPO3\\CMS\\Extbase\\Property\\PropertyMappingConfigurationInterface',
'Tx_Extbase_Property_TypeConverter_AbstractFileCollectionConverter' => '\\TYPO3\\CMS\\Extbase\\Property\\TypeConverter\\AbstractFileCollectionConverter',
'Tx_Extbase_Property_TypeConverter_AbstractFileFolderConverter' => '\\TYPO3\\CMS\\Extbase\\Property\\TypeConverter\\AbstractFileFolderConverter',
'Tx_Extbase_Property_TypeConverter_AbstractTypeConverter' => '\\TYPO3\\CMS\\Extbase\\Property\\TypeConverter\\AbstractTypeConverter',
'Tx_Extbase_Property_TypeConverter_ArrayConverter' => '\\TYPO3\\CMS\\Extbase\\Property\\TypeConverter\\ArrayConverter',
'Tx_Extbase_Property_TypeConverter_BooleanConverter' => '\\TYPO3\\CMS\\Extbase\\Property\\TypeConverter\\BooleanConverter',
'Tx_Extbase_Property_TypeConverter_DateTimeConverter' => '\\TYPO3\\CMS\\Extbase\\Property\\TypeConverter\\DateTimeConverter',
'Tx_Extbase_Property_TypeConverter_FileConverter' => '\\TYPO3\\CMS\\Extbase\\Property\\TypeConverter\\FileConverter',
'Tx_Extbase_Property_TypeConverter_FileReferenceConverter' => '\\TYPO3\\CMS\\Extbase\\Property\\TypeConverter\\FileReferenceConverter',
'Tx_Extbase_Property_TypeConverter_FloatConverter' => '\\TYPO3\\CMS\\Extbase\\Property\\TypeConverter\\FloatConverter',
'Tx_Extbase_Property_TypeConverter_FolderBasedFileCollectionConverter' => '\\TYPO3\\CMS\\Extbase\\Property\\TypeConverter\\FolderBasedFileCollectionConverter',
'Tx_Extbase_Property_TypeConverter_FolderConverter' => '\\TYPO3\\CMS\\Extbase\\Property\\TypeConverter\\FolderConverter',
'Tx_Extbase_Property_TypeConverter_IntegerConverter' => '\\TYPO3\\CMS\\Extbase\\Property\\TypeConverter\\IntegerConverter',
'Tx_Extbase_Property_TypeConverter_ObjectStorageConverter' => '\\TYPO3\\CMS\\Extbase\\Property\\TypeConverter\\ObjectStorageConverter',
'Tx_Extbase_Property_TypeConverter_PersistentObjectConverter' => '\\TYPO3\\CMS\\Extbase\\Property\\TypeConverter\\PersistentObjectConverter',
'Tx_Extbase_Property_TypeConverter_StaticFileCollectionConverter' => '\\TYPO3\\CMS\\Extbase\\Property\\TypeConverter\\StaticFileCollectionConverter',
'Tx_Extbase_Property_TypeConverter_StringConverter' => '\\TYPO3\\CMS\\Extbase\\Property\\TypeConverter\\StringConverter',
'Tx_Extbase_Property_TypeConverterInterface' => '\\TYPO3\\CMS\\Extbase\\Property\\TypeConverterInterface',
'Tx_Extbase_Reflection_ClassReflection' => '\\TYPO3\\CMS\\Extbase\\Reflection\\ClassReflection',
'Tx_Extbase_Reflection_ClassSchema' => '\\TYPO3\\CMS\\Extbase\\Reflection\\ClassSchema',
'Tx_Extbase_Reflection_DocCommentParser' => '\\TYPO3\\CMS\\Extbase\\Reflection\\DocCommentParser',
'Tx_Extbase_Reflection_Exception' => '\\TYPO3\\CMS\\Extbase\\Reflection\\Exception',
'Tx_Extbase_Reflection_Exception_InvalidPropertyType' => '\\TYPO3\\CMS\\Extbase\\Reflection\\Exception\\InvalidPropertyTypeException',
'Tx_Extbase_Reflection_Exception_PropertyNotAccessibleException' => '\\TYPO3\\CMS\\Extbase\\Reflection\\Exception\\PropertyNotAccessibleException',
'Tx_Extbase_Reflection_Exception_UnknownClass' => '\\TYPO3\\CMS\\Extbase\\Reflection\\Exception\\UnknownClassException',
'Tx_Extbase_Reflection_MethodReflection' => '\\TYPO3\\CMS\\Extbase\\Reflection\\MethodReflection',
'Tx_Extbase_Reflection_ObjectAccess' => '\\TYPO3\\CMS\\Extbase\\Reflection\\ObjectAccess',
'Tx_Extbase_Reflection_ParameterReflection' => '\\TYPO3\\CMS\\Extbase\\Reflection\\ParameterReflection',
'Tx_Extbase_Reflection_PropertyReflection' => '\\TYPO3\\CMS\\Extbase\\Reflection\\PropertyReflection',
'Tx_Extbase_Reflection_Service' => '\\TYPO3\\CMS\\Extbase\\Reflection\\ReflectionService',
'Tx_Extbase_Scheduler_FieldProvider' => '\\TYPO3\\CMS\\Extbase\\Scheduler\\FieldProvider',
'Tx_Extbase_Scheduler_Task' => '\\TYPO3\\CMS\\Extbase\\Scheduler\\Task',
'Tx_Extbase_Scheduler_TaskExecutor' => '\\TYPO3\\CMS\\Extbase\\Scheduler\\TaskExecutor',
'Tx_Extbase_Security_Channel_RequestHashService' => '\\TYPO3\\CMS\\Extbase\\Security\\Channel\\RequestHashService',
'Tx_Extbase_Security_Cryptography_HashService' => '\\TYPO3\\CMS\\Extbase\\Security\\Cryptography\\HashService',
'Tx_Extbase_Security_Exception' => '\\TYPO3\\CMS\\Extbase\\Security\\Exception',
'Tx_Extbase_Security_Exception_InvalidArgumentForHashGeneration' => '\\TYPO3\\CMS\\Extbase\\Security\\Exception\\InvalidArgumentForHashGenerationException',
'Tx_Extbase_Security_Exception_InvalidArgumentForRequestHashGeneration' => '\\TYPO3\\CMS\\Extbase\\Security\\Exception\\InvalidArgumentForRequestHashGenerationException',
'Tx_Extbase_Security_Exception_InvalidHash' => '\\TYPO3\\CMS\\Extbase\\Security\\Exception\\InvalidHashException',
'Tx_Extbase_Security_Exception_SyntacticallyWrongRequestHash' => '\\TYPO3\\CMS\\Extbase\\Security\\Exception\\SyntacticallyWrongRequestHashException',
'Tx_Extbase_Service_CacheService' => '\\TYPO3\\CMS\\Extbase\\Service\\CacheService',
'Tx_Extbase_Service_ExtensionService' => '\\TYPO3\\CMS\\Extbase\\Service\\ExtensionService',
'Tx_Extbase_Service_FlexFormService' => '\\TYPO3\\CMS\\Extbase\\Service\\FlexFormService',
'Tx_Extbase_Service_TypeHandlingService' => '\\TYPO3\\CMS\\Extbase\\Service\\TypeHandlingService',
'Tx_Extbase_Service_TypoScriptService' => '\\TYPO3\\CMS\\Extbase\\Service\\TypoScriptService',
'Tx_Extbase_SignalSlot_Dispatcher' => '\\TYPO3\\CMS\\Extbase\\SignalSlot\\Dispatcher',
'Tx_Extbase_SignalSlot_Exception_InvalidSlotException' => '\\TYPO3\\CMS\\Extbase\\SignalSlot\\Exception\\InvalidSlotException',
'Tx_Extbase_Tests_Unit_BaseTestCase' => '\\TYPO3\\CMS\\Core\\Tests\\UnitTestCase',
'Tx_Extbase_Utility_Arrays' => '\\TYPO3\\CMS\\Extbase\\Utility\\ArrayUtility',
'Tx_Extbase_Utility_Debugger' => '\\TYPO3\\CMS\\Extbase\\Utility\\DebuggerUtility',
'Tx_Extbase_Utility_ExtbaseRequirementsCheck' => '\\TYPO3\\CMS\\Extbase\\Utility\\ExtbaseRequirementsCheckUtility',
'Tx_Extbase_Utility_Extension' => '\\TYPO3\\CMS\\Extbase\\Utility\\ExtensionUtility',
'Tx_Extbase_Utility_FrontendSimulator' => '\\TYPO3\\CMS\\Extbase\\Utility\\FrontendSimulatorUtility',
'Tx_Extbase_Utility_Localization' => '\\TYPO3\\CMS\\Extbase\\Utility\\LocalizationUtility',
'Tx_Extbase_Validation_Error' => '\\TYPO3\\CMS\\Extbase\\Validation\\Error',
'Tx_Extbase_Validation_Exception' => '\\TYPO3\\CMS\\Extbase\\Validation\\Exception',
'Tx_Extbase_Validation_Exception_InvalidSubject' => '\\TYPO3\\CMS\\Extbase\\Validation\\Exception\\InvalidSubjectException',
'Tx_Extbase_Validation_Exception_InvalidValidationConfiguration' => '\\TYPO3\\CMS\\Extbase\\Validation\\Exception\\InvalidValidationConfigurationException',
'Tx_Extbase_Validation_Exception_InvalidValidationOptions' => '\\TYPO3\\CMS\\Extbase\\Validation\\Exception\\InvalidValidationOptionsException',
'Tx_Extbase_Validation_Exception_NoSuchValidator' => '\\TYPO3\\CMS\\Extbase\\Validation\\Exception\\NoSuchValidatorException',
'Tx_Extbase_Validation_Exception_NoValidatorFound' => '\\TYPO3\\CMS\\Extbase\\Validation\\Exception\\NoValidatorFoundException',
'Tx_Extbase_Validation_PropertyError' => '\\TYPO3\\CMS\\Extbase\\Validation\\PropertyError',
'Tx_Extbase_Validation_Validator_AbstractCompositeValidator' => '\\TYPO3\\CMS\\Extbase\\Validation\\Validator\\AbstractCompositeValidator',
'Tx_Extbase_Validation_Validator_AbstractObjectValidator' => '\\TYPO3\\CMS\\Extbase\\Validation\\Validator\\AbstractObjectValidator',
'Tx_Extbase_Validation_Validator_AbstractValidator' => '\\TYPO3\\CMS\\Extbase\\Validation\\Validator\\AbstractValidator',
'Tx_Extbase_Validation_Validator_AlphanumericValidator' => '\\TYPO3\\CMS\\Extbase\\Validation\\Validator\\AlphanumericValidator',
'Tx_Extbase_Validation_Validator_ConjunctionValidator' => '\\TYPO3\\CMS\\Extbase\\Validation\\Validator\\ConjunctionValidator',
'Tx_Extbase_Validation_Validator_DateTimeValidator' => '\\TYPO3\\CMS\\Extbase\\Validation\\Validator\\DateTimeValidator',
'Tx_Extbase_Validation_Validator_DisjunctionValidator' => '\\TYPO3\\CMS\\Extbase\\Validation\\Validator\\DisjunctionValidator',
'Tx_Extbase_Validation_Validator_EmailAddressValidator' => '\\TYPO3\\CMS\\Extbase\\Validation\\Validator\\EmailAddressValidator',
'Tx_Extbase_Validation_Validator_FloatValidator' => '\\TYPO3\\CMS\\Extbase\\Validation\\Validator\\FloatValidator',
'Tx_Extbase_Validation_Validator_GenericObjectValidator' => '\\TYPO3\\CMS\\Extbase\\Validation\\Validator\\GenericObjectValidator',
'Tx_Extbase_Validation_Validator_IntegerValidator' => '\\TYPO3\\CMS\\Extbase\\Validation\\Validator\\IntegerValidator',
'Tx_Extbase_Validation_Validator_NotEmptyValidator' => '\\TYPO3\\CMS\\Extbase\\Validation\\Validator\\NotEmptyValidator',
'Tx_Extbase_Validation_Validator_NumberRangeValidator' => '\\TYPO3\\CMS\\Extbase\\Validation\\Validator\\NumberRangeValidator',
'Tx_Extbase_Validation_Validator_NumberValidator' => '\\TYPO3\\CMS\\Extbase\\Validation\\Validator\\NumberValidator',
'Tx_Extbase_Validation_Validator_ObjectValidatorInterface' => '\\TYPO3\\CMS\\Extbase\\Validation\\Validator\\ObjectValidatorInterface',
'Tx_Extbase_Validation_Validator_RawValidator' => '\\TYPO3\\CMS\\Extbase\\Validation\\Validator\\RawValidator',
'Tx_Extbase_Validation_Validator_RegularExpressionValidator' => '\\TYPO3\\CMS\\Extbase\\Validation\\Validator\\RegularExpressionValidator',
'Tx_Extbase_Validation_Validator_StringLengthValidator' => '\\TYPO3\\CMS\\Extbase\\Validation\\Validator\\StringLengthValidator',
'Tx_Extbase_Validation_Validator_StringValidator' => '\\TYPO3\\CMS\\Extbase\\Validation\\Validator\\StringValidator',
'Tx_Extbase_Validation_Validator_TextValidator' => '\\TYPO3\\CMS\\Extbase\\Validation\\Validator\\TextValidator',
'Tx_Extbase_Validation_Validator_ValidatorInterface' => '\\TYPO3\\CMS\\Extbase\\Validation\\Validator\\ValidatorInterface',
'Tx_Extbase_Validation_ValidatorResolver' => '\\TYPO3\\CMS\\Extbase\\Validation\\ValidatorResolver',
'tx_em_Tasks_UpdateExtensionList' => '\\TYPO3\\CMS\\Extensionmanager\\Task\\UpdateExtensionListTask',
'tx_extrapagecmoptions' => '\\TYPO3\\CMS\\ExtraPageCmOptions\\ExtraPageContextMenuOptions',
'tx_feedit_editpanel' => '\\TYPO3\\CMS\\Feedit\\FrontendEditPanel',
'tx_felogin_pi1' => '\\TYPO3\\CMS\\Felogin\\Controller\\FrontendLoginController',
'SC_file_list' => '\\TYPO3\\CMS\\Filelist\\Controller\\FileListController',
'fileList' => '\\TYPO3\\CMS\\Filelist\\FileList',
'fileList_editIconHook' => '\\TYPO3\\CMS\\Filelist\\FileListEditIconHookInterface',
'filelistFolderTree' => '\\TYPO3\\CMS\\Filelist\\FileListFolderTree',
'Tx_Fluid_Compatibility_DocbookGeneratorService' => '\\TYPO3\\CMS\\Fluid\\Compatibility\\DocbookGeneratorService',
'Tx_Fluid_Compatibility_TemplateParserBuilder' => '\\TYPO3\\CMS\\Fluid\\Compatibility\\TemplateParserBuilder',
'Tx_Fluid_Core_Compiler_AbstractCompiledTemplate' => '\\TYPO3\\CMS\\Fluid\\Core\\Compiler\\AbstractCompiledTemplate',
'Tx_Fluid_Core_Compiler_TemplateCompiler' => '\\TYPO3\\CMS\\Fluid\\Core\\Compiler\\TemplateCompiler',
'Tx_Fluid_Core_Exception' => '\\TYPO3\\CMS\\Fluid\\Core\\Exception',
'Tx_Fluid_Core_Parser_Configuration' => '\\TYPO3\\CMS\\Fluid\\Core\\Parser\\Configuration',
'Tx_Fluid_Core_Parser_Exception' => '\\TYPO3\\CMS\\Fluid\\Core\\Parser\\Exception',
'Tx_Fluid_Core_Parser_Interceptor_Escape' => '\\TYPO3\\CMS\\Fluid\\Core\\Parser\\Interceptor\\Escape',
'Tx_Fluid_Core_Parser_InterceptorInterface' => '\\TYPO3\\CMS\\Fluid\\Core\\Parser\\InterceptorInterface',
'Tx_Fluid_Core_Parser_ParsedTemplateInterface' => '\\TYPO3\\CMS\\Fluid\\Core\\Parser\\ParsedTemplateInterface',
'Tx_Fluid_Core_Parser_ParsingState' => '\\TYPO3\\CMS\\Fluid\\Core\\Parser\\ParsingState',
'Tx_Fluid_Core_Parser_SyntaxTree_AbstractNode' => '\\TYPO3\\CMS\\Fluid\\Core\\Parser\\SyntaxTree\\AbstractNode',
'Tx_Fluid_Core_Parser_SyntaxTree_ArrayNode' => '\\TYPO3\\CMS\\Fluid\\Core\\Parser\\SyntaxTree\\ArrayNode',
'Tx_Fluid_Core_Parser_SyntaxTree_BooleanNode' => '\\TYPO3\\CMS\\Fluid\\Core\\Parser\\SyntaxTree\\BooleanNode',
'Tx_Fluid_Core_Parser_SyntaxTree_NodeInterface' => '\\TYPO3\\CMS\\Fluid\\Core\\Parser\\SyntaxTree\\NodeInterface',
'Tx_Fluid_Core_Parser_SyntaxTree_ObjectAccessorNode' => '\\TYPO3\\CMS\\Fluid\\Core\\Parser\\SyntaxTree\\ObjectAccessorNode',
'Tx_Fluid_Core_Parser_SyntaxTree_RenderingContextAwareInterface' => '\\TYPO3\\CMS\\Fluid\\Core\\Parser\\SyntaxTree\\RenderingContextAwareInterface',
'Tx_Fluid_Core_Parser_SyntaxTree_RootNode' => '\\TYPO3\\CMS\\Fluid\\Core\\Parser\\SyntaxTree\\RootNode',
'Tx_Fluid_Core_Parser_SyntaxTree_TextNode' => '\\TYPO3\\CMS\\Fluid\\Core\\Parser\\SyntaxTree\\TextNode',
'Tx_Fluid_Core_Parser_SyntaxTree_ViewHelperNode' => '\\TYPO3\\CMS\\Fluid\\Core\\Parser\\SyntaxTree\\ViewHelperNode',
'Tx_Fluid_Core_Parser_TemplateParser' => '\\TYPO3\\CMS\\Fluid\\Core\\Parser\\TemplateParser',
'Tx_Fluid_Core_Rendering_RenderingContext' => '\\TYPO3\\CMS\\Fluid\\Core\\Rendering\\RenderingContext',
'Tx_Fluid_Core_Rendering_RenderingContextInterface' => '\\TYPO3\\CMS\\Fluid\\Core\\Rendering\\RenderingContextInterface',
'Tx_Fluid_Core_ViewHelper_AbstractConditionViewHelper' => '\\TYPO3\\CMS\\Fluid\\Core\\ViewHelper\\AbstractConditionViewHelper',
'Tx_Fluid_Core_ViewHelper_AbstractTagBasedViewHelper' => '\\TYPO3\\CMS\\Fluid\\Core\\ViewHelper\\AbstractTagBasedViewHelper',
'Tx_Fluid_Core_ViewHelper_AbstractViewHelper' => '\\TYPO3\\CMS\\Fluid\\Core\\ViewHelper\\AbstractViewHelper',
'Tx_Fluid_Core_ViewHelper_ArgumentDefinition' => '\\TYPO3\\CMS\\Fluid\\Core\\ViewHelper\\ArgumentDefinition',
'Tx_Fluid_Core_ViewHelper_Arguments' => '\\TYPO3\\CMS\\Fluid\\Core\\ViewHelper\\Arguments',
'Tx_Fluid_Core_ViewHelper_Exception' => '\\TYPO3\\CMS\\Fluid\\Core\\ViewHelper\\Exception',
'Tx_Fluid_Core_ViewHelper_Exception_InvalidVariableException' => '\\TYPO3\\CMS\\Fluid\\Core\\ViewHelper\\Exception\\InvalidVariableException',
'Tx_Fluid_Core_ViewHelper_Exception_RenderingContextNotAccessibleException' => '\\TYPO3\\CMS\\Fluid\\Core\\ViewHelper\\Exception\\RenderingContextNotAccessibleException',
'Tx_Fluid_Core_ViewHelper_Facets_ChildNodeAccessInterface' => '\\TYPO3\\CMS\\Fluid\\Core\\ViewHelper\\Facets\\ChildNodeAccessInterface',
'Tx_Fluid_Core_ViewHelper_Facets_CompilableInterface' => '\\TYPO3\\CMS\\Fluid\\Core\\ViewHelper\\Facets\\CompilableInterface',
'Tx_Fluid_Core_ViewHelper_Facets_PostParseInterface' => '\\TYPO3\\CMS\\Fluid\\Core\\ViewHelper\\Facets\\PostParseInterface',
'Tx_Fluid_Core_ViewHelper_TagBuilder' => '\\TYPO3\\CMS\\Fluid\\Core\\ViewHelper\\TagBuilder',
'Tx_Fluid_Core_ViewHelper_TemplateVariableContainer' => '\\TYPO3\\CMS\\Fluid\\Core\\ViewHelper\\TemplateVariableContainer',
'Tx_Fluid_Core_ViewHelper_ViewHelperInterface' => '\\TYPO3\\CMS\\Fluid\\Core\\ViewHelper\\ViewHelperInterface',
'Tx_Fluid_Core_ViewHelper_ViewHelperVariableContainer' => '\\TYPO3\\CMS\\Fluid\\Core\\ViewHelper\\ViewHelperVariableContainer',
'Tx_Fluid_Core_Widget_AbstractWidgetController' => '\\TYPO3\\CMS\\Fluid\\Core\\Widget\\AbstractWidgetController',
'Tx_Fluid_Core_Widget_AbstractWidgetViewHelper' => '\\TYPO3\\CMS\\Fluid\\Core\\Widget\\AbstractWidgetViewHelper',
'Tx_Fluid_Core_Widget_AjaxWidgetContextHolder' => '\\TYPO3\\CMS\\Fluid\\Core\\Widget\\AjaxWidgetContextHolder',
'Tx_Fluid_Core_Widget_Bootstrap' => '\\TYPO3\\CMS\\Fluid\\Core\\Widget\\Bootstrap',
'Tx_Fluid_Core_Widget_Exception' => '\\TYPO3\\CMS\\Fluid\\Core\\Widget\\Exception',
'Tx_Fluid_Core_Widget_Exception_MissingControllerException' => '\\TYPO3\\CMS\\Fluid\\Core\\Widget\\Exception\\MissingControllerException',
'Tx_Fluid_Core_Widget_Exception_RenderingContextNotFoundException' => '\\TYPO3\\CMS\\Fluid\\Core\\Widget\\Exception\\RenderingContextNotFoundException',
'Tx_Fluid_Core_Widget_Exception_WidgetContextNotFoundException' => '\\TYPO3\\CMS\\Fluid\\Core\\Widget\\Exception\\WidgetContextNotFoundException',
'Tx_Fluid_Core_Widget_Exception_WidgetRequestNotFoundException' => '\\TYPO3\\CMS\\Fluid\\Core\\Widget\\Exception\\WidgetRequestNotFoundException',
'Tx_Fluid_Core_Widget_WidgetContext' => '\\TYPO3\\CMS\\Fluid\\Core\\Widget\\WidgetContext',
'Tx_Fluid_Core_Widget_WidgetRequest' => '\\TYPO3\\CMS\\Fluid\\Core\\Widget\\WidgetRequest',
'Tx_Fluid_Core_Widget_WidgetRequestBuilder' => '\\TYPO3\\CMS\\Fluid\\Core\\Widget\\WidgetRequestBuilder',
'Tx_Fluid_Core_Widget_WidgetRequestHandler' => '\\TYPO3\\CMS\\Fluid\\Core\\Widget\\WidgetRequestHandler',
'Tx_Fluid_Exception' => '\\TYPO3\\CMS\\Fluid\\Exception',
'Tx_Fluid_Fluid' => '\\TYPO3\\CMS\\Fluid\\Fluid',
'Tx_Fluid_Service_DocbookGenerator' => '\\TYPO3\\CMS\\Fluid\\Service\\DocbookGenerator',
'Tx_Fluid_View_AbstractTemplateView' => '\\TYPO3\\CMS\\Fluid\\View\\AbstractTemplateView',
'Tx_Fluid_View_Exception' => '\\TYPO3\\CMS\\Fluid\\View\\Exception',
'Tx_Fluid_View_Exception_InvalidSectionException' => '\\TYPO3\\CMS\\Fluid\\View\\Exception\\InvalidSectionException',
'Tx_Fluid_View_Exception_InvalidTemplateResourceException' => '\\TYPO3\\CMS\\Fluid\\View\\Exception\\InvalidTemplateResourceException',
'Tx_Fluid_View_StandaloneView' => '\\TYPO3\\CMS\\Fluid\\View\\StandaloneView',
'Tx_Fluid_View_TemplateView' => '\\TYPO3\\CMS\\Fluid\\View\\TemplateView',
'Tx_Fluid_ViewHelpers_AliasViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\AliasViewHelper',
'Tx_Fluid_ViewHelpers_BaseViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\BaseViewHelper',
'Tx_Fluid_ViewHelpers_Be_AbstractBackendViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Be\\AbstractBackendViewHelper',
'Tx_Fluid_ViewHelpers_Be_Buttons_CshViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Be\\Buttons\\CshViewHelper',
'Tx_Fluid_ViewHelpers_Be_Buttons_IconViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Be\\Buttons\\IconViewHelper',
'Tx_Fluid_ViewHelpers_Be_Buttons_ShortcutViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Be\\Buttons\\ShortcutViewHelper',
'Tx_Fluid_ViewHelpers_Be_ContainerViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Be\\ContainerViewHelper',
'Tx_Fluid_ViewHelpers_Be_Menus_ActionMenuItemViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Be\\Menus\\ActionMenuItemViewHelper',
'Tx_Fluid_ViewHelpers_Be_Menus_ActionMenuViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Be\\Menus\\ActionMenuViewHelper',
'Tx_Fluid_ViewHelpers_Be_PageInfoViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Be\\PageInfoViewHelper',
'Tx_Fluid_ViewHelpers_Be_PagePathViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Be\\PagePathViewHelper',
'Tx_Fluid_ViewHelpers_Be_Security_IfAuthenticatedViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Be\\Security\\IfAuthenticatedViewHelper',
'Tx_Fluid_ViewHelpers_Be_Security_IfHasRoleViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Be\\Security\\IfHasRoleViewHelper',
'Tx_Fluid_ViewHelpers_Be_TableListViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Be\\TableListViewHelper',
'Tx_Fluid_ViewHelpers_CObjectViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\CObjectViewHelper',
'Tx_Fluid_ViewHelpers_CommentViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\CommentViewHelper',
'Tx_Fluid_ViewHelpers_CountViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\CountViewHelper',
'Tx_Fluid_ViewHelpers_CycleViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\CycleViewHelper',
'Tx_Fluid_ViewHelpers_DebugViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\DebugViewHelper',
'Tx_Fluid_ViewHelpers_ElseViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\ElseViewHelper',
'Tx_Fluid_ViewHelpers_FlashMessagesViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\FlashMessagesViewHelper',
'Tx_Fluid_ViewHelpers_Form_AbstractFormFieldViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Form\\AbstractFormFieldViewHelper',
'Tx_Fluid_ViewHelpers_Form_AbstractFormViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Form\\AbstractFormViewHelper',
'Tx_Fluid_ViewHelpers_Form_CheckboxViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Form\\CheckboxViewHelper',
'Tx_Fluid_ViewHelpers_Form_ErrorsViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Form\\ErrorsViewHelper',
'Tx_Fluid_ViewHelpers_Form_HiddenViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Form\\HiddenViewHelper',
'Tx_Fluid_ViewHelpers_Form_PasswordViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Form\\PasswordViewHelper',
'Tx_Fluid_ViewHelpers_Form_RadioViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Form\\RadioViewHelper',
'Tx_Fluid_ViewHelpers_Form_SelectViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Form\\SelectViewHelper',
'Tx_Fluid_ViewHelpers_Form_SubmitViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Form\\SubmitViewHelper',
'Tx_Fluid_ViewHelpers_Form_TextareaViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Form\\TextareaViewHelper',
'Tx_Fluid_ViewHelpers_Form_TextfieldViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Form\\TextfieldViewHelper',
'Tx_Fluid_ViewHelpers_Form_UploadViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Form\\UploadViewHelper',
'Tx_Fluid_ViewHelpers_Form_ValidationResultsViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Form\\ValidationResultsViewHelper',
'Tx_Fluid_ViewHelpers_Format_AbstractEncodingViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Format\\AbstractEncodingViewHelper',
'Tx_Fluid_ViewHelpers_Format_CdataViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Format\\CdataViewHelper',
'Tx_Fluid_ViewHelpers_Format_CropViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Format\\CropViewHelper',
'Tx_Fluid_ViewHelpers_Format_CurrencyViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Format\\CurrencyViewHelper',
'Tx_Fluid_ViewHelpers_Format_DateViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Format\\DateViewHelper',
'Tx_Fluid_ViewHelpers_Format_HtmlentitiesDecodeViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Format\\HtmlentitiesDecodeViewHelper',
'Tx_Fluid_ViewHelpers_Format_HtmlentitiesViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Format\\HtmlentitiesViewHelper',
'Tx_Fluid_ViewHelpers_Format_HtmlspecialcharsViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Format\\HtmlspecialcharsViewHelper',
'Tx_Fluid_ViewHelpers_Format_HtmlViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Format\\HtmlViewHelper',
'Tx_Fluid_ViewHelpers_Format_Nl2brViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Format\\Nl2brViewHelper',
'Tx_Fluid_ViewHelpers_Format_NumberViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Format\\NumberViewHelper',
'Tx_Fluid_ViewHelpers_Format_PaddingViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Format\\PaddingViewHelper',
'Tx_Fluid_ViewHelpers_Format_PrintfViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Format\\PrintfViewHelper',
'Tx_Fluid_ViewHelpers_Format_RawViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Format\\RawViewHelper',
'Tx_Fluid_ViewHelpers_Format_StripTagsViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Format\\StripTagsViewHelper',
'Tx_Fluid_ViewHelpers_Format_UrlencodeViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Format\\UrlencodeViewHelper',
'Tx_Fluid_ViewHelpers_FormViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\FormViewHelper',
'Tx_Fluid_ViewHelpers_ForViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\ForViewHelper',
'Tx_Fluid_ViewHelpers_GroupedForViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\GroupedForViewHelper',
'Tx_Fluid_ViewHelpers_IfViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\IfViewHelper',
'Tx_Fluid_ViewHelpers_ImageViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\ImageViewHelper',
'Tx_Fluid_ViewHelpers_LayoutViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\LayoutViewHelper',
'Tx_Fluid_ViewHelpers_Link_ActionViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Link\\ActionViewHelper',
'Tx_Fluid_ViewHelpers_Link_EmailViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Link\\EmailViewHelper',
'Tx_Fluid_ViewHelpers_Link_ExternalViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Link\\ExternalViewHelper',
'Tx_Fluid_ViewHelpers_Link_PageViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Link\\PageViewHelper',
'Tx_Fluid_ViewHelpers_RenderChildrenViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\RenderChildrenViewHelper',
'Tx_Fluid_ViewHelpers_RenderViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\RenderViewHelper',
'Tx_Fluid_ViewHelpers_SectionViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\SectionViewHelper',
'Tx_Fluid_ViewHelpers_Security_IfAuthenticatedViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Security\\IfAuthenticatedViewHelper',
'Tx_Fluid_ViewHelpers_Security_IfHasRoleViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Security\\IfHasRoleViewHelper',
'Tx_Fluid_ViewHelpers_ThenViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\ThenViewHelper',
'Tx_Fluid_ViewHelpers_TranslateViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\TranslateViewHelper',
'Tx_Fluid_ViewHelpers_Uri_ActionViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Uri\\ActionViewHelper',
'Tx_Fluid_ViewHelpers_Uri_EmailViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Uri\\EmailViewHelper',
'Tx_Fluid_ViewHelpers_Uri_ExternalViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Uri\\ExternalViewHelper',
'Tx_Fluid_ViewHelpers_Uri_ImageViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Uri\\ImageViewHelper',
'Tx_Fluid_ViewHelpers_Uri_PageViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Uri\\PageViewHelper',
'Tx_Fluid_ViewHelpers_Uri_ResourceViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Uri\\ResourceViewHelper',
'Tx_Fluid_ViewHelpers_Widget_AutocompleteViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Widget\\AutocompleteViewHelper',
'Tx_Fluid_ViewHelpers_Widget_Controller_AutocompleteController' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Widget\\Controller\\AutocompleteController',
'Tx_Fluid_ViewHelpers_Widget_Controller_PaginateController' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Widget\\Controller\\PaginateController',
'Tx_Fluid_ViewHelpers_Widget_LinkViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Widget\\LinkViewHelper',
'Tx_Fluid_ViewHelpers_Widget_PaginateViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Widget\\PaginateViewHelper',
'Tx_Fluid_ViewHelpers_Widget_UriViewHelper' => '\\TYPO3\\CMS\\Fluid\\ViewHelpers\\Widget\\UriViewHelper',
'tx_form_Controller_Form' => '\\TYPO3\\CMS\\Form\\Controller\\FormController',
'tx_form_Controller_Wizard' => '\\TYPO3\\CMS\\Form\\Controller\\WizardController',
'tx_form_Domain_Factory_JsonToTyposcript' => '\\TYPO3\\CMS\\Form\\Domain\\Factory\\JsonToTypoScript',
'tx_form_Domain_Factory_Typoscript' => '\\TYPO3\\CMS\\Form\\Domain\\Factory\\TypoScriptFactory',
'tx_form_Domain_Model_Additional_Abstract' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Additional\\AbstractAdditionalElement',
'tx_form_Domain_Model_Additional_Additional' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Additional\\AdditionalAdditionalElement',
'tx_form_Domain_Model_Additional_Error' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Additional\\ErrorAdditionalElement',
'tx_form_Domain_Model_Additional_Label' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Additional\\LabelAdditionalElement',
'tx_form_Domain_Model_Additional_Legend' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Additional\\LegendAdditionalElement',
'tx_form_Domain_Model_Additional_Mandatory' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Additional\\MandatoryAdditionalElement',
'tx_form_Domain_Model_Attributes_Abstract' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Attribute\\AbstractAttribute',
'tx_form_Domain_Model_Attributes_Accept' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Attribute\\AcceptAttribute',
'tx_form_Domain_Model_Attributes_Acceptcharset' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Attribute\\AcceptCharsetAttribute',
'tx_form_Domain_Model_Attributes_Accesskey' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Attribute\\AccesskeyAttribute',
'tx_form_Domain_Model_Attributes_Action' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Attribute\\ActionAttribute',
'tx_form_Domain_Model_Attributes_Alt' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Attribute\\AltAttribute',
'tx_form_Domain_Model_Attributes_Attributes' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Attribute\\AttributesAttribute',
'tx_form_Domain_Model_Attributes_Checked' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Attribute\\CheckedAttribute',
'tx_form_Domain_Model_Attributes_Class' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Attribute\\ClassAttribute',
'tx_form_Domain_Model_Attributes_Cols' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Attribute\\ColsAttribute',
'tx_form_Domain_Model_Attributes_Dir' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Attribute\\DirAttribute',
'tx_form_Domain_Model_Attributes_Disabled' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Attribute\\DisabledAttribute',
'tx_form_Domain_Model_Attributes_Enctype' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Attribute\\EnctypeAttribute',
'tx_form_Domain_Model_Attributes_Id' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Attribute\\IdAttribute',
'tx_form_Domain_Model_Attributes_Label' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Attribute\\LabelAttribute',
'tx_form_Domain_Model_Attributes_Lang' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Attribute\\LangAttribute',
'tx_form_Domain_Model_Attributes_Maxlength' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Attribute\\MaxlengthAttribute',
'tx_form_Domain_Model_Attributes_Method' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Attribute\\MethodAttribute',
'tx_form_Domain_Model_Attributes_Multiple' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Attribute\\MultipleAttribute',
'tx_form_Domain_Model_Attributes_Name' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Attribute\\NameAttribute',
'tx_form_Domain_Model_Attributes_Readonly' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Attribute\\ReadonlyAttribute',
'tx_form_Domain_Model_Attributes_Rows' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Attribute\\RowsAttribute',
'tx_form_Domain_Model_Attributes_Selected' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Attribute\\SelectedAttribute',
'tx_form_Domain_Model_Attributes_Size' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Attribute\\SizeAttribute',
'tx_form_Domain_Model_Attributes_Src' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Attribute\\SrcAttribute',
'tx_form_Domain_Model_Attributes_Style' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Attribute\\StyleAttribute',
'tx_form_Domain_Model_Attributes_Tabindex' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Attribute\\TabindexAttribute',
'tx_form_Domain_Model_Attributes_Title' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Attribute\\TitleAttribute',
'tx_form_Domain_Model_Attributes_Type' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Attribute\\TypeAttribute',
'tx_form_Domain_Model_Attributes_Value' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Attribute\\ValueAttribute',
'tx_form_Domain_Model_Content' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Content',
'tx_form_Domain_Model_Element_Abstract' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Element\\AbstractElement',
'tx_form_Domain_Model_Element_AbstractPlain' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Element\\AbstractPlainElement',
'tx_form_Domain_Model_Element_Button' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Element\\ButtonElement',
'tx_form_Domain_Model_Element_Checkbox' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Element\\CheckboxElement',
'tx_form_Domain_Model_Element_Checkboxgroup' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Element\\CheckboxGroupElement',
'tx_form_Domain_Model_Element_Container' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Element\\ContainerElement',
'tx_form_Domain_Model_Element_Content' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Element\\ContentElement',
'tx_form_Domain_Model_Element_Fieldset' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Element\\FieldsetElement',
'tx_form_Domain_Model_Element_Fileupload' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Element\\FileuploadElement',
'tx_form_Domain_Model_Element_Header' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Element\\HeaderElement',
'tx_form_Domain_Model_Element_Hidden' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Element\\HiddenElement',
'tx_form_Domain_Model_Element_Imagebutton' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Element\\ImagebuttonElement',
'tx_form_Domain_Model_Element_Optgroup' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Element\\OptgroupElement',
'tx_form_Domain_Model_Element_Option' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Element\\OptionElement',
'tx_form_Domain_Model_Element_Password' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Element\\PasswordElement',
'tx_form_Domain_Model_Element_Radio' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Element\\RadioElement',
'tx_form_Domain_Model_Element_Radiogroup' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Element\\RadioGroupElement',
'tx_form_Domain_Model_Element_Reset' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Element\\ResetElement',
'tx_form_Domain_Model_Element_Select' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Element\\SelectElement',
'tx_form_Domain_Model_Element_Submit' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Element\\SubmitElement',
'tx_form_Domain_Model_Element_Textarea' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Element\\TextareaElement',
'tx_form_Domain_Model_Element_Textblock' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Element\\TextblockElement',
'tx_form_Domain_Model_Element_Textline' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Element\\TextlineElement',
'tx_form_Domain_Model_Form' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Form',
'tx_form_Domain_Model_JSON_Element' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Json\\AbstractJsonElement',
'tx_form_Domain_Model_JSON_Button' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Json\\ButtonJsonElement',
'tx_form_Domain_Model_JSON_Checkboxgroup' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Json\\CheckboxGroupJsonElement',
'tx_form_Domain_Model_JSON_Checkbox' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Json\\CheckboxJsonElement',
'tx_form_Domain_Model_JSON_Container' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Json\\ContainerJsonElement',
'tx_form_Domain_Model_JSON_Fieldset' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Json\\FieldsetJsonElement',
'tx_form_Domain_Model_JSON_Fileupload' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Json\\FileuploadJsonElement',
'tx_form_Domain_Model_JSON_Form' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Json\\FormJsonElement',
'tx_form_Domain_Model_JSON_Header' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Json\\HeaderJsonElement',
'tx_form_Domain_Model_JSON_Hidden' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Json\\HiddenJsonElement',
'tx_form_Domain_Model_JSON_Name' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Json\\NameJsonElement',
'tx_form_Domain_Model_JSON_Password' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Json\\PasswordJsonElement',
'tx_form_Domain_Model_JSON_Radiogroup' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Json\\RadioGroupJsonElement',
'tx_form_Domain_Model_JSON_Radio' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Json\\RadioJsonElement',
'tx_form_Domain_Model_JSON_Reset' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Json\\ResetJsonElement',
'tx_form_Domain_Model_JSON_Select' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Json\\SelectJsonElement',
'tx_form_Domain_Model_JSON_Submit' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Json\\SubmitJsonElement',
'tx_form_Domain_Model_JSON_Textarea' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Json\\TextareaJsonElement',
'tx_form_Domain_Model_JSON_Textblock' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Json\\TextblockJsonElement',
'tx_form_Domain_Model_JSON_Textline' => '\\TYPO3\\CMS\\Form\\Domain\\Model\\Json\\TextlineJsonElement',
'tx_form_Domain_Repository_Content' => '\\TYPO3\\CMS\\Form\\Domain\\Repository\\ContentRepository',
'tx_form_System_Elementcounter' => '\\TYPO3\\CMS\\Form\\ElementCounter',
'tx_form_System_Filter_Alphabetic' => '\\TYPO3\\CMS\\Form\\Filter\\AlphabeticFilter',
'tx_form_System_Filter_Alphanumeric' => '\\TYPO3\\CMS\\Form\\Filter\\AlphanumericFilter',
'tx_form_System_Filter_Currency' => '\\TYPO3\\CMS\\Form\\Filter\\CurrencyFilter',
'tx_form_System_Filter_Digit' => '\\TYPO3\\CMS\\Form\\Filter\\DigitFilter',
'tx_form_System_Filter_Interface' => '\\TYPO3\\CMS\\Form\\Filter\\FilterInterface',
'tx_form_System_Filter_Integer' => '\\TYPO3\\CMS\\Form\\Filter\\IntegerFilter',
'tx_form_System_Filter_Lowercase' => '\\TYPO3\\CMS\\Form\\Filter\\LowerCaseFilter',
'tx_form_System_Filter_Regexp' => '\\TYPO3\\CMS\\Form\\Filter\\RegExpFilter',
'tx_form_System_Filter_Removexss' => '\\TYPO3\\CMS\\Form\\Filter\\RemoveXssFilter',
'tx_form_System_Filter_Stripnewlines' => '\\TYPO3\\CMS\\Form\\Filter\\StripNewLinesFilter',
'tx_form_System_Filter_Titlecase' => '\\TYPO3\\CMS\\Form\\Filter\\TitleCaseFilter',
'tx_form_System_Filter_Trim' => '\\TYPO3\\CMS\\Form\\Filter\\TrimFilter',
'tx_form_System_Filter_Uppercase' => '\\TYPO3\\CMS\\Form\\Filter\\UpperCaseFilter',
'tx_form_System_Layout' => '\\TYPO3\\CMS\\Form\\Layout',
'tx_form_System_Localization' => '\\TYPO3\\CMS\\Form\\Localization',
'tx_form_System_Postprocessor_Mail' => '\\TYPO3\\CMS\\Form\\PostProcess\\MailPostProcessor',
'tx_form_System_Postprocessor' => '\\TYPO3\\CMS\\Form\\PostProcess\\PostProcessor',
'tx_form_System_Postprocessor_Interface' => '\\TYPO3\\CMS\\Form\\PostProcess\\PostProcessorInterface',
'tx_form_System_Request' => '\\TYPO3\\CMS\\Form\\Request',
'tx_form_System_Filter' => '\\TYPO3\\CMS\\Form\\Utility\\FilterUtility',
'tx_form_Common' => '\\TYPO3\\CMS\\Form\\Utility\\FormUtility',
'tx_form_Domain_Factory_TyposcriptToJson' => '\\TYPO3\\CMS\\Form\\Utility\\TypoScriptToJsonConverter',
'tx_form_System_Validate' => '\\TYPO3\\CMS\\Form\\Utility\\ValidatorUtility',
'tx_form_System_Validate_Abstract' => '\\TYPO3\\CMS\\Form\\Validation\\AbstractValidator',
'tx_form_System_Validate_Alphabetic' => '\\TYPO3\\CMS\\Form\\Validation\\AlphabeticValidator',
'tx_form_System_Validate_Alphanumeric' => '\\TYPO3\\CMS\\Form\\Validation\\AlphanumericValidator',
'tx_form_System_Validate_Between' => '\\TYPO3\\CMS\\Form\\Validation\\BetweenValidator',
'tx_form_System_Validate_Date' => '\\TYPO3\\CMS\\Form\\Validation\\DateValidator',
'tx_form_System_Validate_Digit' => '\\TYPO3\\CMS\\Form\\Validation\\DigitValidator',
'tx_form_System_Validate_Email' => '\\TYPO3\\CMS\\Form\\Validation\\EmailValidator',
'tx_form_System_Validate_Equals' => '\\TYPO3\\CMS\\Form\\Validation\\EqualsValidator',
'tx_form_System_Validate_Fileallowedtypes' => '\\TYPO3\\CMS\\Form\\Validation\\FileAllowedTypesValidator',
'tx_form_System_Validate_Filemaximumsize' => '\\TYPO3\\CMS\\Form\\Validation\\FileMaximumSizeValidator',
'tx_form_System_Validate_Fileminimumsize' => '\\TYPO3\\CMS\\Form\\Validation\\FileMinimumSizeValidator',
'tx_form_System_Validate_Float' => '\\TYPO3\\CMS\\Form\\Validation\\FloatValidator',
'tx_form_System_Validate_Greaterthan' => '\\TYPO3\\CMS\\Form\\Validation\\GreaterThanValidator',
'tx_form_System_Validate_Inarray' => '\\TYPO3\\CMS\\Form\\Validation\\InArrayValidator',
'tx_form_System_Validate_Integer' => '\\TYPO3\\CMS\\Form\\Validation\\IntegerValidator',
'tx_form_System_Validate_Interface' => '\\TYPO3\\CMS\\Form\\Validation\\ValidatorInterface',
'tx_form_System_Validate_Ip' => '\\TYPO3\\CMS\\Form\\Validation\\IpValidator',
'tx_form_System_Validate_Length' => '\\TYPO3\\CMS\\Form\\Validation\\LengthValidator',
'tx_form_System_Validate_Lessthan' => '\\TYPO3\\CMS\\Form\\Validation\\LessthanValidator',
'tx_form_System_Validate_Regexp' => '\\TYPO3\\CMS\\Form\\Validation\\RegExpValidator',
'tx_form_System_Validate_Required' => '\\TYPO3\\CMS\\Form\\Validation\\RequiredValidator',
'tx_form_System_Validate_Uri' => '\\TYPO3\\CMS\\Form\\Validation\\UriValidator',
'tx_form_View_Confirmation_Additional' => '\\TYPO3\\CMS\\Form\\View\\Confirmation\\Additional\\AdditionalElementView',
'tx_form_View_Confirmation_Additional_Label' => '\\TYPO3\\CMS\\Form\\View\\Confirmation\\Additional\\LabelAdditionalElementView',
'tx_form_View_Confirmation_Additional_Legend' => '\\TYPO3\\CMS\\Form\\View\\Confirmation\\Additional\\LegendAdditionalElementView',
'tx_form_View_Confirmation' => '\\TYPO3\\CMS\\Form\\View\\Confirmation\\ConfirmationView',
'tx_form_View_Confirmation_Element_Abstract' => '\\TYPO3\\CMS\\Form\\View\\Confirmation\\Element\\AbstractElementView',
'tx_form_View_Confirmation_Element_Checkbox' => '\\TYPO3\\CMS\\Form\\View\\Confirmation\\Element\\CheckboxElementView',
'tx_form_View_Confirmation_Element_Checkboxgroup' => '\\TYPO3\\CMS\\Form\\View\\Confirmation\\Element\\CheckboxGroupElementView',
'tx_form_View_Confirmation_Element_Container' => '\\TYPO3\\CMS\\Form\\View\\Confirmation\\Element\\ContainerElementView',
'tx_form_View_Confirmation_Element_Fieldset' => '\\TYPO3\\CMS\\Form\\View\\Confirmation\\Element\\FieldsetElementView',
'tx_form_View_Confirmation_Element_Fileupload' => '\\TYPO3\\CMS\\Form\\View\\Confirmation\\Element\\FileuploadElementView',
'tx_form_View_Confirmation_Element_Optgroup' => '\\TYPO3\\CMS\\Form\\View\\Confirmation\\Element\\OptgroupElementView',
'tx_form_View_Confirmation_Element_Option' => '\\TYPO3\\CMS\\Form\\View\\Confirmation\\Element\\OptionElementView',
'tx_form_View_Confirmation_Element_Radio' => '\\TYPO3\\CMS\\Form\\View\\Confirmation\\Element\\RadioElementView',
'tx_form_View_Confirmation_Element_Radiogroup' => '\\TYPO3\\CMS\\Form\\View\\Confirmation\\Element\\RadioGroupElementView',
'tx_form_View_Confirmation_Element_Select' => '\\TYPO3\\CMS\\Form\\View\\Confirmation\\Element\\SelectElementView',
'tx_form_View_Confirmation_Element_Textarea' => '\\TYPO3\\CMS\\Form\\View\\Confirmation\\Element\\TextareaElementView',
'tx_form_View_Confirmation_Element_Textline' => '\\TYPO3\\CMS\\Form\\View\\Confirmation\\Element\\TextlineElementView',
'tx_form_View_Form_Additional' => '\\TYPO3\\CMS\\Form\\View\\Form\\Additional\\AdditionalElementView',
'tx_form_View_Form_Additional_Error' => '\\TYPO3\\CMS\\Form\\View\\Form\\Additional\\ErrorAdditionalElementView',
'tx_form_View_Form_Additional_Label' => '\\TYPO3\\CMS\\Form\\View\\Form\\Additional\\LabelAdditionalElementView',
'tx_form_View_Form_Additional_Legend' => '\\TYPO3\\CMS\\Form\\View\\Form\\Additional\\LegendAdditionalElementView',
'tx_form_View_Form_Additional_Mandatory' => '\\TYPO3\\CMS\\Form\\View\\Form\\Additional\\MandatoryAdditionalElementView',
'tx_form_View_Form_Element_Abstract' => '\\TYPO3\\CMS\\Form\\View\\Form\\Element\\AbstractElementView',
'tx_form_View_Form_Element_Button' => '\\TYPO3\\CMS\\Form\\View\\Form\\Element\\ButtonElementView',
'tx_form_View_Form_Element_Checkbox' => '\\TYPO3\\CMS\\Form\\View\\Form\\Element\\CheckboxElementView',
'tx_form_View_Form_Element_Checkboxgroup' => '\\TYPO3\\CMS\\Form\\View\\Form\\Element\\CheckboxGroupElementView',
'tx_form_View_Form_Element_Container' => '\\TYPO3\\CMS\\Form\\View\\Form\\Element\\ContainerElementView',
'tx_form_View_Form_Element_Content' => '\\TYPO3\\CMS\\Form\\View\\Form\\Element\\ContentElementView',
'tx_form_View_Form_Element_Fieldset' => '\\TYPO3\\CMS\\Form\\View\\Form\\Element\\FieldsetElementView',
'tx_form_View_Form_Element_Fileupload' => '\\TYPO3\\CMS\\Form\\View\\Form\\Element\\FileuploadElementView',
'tx_form_View_Form_Element_Header' => '\\TYPO3\\CMS\\Form\\View\\Form\\Element\\HeaderElementView',
'tx_form_View_Form_Element_Hidden' => '\\TYPO3\\CMS\\Form\\View\\Form\\Element\\HiddenElementView',
'tx_form_View_Form_Element_Imagebutton' => '\\TYPO3\\CMS\\Form\\View\\Form\\Element\\ImagebuttonElementView',
'tx_form_View_Form_Element_Optgroup' => '\\TYPO3\\CMS\\Form\\View\\Form\\Element\\OptgroupElementView',
'tx_form_View_Form_Element_Option' => '\\TYPO3\\CMS\\Form\\View\\Form\\Element\\OptionElementView',
'tx_form_View_Form_Element_Password' => '\\TYPO3\\CMS\\Form\\View\\Form\\Element\\PasswordElementView',
'tx_form_View_Form_Element_Radio' => '\\TYPO3\\CMS\\Form\\View\\Form\\Element\\RadioElementView',
'tx_form_View_Form_Element_Radiogroup' => '\\TYPO3\\CMS\\Form\\View\\Form\\Element\\RadioGroupElementView',
'tx_form_View_Form_Element_Reset' => '\\TYPO3\\CMS\\Form\\View\\Form\\Element\\ResetElementView',
'tx_form_View_Form_Element_Select' => '\\TYPO3\\CMS\\Form\\View\\Form\\Element\\SelectElementView',
'tx_form_View_Form_Element_Submit' => '\\TYPO3\\CMS\\Form\\View\\Form\\Element\\SubmitElementView',
'tx_form_View_Form_Element_Textarea' => '\\TYPO3\\CMS\\Form\\View\\Form\\Element\\TextareaElementView',
'tx_form_View_Form_Element_Textblock' => '\\TYPO3\\CMS\\Form\\View\\Form\\Element\\TextblockElementView',
'tx_form_View_Form_Element_Textline' => '\\TYPO3\\CMS\\Form\\View\\Form\\Element\\TextlineElementView',
'tx_form_View_Form' => '\\TYPO3\\CMS\\Form\\View\\Form\\FormView',
'tx_form_View_Mail_Html_Additional' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Html\\Additional\\AdditionalElementView',
'tx_form_View_Mail_Html_Additional_Label' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Html\\Additional\\LabelAdditionalElementView',
'tx_form_View_Mail_Html_Additional_Legend' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Html\\Additional\\LegendAdditionalElementView',
'tx_form_View_Mail_Html_Element_Abstract' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Html\\Element\\AbstractElementView',
'tx_form_View_Mail_Html_Element_Checkbox' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Html\\Element\\CheckboxElementView',
'tx_form_View_Mail_Html_Element_Checkboxgroup' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Html\\Element\\CheckboxGroupElementView',
'tx_form_View_Mail_Html_Element_Container' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Html\\Element\\ContainerElementView',
'tx_form_View_Mail_Html_Element_Fieldset' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Html\\Element\\FieldsetElementView',
'tx_form_View_Mail_Html_Element_Fileupload' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Html\\Element\\FileuploadElementView',
'tx_form_View_Mail_Html_Element_Hidden' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Html\\Element\\HiddenElementView',
'tx_form_View_Mail_Html_Element_Optgroup' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Html\\Element\\OptgroupElementView',
'tx_form_View_Mail_Html_Element_Option' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Html\\Element\\OptionElementView',
'tx_form_View_Mail_Html_Element_Radio' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Html\\Element\\RadioElementView',
'tx_form_View_Mail_Html_Element_Radiogroup' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Html\\Element\\RadioGroupElementView',
'tx_form_View_Mail_Html_Element_Select' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Html\\Element\\SelectElementView',
'tx_form_View_Mail_Html_Element_Textarea' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Html\\Element\\TextareaElementView',
'tx_form_View_Mail_Html_Element_Textline' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Html\\Element\\TextlineElementView',
'tx_form_View_Mail_Html' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Html\\HtmlView',
'tx_form_View_Mail' => '\\TYPO3\\CMS\\Form\\View\\Mail\\MailView',
'tx_form_View_Mail_Plain_Element_Abstract' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Plain\\Element\\AbstractElementView',
'tx_form_View_Mail_Plain_Element_Checkbox' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Plain\\Element\\CheckboxElementView',
'tx_form_View_Mail_Plain_Element_Checkboxgroup' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Plain\\Element\\CheckboxGroupElementView',
'tx_form_View_Mail_Plain_Element_Container' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Plain\\Element\\ContainerElementView',
'tx_form_View_Mail_Plain_Element_Fieldset' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Plain\\Element\\FieldsetElementView',
'tx_form_View_Mail_Plain_Element_Fileupload' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Plain\\Element\\FileuploadElementView',
'tx_form_View_Mail_Plain_Element_Hidden' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Plain\\Element\\HiddenElementView',
'tx_form_View_Mail_Plain_Element_Optgroup' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Plain\\Element\\OptgroupElementView',
'tx_form_View_Mail_Plain_Element_Option' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Plain\\Element\\OptionElementView',
'tx_form_View_Mail_Plain_Element_Radio' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Plain\\Element\\RadioElementView',
'tx_form_View_Mail_Plain_Element_Radiogroup' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Plain\\Element\\RadioGroupElementView',
'tx_form_View_Mail_Plain_Element_Select' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Plain\\Element\\SelectElementView',
'tx_form_View_Mail_Plain_Element_Textarea' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Plain\\Element\\TextareaElementView',
'tx_form_View_Mail_Plain_Element_Textline' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Plain\\Element\\TextlineElementView',
'tx_form_View_Mail_Plain' => '\\TYPO3\\CMS\\Form\\View\\Mail\\Plain\\PlainView',
'tx_form_View_Wizard_Abstract' => '\\TYPO3\\CMS\\Form\\View\\Wizard\\AbstractWizardView',
'tx_form_View_Wizard_Load' => '\\TYPO3\\CMS\\Form\\View\\Wizard\\LoadWizardView',
'tx_form_View_Wizard_Save' => '\\TYPO3\\CMS\\Form\\View\\Wizard\\SaveWizardView',
'tx_form_View_Wizard_Wizard' => '\\TYPO3\\CMS\\Form\\View\\Wizard\\WizardView',
'tslib_feUserAuth' => '\\TYPO3\\CMS\\Frontend\\Authentication\\FrontendUserAuthentication',
't3lib_matchCondition_frontend' => '\\TYPO3\\CMS\\Frontend\\Configuration\\TypoScript\\ConditionMatching\\ConditionMatcher',
'tslib_content_Abstract' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\AbstractContentObject',
'tslib_content_Case' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\CaseContentObject',
'tslib_content_ClearGif' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\ClearGifContentObject',
'tslib_content_Columns' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\ColumnsContentObject',
'tslib_content_Content' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\ContentContentObject',
'tslib_content_ContentObjectArray' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\ContentObjectArrayContentObject',
'tslib_content_ContentObjectArrayInternal' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\ContentObjectArrayInternalContentObject',
'tslib_content_getDataHook' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\ContentObjectGetDataHookInterface',
'tslib_cObj_getImgResourceHook' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\ContentObjectGetImageResourceHookInterface',
'tslib_content_getPublicUrlForFileHook' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\ContentObjectGetPublicUrlForFileHookInterface',
'tslib_content_cObjGetSingleHook' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\ContentObjectGetSingleHookInterface',
'tslib_content_PostInitHook' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\ContentObjectPostInitHookInterface',
'tslib_cObj' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\ContentObjectRenderer',
'tslib_content_stdWrapHook' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\ContentObjectStdWrapHookInterface',
'tslib_content_ContentTable' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\ContentTableContentObject',
'tslib_content_EditPanel' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\EditPanelContentObject',
'tslib_content_File' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\FileContentObject',
'tslib_content_fileLinkHook' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\FileLinkHookInterface',
'tslib_content_Files' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\FilesContentObject',
'tslib_content_FlowPlayer' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\FlowPlayerContentObject',
'tslib_content_FluidTemplate' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\FluidTemplateContentObject',
'tslib_content_Form' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\FormContentObject',
'tslib_content_HierarchicalMenu' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\HierarchicalMenuContentObject',
'tslib_content_HorizontalRuler' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\HorizontalRulerContentObject',
'tslib_content_Image' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\ImageContentObject',
'tslib_content_ImageResource' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\ImageResourceContentObject',
'tslib_content_ImageText' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\ImageTextContentObject',
'tslib_content_LoadRegister' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\LoadRegisterContentObject',
'tslib_content_Media' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\MediaContentObject',
'tslib_menu' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\Menu\\AbstractMenuContentObject',
'tslib_menu_filterMenuPagesHook' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\Menu\\AbstractMenuFilterPagesHookInterface',
'tslib_gmenu' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\Menu\\GraphicalMenuContentObject',
'tslib_imgmenu' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\Menu\\ImageMenuContentObject',
'tslib_jsmenu' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\Menu\\JavaScriptMenuContentObject',
'tslib_tmenu' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\Menu\\TextMenuContentObject',
'tslib_content_Multimedia' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\MultimediaContentObject',
'tslib_tableOffset' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\OffsetTableContentObject',
'tslib_content_OffsetTable' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\OffsetTableContentObject',
'tslib_content_QuicktimeObject' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\QuicktimeObjectContentObject',
'tslib_content_Records' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\RecordsContentObject',
'tslib_content_RestoreRegister' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\RestoreRegisterContentObject',
'tslib_content_ScalableVectorGraphics' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\ScalableVectorGraphicsContentObject',
'tslib_search' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\SearchResultContentObject',
'tslib_content_SearchResult' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\SearchResultContentObject',
'tslib_content_ShockwaveFlashObject' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\ShockwaveFlashObjectContentObject',
'tslib_controlTable' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\TableRenderer',
'tslib_content_Template' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\TemplateContentObject',
'tslib_content_Text' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\TextContentObject',
'tslib_content_User' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\UserContentObject',
'tslib_content_UserInternal' => '\\TYPO3\\CMS\\Frontend\\ContentObject\\UserInternalContentObject',
'tslib_ExtDirectEid' => '\\TYPO3\\CMS\\Frontend\\Controller\\ExtDirectEidController',
'tx_cms_webinfo_page' => '\\TYPO3\\CMS\\Frontend\\Controller\\PageInformationController',
'SC_tslib_showpic' => '\\TYPO3\\CMS\\Frontend\\Controller\\ShowImageController',
'tx_cms_webinfo_lang' => '\\TYPO3\\CMS\\Frontend\\Controller\\TranslationStatusController',
'tslib_fe' => '\\TYPO3\\CMS\\Frontend\\Controller\\TypoScriptFrontendController',
'tx_cms_fehooks' => '\\TYPO3\\CMS\\Frontend\\Hooks\\FrontendHooks',
'tx_cms_mediaItems' => '\\TYPO3\\CMS\\Frontend\\Hooks\\MediaItemHooks',
'tx_cms_treelistCacheUpdate' => '\\TYPO3\\CMS\\Frontend\\Hooks\\TreelistCacheUpdateHooks',
'tslib_gifBuilder' => '\\TYPO3\\CMS\\Frontend\\Imaging\\GifBuilder',
'tslib_mediaWizardCoreProvider' => '\\TYPO3\\CMS\\Frontend\\MediaWizard\\MediaWizardProvider',
'tslib_mediaWizardProvider' => '\\TYPO3\\CMS\\Frontend\\MediaWizard\\MediaWizardProviderInterface',
'tslib_mediaWizardManager' => '\\TYPO3\\CMS\\Frontend\\MediaWizard\\MediaWizardProviderManager',
't3lib_cacheHash' => '\\TYPO3\\CMS\\Frontend\\Page\\CacheHashCalculator',
'tslib_frameset' => '\\TYPO3\\CMS\\Frontend\\Page\\FramesetRenderer',
'TSpagegen' => '\\TYPO3\\CMS\\Frontend\\Page\\PageGenerator',
't3lib_pageSelect' => '\\TYPO3\\CMS\\Frontend\\Page\\PageRepository',
't3lib_pageSelect_getPageHook' => '\\TYPO3\\CMS\\Frontend\\Page\\PageRepositoryGetPageHookInterface',
't3lib_pageSelect_getPageOverlayHook' => '\\TYPO3\\CMS\\Frontend\\Page\\PageRepositoryGetPageOverlayHookInterface',
't3lib_pageSelect_getRecordOverlayHook' => '\\TYPO3\\CMS\\Frontend\\Page\\PageRepositoryGetRecordOverlayHookInterface',
'tslib_pibase' => '\\TYPO3\\CMS\\Frontend\\Plugin\\AbstractPlugin',
'tslib_fecompression' => '\\TYPO3\\CMS\\Frontend\\Utility\\CompressionUtility',
'tslib_eidtools' => '\\TYPO3\\CMS\\Frontend\\Utility\\EidUtility',
'tslib_AdminPanel' => '\\TYPO3\\CMS\\Frontend\\View\\AdminPanelView',
'tslib_adminPanelHook' => '\\TYPO3\\CMS\\Frontend\\View\\AdminPanelViewHookInterface',
'SC_mod_web_func_index' => '\\TYPO3\\CMS\\Func\\Controller\\PageFunctionsController',
'tx_funcwizards_webfunc' => '\\TYPO3\\CMS\\FuncWizards\\Controller\\WebFunctionWizardsBaseController',
'tx_impexp_clickmenu' => '\\TYPO3\\CMS\\Impexp\\Clickmenu',
'SC_mod_tools_log_index' => '\\TYPO3\\CMS\\Impexp\\Controller\\ImportExportController',
'tx_impexp' => '\\TYPO3\\CMS\\Impexp\\ImportExport',
'tx_impexp_localPageTree' => '\\TYPO3\\CMS\\Impexp\\LocalPageTree',
'tx_impexp_task' => '\\TYPO3\\CMS\\Impexp\\Task\\ImportExportTask',
'tx_indexedsearch_modfunc1' => '\\TYPO3\\CMS\\IndexedSearch\\Controller\\IndexedPagesController',
'tx_indexedsearch_modfunc2' => '\\TYPO3\\CMS\\IndexedSearch\\Controller\\IndexingStatisticsController',
'SC_mod_tools_isearch_index' => '\\TYPO3\\CMS\\IndexedSearch\\Controller\\ModuleController',
'Tx_IndexedSearch_Controller_SearchController' => '\\TYPO3\\CMS\\IndexedSearch\\Controller\\SearchController',
'tx_indexedsearch' => '\\TYPO3\\CMS\\IndexedSearch\\Controller\\SearchFormController',
'Tx_IndexedSearch_Domain_Repository_IndexSearchRepository' => '\\TYPO3\\CMS\\IndexedSearch\\Domain\\Repository\\IndexSearchRepository',
'tx_indexed_search_extparse' => '\\TYPO3\\CMS\\IndexedSearch\\FileContentParser',
'tx_indexedsearch_files' => '\\TYPO3\\CMS\\IndexedSearch\\Hook\\CrawlerFilesHook',
'tx_indexedsearch_crawler' => '\\TYPO3\\CMS\\IndexedSearch\\Hook\\CrawlerHook',
'tx_indexedsearch_mysql' => '\\TYPO3\\CMS\\IndexedSearch\\Hook\\MysqlFulltextIndexHook',
'tx_indexedsearch_tslib_fe_hook' => '\\TYPO3\\CMS\\IndexedSearch\\Hook\\TypoScriptFrontendHook',
'tx_indexedsearch_indexer' => '\\TYPO3\\CMS\\IndexedSearch\\Indexer',
'tx_indexedsearch_lexer' => '\\TYPO3\\CMS\\IndexedSearch\\Lexer',
'user_DoubleMetaPhone' => '\\TYPO3\\CMS\\IndexedSearch\\Utility\\DoubleMetaPhoneUtility',
'tx_indexedsearch_util' => '\\TYPO3\\CMS\\IndexedSearch\\Utility\\IndexedSearchUtility',
'Tx_IndexedSearch_ViewHelpers_PageBrowsingResultsViewHelper' => '\\TYPO3\\CMS\\IndexedSearch\\ViewHelpers\\PageBrowsingResultsViewHelper',
'Tx_IndexedSearch_ViewHelpers_PageBrowsingViewHelper' => '\\TYPO3\\CMS\\IndexedSearch\\ViewHelpers\\PageBrowsingViewHelper',
'SC_mod_web_info_index' => '\\TYPO3\\CMS\\Info\\Controller\\InfoModuleController',
'tx_infopagetsconfig_webinfo' => '\\TYPO3\\CMS\\InfoPagetsconfig\\Controller\\InfoPageTyposcriptConfigController',
'tx_coreupdates_addflexformstoacl' => '\\TYPO3\\CMS\\Install\\Updates\\AddFlexFormsToAclUpdate',
'tx_coreupdates_charsetDefaults' => '\\TYPO3\\CMS\\Install\\Updates\\CharsetDefaultsUpdate',
'tx_coreupdates_compatversion' => '\\TYPO3\\CMS\\Install\\Updates\\CompatVersionUpdate',
'tx_coreupdates_compressionlevel' => '\\TYPO3\\CMS\\Install\\Updates\\CompressionLevelUpdate',
'tx_coreupdates_cscsplit' => '\\TYPO3\\CMS\\Install\\Updates\\CscSplitUpdate',
'tx_coreupdates_flagsfromsprite' => '\\TYPO3\\CMS\\Install\\Updates\\FlagsFromSpriteUpdate',
'tx_coreupdates_imagecols' => '\\TYPO3\\CMS\\Install\\Updates\\ImagecolsUpdate',
'tx_coreupdates_imagelink' => '\\TYPO3\\CMS\\Install\\Updates\\ImagelinkUpdate',
'tx_coreupdates_installsysexts' => '\\TYPO3\\CMS\\Install\\Updates\\InstallSysExtsUpdate',
'tx_coreupdates_mediaFlexform' => '\\TYPO3\\CMS\\Install\\Updates\\MediaFlexformUpdate',
'tx_coreupdates_mergeadvanced' => '\\TYPO3\\CMS\\Install\\Updates\\MergeAdvancedUpdate',
'tx_coreupdates_migrateworkspaces' => '\\TYPO3\\CMS\\Install\\Updates\\MigrateWorkspacesUpdate',
'tx_coreupdates_notinmenu' => '\\TYPO3\\CMS\\Install\\Updates\\NotInMenuUpdate',
'tx_coreupdates_t3skin' => '\\TYPO3\\CMS\\Install\\Updates\\T3skinUpdate',
'Tx_Install_Service_BasicService' => '\\TYPO3\\CMS\\Install\\Service\\EnableFileService',
'tx_install_report_InstallStatus' => '\\TYPO3\\CMS\\Install\\Report\\InstallStatusReport',
'tx_install_session' => '\\TYPO3\\CMS\\Install\\Service\\SessionService',
't3lib_install_Sql' => '\\TYPO3\\CMS\\Install\\Service\\SqlSchemaMigrationService',
'Tx_Install_Updates_Base' => '\\TYPO3\\CMS\\Install\\Updates\\AbstractUpdate',
'Tx_Install_Updates_File_FilemountUpdateWizard' => '\\TYPO3\\CMS\\Install\\Updates\\FilemountUpdateWizard',
'Tx_Install_Updates_File_InitUpdateWizard' => '\\TYPO3\\CMS\\Install\\Updates\\InitUpdateWizard',
'Tx_Install_Updates_File_TceformsUpdateWizard' => '\\TYPO3\\CMS\\Install\\Updates\\TceformsUpdateWizard',
'Tx_Install_Updates_File_TtContentUploadsUpdateWizard' => '\\TYPO3\\CMS\\Install\\Updates\\TtContentUploadsUpdateWizard',
'language' => '\\TYPO3\\CMS\\Lang\\LanguageService',
'tx_linkvalidator_Processor' => '\\TYPO3\\CMS\\Linkvalidator\\LinkAnalyzer',
'tx_linkvalidator_linktype_Abstract' => '\\TYPO3\\CMS\\Linkvalidator\\Linktype\\AbstractLinktype',
'tx_linkvalidator_linktype_External' => '\\TYPO3\\CMS\\Linkvalidator\\Linktype\\ExternalLinktype',
'tx_linkvalidator_linktype_File' => '\\TYPO3\\CMS\\Linkvalidator\\Linktype\\FileLinktype',
'tx_linkvalidator_linktype_Internal' => '\\TYPO3\\CMS\\Linkvalidator\\Linktype\\InternalLinktype',
'tx_linkvalidator_linktype_LinkHandler' => '\\TYPO3\\CMS\\Linkvalidator\\Linktype\\LinkHandler',
'tx_linkvalidator_linktype_Interface' => '\\TYPO3\\CMS\\Linkvalidator\\Linktype\\LinktypeInterface',
'tx_linkvalidator_ModFuncReport' => '\\TYPO3\\CMS\\Linkvalidator\\Report\\LinkValidatorReport',
'tx_linkvalidator_tasks_Validator' => '\\TYPO3\\CMS\\Linkvalidator\\Task\\ValidatorTask',
'tx_linkvalidator_tasks_ValidatorAdditionalFieldProvider' => '\\TYPO3\\CMS\\Linkvalidator\\Task\\ValidatorTaskAdditionalFieldProvider',
'tx_lowlevel_admin_core' => '\\TYPO3\\CMS\\Lowlevel\\AdminCommand',
'tx_lowlevel_cleaner_core' => '\\TYPO3\\CMS\\Lowlevel\\CleanerCommand',
'tx_lowlevel_cleanflexform' => '\\TYPO3\\CMS\\Lowlevel\\CleanFlexformCommand',
'tx_lowlevel_deleted' => '\\TYPO3\\CMS\\Lowlevel\\DeletedRecordsCommand',
'tx_lowlevel_double_files' => '\\TYPO3\\CMS\\Lowlevel\\DoubleFilesCommand',
'tx_lowlevel_lost_files' => '\\TYPO3\\CMS\\Lowlevel\\LostFilesCommand',
'tx_lowlevel_missing_files' => '\\TYPO3\\CMS\\Lowlevel\\MissingFilesCommand',
'tx_lowlevel_missing_relations' => '\\TYPO3\\CMS\\Lowlevel\\MissingRelationsCommand',
'tx_lowlevel_orphan_records' => '\\TYPO3\\CMS\\Lowlevel\\OrphanRecordsCommand',
'tx_lowlevel_rte_images' => '\\TYPO3\\CMS\\Lowlevel\\RteImagesCommand',
'tx_lowlevel_syslog' => '\\TYPO3\\CMS\\Lowlevel\\SyslogCommand',
't3lib_arrayBrowser' => '\\TYPO3\\CMS\\Lowlevel\\Utility\\ArrayBrowser',
'tx_lowlevel_versions' => '\\TYPO3\\CMS\\Lowlevel\\VersionsCommand',
'SC_mod_tools_config_index' => '\\TYPO3\\CMS\\Lowlevel\\View\\ConfigurationView',
'SC_mod_tools_dbint_index' => '\\TYPO3\\CMS\\Lowlevel\\View\\DatabaseIntegrityView',
'tx_opendocs' => '\\TYPO3\\CMS\\Opendocs\\Controller\\OpendocsController',
'tx_openid_eID' => '\\TYPO3\\CMS\\Openid\\OpenidEid',
'tx_openid_mod_setup' => '\\TYPO3\\CMS\\Openid\\OpenidModuleSetup',
'tx_openid_return' => '\\TYPO3\\CMS\\Openid\\OpenidReturn',
'tx_openid_sv1' => '\\TYPO3\\CMS\\Openid\\OpenidService',
'tx_openid_store' => '\\TYPO3\\CMS\\Openid\\OpenidStore',
'SC_mod_web_perm_ajax' => '\\TYPO3\\CMS\\Perm\\Controller\\PermissionAjaxController',
'SC_mod_web_perm_index' => '\\TYPO3\\CMS\\Perm\\Controller\\PermissionModuleController',
'browse_links' => '\\TYPO3\\CMS\\Recordlist\\Browser\\ElementBrowser',
'SC_browse_links' => '\\TYPO3\\CMS\\Recordlist\\Controller\\ElementBrowserController',
'SC_browser' => '\\TYPO3\\CMS\\Recordlist\\Controller\\ElementBrowserFramesetController',
'SC_db_list' => '\\TYPO3\\CMS\\Recordlist\\RecordList',
'recordList' => '\\TYPO3\\CMS\\Recordlist\\RecordList\\AbstractDatabaseRecordList',
'localRecordList' => '\\TYPO3\\CMS\\Recordlist\\RecordList\\DatabaseRecordList',
'localRecordList_actionsHook' => '\\TYPO3\\CMS\\Recordlist\\RecordList\\RecordListHookInterface',
'tx_recycler_view_deletedRecords' => '\\TYPO3\\CMS\\Recycler\\Controller\\DeletedRecordsController',
'tx_recycler_controller_ajax' => '\\TYPO3\\CMS\\Recycler\\Controller\\RecyclerAjaxController',
'tx_recycler_module1' => '\\TYPO3\\CMS\\Recycler\\Controller\\RecyclerModuleController',
'tx_recycler_model_deletedRecords' => '\\TYPO3\\CMS\\Recycler\\Domain\\Model\\DeletedRecords',
'tx_recycler_model_tables' => '\\TYPO3\\CMS\\Recycler\\Domain\\Model\\Tables',
'tx_recycler_helper' => '\\TYPO3\\CMS\\Recycler\\Utility\\RecyclerUtility',
'Tx_Reports_Controller_ReportController' => '\\TYPO3\\CMS\\Reports\\Controller\\ReportController',
'tx_reports_reports_status_ConfigurationStatus' => '\\TYPO3\\CMS\\Reports\\Report\\Status\\ConfigurationStatus',
'tx_reports_reports_status_SecurityStatus' => '\\TYPO3\\CMS\\Reports\\Report\\Status\\SecurityStatus',
'tx_reports_reports_Status' => '\\TYPO3\\CMS\\Reports\\Report\\Status\\Status',
'tx_reports_reports_status_Status' => '\\TYPO3\\CMS\\Reports\\Status',
'tx_reports_reports_status_SystemStatus' => '\\TYPO3\\CMS\\Reports\\Report\\Status\\SystemStatus',
'tx_reports_reports_status_Typo3Status' => '\\TYPO3\\CMS\\Reports\\Report\\Status\\Typo3Status',
'tx_reports_reports_status_WarningMessagePostProcessor' => '\\TYPO3\\CMS\\Reports\\Report\\Status\\WarningMessagePostProcessor',
'tx_reports_Report' => '\\TYPO3\\CMS\\Reports\\ReportInterface',
'tx_reports_StatusProvider' => '\\TYPO3\\CMS\\Reports\\StatusProviderInterface',
'tx_reports_tasks_SystemStatusUpdateTask' => '\\TYPO3\\CMS\\Reports\\Task\\SystemStatusUpdateTask',
'tx_reports_tasks_SystemStatusUpdateTaskNotificationEmailField' => '\\TYPO3\\CMS\\Reports\\Task\\SystemStatusUpdateTaskNotificationEmailField',
'Tx_Reports_ViewHelpers_ActionMenuItemViewHelper' => '\\TYPO3\\CMS\\Reports\\ViewHelpers\\ActionMenuItemViewHelper',
'Tx_Reports_ViewHelpers_IconViewHelper' => '\\TYPO3\\CMS\\Reports\\ViewHelpers\\IconViewHelper',
'tx_rsaauth_abstract_backend' => '\\TYPO3\\CMS\\Rsaauth\\Backend\\AbstractBackend',
'tx_rsaauth_backendfactory' => '\\TYPO3\\CMS\\Rsaauth\\Backend\\BackendFactory',
'tx_rsaauth_cmdline_backend' => '\\TYPO3\\CMS\\Rsaauth\\Backend\\CommandLineBackend',
'tx_rsaauth_php_backend' => '\\TYPO3\\CMS\\Rsaauth\\Backend\\PhpBackend',
'tx_rsaauth_backendwarnings' => '\\TYPO3\\CMS\\Rsaauth\\BackendWarnings',
'tx_rsaauth_feloginhook' => '\\TYPO3\\CMS\\Rsaauth\\Hook\\FrontendLoginHook',
'tx_rsaauth_loginformhook' => '\\TYPO3\\CMS\\Rsaauth\\Hook\\LoginFormHook',
'tx_rsaauth_usersetuphook' => '\\TYPO3\\CMS\\Rsaauth\\Hook\\UserSetupHook',
'tx_rsaauth_keypair' => '\\TYPO3\\CMS\\Rsaauth\\Keypair',
'tx_rsaauth_sv1' => '\\TYPO3\\CMS\\Rsaauth\\RsaAuthService',
'tx_rsaauth_abstract_storage' => '\\TYPO3\\CMS\\Rsaauth\\Storage\\AbstractStorage',
'tx_rsaauth_session_storage' => '\\TYPO3\\CMS\\Rsaauth\\Storage\\SessionStorage',
'tx_rsaauth_split_storage' => '\\TYPO3\\CMS\\Rsaauth\\Storage\\SplitStorage',
'tx_rsaauth_storagefactory' => '\\TYPO3\\CMS\\Rsaauth\\Storage\\StorageFactory',
'tx_rtehtmlarea_browse_links' => '\\TYPO3\\CMS\\Rtehtmlarea\\BrowseLinks',
'tx_rtehtmlarea_parse_html' => '\\TYPO3\\CMS\\Rtehtmlarea\\ContentParser',
'tx_rtehtmlarea_SC_browse_links' => '\\TYPO3\\CMS\\Rtehtmlarea\\Controller\\BrowseLinksController',
'tx_rtehtmlarea_pi3' => '\\TYPO3\\CMS\\Rtehtmlarea\\Controller\\CustomAttributeController',
'tx_rtehtmlarea_pi2' => '\\TYPO3\\CMS\\Rtehtmlarea\\Controller\\FrontendRteController',
'tx_rtehtmlarea_SC_select_image' => '\\TYPO3\\CMS\\Rtehtmlarea\\Controller\\SelectImageController',
'tx_rtehtmlarea_pi1' => '\\TYPO3\\CMS\\Rtehtmlarea\\Controller\\SpellCheckingController',
'tx_rtehtmlarea_abouteditor' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\AboutEditor',
'tx_rtehtmlarea_acronym' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\Acronym',
'tx_rtehtmlarea_blockelements' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\BlockElements',
'tx_rtehtmlarea_blockstyle' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\BlockStyle',
'tx_rtehtmlarea_charactermap' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\CharacterMap',
'tx_rtehtmlarea_contextmenu' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\ContextMenu',
'tx_rtehtmlarea_copypaste' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\CopyPaste',
'tx_rtehtmlarea_defaultclean' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\DefaultClean',
'tx_rtehtmlarea_defaultimage' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\DefaultImage',
'tx_rtehtmlarea_defaultinline' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\DefaultInline',
'tx_rtehtmlarea_defaultlink' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\DefaultLink',
'tx_rtehtmlarea_definitionlist' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\DefinitionList',
'tx_rtehtmlarea_editelement' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\EditElement',
'tx_rtehtmlarea_editormode' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\EditorMode',
'tx_rtehtmlarea_findreplace' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\FindReplace',
'tx_rtehtmlarea_inlineelements' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\InlineElements',
'tx_rtehtmlarea_insertsmiley' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\InsertSmiley',
'tx_rtehtmlarea_language' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\Language',
'tx_rtehtmlarea_microdataschema' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\MicroDataSchema',
'tx_rtehtmlarea_plaintext' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\Plaintext',
'tx_rtehtmlarea_quicktag' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\QuickTag',
'tx_rtehtmlarea_removeformat' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\RemoveFormat',
'tx_rtehtmlarea_selectfont' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\SelectFont',
'tx_rtehtmlarea_spellchecker' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\Spellchecker',
'tx_rtehtmlarea_tableoperations' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\TableOperations',
'tx_rtehtmlarea_textindicator' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\TextIndicator',
'tx_rtehtmlarea_textstyle' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\TextStyle',
'tx_rtehtmlarea_typo3color' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\Typo3Color',
'tx_rtehtmlarea_typo3htmlparser' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\Typo3HtmlParser',
'tx_rtehtmlarea_typo3image' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\Typo3Image',
'tx_rtehtmlarea_typo3link' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\Typo3Link',
'tx_rtehtmlarea_undoredo' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\UndoRedo',
'tx_rtehtmlarea_userelements' => '\\TYPO3\\CMS\\Rtehtmlarea\\Extension\\UserElements',
'tx_rtehtmlarea_folderTree' => '\\TYPO3\\CMS\\Rtehtmlarea\\FolderTree',
'tx_rtehtmlarea_deprecatedRteProperties' => '\\TYPO3\\CMS\\Rtehtmlarea\\Hook\\Install\\DeprecatedRteProperties',
'tx_rtehtmlarea_softrefproc' => '\\TYPO3\\CMS\\Rtehtmlarea\\Hook\\SoftReferenceHook',
'tx_rtehtmlarea_statusReport_conflictsCheck' => '\\TYPO3\\CMS\\Rtehtmlarea\\Hook\\StatusReportConflictsCheckHook',
'tx_rtehtmlarea_image_folderTree' => '\\TYPO3\\CMS\\Rtehtmlarea\\ImageFolderTree',
'tx_rtehtmlarea_pageTree' => '\\TYPO3\\CMS\\Rtehtmlarea\\PageTree',
'tx_rtehtmlarea_api' => '\\TYPO3\\CMS\\Rtehtmlarea\\RteHtmlAreaApi',
'tx_rtehtmlarea_base' => '\\TYPO3\\CMS\\Rtehtmlarea\\RteHtmlAreaBase',
'tx_rtehtmlarea_select_image' => '\\TYPO3\\CMS\\Rtehtmlarea\\SelectImage',
'tx_rtehtmlarea_user' => '\\TYPO3\\CMS\\Rtehtmlarea\\User',
'tx_saltedpasswords_eval_be' => '\\TYPO3\\CMS\\Saltedpasswords\\Evaluation\\BackendEvaluator',
'tx_saltedpasswords_eval' => '\\TYPO3\\CMS\\Saltedpasswords\\Evaluation\\Evaluator',
'tx_saltedpasswords_eval_fe' => '\\TYPO3\\CMS\\Saltedpasswords\\Evaluation\\FrontendEvaluator',
'tx_saltedpasswords_abstract_salts' => '\\TYPO3\\CMS\\Saltedpasswords\\Salt\\AbstractSalt',
'tx_saltedpasswords_salts_blowfish' => '\\TYPO3\\CMS\\Saltedpasswords\\Salt\\BlowfishSalt',
'tx_saltedpasswords_salts_md5' => '\\TYPO3\\CMS\\Saltedpasswords\\Salt\\Md5Salt',
'tx_saltedpasswords_salts_phpass' => '\\TYPO3\\CMS\\Saltedpasswords\\Salt\\PhpassSalt',
'tx_saltedpasswords_salts_factory' => '\\TYPO3\\CMS\\Saltedpasswords\\Salt\\SaltFactory',
'tx_saltedpasswords_salts' => '\\TYPO3\\CMS\\Saltedpasswords\\Salt\\SaltInterface',
'tx_saltedpasswords_sv1' => '\\TYPO3\\CMS\\Saltedpasswords\\SaltedPasswordService',
'tx_saltedpasswords_Tasks_BulkUpdate_AdditionalFieldProvider' => '\\TYPO3\\CMS\\Saltedpasswords\\Task\\BulkUpdateFieldProvider',
'tx_saltedpasswords_Tasks_BulkUpdate' => '\\TYPO3\\CMS\\Saltedpasswords\\Task\\BulkUpdateTask',
'tx_saltedpasswords_emconfhelper' => '\\TYPO3\\CMS\\Saltedpasswords\\Utility\\ExtensionManagerConfigurationUtility',
'tx_saltedpasswords_div' => '\\TYPO3\\CMS\\Saltedpasswords\\Utility\\SaltedPasswordsUtility',
'tx_scheduler_AdditionalFieldProvider' => '\\TYPO3\\CMS\\Scheduler\\AdditionalFieldProviderInterface',
'tx_scheduler_Module' => '\\TYPO3\\CMS\\Scheduler\\Controller\\SchedulerModuleController',
'tx_scheduler_CronCmd' => '\\TYPO3\\CMS\\Scheduler\\CronCommand\\CronCommand',
'tx_scheduler_CronCmd_Normalize' => '\\TYPO3\\CMS\\Scheduler\\CronCommand\\NormalizeCommand',
'tx_scheduler_SleepTask' => '\\TYPO3\\CMS\\Scheduler\\Example\\SleepTask',
'tx_scheduler_SleepTask_AdditionalFieldProvider' => '\\TYPO3\\CMS\\Scheduler\\Example\\SleepTaskAdditionalFieldProvider',
'tx_scheduler_Execution' => '\\TYPO3\\CMS\\Scheduler\\Execution',
'tx_scheduler_FailedExecutionException' => '\\TYPO3\\CMS\\Scheduler\\FailedExecutionException',
'tx_scheduler_ProgressProvider' => '\\TYPO3\\CMS\\Scheduler\\ProgressProviderInterface',
'tx_scheduler' => '\\TYPO3\\CMS\\Scheduler\\Scheduler',
'tx_scheduler_Task' => '\\TYPO3\\CMS\\Scheduler\\Task\\AbstractTask',
'tx_scheduler_CachingFrameworkGarbageCollection_AdditionalFieldProvider' => '\\TYPO3\\CMS\\Scheduler\\Task\\CachingFrameworkGarbageCollectionAdditionalFieldProvider',
'tx_scheduler_CachingFrameworkGarbageCollection' => '\\TYPO3\\CMS\\Scheduler\\Task\\CachingFrameworkGarbageCollectionTask',
'tx_scheduler_FileIndexing' => '\\TYPO3\\CMS\\Scheduler\\Task\\FileIndexingTask',
'tx_scheduler_RecyclerGarbageCollection_AdditionalFieldProvider' => '\\TYPO3\\CMS\\Scheduler\\Task\\RecyclerGarbageCollectionAdditionalFieldProvider',
'tx_scheduler_RecyclerGarbageCollection' => '\\TYPO3\\CMS\\Scheduler\\Task\\RecyclerGarbageCollectionTask',
'tx_scheduler_TableGarbageCollection_AdditionalFieldProvider' => '\\TYPO3\\CMS\\Scheduler\\Task\\TableGarbageCollectionAdditionalFieldProvider',
'tx_scheduler_TableGarbageCollection' => '\\TYPO3\\CMS\\Scheduler\\Task\\TableGarbageCollectionTask',
'SC_mod_user_setup_index' => '\\TYPO3\\CMS\\Setup\\Controller\\SetupModuleController',
'tx_sv_authbase' => '\\TYPO3\\CMS\\Sv\\AbstractAuthenticationService',
'tx_sv_auth' => '\\TYPO3\\CMS\\Sv\\AuthenticationService',
'tx_sv_loginformhook' => '\\TYPO3\\CMS\\Sv\\LoginFormHook',
'tx_sv_reports_ServicesList' => '\\TYPO3\\CMS\\Sv\\Report\\ServicesListReport',
'tx_sysaction_list' => '\\TYPO3\\CMS\\SysAction\\ActionList',
'tx_sysaction_task' => '\\TYPO3\\CMS\\SysAction\\ActionTask',
'tx_sysactionToolbarMenu' => '\\TYPO3\\CMS\\SysAction\\ActionToolbarMenu',
'tx_t3editor_codecompletion' => '\\TYPO3\\CMS\\T3editor\\CodeCompletion',
'tx_t3editor_tceforms_wizard' => '\\TYPO3\\CMS\\T3editor\\FormWizard',
'tx_t3editor_hooks_fileedit' => '\\TYPO3\\CMS\\T3editor\\Hook\\FileEditHook',
'tx_t3editor_hooks_tstemplateinfo' => '\\TYPO3\\CMS\\T3editor\\Hook\\TypoScriptTemplateInfoHook',
'tx_t3editor' => '\\TYPO3\\CMS\\T3editor\\T3editor',
'tx_t3editor_TSrefLoader' => '\\TYPO3\\CMS\\T3editor\\TypoScriptReferenceLoader',
'SC_mod_user_task_index' => '\\TYPO3\\CMS\\Taskcenter\\Controller\\TaskModuleController',
'tx_taskcenter_Task' => '\\TYPO3\\CMS\\Taskcenter\\TaskInterface',
'tx_taskcenter_status' => '\\TYPO3\\CMS\\Taskcenter\\TaskStatus',
'SC_mod_web_ts_index' => '\\TYPO3\\CMS\\Tstemplate\\Controller\\TypoScriptTemplateModuleController',
'tx_tstemplateanalyzer' => '\\TYPO3\\CMS\\Tstemplate\\Controller\\TemplateAnalyzerModuleFunctionController',
'tx_tstemplateceditor' => '\\TYPO3\\CMS\\Tstemplate\\Controller\\TypoScriptTemplateConstantEditorModuleFunctionController',
'tx_tstemplateinfo' => '\\TYPO3\\CMS\\Tstemplate\\Controller\\TypoScriptTemplateInformationModuleFunctionController',
'tx_tstemplateobjbrowser' => '\\TYPO3\\CMS\\Tstemplate\\Controller\\TypoScriptTemplateObjectBrowserModuleFunctionController',
'tx_version_cm1' => '\\TYPO3\\CMS\\Version\\Controller\\VersionModuleController',
'tx_version_tcemain_CommandMap' => '\\TYPO3\\CMS\\Version\\DataHandler\\CommandMap',
't3lib_utility_Dependency_Factory' => '\\TYPO3\\CMS\\Version\\Dependency\\DependencyEntityFactory',
't3lib_utility_Dependency' => '\\TYPO3\\CMS\\Version\\Dependency\\DependencyResolver',
't3lib_utility_Dependency_Element' => '\\TYPO3\\CMS\\Version\\Dependency\\ElementEntity',
't3lib_utility_Dependency_Callback' => '\\TYPO3\\CMS\\Version\\Dependency\\EventCallback',
't3lib_utility_Dependency_Reference' => '\\TYPO3\\CMS\\Version\\Dependency\\ReferenceEntity',
'tx_version_tcemain' => '\\TYPO3\\CMS\\Version\\Hook\\DataHandlerHook',
'tx_version_iconworks' => '\\TYPO3\\CMS\\Version\\Hook\\IconUtilityHook',
'Tx_Version_Preview' => '\\TYPO3\\CMS\\Version\\Hook\\PreviewHook',
'tx_version_tasks_AutoPublish' => '\\TYPO3\\CMS\\Version\\Task\\AutoPublishTask',
'wslib' => '\\TYPO3\\CMS\\Version\\Utility\\WorkspacesUtility',
'tx_version_gui' => '\\TYPO3\\CMS\\Version\\View\\VersionView',
'tx_wizardcrpages_webfunc_2' => '\\TYPO3\\CMS\\WizardCrpages\\Controller\\CreatePagesWizardModuleFunctionController',
'tx_wizardsortpages_webfunc_2' => '\\TYPO3\\CMS\\WizardSortPages\\View\\SortPagesWizardModuleFunction',
'Tx_Workspaces_Controller_AbstractController' => '\\TYPO3\\CMS\\Workspaces\\Controller\\AbstractController',
'Tx_Workspaces_Controller_PreviewController' => '\\TYPO3\\CMS\\Workspaces\\Controller\\PreviewController',
'Tx_Workspaces_Controller_ReviewController' => '\\TYPO3\\CMS\\Workspaces\\Controller\\ReviewController',
'Tx_Workspaces_Domain_Model_CombinedRecord' => '\\TYPO3\\CMS\\Workspaces\\Domain\\Model\\CombinedRecord',
'Tx_Workspaces_Domain_Model_DatabaseRecord' => '\\TYPO3\\CMS\\Workspaces\\Domain\\Model\\DatabaseRecord',
'Tx_Workspaces_ExtDirect_AbstractHandler' => '\\TYPO3\\CMS\\Workspaces\\ExtDirect\\AbstractHandler',
'Tx_Workspaces_ExtDirect_ActionHandler' => '\\TYPO3\\CMS\\Workspaces\\ExtDirect\\ActionHandler',
'Tx_Workspaces_ExtDirect_Server' => '\\TYPO3\\CMS\\Workspaces\\ExtDirect\\ExtDirectServer',
'Tx_Workspaces_ExtDirect_MassActionHandler' => '\\TYPO3\\CMS\\Workspaces\\ExtDirect\\MassActionHandler',
'Tx_Workspaces_ExtDirect_PagetreeCollectionsProcessor' => '\\TYPO3\\CMS\\Workspaces\\ExtDirect\\PagetreeCollectionsProcessor',
'Tx_Workspaces_ExtDirect_ToolbarMenu' => '\\TYPO3\\CMS\\Workspaces\\ExtDirect\\ToolbarMenu',
'Tx_Workspaces_ExtDirect_WorkspaceSelectorToolbarItem' => '\\TYPO3\\CMS\\Workspaces\\ExtDirect\\WorkspaceSelectorToolbarItem',
'Tx_Workspaces_Service_Befunc' => '\\TYPO3\\CMS\\Workspaces\\Hook\\BackendUtilityHook',
'Tx_Workspaces_Service_Tcemain' => '\\TYPO3\\CMS\\Workspaces\\Hook\\DataHandlerHook',
'Tx_Workspaces_Service_Fehooks' => '\\TYPO3\\CMS\\Workspaces\\Hook\\TypoScriptFrontendControllerHook',
'Tx_Workspaces_Service_AutoPublish' => '\\TYPO3\\CMS\\Workspaces\\Service\\AutoPublishService',
'Tx_Workspaces_Service_GridData' => '\\TYPO3\\CMS\\Workspaces\\Service\\GridDataService',
'Tx_Workspaces_Service_History' => '\\TYPO3\\CMS\\Workspaces\\Service\\HistoryService',
'Tx_Workspaces_Service_Integrity' => '\\TYPO3\\CMS\\Workspaces\\Service\\IntegrityService',
'Tx_Workspaces_Service_Stages' => '\\TYPO3\\CMS\\Workspaces\\Service\\StagesService',
'Tx_Workspaces_Service_Workspaces' => '\\TYPO3\\CMS\\Workspaces\\Service\\WorkspaceService',
'Tx_Workspaces_Service_AutoPublishTask' => '\\TYPO3\\CMS\\Workspaces\\Task\\AutoPublishTask',
'Tx_Workspaces_Service_CleanupPreviewLinkTask' => '\\TYPO3\\CMS\\Workspaces\\Task\\CleanupPreviewLinkTask',
);
protected static $folder = '';
/**
* Fix class names for folders.
*
* @param string $folder The folder to fix
* @return string[][]
*/
public static function fixForFolder($folder) {
if(in_array(basename($folder), self::$ignoreFolders)) {
return array(array('message' => 'Ignored folder ' . $folder, 'file' => $folder));
}
if(file_exists($folder . '/Migrations/Code/ClassAliasMap.php')) {
self::$index += require $folder . '/Migrations/Code/ClassAliasMap.php';
}
self::$folder = $folder;
$directory = new \RecursiveDirectoryIterator($folder);
$iterator = new \RecursiveIteratorIterator($directory);
$files = new \RegexIterator($iterator, '/^.+\.php$/i', \RecursiveRegexIterator::GET_MATCH);
$messages = array();
foreach ($files as $phpFileName => $phpFile) {
if(!in_array($phpFile, array('ReplaceOldClasses.php','RemoveNonExistant.php', 'ClassAliasMap.php'))) {
$messages[] = self::fixForFile($phpFileName);
}
}
return $messages;
}
/**
* Fix class names for file
*
* @param array $file File in the form ['phpFileName'=> '', 'phpFile' => '']
* @return string The message
*/
public static function fixForFile($phpFileName) {
$tmpContent = $originalContent = $content = file_get_contents($phpFileName);
$changeMessage = array();
foreach (self::$index as $originalClass => $newClass) {
// this handles namespaced classes that use \t3lib_div for example
$content = preg_replace('/\s' . preg_quote('\\' . $originalClass) . '::/i', $newClass . '::', $content);
// this handles normal non-namespaced use of classes
$content = preg_replace('/\b' . preg_quote($originalClass) . '::/i', $newClass . '::', $content);
// this handles inheritance
$content = preg_replace('/\b(extends|implements|instanceof|use)\s+' . preg_quote($originalClass) . '\b/i', '$1 ' . '\\' . ltrim($newClass,'\\'), $content);
// this handles inheritance for classes that were already namespaced but extended an oldschool named class
$content = preg_replace('/\b(extends|implements|instanceof|use)\s+' . preg_quote('\\' . $originalClass) . '\b/i', '$1 ' . '\\' . ltrim($newClass,'\\'), $content);
// this handles makeInstance, that does not allow backslashes at the beginning of the classname
$content = preg_replace('/(->get|::makeInstance)\(([\'"])' . preg_quote(addslashes($originalClass)) . '\1/i', '$1($2' . addslashes(ltrim($newClass, '\\')) . '$2', $content);
// this handles whenever a class is put between quotes or double quotes for some reason, but not as array key
$content = preg_replace('/([^\\[])\(([\'"])' . preg_quote(addslashes($originalClass)) . '\2/i', '$1($2' . addslashes(ltrim($newClass,'\\')) . '$2', $content);
// this handles type hints in method declaration
$content = preg_replace('/\b' . $originalClass . '(\s+&?\$[^(),.0-9][^(),.])/i', '\\' . ltrim($newClass, '\\') . '$1', $content);
// this handles direct instantiations
$content = preg_replace('/new \b' . $originalClass .'\s*(\(.*\))?;$/i', 'new ' . '\\' . ltrim($newClass, '\\') . '$1', $content);
// this handles PHPdoc annotations
$content = preg_replace('/@(var|param|return) \b' . $originalClass .'/i', '@$1 ' . '\\' . ltrim($newClass, '\\') , $content);
// this handles PHPdoc annotations for classes that were already namespaced but extended an oldschool named class
$content = preg_replace('/@(var|param|return) \b' . preg_quote('\\' . $originalClass) .'/i', '@$1 ' . '\\' . ltrim($newClass, '\\') , $content);
if($content != $tmpContent) {
$changeMessage[] = chr(9) . 'Replaced ' . $originalClass . ' with ' . $newClass;
}
$tmpContent = $content;
}
if (strlen($content) === 0) {
return array('message' => 'Error while cleaning file: ' . $phpFileName, 'file' => $phpFileName);
} else if ($content === $originalContent) {
//echo 'Content not changed: ' . $phpFileName . PHP_EOL;
} else {
file_put_contents($phpFileName, $content);
$changedFile = str_replace(self::$folder, '', $phpFileName);
echo '[' . date('Y/m/d H:i:s') . '] Content of file successfully updated: ' . $changedFile . PHP_EOL . implode(PHP_EOL, $changeMessage) . PHP_EOL;
return array('message' => 'Content of file successfully updated: ' . $changedFile . PHP_EOL . implode(PHP_EOL, $changeMessage), 'file' => $phpFileName);
}
}
}
ReplaceOldClasses::fixForFolder('.');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment