Skip to content

Instantly share code, notes, and snippets.

@totten
Last active August 16, 2016 23:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save totten/576a73c3e7f6df890370ee743050fc1a to your computer and use it in GitHub Desktop.
Save totten/576a73c3e7f6df890370ee743050fc1a to your computer and use it in GitHub Desktop.
Test performance of file-lookups
<?php
// Locate all PHP files, one-by-one, using smarty_core_get_include_path().
// Display the total runtime.
// usage: cv scr resolve-all-files.php
// The number of times to fetch each file.
$trials = 100;
// The list of files to check.
$files = array(
'api/api.php',
'api/class.api.php',
'api/Exception.php',
'api/v3/Acl.php',
'api/v3/AclRole.php',
'api/v3/ActionSchedule.php',
'api/v3/Activity.php',
'api/v3/ActivityContact.php',
'api/v3/ActivityType.php',
'api/v3/Address.php',
'api/v3/Attachment.php',
'api/v3/Batch.php',
'api/v3/Campaign.php',
'api/v3/Case.php',
'api/v3/CaseContact.php',
'api/v3/CaseType.php',
'api/v3/Constant.php',
'api/v3/Contact.php',
'api/v3/ContactType.php',
'api/v3/Contribution.php',
'api/v3/ContributionPage.php',
'api/v3/ContributionProduct.php',
'api/v3/ContributionRecur.php',
'api/v3/ContributionSoft.php',
'api/v3/Country.php',
'api/v3/CustomField.php',
'api/v3/CustomGroup.php',
'api/v3/CustomSearch.php',
'api/v3/CustomValue.php',
'api/v3/Cxn.php',
'api/v3/CxnApp.php',
'api/v3/Dashboard.php',
'api/v3/DashboardContact.php',
'api/v3/Domain.php',
'api/v3/Email.php',
'api/v3/Entity.php',
'api/v3/EntityBatch.php',
'api/v3/EntityFinancialAccount.php',
'api/v3/EntityFinancialTrxn.php',
'api/v3/EntityTag.php',
'api/v3/Event.php',
'api/v3/examples/Activity/ContactRefCustomField.php',
'api/v3/examples/Activity/ContactRefCustomFieldGet.php',
'api/v3/examples/Activity/Create.php',
'api/v3/examples/Activity/DateTimeHigh.php',
'api/v3/examples/Activity/DateTimeLow.php',
'api/v3/examples/Activity/Delete.php',
'api/v3/examples/Activity/Get.php',
'api/v3/examples/Activity/GetFields.php',
'api/v3/examples/Activity/GetTargetandAssignee.php',
'api/v3/examples/Activity/ReturnAssigneeContact.php',
'api/v3/examples/ActivityContact/Create.php',
'api/v3/examples/ActivityContact/Delete.php',
'api/v3/examples/ActivityType/Create.php',
'api/v3/examples/ActivityType/Get.php',
'api/v3/examples/Address/AddressLike.php',
'api/v3/examples/Address/AddressParse.php',
'api/v3/examples/Address/AddressSort.php',
'api/v3/examples/Address/Create.php',
'api/v3/examples/Address/Delete.php',
'api/v3/examples/Address/Get.php',
'api/v3/examples/Address/GetOptions.php',
'api/v3/examples/Batch/Create.php',
'api/v3/examples/Batch/Delete.php',
'api/v3/examples/Batch/Get.php',
'api/v3/examples/Batch/Update.php',
'api/v3/examples/Campaign/Create.php',
'api/v3/examples/Campaign/Delete.php',
'api/v3/examples/Campaign/Get.php',
'api/v3/examples/Case/Create.php',
'api/v3/examples/Constant/Get.php',
'api/v3/examples/Contact/APIChainedArray.php',
'api/v3/examples/Contact/APIChainedArrayFormats.php',
'api/v3/examples/Contact/APIChainedArrayMultipleCustom.php',
'api/v3/examples/Contact/APIChainedArrayValuesFromSiblingFunction.php',
'api/v3/examples/Contact/ChainTwoWebsites.php',
'api/v3/examples/Contact/ChainTwoWebsitesSyntax2.php',
'api/v3/examples/Contact/Create.php',
'api/v3/examples/Contact/CreateParticipantPayment.php',
'api/v3/examples/Contact/CustomFieldGet.php',
'api/v3/examples/Contact/CustomFieldGetReturnSyntaxVariation.php',
'api/v3/examples/Contact/Delete.php',
'api/v3/examples/Contact/FormatIsSuccess_Fail.php',
'api/v3/examples/Contact/FormatIsSuccess_True.php',
'api/v3/examples/Contact/FormatOnlyID.php',
'api/v3/examples/Contact/FormatSingleValue.php',
'api/v3/examples/Contact/Get.php',
'api/v3/examples/Contact/GetActions.php',
'api/v3/examples/Contact/GetCountContact.php',
'api/v3/examples/Contact/GetFieldsOptions.php',
'api/v3/examples/Contact/GetOptions.php',
'api/v3/examples/Contact/GetSingleContact.php',
'api/v3/examples/Contact/GroupFilterUsingContactAPI.php',
'api/v3/examples/Contact/NestedReplaceEmail.php',
'api/v3/examples/Contribution/ContributionCreateWithHonoreeContact.php',
'api/v3/examples/Contribution/ContributionCreateWithNote.php',
'api/v3/examples/Contribution/ContributionCreateWithSoftCredit.php',
'api/v3/examples/Contribution/ContributionCreateWithSoftCreditDefaults.php',
'api/v3/examples/Contribution/Create.php',
'api/v3/examples/Contribution/CreateWithNestedLineItems.php',
'api/v3/examples/Contribution/Delete.php',
'api/v3/examples/Contribution/Get.php',
'api/v3/examples/ContributionPage/Create.php',
'api/v3/examples/ContributionPage/Delete.php',
'api/v3/examples/ContributionPage/Get.php',
'api/v3/examples/ContributionPage/Submit.php',
'api/v3/examples/ContributionRecur/Create.php',
'api/v3/examples/ContributionRecur/Delete.php',
'api/v3/examples/ContributionRecur/Get.php',
'api/v3/examples/ContributionSoft/Create.php',
'api/v3/examples/ContributionSoft/Delete.php',
'api/v3/examples/ContributionSoft/Get.php',
'api/v3/examples/Country/Create.php',
'api/v3/examples/Country/Delete.php',
'api/v3/examples/Country/Get.php',
'api/v3/examples/CustomField/Create.php',
'api/v3/examples/CustomField/Delete.php',
'api/v3/examples/CustomGroup/Create.php',
'api/v3/examples/CustomGroup/Delete.php',
'api/v3/examples/CustomGroup/Get.php',
'api/v3/examples/CustomValue/Create.php',
'api/v3/examples/CustomValue/FormatFieldName.php',
'api/v3/examples/CustomValue/Get.php',
'api/v3/examples/Domain/Create.php',
'api/v3/examples/Domain/Get.php',
'api/v3/examples/Email/Create.php',
'api/v3/examples/Email/Delete.php',
'api/v3/examples/Email/Replace.php',
'api/v3/examples/EntityTag/Create.php',
'api/v3/examples/EntityTag/Delete.php',
'api/v3/examples/EntityTag/Get.php',
'api/v3/examples/Event/Create.php',
'api/v3/examples/Event/Delete.php',
'api/v3/examples/Event/Get.php',
'api/v3/examples/Event/IsCurrentOption.php',
'api/v3/examples/Event/IsFullOption.php',
'api/v3/examples/Grant/Create.php',
'api/v3/examples/Grant/Delete.php',
'api/v3/examples/Grant/Get.php',
'api/v3/examples/Group/Get.php',
'api/v3/examples/Group/GetFields.php',
'api/v3/examples/GroupContact/Create.php',
'api/v3/examples/GroupContact/Delete.php',
'api/v3/examples/GroupContact/Get.php',
'api/v3/examples/GroupContact/GetWithGroupID.php',
'api/v3/examples/GroupNesting/Create.php',
'api/v3/examples/GroupNesting/Delete.php',
'api/v3/examples/GroupNesting/Get.php',
'api/v3/examples/GroupOrganization/Create.php',
'api/v3/examples/GroupOrganization/Delete.php',
'api/v3/examples/GroupOrganization/Get.php',
'api/v3/examples/Im/Create.php',
'api/v3/examples/Im/Delete.php',
'api/v3/examples/Im/Get.php',
'api/v3/examples/Job/Create.php',
'api/v3/examples/Job/Delete.php',
'api/v3/examples/LineItem/Create.php',
'api/v3/examples/LineItem/Delete.php',
'api/v3/examples/LineItem/Get.php',
'api/v3/examples/LocBlock/Create.php',
'api/v3/examples/LocBlock/CreateEntities.php',
'api/v3/examples/LocBlock/Get.php',
'api/v3/examples/Logging/Get.php',
'api/v3/examples/Logging/Revert.php',
'api/v3/examples/Mailing/Create.php',
'api/v3/examples/Mailing/Delete.php',
'api/v3/examples/Mailing/GetTokens.php',
'api/v3/examples/Mailing/Submit.php',
'api/v3/examples/MailingAB/Create.php',
'api/v3/examples/MailingGroup/Subscribe.php',
'api/v3/examples/MailSettings/ChainedGetDelete.php',
'api/v3/examples/MailSettings/Create.php',
'api/v3/examples/MailSettings/Delete.php',
'api/v3/examples/MailSettings/Get.php',
'api/v3/examples/MailSettings/GetOptions.php',
'api/v3/examples/Membership/Create.php',
'api/v3/examples/Membership/CreateWithCustomData.php',
'api/v3/examples/Membership/Delete.php',
'api/v3/examples/Membership/FilterIsCurrent.php',
'api/v3/examples/Membership/Get.php',
'api/v3/examples/Membership/UpdateCustomData.php',
'api/v3/examples/MembershipPayment/Create.php',
'api/v3/examples/MembershipPayment/Get.php',
'api/v3/examples/MembershipStatus/Create.php',
'api/v3/examples/MembershipStatus/Get.php',
'api/v3/examples/MembershipType/Create.php',
'api/v3/examples/MembershipType/Delete.php',
'api/v3/examples/MembershipType/Get.php',
'api/v3/examples/MessageTemplate/Create.php',
'api/v3/examples/MessageTemplate/Delete.php',
'api/v3/examples/MessageTemplate/Get.php',
'api/v3/examples/Note/Create.php',
'api/v3/examples/Note/Delete.php',
'api/v3/examples/Note/Get.php',
'api/v3/examples/OptionGroup/Create.php',
'api/v3/examples/OptionGroup/Delete.php',
'api/v3/examples/OptionGroup/Get.php',
'api/v3/examples/OptionValue/Get.php',
'api/v3/examples/OptionValue/SortOption.php',
'api/v3/examples/Order/Cancel.php',
'api/v3/examples/Order/Create.php',
'api/v3/examples/Order/CreateOrderParticipant.php',
'api/v3/examples/Order/Delete.php',
'api/v3/examples/Order/Get.php',
'api/v3/examples/Participant/Create.php',
'api/v3/examples/Participant/Get.php',
'api/v3/examples/Participant/NestedDelete.php',
'api/v3/examples/Participant/NestedEventGet.php',
'api/v3/examples/ParticipantPayment/Create.php',
'api/v3/examples/ParticipantPayment/Delete.php',
'api/v3/examples/ParticipantPayment/Get.php',
'api/v3/examples/ParticipantStatusType/Create.php',
'api/v3/examples/ParticipantStatusType/Delete.php',
'api/v3/examples/ParticipantStatusType/Get.php',
'api/v3/examples/Payment/Cancel.php',
'api/v3/examples/Payment/Create.php',
'api/v3/examples/Payment/CreatePaymentWithLineItems.php',
'api/v3/examples/Payment/Delete.php',
'api/v3/examples/Payment/Get.php',
'api/v3/examples/Payment/UpdatePayment.php',
'api/v3/examples/PaymentProcessor/Create.php',
'api/v3/examples/PaymentProcessor/Delete.php',
'api/v3/examples/PaymentProcessorType/Create.php',
'api/v3/examples/PaymentProcessorType/Delete.php',
'api/v3/examples/Phone/Create.php',
'api/v3/examples/Phone/Delete.php',
'api/v3/examples/Phone/Get.php',
'api/v3/examples/Phone/GetOptions.php',
'api/v3/examples/Pledge/Create.php',
'api/v3/examples/Pledge/Delete.php',
'api/v3/examples/Pledge/Get.php',
'api/v3/examples/Pledge/GetFilterHighDate.php',
'api/v3/examples/PledgePayment/Create.php',
'api/v3/examples/PledgePayment/Delete.php',
'api/v3/examples/PledgePayment/Get.php',
'api/v3/examples/PledgePayment/Update.php',
'api/v3/examples/PriceField/Create.php',
'api/v3/examples/PriceField/Delete.php',
'api/v3/examples/PriceField/Get.php',
'api/v3/examples/PriceFieldValue/Create.php',
'api/v3/examples/PriceFieldValue/Delete.php',
'api/v3/examples/PriceFieldValue/Get.php',
'api/v3/examples/PriceSet/Create.php',
'api/v3/examples/PriceSet/Delete.php',
'api/v3/examples/PriceSet/Get.php',
'api/v3/examples/Profile/Apply.php',
'api/v3/examples/Profile/Get.php',
'api/v3/examples/Profile/GetFields.php',
'api/v3/examples/Profile/Submit.php',
'api/v3/examples/Relationship/BetweenRelationshipType.php',
'api/v3/examples/Relationship/Create.php',
'api/v3/examples/Relationship/Delete.php',
'api/v3/examples/Relationship/filterIsCurrent.php',
'api/v3/examples/Relationship/Get.php',
'api/v3/examples/Relationship/INRelationshipType.php',
'api/v3/examples/Relationship/NotBetweenRelationshipType.php',
'api/v3/examples/Relationship/NotInRelationshipType.php',
'api/v3/examples/RelationshipType/Create.php',
'api/v3/examples/RelationshipType/Delete.php',
'api/v3/examples/ReportTemplate/Getrows.php',
'api/v3/examples/ReportTemplate/Getstatistics.php',
'api/v3/examples/Setting/Create.php',
'api/v3/examples/Setting/CreateAllDomains.php',
'api/v3/examples/Setting/CreateSettingCurrentDomain.php',
'api/v3/examples/Setting/CreateSpecifiedDomains.php',
'api/v3/examples/Setting/Get.php',
'api/v3/examples/Setting/GetAllDomains.php',
'api/v3/examples/Setting/GetDefaults.php',
'api/v3/examples/Setting/GetFields.php',
'api/v3/examples/Setting/GetSettingCurrentDomain.php',
'api/v3/examples/Setting/GetSpecifiedDomains.php',
'api/v3/examples/Setting/GetValue.php',
'api/v3/examples/Setting/Revert.php',
'api/v3/examples/Survey/ChainedGetDelete.php',
'api/v3/examples/Survey/Create.php',
'api/v3/examples/Survey/Delete.php',
'api/v3/examples/Survey/Get.php',
'api/v3/examples/SurveyRespondant/Get.php',
'api/v3/examples/System/Flush.php',
'api/v3/examples/Tag/Create.php',
'api/v3/examples/Tag/Delete.php',
'api/v3/examples/Tag/Get.php',
'api/v3/examples/Tag/GetFields.php',
'api/v3/examples/Tag/GetList.php',
'api/v3/examples/Tag/GetReturnArray.php',
'api/v3/examples/TaxContributionPage/Create.php',
'api/v3/examples/TaxContributionPage/CreateWithNestedLineItems.php',
'api/v3/examples/TaxContributionPage/Delete.php',
'api/v3/examples/UFField/Create.php',
'api/v3/examples/UFField/Delete.php',
'api/v3/examples/UFField/Get.php',
'api/v3/examples/UFField/Replace.php',
'api/v3/examples/UFGroup/Create.php',
'api/v3/examples/UFGroup/Delete.php',
'api/v3/examples/UFGroup/Get.php',
'api/v3/examples/UFJoin/Create.php',
'api/v3/examples/UFJoin/Get.php',
'api/v3/examples/UFMatch/Get.php',
'api/v3/examples/Website/Create.php',
'api/v3/examples/Website/Delete.php',
'api/v3/examples/Website/Get.php',
'api/v3/examples/Website/GetFields.php',
'api/v3/examples/Website/GetWithMetadata.php',
'api/v3/Extension.php',
'api/v3/File.php',
'api/v3/FinancialAccount.php',
'api/v3/FinancialItem.php',
'api/v3/FinancialTrxn.php',
'api/v3/FinancialType.php',
'api/v3/Generic/Getactions.php',
'api/v3/Generic/Getlist.php',
'api/v3/Generic/Setvalue.php',
'api/v3/Generic/Update.php',
'api/v3/Generic.php',
'api/v3/Grant.php',
'api/v3/Group.php',
'api/v3/GroupContact.php',
'api/v3/GroupNesting.php',
'api/v3/GroupOrganization.php',
'api/v3/Im.php',
'api/v3/Job.php',
'api/v3/JobLog.php',
'api/v3/LineItem.php',
'api/v3/LocationType.php',
'api/v3/LocBlock.php',
'api/v3/Logging.php',
'api/v3/Mailing.php',
'api/v3/MailingAB.php',
'api/v3/MailingComponent.php',
'api/v3/MailingContact.php',
'api/v3/MailingEventConfirm.php',
'api/v3/MailingEventQueue.php',
'api/v3/MailingEventResubscribe.php',
'api/v3/MailingEventSubscribe.php',
'api/v3/MailingEventUnsubscribe.php',
'api/v3/MailingGroup.php',
'api/v3/MailingJob.php',
'api/v3/MailingRecipients.php',
'api/v3/MailSettings.php',
'api/v3/Mapping.php',
'api/v3/MappingField.php',
'api/v3/Membership.php',
'api/v3/MembershipBlock.php',
'api/v3/MembershipLog.php',
'api/v3/MembershipPayment.php',
'api/v3/MembershipStatus.php',
'api/v3/MembershipType.php',
'api/v3/MessageTemplate.php',
'api/v3/Navigation.php',
'api/v3/Note.php',
'api/v3/OpenID.php',
'api/v3/OptionGroup.php',
'api/v3/OptionValue.php',
'api/v3/Order.php',
'api/v3/Participant.php',
'api/v3/ParticipantPayment.php',
'api/v3/ParticipantStatusType.php',
'api/v3/Payment.php',
'api/v3/PaymentProcessor.php',
'api/v3/PaymentProcessorType.php',
'api/v3/PaymentToken.php',
'api/v3/Phone/Get.php',
'api/v3/Phone.php',
'api/v3/Pledge.php',
'api/v3/PledgePayment.php',
'api/v3/Premium.php',
'api/v3/PriceField.php',
'api/v3/PriceFieldValue.php',
'api/v3/PriceSet.php',
'api/v3/PrintLabel.php',
'api/v3/Product.php',
'api/v3/Profile.php',
'api/v3/RecurringEntity.php',
'api/v3/Relationship.php',
'api/v3/RelationshipType.php',
'api/v3/ReportInstance.php',
'api/v3/ReportTemplate.php',
'api/v3/RuleGroup.php',
'api/v3/SavedSearch.php',
'api/v3/Setting.php',
'api/v3/SmsProvider.php',
'api/v3/StatusPreference.php',
'api/v3/Survey.php',
'api/v3/SurveyRespondant.php',
'api/v3/System.php',
'api/v3/SystemLog.php',
'api/v3/Tag.php',
'api/v3/UFField.php',
'api/v3/UFGroup.php',
'api/v3/UFJoin.php',
'api/v3/UFMatch.php',
'api/v3/User.php',
'api/v3/utils.php',
'api/v3/Website.php',
'api/v3/WordReplacement.php',
'api/Wrapper.php',
'bin/cli.class.php',
'bin/cli.php',
'bin/ContributionProcessor.php',
'bin/cron.php',
'bin/csv/delete.php',
'bin/csv/export.php',
'bin/csv/import.php',
'bin/encryptDB.php',
'bin/migrate/export.php',
'bin/migrate/exportJSON.php',
'bin/migrate/import.php',
'bin/migrate/importJSON.php',
'bin/migrate/move.php',
'bower_components/ckeditor/samples/old/assets/posteddata.php',
'bower_components/ckeditor/samples/old/sample_posteddata.php',
'bower_components.orig/ckeditor/samples/old/assets/posteddata.php',
'bower_components.orig/ckeditor/samples/old/sample_posteddata.php',
'Civi/ActionSchedule/Event/MailingQueryEvent.php',
'Civi/ActionSchedule/Event/MappingRegisterEvent.php',
'Civi/ActionSchedule/Events.php',
'Civi/ActionSchedule/Mapping.php',
'Civi/ActionSchedule/MappingInterface.php',
'Civi/ActionSchedule/RecipientBuilder.php',
'Civi/Angular/Manager.php',
'Civi/Angular/Page/Main.php',
'Civi/Angular/Page/Modules.php',
'Civi/API/Event/AuthorizeEvent.php',
'Civi/API/Event/Event.php',
'Civi/API/Event/ExceptionEvent.php',
'Civi/API/Event/PrepareEvent.php',
'Civi/API/Event/ResolveEvent.php',
'Civi/API/Event/RespondEvent.php',
'Civi/API/Events.php',
'Civi/API/Exception/NotImplementedException.php',
'Civi/API/Exception/UnauthorizedException.php',
'Civi/API/ExternalBatch.php',
'Civi/API/Kernel.php',
'Civi/API/Provider/AdhocProvider.php',
'Civi/API/Provider/MagicFunctionProvider.php',
'Civi/API/Provider/ProviderInterface.php',
'Civi/API/Provider/ReflectionProvider.php',
'Civi/API/Provider/StaticProvider.php',
'Civi/API/Request.php',
'Civi/API/SelectQuery.php',
'Civi/API/Subscriber/APIv3SchemaAdapter.php',
'Civi/API/Subscriber/ChainSubscriber.php',
'Civi/API/Subscriber/DynamicFKAuthorization.php',
'Civi/API/Subscriber/I18nSubscriber.php',
'Civi/API/Subscriber/PermissionCheck.php',
'Civi/API/Subscriber/TransactionSubscriber.php',
'Civi/API/Subscriber/WhitelistSubscriber.php',
'Civi/API/Subscriber/WrapperAdapter.php',
'Civi/API/Subscriber/XDebugSubscriber.php',
'Civi/API/WhitelistRule.php',
'Civi/CCase/Analyzer.php',
'Civi/CCase/CaseChangeListener.php',
'Civi/CCase/Event/CaseChangeEvent.php',
'Civi/CCase/Events.php',
'Civi/CCase/Exception/MultipleActivityException.php',
'Civi/CCase/SequenceListener.php',
'Civi/CiUtil/Arrays.php',
'Civi/CiUtil/Command/AntagonistCommand.php',
'Civi/CiUtil/Command/CompareCommand.php',
'Civi/CiUtil/Command/LsCommand.php',
'Civi/CiUtil/ComparisonPrinter.php',
'Civi/CiUtil/CSVParser.php',
'Civi/CiUtil/CsvPrinter.php',
'Civi/CiUtil/EnvTestRunner.php',
'Civi/CiUtil/JenkinsParser.php',
'Civi/CiUtil/PHPUnitParser.php',
'Civi/CiUtil/PHPUnitScanner.php',
'Civi/Core/Container.php',
'Civi/Core/DAO/Event/PostDelete.php',
'Civi/Core/DAO/Event/PostUpdate.php',
'Civi/Core/DatabaseInitializer.php',
'Civi/Core/Event/PostEvent.php',
'Civi/Core/Event/PreEvent.php',
'Civi/Core/Event/SystemInstallEvent.php',
'Civi/Core/Event/UnhandledExceptionEvent.php',
'Civi/Core/InstallationCanary.php',
'Civi/Core/Lock/LockInterface.php',
'Civi/Core/Lock/LockManager.php',
'Civi/Core/Lock/NullLock.php',
'Civi/Core/Paths.php',
'Civi/Core/Resolver.php',
'Civi/Core/SettingsBag.php',
'Civi/Core/SettingsManager.php',
'Civi/Core/SettingsMetadata.php',
'Civi/Core/SqlTriggers.php',
'Civi/Core/Transaction/Frame.php',
'Civi/Core/Transaction/Manager.php',
'Civi/Install/Requirements.php',
'Civi/Payment/Exception/PaymentProcessorException.php',
'Civi/Payment/System.php',
'Civi/Test/CiviEnvBuilder/CallbackStep.php',
'Civi/Test/CiviEnvBuilder/ExtensionsStep.php',
'Civi/Test/CiviEnvBuilder/SqlFileStep.php',
'Civi/Test/CiviEnvBuilder/SqlStep.php',
'Civi/Test/CiviEnvBuilder/StepInterface.php',
'Civi/Test/CiviEnvBuilder.php',
'Civi/Test/CiviTestListener.php',
'Civi/Test/Data.php',
'Civi/Test/EndToEndInterface.php',
'Civi/Test/HeadlessInterface.php',
'Civi/Test/HookInterface.php',
'Civi/Test/Schema.php',
'Civi/Test/TransactionalInterface.php',
'Civi/Test.php',
'Civi/Token/AbstractTokenSubscriber.php',
'Civi/Token/Event/TokenEvent.php',
'Civi/Token/Event/TokenRegisterEvent.php',
'Civi/Token/Event/TokenRenderEvent.php',
'Civi/Token/Event/TokenValueEvent.php',
'Civi/Token/Events.php',
'Civi/Token/TokenCompatSubscriber.php',
'Civi/Token/TokenException.php',
'Civi/Token/TokenProcessor.php',
'Civi/Token/TokenRow.php',
'Civi.php',
'civicrm-version.php',
'civicrm.config.php',
'CRM/ACL/API.php',
'CRM/ACL/BAO/ACL.php',
'CRM/ACL/BAO/Cache.php',
'CRM/ACL/BAO/EntityRole.php',
'CRM/ACL/DAO/ACL.php',
'CRM/ACL/DAO/Cache.php',
'CRM/ACL/DAO/EntityRole.php',
'CRM/ACL/Form/ACL.php',
'CRM/ACL/Form/ACLBasic.php',
'CRM/ACL/Form/EntityRole.php',
'CRM/ACL/Form/WordPress/Permissions.php',
'CRM/ACL/Page/ACL.php',
'CRM/ACL/Page/ACLBasic.php',
'CRM/ACL/Page/EntityRole.php',
'CRM/Activity/ActionMapping.php',
'CRM/Activity/BAO/Activity.php',
'CRM/Activity/BAO/ActivityAssignment.php',
'CRM/Activity/BAO/ActivityContact.php',
'CRM/Activity/BAO/ActivityTarget.php',
'CRM/Activity/BAO/ICalendar.php',
'CRM/Activity/BAO/Query.php',
'CRM/Activity/Controller/Search.php',
'CRM/Activity/DAO/Activity.php',
'CRM/Activity/DAO/ActivityContact.php',
'CRM/Activity/Form/Activity.php',
'CRM/Activity/Form/ActivityFilter.php',
'CRM/Activity/Form/ActivityLinks.php',
'CRM/Activity/Form/ActivityView.php',
'CRM/Activity/Form/Search.php',
'CRM/Activity/Form/Task/AddToTag.php',
'CRM/Activity/Form/Task/Batch.php',
'CRM/Activity/Form/Task/Delete.php',
'CRM/Activity/Form/Task/Email.php',
'CRM/Activity/Form/Task/FileOnCase.php',
'CRM/Activity/Form/Task/PickOption.php',
'CRM/Activity/Form/Task/PickProfile.php',
'CRM/Activity/Form/Task/Print.php',
'CRM/Activity/Form/Task/RemoveFromTag.php',
'CRM/Activity/Form/Task/SearchTaskHookSample.php',
'CRM/Activity/Form/Task/SMS.php',
'CRM/Activity/Form/Task.php',
'CRM/Activity/Import/Controller.php',
'CRM/Activity/Import/Field.php',
'CRM/Activity/Import/Form/DataSource.php',
'CRM/Activity/Import/Form/MapField.php',
'CRM/Activity/Import/Form/Preview.php',
'CRM/Activity/Import/Form/Summary.php',
'CRM/Activity/Import/Parser/Activity.php',
'CRM/Activity/Import/Parser.php',
'CRM/Activity/Page/AJAX.php',
'CRM/Activity/Page/Tab.php',
'CRM/Activity/Page/UserDashboard.php',
'CRM/Activity/Selector/Activity.php',
'CRM/Activity/Selector/Search.php',
'CRM/Activity/StateMachine/Search.php',
'CRM/Activity/Task.php',
'CRM/Activity/Tokens.php',
'CRM/Admin/Form/CMSUser.php',
'CRM/Admin/Form/ContactType.php',
'CRM/Admin/Form/Extensions.php',
'CRM/Admin/Form/Job.php',
'CRM/Admin/Form/LabelFormats.php',
'CRM/Admin/Form/LocationType.php',
'CRM/Admin/Form/MailSettings.php',
'CRM/Admin/Form/Mapping.php',
'CRM/Admin/Form/MessageTemplates.php',
'CRM/Admin/Form/Navigation.php',
'CRM/Admin/Form/OptionGroup.php',
'CRM/Admin/Form/Options.php',
'CRM/Admin/Form/ParticipantStatusType.php',
'CRM/Admin/Form/PaymentProcessor.php',
'CRM/Admin/Form/PaymentProcessorType.php',
'CRM/Admin/Form/PdfFormats.php',
'CRM/Admin/Form/Persistent.php',
'CRM/Admin/Form/Preferences/Address.php',
'CRM/Admin/Form/Preferences/Campaign.php',
'CRM/Admin/Form/Preferences/Contribute.php',
'CRM/Admin/Form/Preferences/Display.php',
'CRM/Admin/Form/Preferences/Event.php',
'CRM/Admin/Form/Preferences/Mailing.php',
'CRM/Admin/Form/Preferences/Member.php',
'CRM/Admin/Form/Preferences/Multisite.php',
'CRM/Admin/Form/Preferences.php',
'CRM/Admin/Form/PreferencesDate.php',
'CRM/Admin/Form/RelationshipType.php',
'CRM/Admin/Form/ScheduleReminders.php',
'CRM/Admin/Form/Setting/Component.php',
'CRM/Admin/Form/Setting/Date.php',
'CRM/Admin/Form/Setting/Debugging.php',
'CRM/Admin/Form/Setting/Localization.php',
'CRM/Admin/Form/Setting/Mail.php',
'CRM/Admin/Form/Setting/Mapping.php',
'CRM/Admin/Form/Setting/Miscellaneous.php',
'CRM/Admin/Form/Setting/Path.php',
'CRM/Admin/Form/Setting/Search.php',
'CRM/Admin/Form/Setting/Smtp.php',
'CRM/Admin/Form/Setting/UF.php',
'CRM/Admin/Form/Setting/UpdateConfigBackend.php',
'CRM/Admin/Form/Setting/Url.php',
'CRM/Admin/Form/Setting.php',
'CRM/Admin/Form/Tag.php',
'CRM/Admin/Form/WordReplacements.php',
'CRM/Admin/Form.php',
'CRM/Admin/Page/Access.php',
'CRM/Admin/Page/Admin.php',
'CRM/Admin/Page/AJAX.php',
'CRM/Admin/Page/APIExplorer.php',
'CRM/Admin/Page/CKEditorConfig.php',
'CRM/Admin/Page/ConfigTaskList.php',
'CRM/Admin/Page/ContactType.php',
'CRM/Admin/Page/EventTemplate.php',
'CRM/Admin/Page/Extensions.php',
'CRM/Admin/Page/ExtensionsUpgrade.php',
'CRM/Admin/Page/Job.php',
'CRM/Admin/Page/JobLog.php',
'CRM/Admin/Page/LabelFormats.php',
'CRM/Admin/Page/LocationType.php',
'CRM/Admin/Page/MailSettings.php',
'CRM/Admin/Page/Mapping.php',
'CRM/Admin/Page/MessageTemplates.php',
'CRM/Admin/Page/Navigation.php',
'CRM/Admin/Page/Options.php',
'CRM/Admin/Page/ParticipantStatusType.php',
'CRM/Admin/Page/PaymentProcessor.php',
'CRM/Admin/Page/PaymentProcessorType.php',
'CRM/Admin/Page/PdfFormats.php',
'CRM/Admin/Page/Persistent.php',
'CRM/Admin/Page/PreferencesDate.php',
'CRM/Admin/Page/RelationshipType.php',
'CRM/Admin/Page/ScheduleReminders.php',
'CRM/Admin/Page/Setting.php',
'CRM/Admin/Page/Tag.php',
'CRM/Badge/BAO/Badge.php',
'CRM/Badge/BAO/Layout.php',
'CRM/Badge/Form/Layout.php',
'CRM/Badge/Page/AJAX.php',
'CRM/Badge/Page/Layout.php',
'CRM/Batch/BAO/Batch.php',
'CRM/Batch/BAO/EntityBatch.php',
'CRM/Batch/DAO/Batch.php',
'CRM/Batch/DAO/EntityBatch.php',
'CRM/Batch/Form/Batch.php',
'CRM/Batch/Form/Entry.php',
'CRM/Batch/Form/Search.php',
'CRM/Batch/Page/AJAX.php',
'CRM/Batch/Page/Batch.php',
'CRM/Bridge/OG/CiviCRM.php',
'CRM/Bridge/OG/Drupal.php',
'CRM/Bridge/OG/Utils.php',
'CRM/Campaign/BAO/Campaign.php',
'CRM/Campaign/BAO/Petition.php',
'CRM/Campaign/BAO/Query.php',
'CRM/Campaign/BAO/Survey.php',
'CRM/Campaign/Controller/Search.php',
'CRM/Campaign/DAO/Campaign.php',
'CRM/Campaign/DAO/CampaignGroup.php',
'CRM/Campaign/DAO/Survey.php',
'CRM/Campaign/Form/Campaign.php',
'CRM/Campaign/Form/Gotv.php',
'CRM/Campaign/Form/Petition/Signature.php',
'CRM/Campaign/Form/Petition.php',
'CRM/Campaign/Form/Search/Campaign.php',
'CRM/Campaign/Form/Search/Petition.php',
'CRM/Campaign/Form/Search/Survey.php',
'CRM/Campaign/Form/Search.php',
'CRM/Campaign/Form/Survey/Delete.php',
'CRM/Campaign/Form/Survey/Main.php',
'CRM/Campaign/Form/Survey/Questions.php',
'CRM/Campaign/Form/Survey/Results.php',
'CRM/Campaign/Form/Survey/TabHeader.php',
'CRM/Campaign/Form/Survey.php',
'CRM/Campaign/Form/SurveyType.php',
'CRM/Campaign/Form/Task/Interview.php',
'CRM/Campaign/Form/Task/Print.php',
'CRM/Campaign/Form/Task/Release.php',
'CRM/Campaign/Form/Task/Reserve.php',
'CRM/Campaign/Form/Task/Result.php',
'CRM/Campaign/Form/Task.php',
'CRM/Campaign/Info.php',
'CRM/Campaign/Page/AJAX.php',
'CRM/Campaign/Page/DashBoard.php',
'CRM/Campaign/Page/Petition/Confirm.php',
'CRM/Campaign/Page/Petition/ThankYou.php',
'CRM/Campaign/Page/Petition.php',
'CRM/Campaign/Page/SurveyType.php',
'CRM/Campaign/Page/Vote.php',
'CRM/Campaign/PseudoConstant.php',
'CRM/Campaign/Selector/Search.php',
'CRM/Campaign/StateMachine/Search.php',
'CRM/Campaign/Task.php',
'CRM/Case/Audit/Audit.php',
'CRM/Case/Audit/AuditConfig.php',
'CRM/Case/BAO/Case.php',
'CRM/Case/BAO/CaseContact.php',
'CRM/Case/BAO/CaseType.php',
'CRM/Case/BAO/Query.php',
'CRM/Case/Controller/Search.php',
'CRM/Case/DAO/Case.php',
'CRM/Case/DAO/CaseActivity.php',
'CRM/Case/DAO/CaseContact.php',
'CRM/Case/DAO/CaseType.php',
'CRM/Case/Form/Activity/ChangeCaseStartDate.php',
'CRM/Case/Form/Activity/ChangeCaseStatus.php',
'CRM/Case/Form/Activity/ChangeCaseType.php',
'CRM/Case/Form/Activity/LinkCases.php',
'CRM/Case/Form/Activity/OpenCase.php',
'CRM/Case/Form/Activity.php',
'CRM/Case/Form/ActivityToCase.php',
'CRM/Case/Form/ActivityView.php',
'CRM/Case/Form/Case.php',
'CRM/Case/Form/CaseView.php',
'CRM/Case/Form/CustomData.php',
'CRM/Case/Form/EditClient.php',
'CRM/Case/Form/Report.php',
'CRM/Case/Form/Search.php',
'CRM/Case/Form/Task/Delete.php',
'CRM/Case/Form/Task/PDF.php',
'CRM/Case/Form/Task/Print.php',
'CRM/Case/Form/Task/Restore.php',
'CRM/Case/Form/Task/Result.php',
'CRM/Case/Form/Task/SearchTaskHookSample.php',
'CRM/Case/Form/Task.php',
'CRM/Case/Info.php',
'CRM/Case/ManagedEntities.php',
'CRM/Case/Page/AJAX.php',
'CRM/Case/Page/CaseDetails.php',
'CRM/Case/Page/DashBoard.php',
'CRM/Case/Page/Tab.php',
'CRM/Case/PseudoConstant.php',
'CRM/Case/Selector/Search.php',
'CRM/Case/StateMachine/Search.php',
'CRM/Case/Task.php',
'CRM/Case/XMLProcessor/Process.php',
'CRM/Case/XMLProcessor/Report.php',
'CRM/Case/XMLProcessor/Settings.php',
'CRM/Case/XMLProcessor.php',
'CRM/Case/XMLRepository.php',
'CRM/Contact/ActionMapping.php',
'CRM/Contact/BAO/Contact/Location.php',
'CRM/Contact/BAO/Contact/Optimizer.php',
'CRM/Contact/BAO/Contact/Permission.php',
'CRM/Contact/BAO/Contact/Utils.php',
'CRM/Contact/BAO/Contact.php',
'CRM/Contact/BAO/ContactType.php',
'CRM/Contact/BAO/DashboardContact.php',
'CRM/Contact/BAO/Group.php',
'CRM/Contact/BAO/GroupContact.php',
'CRM/Contact/BAO/GroupContactCache.php',
'CRM/Contact/BAO/GroupNesting.php',
'CRM/Contact/BAO/GroupNestingCache.php',
'CRM/Contact/BAO/GroupOrganization.php',
'CRM/Contact/BAO/Household.php',
'CRM/Contact/BAO/Individual.php',
'CRM/Contact/BAO/ProximityQuery.php',
'CRM/Contact/BAO/Query/Hook.php',
'CRM/Contact/BAO/Query/Interface.php',
'CRM/Contact/BAO/Query.php',
'CRM/Contact/BAO/Relationship.php',
'CRM/Contact/BAO/RelationshipType.php',
'CRM/Contact/BAO/SavedSearch.php',
'CRM/Contact/BAO/SearchCustom.php',
'CRM/Contact/BAO/SubscriptionHistory.php',
'CRM/Contact/Controller/Search.php',
'CRM/Contact/DAO/ACLContactCache.php',
'CRM/Contact/DAO/Contact.php',
'CRM/Contact/DAO/ContactType.php',
'CRM/Contact/DAO/DashboardContact.php',
'CRM/Contact/DAO/Factory.php',
'CRM/Contact/DAO/Group.php',
'CRM/Contact/DAO/GroupContact.php',
'CRM/Contact/DAO/GroupContactCache.php',
'CRM/Contact/DAO/GroupNesting.php',
'CRM/Contact/DAO/GroupOrganization.php',
'CRM/Contact/DAO/Relationship.php',
'CRM/Contact/DAO/RelationshipType.php',
'CRM/Contact/DAO/SavedSearch.php',
'CRM/Contact/DAO/SubscriptionHistory.php',
'CRM/Contact/Form/Contact.php',
'CRM/Contact/Form/CustomData.php',
'CRM/Contact/Form/DedupeFind.php',
'CRM/Contact/Form/DedupeRules.php',
'CRM/Contact/Form/Domain.php',
'CRM/Contact/Form/Edit/Address.php',
'CRM/Contact/Form/Edit/CommunicationPreferences.php',
'CRM/Contact/Form/Edit/CustomData.php',
'CRM/Contact/Form/Edit/Demographics.php',
'CRM/Contact/Form/Edit/Email.php',
'CRM/Contact/Form/Edit/Household.php',
'CRM/Contact/Form/Edit/IM.php',
'CRM/Contact/Form/Edit/Individual.php',
'CRM/Contact/Form/Edit/Lock.php',
'CRM/Contact/Form/Edit/Notes.php',
'CRM/Contact/Form/Edit/OpenID.php',
'CRM/Contact/Form/Edit/Organization.php',
'CRM/Contact/Form/Edit/Phone.php',
'CRM/Contact/Form/Edit/TagsAndGroups.php',
'CRM/Contact/Form/Edit/Website.php',
'CRM/Contact/Form/GroupContact.php',
'CRM/Contact/Form/Inline/Address.php',
'CRM/Contact/Form/Inline/CommunicationPreferences.php',
'CRM/Contact/Form/Inline/ContactInfo.php',
'CRM/Contact/Form/Inline/ContactName.php',
'CRM/Contact/Form/Inline/CustomData.php',
'CRM/Contact/Form/Inline/Demographics.php',
'CRM/Contact/Form/Inline/Email.php',
'CRM/Contact/Form/Inline/IM.php',
'CRM/Contact/Form/Inline/Lock.php',
'CRM/Contact/Form/Inline/OpenID.php',
'CRM/Contact/Form/Inline/Phone.php',
'CRM/Contact/Form/Inline/Website.php',
'CRM/Contact/Form/Inline.php',
'CRM/Contact/Form/Location.php',
'CRM/Contact/Form/Merge.php',
'CRM/Contact/Form/RelatedContact.php',
'CRM/Contact/Form/Relationship.php',
'CRM/Contact/Form/Search/Advanced.php',
'CRM/Contact/Form/Search/Basic.php',
'CRM/Contact/Form/Search/Builder.php',
'CRM/Contact/Form/Search/Criteria.php',
'CRM/Contact/Form/Search/Custom/ActivitySearch.php',
'CRM/Contact/Form/Search/Custom/Base.php',
'CRM/Contact/Form/Search/Custom/Basic.php',
'CRM/Contact/Form/Search/Custom/ContribSYBNT.php',
'CRM/Contact/Form/Search/Custom/ContributionAggregate.php',
'CRM/Contact/Form/Search/Custom/DateAdded.php',
'CRM/Contact/Form/Search/Custom/EventAggregate.php',
'CRM/Contact/Form/Search/Custom/FullText/AbstractPartialQuery.php',
'CRM/Contact/Form/Search/Custom/FullText/Activity.php',
'CRM/Contact/Form/Search/Custom/FullText/Case.php',
'CRM/Contact/Form/Search/Custom/FullText/Contact.php',
'CRM/Contact/Form/Search/Custom/FullText/Contribution.php',
'CRM/Contact/Form/Search/Custom/FullText/Membership.php',
'CRM/Contact/Form/Search/Custom/FullText/Participant.php',
'CRM/Contact/Form/Search/Custom/FullText.php',
'CRM/Contact/Form/Search/Custom/Group.php',
'CRM/Contact/Form/Search/Custom/MultipleValues.php',
'CRM/Contact/Form/Search/Custom/PostalMailing.php',
'CRM/Contact/Form/Search/Custom/PriceSet.php',
'CRM/Contact/Form/Search/Custom/Proximity.php',
'CRM/Contact/Form/Search/Custom/RandomSegment.php',
'CRM/Contact/Form/Search/Custom/Sample.php',
'CRM/Contact/Form/Search/Custom/TagContributions.php',
'CRM/Contact/Form/Search/Custom/ZipCodeRange.php',
'CRM/Contact/Form/Search/Custom.php',
'CRM/Contact/Form/Search/Interface.php',
'CRM/Contact/Form/Search.php',
'CRM/Contact/Form/Task/AddToGroup.php',
'CRM/Contact/Form/Task/AddToHousehold.php',
'CRM/Contact/Form/Task/AddToOrganization.php',
'CRM/Contact/Form/Task/AddToParentClass.php',
'CRM/Contact/Form/Task/AddToTag.php',
'CRM/Contact/Form/Task/AlterPreferences.php',
'CRM/Contact/Form/Task/Batch.php',
'CRM/Contact/Form/Task/Delete.php',
'CRM/Contact/Form/Task/Email.php',
'CRM/Contact/Form/Task/EmailCommon.php',
'CRM/Contact/Form/Task/HookSample.php',
'CRM/Contact/Form/Task/Label.php',
'CRM/Contact/Form/Task/LabelCommon.php',
'CRM/Contact/Form/Task/Map/Event.php',
'CRM/Contact/Form/Task/Map.php',
'CRM/Contact/Form/Task/Merge.php',
'CRM/Contact/Form/Task/PDF.php',
'CRM/Contact/Form/Task/PDFLetterCommon.php',
'CRM/Contact/Form/Task/PickProfile.php',
'CRM/Contact/Form/Task/Print.php',
'CRM/Contact/Form/Task/ProximityCommon.php',
'CRM/Contact/Form/Task/RemoveFromGroup.php',
'CRM/Contact/Form/Task/RemoveFromTag.php',
'CRM/Contact/Form/Task/Result.php',
'CRM/Contact/Form/Task/SaveSearch/Update.php',
'CRM/Contact/Form/Task/SaveSearch.php',
'CRM/Contact/Form/Task/SMS.php',
'CRM/Contact/Form/Task/SMSCommon.php',
'CRM/Contact/Form/Task/Unhold.php',
'CRM/Contact/Form/Task/Useradd.php',
'CRM/Contact/Form/Task.php',
'CRM/Contact/Import/Controller.php',
'CRM/Contact/Import/Field.php',
'CRM/Contact/Import/Form/DataSource.php',
'CRM/Contact/Import/Form/MapField.php',
'CRM/Contact/Import/Form/Preview.php',
'CRM/Contact/Import/Form/Summary.php',
'CRM/Contact/Import/Importer.php',
'CRM/Contact/Import/ImportJob.php',
'CRM/Contact/Import/Page/AJAX.php',
'CRM/Contact/Import/Parser/Contact.php',
'CRM/Contact/Import/Parser.php',
'CRM/Contact/Page/AJAX.php',
'CRM/Contact/Page/CustomSearch.php',
'CRM/Contact/Page/DashBoard.php',
'CRM/Contact/Page/Dashlet.php',
'CRM/Contact/Page/DedupeException.php',
'CRM/Contact/Page/DedupeFind.php',
'CRM/Contact/Page/DedupeMerge.php',
'CRM/Contact/Page/DedupeRules.php',
'CRM/Contact/Page/ImageFile.php',
'CRM/Contact/Page/Inline/Actions.php',
'CRM/Contact/Page/Inline/Address.php',
'CRM/Contact/Page/Inline/CommunicationPreferences.php',
'CRM/Contact/Page/Inline/ContactInfo.php',
'CRM/Contact/Page/Inline/ContactName.php',
'CRM/Contact/Page/Inline/CustomData.php',
'CRM/Contact/Page/Inline/Demographics.php',
'CRM/Contact/Page/Inline/Email.php',
'CRM/Contact/Page/Inline/IM.php',
'CRM/Contact/Page/Inline/OpenID.php',
'CRM/Contact/Page/Inline/Phone.php',
'CRM/Contact/Page/Inline/Website.php',
'CRM/Contact/Page/SavedSearch.php',
'CRM/Contact/Page/Task.php',
'CRM/Contact/Page/View/ContactSmartGroup.php',
'CRM/Contact/Page/View/CustomData.php',
'CRM/Contact/Page/View/GroupContact.php',
'CRM/Contact/Page/View/Log.php',
'CRM/Contact/Page/View/Note.php',
'CRM/Contact/Page/View/Print.php',
'CRM/Contact/Page/View/Relationship.php',
'CRM/Contact/Page/View/Summary.php',
'CRM/Contact/Page/View/Tag.php',
'CRM/Contact/Page/View/Useradd.php',
'CRM/Contact/Page/View/UserDashBoard/GroupContact.php',
'CRM/Contact/Page/View/UserDashBoard.php',
'CRM/Contact/Page/View/Vcard.php',
'CRM/Contact/Page/View.php',
'CRM/Contact/Selector/Controller.php',
'CRM/Contact/Selector/Custom.php',
'CRM/Contact/Selector.php',
'CRM/Contact/StateMachine/Search.php',
'CRM/Contact/Task.php',
'CRM/Contribute/ActionMapping/ByPage.php',
'CRM/Contribute/ActionMapping/ByType.php',
'CRM/Contribute/BAO/Contribution/Utils.php',
'CRM/Contribute/BAO/Contribution.php',
'CRM/Contribute/BAO/ContributionPage.php',
'CRM/Contribute/BAO/ContributionRecur.php',
'CRM/Contribute/BAO/ContributionSoft.php',
'CRM/Contribute/BAO/ManagePremiums.php',
'CRM/Contribute/BAO/Premium.php',
'CRM/Contribute/BAO/Query.php',
'CRM/Contribute/BAO/Widget.php',
'CRM/Contribute/Controller/Contribution.php',
'CRM/Contribute/Controller/ContributionPage.php',
'CRM/Contribute/Controller/Search.php',
'CRM/Contribute/DAO/Contribution.php',
'CRM/Contribute/DAO/ContributionPage.php',
'CRM/Contribute/DAO/ContributionProduct.php',
'CRM/Contribute/DAO/ContributionRecur.php',
'CRM/Contribute/DAO/ContributionSoft.php',
'CRM/Contribute/DAO/Premium.php',
'CRM/Contribute/DAO/PremiumsProduct.php',
'CRM/Contribute/DAO/Product.php',
'CRM/Contribute/DAO/Widget.php',
'CRM/Contribute/Exception/InactiveContributionPageException.php',
'CRM/Contribute/Form/AbstractEditPayment.php',
'CRM/Contribute/Form/AdditionalInfo.php',
'CRM/Contribute/Form/AdditionalPayment.php',
'CRM/Contribute/Form/CancelSubscription.php',
'CRM/Contribute/Form/CloseAccPeriod.php',
'CRM/Contribute/Form/Contribution/Confirm.php',
'CRM/Contribute/Form/Contribution/Main.php',
'CRM/Contribute/Form/Contribution/ThankYou.php',
'CRM/Contribute/Form/Contribution.php',
'CRM/Contribute/Form/ContributionBase.php',
'CRM/Contribute/Form/ContributionCharts.php',
'CRM/Contribute/Form/ContributionPage/AddProduct.php',
'CRM/Contribute/Form/ContributionPage/Amount.php',
'CRM/Contribute/Form/ContributionPage/Custom.php',
'CRM/Contribute/Form/ContributionPage/Delete.php',
'CRM/Contribute/Form/ContributionPage/Premium.php',
'CRM/Contribute/Form/ContributionPage/Settings.php',
'CRM/Contribute/Form/ContributionPage/TabHeader.php',
'CRM/Contribute/Form/ContributionPage/ThankYou.php',
'CRM/Contribute/Form/ContributionPage/Widget.php',
'CRM/Contribute/Form/ContributionPage.php',
'CRM/Contribute/Form/ContributionView.php',
'CRM/Contribute/Form/ManagePremiums.php',
'CRM/Contribute/Form/Search.php',
'CRM/Contribute/Form/SearchContribution.php',
'CRM/Contribute/Form/SoftCredit.php',
'CRM/Contribute/Form/Task/Batch.php',
'CRM/Contribute/Form/Task/Delete.php',
'CRM/Contribute/Form/Task/Email.php',
'CRM/Contribute/Form/Task/Invoice.php',
'CRM/Contribute/Form/Task/PDF.php',
'CRM/Contribute/Form/Task/PDFLetter.php',
'CRM/Contribute/Form/Task/PDFLetterCommon.php',
'CRM/Contribute/Form/Task/PickProfile.php',
'CRM/Contribute/Form/Task/Print.php',
'CRM/Contribute/Form/Task/Result.php',
'CRM/Contribute/Form/Task/SearchTaskHookSample.php',
'CRM/Contribute/Form/Task/Status.php',
'CRM/Contribute/Form/Task.php',
'CRM/Contribute/Form/UpdateBilling.php',
'CRM/Contribute/Form/UpdateSubscription.php',
'CRM/Contribute/Form.php',
'CRM/Contribute/Import/Controller.php',
'CRM/Contribute/Import/Field.php',
'CRM/Contribute/Import/Form/DataSource.php',
'CRM/Contribute/Import/Form/MapField.php',
'CRM/Contribute/Import/Form/Preview.php',
'CRM/Contribute/Import/Form/Summary.php',
'CRM/Contribute/Import/Parser/Contribution.php',
'CRM/Contribute/Import/Parser.php',
'CRM/Contribute/Info.php',
'CRM/Contribute/Page/ContributionPage.php',
'CRM/Contribute/Page/ContributionRecur.php',
'CRM/Contribute/Page/DashBoard.php',
'CRM/Contribute/Page/ManagePremiums.php',
'CRM/Contribute/Page/PaymentInfo.php',
'CRM/Contribute/Page/Premium.php',
'CRM/Contribute/Page/SubscriptionStatus.php',
'CRM/Contribute/Page/Tab.php',
'CRM/Contribute/Page/UserDashboard.php',
'CRM/Contribute/PseudoConstant.php',
'CRM/Contribute/Selector/Search.php',
'CRM/Contribute/StateMachine/Contribution.php',
'CRM/Contribute/StateMachine/ContributionPage.php',
'CRM/Contribute/StateMachine/Search.php',
'CRM/Contribute/Task.php',
'CRM/Contribute/Tokens.php',
'CRM/Core/Action.php',
'CRM/Core/BAO/ActionLog.php',
'CRM/Core/BAO/ActionSchedule.php',
'CRM/Core/BAO/Address.php',
'CRM/Core/BAO/Block.php',
'CRM/Core/BAO/Cache.php',
'CRM/Core/BAO/CMSUser.php',
'CRM/Core/BAO/ConfigSetting.php',
'CRM/Core/BAO/Country.php',
'CRM/Core/BAO/CustomField.php',
'CRM/Core/BAO/CustomGroup.php',
'CRM/Core/BAO/CustomOption.php',
'CRM/Core/BAO/CustomQuery.php',
'CRM/Core/BAO/CustomValue.php',
'CRM/Core/BAO/CustomValueTable.php',
'CRM/Core/BAO/Dashboard.php',
'CRM/Core/BAO/Discount.php',
'CRM/Core/BAO/Domain.php',
'CRM/Core/BAO/Email.php',
'CRM/Core/BAO/EntityTag.php',
'CRM/Core/BAO/Extension.php',
'CRM/Core/BAO/File.php',
'CRM/Core/BAO/FinancialTrxn.php',
'CRM/Core/BAO/IM.php',
'CRM/Core/BAO/Job.php',
'CRM/Core/BAO/LabelFormat.php',
'CRM/Core/BAO/Location.php',
'CRM/Core/BAO/LocationType.php',
'CRM/Core/BAO/Log.php',
'CRM/Core/BAO/MailSettings.php',
'CRM/Core/BAO/Mapping.php',
'CRM/Core/BAO/MessageTemplate.php',
'CRM/Core/BAO/Navigation.php',
'CRM/Core/BAO/Note.php',
'CRM/Core/BAO/OpenID.php',
'CRM/Core/BAO/OptionGroup.php',
'CRM/Core/BAO/OptionValue.php',
'CRM/Core/BAO/PaperSize.php',
'CRM/Core/BAO/PdfFormat.php',
'CRM/Core/BAO/Persistent.php',
'CRM/Core/BAO/Phone.php',
'CRM/Core/BAO/PreferencesDate.php',
'CRM/Core/BAO/PrevNextCache.php',
'CRM/Core/BAO/RecurringEntity.php',
'CRM/Core/BAO/SchemaHandler.php',
'CRM/Core/BAO/Setting.php',
'CRM/Core/BAO/StatusPreference.php',
'CRM/Core/BAO/Tag.php',
'CRM/Core/BAO/UFField.php',
'CRM/Core/BAO/UFGroup.php',
'CRM/Core/BAO/UFJoin.php',
'CRM/Core/BAO/UFMatch.php',
'CRM/Core/BAO/Website.php',
'CRM/Core/BAO/WordReplacement.php',
'CRM/Core/Base.php',
'CRM/Core/Block.php',
'CRM/Core/ClassLoader.php',
'CRM/Core/CodeGen/BaseTask.php',
'CRM/Core/CodeGen/Config.php',
'CRM/Core/CodeGen/DAO.php',
'CRM/Core/CodeGen/I18n.php',
'CRM/Core/CodeGen/ITask.php',
'CRM/Core/CodeGen/Main.php',
'CRM/Core/CodeGen/Reflection.php',
'CRM/Core/CodeGen/Schema.php',
'CRM/Core/CodeGen/Specification.php',
'CRM/Core/CodeGen/Test.php',
'CRM/Core/CodeGen/Util/File.php',
'CRM/Core/CodeGen/Util/Smarty.php',
'CRM/Core/CodeGen/Util/Template.php',
'CRM/Core/CodeGen/Util/Xml.php',
'CRM/Core/CodeGen/Version.php',
'CRM/Core/CommunityMessages.php',
'CRM/Core/Component/Info.php',
'CRM/Core/Component.php',
'CRM/Core/Config/MagicMerge.php',
'CRM/Core/Config/Runtime.php',
'CRM/Core/Config.php',
'CRM/Core/Controller/Simple.php',
'CRM/Core/Controller.php',
'CRM/Core/DAO/ActionLog.php',
'CRM/Core/DAO/ActionMapping.php',
'CRM/Core/DAO/ActionSchedule.php',
'CRM/Core/DAO/Address.php',
'CRM/Core/DAO/AddressFormat.php',
'CRM/Core/DAO/AllCoreTables.data.php',
'CRM/Core/DAO/AllCoreTables.php',
'CRM/Core/DAO/Cache.php',
'CRM/Core/DAO/Component.php',
'CRM/Core/DAO/Country.php',
'CRM/Core/DAO/County.php',
'CRM/Core/DAO/CustomField.php',
'CRM/Core/DAO/CustomGroup.php',
'CRM/Core/DAO/Dashboard.php',
'CRM/Core/DAO/Discount.php',
'CRM/Core/DAO/Domain.php',
'CRM/Core/DAO/Email.php',
'CRM/Core/DAO/EntityFile.php',
'CRM/Core/DAO/EntityTag.php',
'CRM/Core/DAO/Extension.php',
'CRM/Core/DAO/Factory.php',
'CRM/Core/DAO/File.php',
'CRM/Core/DAO/IM.php',
'CRM/Core/DAO/Job.php',
'CRM/Core/DAO/JobLog.php',
'CRM/Core/DAO/LocationType.php',
'CRM/Core/DAO/LocBlock.php',
'CRM/Core/DAO/Log.php',
'CRM/Core/DAO/MailSettings.php',
'CRM/Core/DAO/Managed.php',
'CRM/Core/DAO/Mapping.php',
'CRM/Core/DAO/MappingField.php',
'CRM/Core/DAO/Menu.php',
'CRM/Core/DAO/MessageTemplate.php',
'CRM/Core/DAO/Navigation.php',
'CRM/Core/DAO/Note.php',
'CRM/Core/DAO/OpenID.php',
'CRM/Core/DAO/OptionGroup.php',
'CRM/Core/DAO/OptionValue.php',
'CRM/Core/DAO/permissions.php',
'CRM/Core/DAO/Persistent.php',
'CRM/Core/DAO/Phone.php',
'CRM/Core/DAO/PreferencesDate.php',
'CRM/Core/DAO/PrevNextCache.php',
'CRM/Core/DAO/PrintLabel.php',
'CRM/Core/DAO/RecurringEntity.php',
'CRM/Core/DAO/Setting.php',
'CRM/Core/DAO/StateProvince.php',
'CRM/Core/DAO/StatusPreference.php',
'CRM/Core/DAO/SystemLog.php',
'CRM/Core/DAO/Tag.php',
'CRM/Core/DAO/Timezone.php',
'CRM/Core/DAO/UFField.php',
'CRM/Core/DAO/UFGroup.php',
'CRM/Core/DAO/UFJoin.php',
'CRM/Core/DAO/UFMatch.php',
'CRM/Core/DAO/Website.php',
'CRM/Core/DAO/WordReplacement.php',
'CRM/Core/DAO/Worldregion.php',
'CRM/Core/DAO.php',
'CRM/Core/EntityReference.php',
'CRM/Core/Error/Log.php',
'CRM/Core/Error.php',
'CRM/Core/Exception.php',
'CRM/Core/FileSearchInterface.php',
'CRM/Core/Form/Date.php',
'CRM/Core/Form/RecurringEntity.php',
'CRM/Core/Form/Renderer.php',
'CRM/Core/Form/Search.php',
'CRM/Core/Form/ShortCode.php',
'CRM/Core/Form/Tag.php',
'CRM/Core/Form.php',
'CRM/Core/HTMLInputCoder.php',
'CRM/Core/I18n/Form.php',
'CRM/Core/I18n/NativeGettext.php',
'CRM/Core/I18n/PseudoConstant.php',
'CRM/Core/I18n/Schema.php',
'CRM/Core/I18n/SchemaStructure.php',
'CRM/Core/I18n/SchemaStructure_2_2_0.php',
'CRM/Core/I18n/SchemaStructure_3_0_alpha1.php',
'CRM/Core/I18n/SchemaStructure_3_0_beta1.php',
'CRM/Core/I18n/SchemaStructure_3_0_beta4.php',
'CRM/Core/I18n/SchemaStructure_3_1_alpha1.php',
'CRM/Core/I18n/SchemaStructure_3_1_beta2.php',
'CRM/Core/I18n/SchemaStructure_3_2_beta4.php',
'CRM/Core/I18n/SchemaStructure_3_3_beta1.php',
'CRM/Core/I18n/SchemaStructure_3_4_0.php',
'CRM/Core/I18n/SchemaStructure_3_4_beta2.php',
'CRM/Core/I18n/SchemaStructure_3_4_beta3.php',
'CRM/Core/I18n/SchemaStructure_4_1_0.php',
'CRM/Core/I18n/SchemaStructure_4_1_alpha1.php',
'CRM/Core/I18n/SchemaStructure_4_2_alpha1.php',
'CRM/Core/I18n/SchemaStructure_4_3_1.php',
'CRM/Core/I18n/SchemaStructure_4_5_alpha1.php',
'CRM/Core/I18n/SchemaStructure_4_5_beta2.php',
'CRM/Core/I18n/SchemaStructure_4_7_alpha1.php',
'CRM/Core/I18n.php',
'CRM/Core/IDS.php',
'CRM/Core/InnoDBIndexer.php',
'CRM/Core/Invoke.php',
'CRM/Core/JobManager.php',
'CRM/Core/Joomla.php',
'CRM/Core/Key.php',
'CRM/Core/LegacyErrorHandler.php',
'CRM/Core/Lock.php',
'CRM/Core/ManagedEntities.php',
'CRM/Core/Menu.php',
'CRM/Core/Module.php',
'CRM/Core/OptionGroup.php',
'CRM/Core/OptionValue.php',
'CRM/Core/Page/AJAX/Attachment.php',
'CRM/Core/Page/AJAX/Location.php',
'CRM/Core/Page/AJAX/RecurringEntity.php',
'CRM/Core/Page/AJAX.php',
'CRM/Core/Page/Basic.php',
'CRM/Core/Page/File.php',
'CRM/Core/Page/Inline/Help.php',
'CRM/Core/Page/QUnit.php',
'CRM/Core/Page/RecurringEntityPreview.php',
'CRM/Core/Page/Redirect.php',
'CRM/Core/Page.php',
'CRM/Core/Payment/AuthorizeNet.php',
'CRM/Core/Payment/AuthorizeNetIPN.php',
'CRM/Core/Payment/BaseIPN.php',
'CRM/Core/Payment/Dummy.php',
'CRM/Core/Payment/Elavon.php',
'CRM/Core/Payment/eWAY.php',
'CRM/Core/Payment/FirstData.php',
'CRM/Core/Payment/Form.php',
'CRM/Core/Payment/Manual.php',
'CRM/Core/Payment/PayflowPro.php',
'CRM/Core/Payment/PayJunction.php',
'CRM/Core/Payment/PaymentExpress.php',
'CRM/Core/Payment/PaymentExpressIPN.php',
'CRM/Core/Payment/PaymentExpressUtils.php',
'CRM/Core/Payment/PayPalImpl.php',
'CRM/Core/Payment/PayPalIPN.php',
'CRM/Core/Payment/PayPalProIPN.php',
'CRM/Core/Payment/ProcessorForm.php',
'CRM/Core/Payment/Realex.php',
'CRM/Core/Payment.php',
'CRM/Core/Permission/Backdrop.php',
'CRM/Core/Permission/Base.php',
'CRM/Core/Permission/Drupal.php',
'CRM/Core/Permission/Drupal6.php',
'CRM/Core/Permission/Drupal8.php',
'CRM/Core/Permission/DrupalBase.php',
'CRM/Core/Permission/Joomla.php',
'CRM/Core/Permission/Soap.php',
'CRM/Core/Permission/Temp.php',
'CRM/Core/Permission/UnitTests.php',
'CRM/Core/Permission/WordPress.php',
'CRM/Core/Permission.php',
'CRM/Core/PseudoConstant.php',
'CRM/Core/QuickForm/Action/Back.php',
'CRM/Core/QuickForm/Action/Cancel.php',
'CRM/Core/QuickForm/Action/Display.php',
'CRM/Core/QuickForm/Action/Done.php',
'CRM/Core/QuickForm/Action/Jump.php',
'CRM/Core/QuickForm/Action/Next.php',
'CRM/Core/QuickForm/Action/Process.php',
'CRM/Core/QuickForm/Action/Refresh.php',
'CRM/Core/QuickForm/Action/Reload.php',
'CRM/Core/QuickForm/Action/Submit.php',
'CRM/Core/QuickForm/Action/Upload.php',
'CRM/Core/QuickForm/Action.php',
'CRM/Core/QuickForm/GroupMultiSelect.php',
'CRM/Core/QuickForm/NestedAdvMultiSelect.php',
'CRM/Core/Reference/Basic.php',
'CRM/Core/Reference/Dynamic.php',
'CRM/Core/Reference/Interface.php',
'CRM/Core/Reference/OptionValue.php',
'CRM/Core/Region.php',
'CRM/Core/Report/Excel.php',
'CRM/Core/Resources/Strings.php',
'CRM/Core/Resources.php',
'CRM/Core/ScheduledJob.php',
'CRM/Core/Selector/API.php',
'CRM/Core/Selector/Base.php',
'CRM/Core/Selector/Controller.php',
'CRM/Core/SelectValues.php',
'CRM/Core/Session.php',
'CRM/Core/ShowHideBlocks.php',
'CRM/Core/Smarty/Permissions.php',
'CRM/Core/Smarty/plugins/block.crmButton.php',
'CRM/Core/Smarty/plugins/block.crmRegion.php',
'CRM/Core/Smarty/plugins/block.crmScope.php',
'CRM/Core/Smarty/plugins/block.edit.php',
'CRM/Core/Smarty/plugins/block.htxt.php',
'CRM/Core/Smarty/plugins/block.localize.php',
'CRM/Core/Smarty/plugins/block.serialize.php',
'CRM/Core/Smarty/plugins/block.ts.php',
'CRM/Core/Smarty/plugins/compiler.continue.php',
'CRM/Core/Smarty/plugins/function.crmAPI.php',
'CRM/Core/Smarty/plugins/function.crmAttributes.php',
'CRM/Core/Smarty/plugins/function.crmCrudLink.php',
'CRM/Core/Smarty/plugins/function.crmDBTpl.php',
'CRM/Core/Smarty/plugins/function.crmGetAttribute.php',
'CRM/Core/Smarty/plugins/function.crmKey.php',
'CRM/Core/Smarty/plugins/function.crmNavigationMenu.php',
'CRM/Core/Smarty/plugins/function.crmResPath.php',
'CRM/Core/Smarty/plugins/function.crmResURL.php',
'CRM/Core/Smarty/plugins/function.crmScript.php',
'CRM/Core/Smarty/plugins/function.crmSetting.php',
'CRM/Core/Smarty/plugins/function.crmSigner.php',
'CRM/Core/Smarty/plugins/function.crmStyle.php',
'CRM/Core/Smarty/plugins/function.crmVersion.php',
'CRM/Core/Smarty/plugins/function.docURL.php',
'CRM/Core/Smarty/plugins/function.help.php',
'CRM/Core/Smarty/plugins/function.isValueChange.php',
'CRM/Core/Smarty/plugins/function.sectionTotal.php',
'CRM/Core/Smarty/plugins/function.simpleActivityContacts.php',
'CRM/Core/Smarty/plugins/modifier.crmAddClass.php',
'CRM/Core/Smarty/plugins/modifier.crmBtnType.php',
'CRM/Core/Smarty/plugins/modifier.crmDate.php',
'CRM/Core/Smarty/plugins/modifier.crmDelete.php',
'CRM/Core/Smarty/plugins/modifier.crmFirstWord.php',
'CRM/Core/Smarty/plugins/modifier.crmICalDate.php',
'CRM/Core/Smarty/plugins/modifier.crmICalText.php',
'CRM/Core/Smarty/plugins/modifier.crmInsert.php',
'CRM/Core/Smarty/plugins/modifier.crmMoney.php',
'CRM/Core/Smarty/plugins/modifier.crmNumberFormat.php',
'CRM/Core/Smarty/plugins/modifier.crmReplace.php',
'CRM/Core/Smarty/plugins/modifier.crmStripAlternatives.php',
'CRM/Core/Smarty/plugins/modifier.htmlize.php',
'CRM/Core/Smarty/plugins/modifier.json.php',
'CRM/Core/Smarty/plugins/modifier.mb_truncate.php',
'CRM/Core/Smarty/plugins/modifier.substring.php',
'CRM/Core/Smarty/plugins/prefilter.resetExtScope.php',
'CRM/Core/Smarty/resources/String.php',
'CRM/Core/Smarty.php',
'CRM/Core/State.php',
'CRM/Core/StateMachine.php',
'CRM/Core/TableHierarchy.php',
'CRM/Core/TemporaryErrorScope.php',
'CRM/Core/Transaction.php',
'CRM/Custom/Form/ChangeFieldType.php',
'CRM/Custom/Form/CustomData.php',
'CRM/Custom/Form/CustomDataByType.php',
'CRM/Custom/Form/DeleteField.php',
'CRM/Custom/Form/DeleteGroup.php',
'CRM/Custom/Form/Field.php',
'CRM/Custom/Form/Group.php',
'CRM/Custom/Form/MoveField.php',
'CRM/Custom/Form/Option.php',
'CRM/Custom/Form/Preview.php',
'CRM/Custom/Import/Controller.php',
'CRM/Custom/Import/Field.php',
'CRM/Custom/Import/Form/DataSource.php',
'CRM/Custom/Import/Form/MapField.php',
'CRM/Custom/Import/Form/Preview.php',
'CRM/Custom/Import/Form/Summary.php',
'CRM/Custom/Import/Parser/Api.php',
'CRM/Custom/Import/Parser.php',
'CRM/Custom/Page/AJAX.php',
'CRM/Custom/Page/Field.php',
'CRM/Custom/Page/Group.php',
'CRM/Custom/Page/Option.php',
'CRM/Cxn/ApiRouter.php',
'CRM/Cxn/BAO/Cxn.php',
'CRM/Cxn/CiviCxnHttp.php',
'CRM/Cxn/CiviCxnStore.php',
'CRM/Cxn/DAO/Cxn.php',
'CRM/Dashlet/Page/Activity.php',
'CRM/Dashlet/Page/AllCases.php',
'CRM/Dashlet/Page/Blog.php',
'CRM/Dashlet/Page/CaseDashboard.php',
'CRM/Dashlet/Page/GettingStarted.php',
'CRM/Dashlet/Page/MyCases.php',
'CRM/Dedupe/BAO/QueryBuilder/IndividualGeneral.php',
'CRM/Dedupe/BAO/QueryBuilder/IndividualSupervised.php',
'CRM/Dedupe/BAO/QueryBuilder/IndividualUnsupervised.php',
'CRM/Dedupe/BAO/QueryBuilder.php',
'CRM/Dedupe/BAO/Rule.php',
'CRM/Dedupe/BAO/RuleGroup.php',
'CRM/Dedupe/DAO/Exception.php',
'CRM/Dedupe/DAO/Rule.php',
'CRM/Dedupe/DAO/RuleGroup.php',
'CRM/Dedupe/Finder.php',
'CRM/Dedupe/Merger.php',
'CRM/Event/ActionMapping.php',
'CRM/Event/Badge/Logo.php',
'CRM/Event/Badge/Logo5395.php',
'CRM/Event/Badge/NameTent.php',
'CRM/Event/Badge/Simple.php',
'CRM/Event/Badge.php',
'CRM/Event/BAO/Event.php',
'CRM/Event/BAO/Participant.php',
'CRM/Event/BAO/ParticipantPayment.php',
'CRM/Event/BAO/ParticipantStatusType.php',
'CRM/Event/BAO/Query.php',
'CRM/Event/Cart/BAO/Cart.php',
'CRM/Event/Cart/BAO/Conference.php',
'CRM/Event/Cart/BAO/EventInCart.php',
'CRM/Event/Cart/BAO/MerParticipant.php',
'CRM/Event/Cart/Controller/Checkout.php',
'CRM/Event/Cart/DAO/Cart.php',
'CRM/Event/Cart/DAO/EventInCart.php',
'CRM/Event/Cart/Form/Cart.php',
'CRM/Event/Cart/Form/Checkout/ConferenceEvents.php',
'CRM/Event/Cart/Form/Checkout/ParticipantsAndPrices.php',
'CRM/Event/Cart/Form/Checkout/Payment.php',
'CRM/Event/Cart/Form/Checkout/ThankYou.php',
'CRM/Event/Cart/Form/MerParticipant.php',
'CRM/Event/Cart/Page/AddToCart.php',
'CRM/Event/Cart/Page/CheckoutAJAX.php',
'CRM/Event/Cart/Page/RemoveFromCart.php',
'CRM/Event/Cart/Page/ViewCart.php',
'CRM/Event/Cart/StateMachine/Checkout.php',
'CRM/Event/Controller/Registration.php',
'CRM/Event/Controller/Search.php',
'CRM/Event/DAO/Event.php',
'CRM/Event/DAO/Participant.php',
'CRM/Event/DAO/ParticipantPayment.php',
'CRM/Event/DAO/ParticipantStatusType.php',
'CRM/Event/Form/EventFees.php',
'CRM/Event/Form/ManageEvent/Conference.php',
'CRM/Event/Form/ManageEvent/Delete.php',
'CRM/Event/Form/ManageEvent/EventInfo.php',
'CRM/Event/Form/ManageEvent/Fee.php',
'CRM/Event/Form/ManageEvent/Location.php',
'CRM/Event/Form/ManageEvent/Registration.php',
'CRM/Event/Form/ManageEvent/Repeat.php',
'CRM/Event/Form/ManageEvent/ScheduleReminders.php',
'CRM/Event/Form/ManageEvent/TabHeader.php',
'CRM/Event/Form/ManageEvent.php',
'CRM/Event/Form/Participant.php',
'CRM/Event/Form/ParticipantFeeSelection.php',
'CRM/Event/Form/ParticipantView.php',
'CRM/Event/Form/Registration/AdditionalParticipant.php',
'CRM/Event/Form/Registration/Confirm.php',
'CRM/Event/Form/Registration/ParticipantConfirm.php',
'CRM/Event/Form/Registration/Register.php',
'CRM/Event/Form/Registration/ThankYou.php',
'CRM/Event/Form/Registration.php',
'CRM/Event/Form/Search.php',
'CRM/Event/Form/SearchEvent.php',
'CRM/Event/Form/SelfSvcTransfer.php',
'CRM/Event/Form/SelfSvcUpdate.php',
'CRM/Event/Form/Task/AddToGroup.php',
'CRM/Event/Form/Task/Badge.php',
'CRM/Event/Form/Task/Batch.php',
'CRM/Event/Form/Task/Cancel.php',
'CRM/Event/Form/Task/Delete.php',
'CRM/Event/Form/Task/Email.php',
'CRM/Event/Form/Task/ParticipantStatus.php',
'CRM/Event/Form/Task/PDF.php',
'CRM/Event/Form/Task/PickProfile.php',
'CRM/Event/Form/Task/Print.php',
'CRM/Event/Form/Task/Result.php',
'CRM/Event/Form/Task/SaveSearch/Update.php',
'CRM/Event/Form/Task/SaveSearch.php',
'CRM/Event/Form/Task/SearchTaskHookSample.php',
'CRM/Event/Form/Task.php',
'CRM/Event/Import/Controller.php',
'CRM/Event/Import/Field.php',
'CRM/Event/Import/Form/DataSource.php',
'CRM/Event/Import/Form/MapField.php',
'CRM/Event/Import/Form/Preview.php',
'CRM/Event/Import/Form/Summary.php',
'CRM/Event/Import/Parser/Participant.php',
'CRM/Event/Import/Parser.php',
'CRM/Event/Info.php',
'CRM/Event/Page/AJAX.php',
'CRM/Event/Page/DashBoard.php',
'CRM/Event/Page/EventInfo.php',
'CRM/Event/Page/ICalendar.php',
'CRM/Event/Page/ManageEvent.php',
'CRM/Event/Page/ParticipantListing/Name.php',
'CRM/Event/Page/ParticipantListing/NameAndEmail.php',
'CRM/Event/Page/ParticipantListing/NameStatusAndDate.php',
'CRM/Event/Page/ParticipantListing/Simple.php',
'CRM/Event/Page/ParticipantListing.php',
'CRM/Event/Page/Tab.php',
'CRM/Event/Page/UserDashboard.php',
'CRM/Event/PseudoConstant.php',
'CRM/Event/Selector/Search.php',
'CRM/Event/StateMachine/Registration.php',
'CRM/Event/StateMachine/Search.php',
'CRM/Event/Task.php',
'CRM/Event/Tokens.php',
'CRM/Export/BAO/Export.php',
'CRM/Export/Form/Map.php',
'CRM/Export/Form/Select.php',
'CRM/Extension/Browser.php',
'CRM/Extension/ClassLoader.php',
'CRM/Extension/Container/Basic.php',
'CRM/Extension/Container/Collection.php',
'CRM/Extension/Container/Default.php',
'CRM/Extension/Container/Interface.php',
'CRM/Extension/Container/Static.php',
'CRM/Extension/Downloader.php',
'CRM/Extension/Exception/DependencyException.php',
'CRM/Extension/Exception/MissingException.php',
'CRM/Extension/Exception/ParseException.php',
'CRM/Extension/Exception.php',
'CRM/Extension/Info.php',
'CRM/Extension/Manager/Base.php',
'CRM/Extension/Manager/Interface.php',
'CRM/Extension/Manager/Module.php',
'CRM/Extension/Manager/Payment.php',
'CRM/Extension/Manager/Report.php',
'CRM/Extension/Manager/Search.php',
'CRM/Extension/Manager.php',
'CRM/Extension/Mapper.php',
'CRM/Extension/System.php',
'CRM/Extension/Upgrades.php',
'CRM/Financial/BAO/ExportFormat/CSV.php',
'CRM/Financial/BAO/ExportFormat/IIF.php',
'CRM/Financial/BAO/ExportFormat.php',
'CRM/Financial/BAO/FinancialAccount.php',
'CRM/Financial/BAO/FinancialItem.php',
'CRM/Financial/BAO/FinancialType.php',
'CRM/Financial/BAO/FinancialTypeAccount.php',
'CRM/Financial/BAO/PaymentProcessor.php',
'CRM/Financial/BAO/PaymentProcessorType.php',
'CRM/Financial/DAO/Currency.php',
'CRM/Financial/DAO/EntityFinancialAccount.php',
'CRM/Financial/DAO/EntityFinancialTrxn.php',
'CRM/Financial/DAO/FinancialAccount.php',
'CRM/Financial/DAO/FinancialItem.php',
'CRM/Financial/DAO/FinancialTrxn.php',
'CRM/Financial/DAO/FinancialType.php',
'CRM/Financial/DAO/PaymentProcessor.php',
'CRM/Financial/DAO/PaymentProcessorType.php',
'CRM/Financial/DAO/PaymentToken.php',
'CRM/Financial/Form/BatchTransaction.php',
'CRM/Financial/Form/Export.php',
'CRM/Financial/Form/FinancialAccount.php',
'CRM/Financial/Form/FinancialBatch.php',
'CRM/Financial/Form/FinancialType.php',
'CRM/Financial/Form/FinancialTypeAccount.php',
'CRM/Financial/Form/Payment.php',
'CRM/Financial/Form/Search.php',
'CRM/Financial/Page/AJAX.php',
'CRM/Financial/Page/Batch.php',
'CRM/Financial/Page/BatchTransaction.php',
'CRM/Financial/Page/FinancialAccount.php',
'CRM/Financial/Page/FinancialBatch.php',
'CRM/Financial/Page/FinancialType.php',
'CRM/Financial/Page/FinancialTypeAccount.php',
'CRM/Friend/BAO/Friend.php',
'CRM/Friend/DAO/Friend.php',
'CRM/Friend/Form/Contribute.php',
'CRM/Friend/Form/Event.php',
'CRM/Friend/Form.php',
'CRM/Grant/BAO/Grant.php',
'CRM/Grant/BAO/Query.php',
'CRM/Grant/Controller/Search.php',
'CRM/Grant/DAO/Grant.php',
'CRM/Grant/Form/Grant.php',
'CRM/Grant/Form/GrantView.php',
'CRM/Grant/Form/Search.php',
'CRM/Grant/Form/Task/Delete.php',
'CRM/Grant/Form/Task/Print.php',
'CRM/Grant/Form/Task/Result.php',
'CRM/Grant/Form/Task/SearchTaskHookSample.php',
'CRM/Grant/Form/Task/Update.php',
'CRM/Grant/Form/Task.php',
'CRM/Grant/Info.php',
'CRM/Grant/Page/DashBoard.php',
'CRM/Grant/Page/Tab.php',
'CRM/Grant/Selector/Search.php',
'CRM/Grant/StateMachine/Search.php',
'CRM/Grant/Task.php',
'CRM/Group/Controller.php',
'CRM/Group/Form/Edit.php',
'CRM/Group/Form/Search.php',
'CRM/Group/Page/AJAX.php',
'CRM/Group/Page/Group.php',
'CRM/Group/StateMachine.php',
'CRM/Import/DataSource/CSV.php',
'CRM/Import/DataSource/SQL.php',
'CRM/Import/DataSource.php',
'CRM/Import/Form/DataSource.php',
'CRM/Import/Form/MapField.php',
'CRM/Import/Form/Preview.php',
'CRM/Import/Form/Summary.php',
'CRM/Import/Parser.php',
'CRM/Import/StateMachine.php',
'CRM/Logging/Differ.php',
'CRM/Logging/ReportDetail.php',
'CRM/Logging/ReportSummary.php',
'CRM/Logging/Reverter.php',
'CRM/Logging/Schema.php',
'CRM/Mailing/BAO/BouncePattern.php',
'CRM/Mailing/BAO/Component.php',
'CRM/Mailing/BAO/Mailing.php',
'CRM/Mailing/BAO/MailingAB.php',
'CRM/Mailing/BAO/MailingJob.php',
'CRM/Mailing/BAO/Query.php',
'CRM/Mailing/BAO/Recipients.php',
'CRM/Mailing/BAO/Spool.php',
'CRM/Mailing/BAO/TrackableURL.php',
'CRM/Mailing/Config.php',
'CRM/Mailing/Controller/Send.php',
'CRM/Mailing/DAO/BouncePattern.php',
'CRM/Mailing/DAO/BounceType.php',
'CRM/Mailing/DAO/Component.php',
'CRM/Mailing/DAO/Mailing.php',
'CRM/Mailing/DAO/MailingAB.php',
'CRM/Mailing/DAO/MailingGroup.php',
'CRM/Mailing/DAO/MailingJob.php',
'CRM/Mailing/DAO/Recipients.php',
'CRM/Mailing/DAO/Spool.php',
'CRM/Mailing/DAO/TrackableURL.php',
'CRM/Mailing/Event/BAO/Bounce.php',
'CRM/Mailing/Event/BAO/Confirm.php',
'CRM/Mailing/Event/BAO/Delivered.php',
'CRM/Mailing/Event/BAO/Forward.php',
'CRM/Mailing/Event/BAO/Opened.php',
'CRM/Mailing/Event/BAO/Queue.php',
'CRM/Mailing/Event/BAO/Reply.php',
'CRM/Mailing/Event/BAO/Resubscribe.php',
'CRM/Mailing/Event/BAO/Subscribe.php',
'CRM/Mailing/Event/BAO/TrackableURLOpen.php',
'CRM/Mailing/Event/BAO/Unsubscribe.php',
'CRM/Mailing/Event/DAO/Bounce.php',
'CRM/Mailing/Event/DAO/Confirm.php',
'CRM/Mailing/Event/DAO/Delivered.php',
'CRM/Mailing/Event/DAO/Forward.php',
'CRM/Mailing/Event/DAO/Opened.php',
'CRM/Mailing/Event/DAO/Queue.php',
'CRM/Mailing/Event/DAO/Reply.php',
'CRM/Mailing/Event/DAO/Subscribe.php',
'CRM/Mailing/Event/DAO/TrackableURLOpen.php',
'CRM/Mailing/Event/DAO/Unsubscribe.php',
'CRM/Mailing/Form/Approve.php',
'CRM/Mailing/Form/Browse.php',
'CRM/Mailing/Form/Component.php',
'CRM/Mailing/Form/ForwardMailing.php',
'CRM/Mailing/Form/Optout.php',
'CRM/Mailing/Form/Search.php',
'CRM/Mailing/Form/Subscribe.php',
'CRM/Mailing/Form/Task/AdhocMailing.php',
'CRM/Mailing/Form/Task/Print.php',
'CRM/Mailing/Form/Task.php',
'CRM/Mailing/Form/Unsubscribe.php',
'CRM/Mailing/Info.php',
'CRM/Mailing/MailStore/Imap.php',
'CRM/Mailing/MailStore/Localdir.php',
'CRM/Mailing/MailStore/Maildir.php',
'CRM/Mailing/MailStore/Mbox.php',
'CRM/Mailing/MailStore/Pop3.php',
'CRM/Mailing/MailStore.php',
'CRM/Mailing/Page/AJAX.php',
'CRM/Mailing/Page/Browse.php',
'CRM/Mailing/Page/Common.php',
'CRM/Mailing/Page/Component.php',
'CRM/Mailing/Page/Confirm.php',
'CRM/Mailing/Page/Event.php',
'CRM/Mailing/Page/Optout.php',
'CRM/Mailing/Page/Preview.php',
'CRM/Mailing/Page/Report.php',
'CRM/Mailing/Page/Resubscribe.php',
'CRM/Mailing/Page/Tab.php',
'CRM/Mailing/Page/Unsubscribe.php',
'CRM/Mailing/Page/View.php',
'CRM/Mailing/PseudoConstant.php',
'CRM/Mailing/Selector/Browse.php',
'CRM/Mailing/Selector/Event.php',
'CRM/Mailing/Selector/Search.php',
'CRM/Mailing/Task.php',
'CRM/Member/ActionMapping.php',
'CRM/Member/BAO/Membership.php',
'CRM/Member/BAO/MembershipBlock.php',
'CRM/Member/BAO/MembershipLog.php',
'CRM/Member/BAO/MembershipPayment.php',
'CRM/Member/BAO/MembershipStatus.php',
'CRM/Member/BAO/MembershipType.php',
'CRM/Member/BAO/Query.php',
'CRM/Member/Controller/Search.php',
'CRM/Member/DAO/Membership.php',
'CRM/Member/DAO/MembershipBlock.php',
'CRM/Member/DAO/MembershipLog.php',
'CRM/Member/DAO/MembershipPayment.php',
'CRM/Member/DAO/MembershipStatus.php',
'CRM/Member/DAO/MembershipType.php',
'CRM/Member/Form/Membership.php',
'CRM/Member/Form/MembershipBlock.php',
'CRM/Member/Form/MembershipConfig.php',
'CRM/Member/Form/MembershipRenewal.php',
'CRM/Member/Form/MembershipStatus.php',
'CRM/Member/Form/MembershipType.php',
'CRM/Member/Form/MembershipView.php',
'CRM/Member/Form/Search.php',
'CRM/Member/Form/Task/Batch.php',
'CRM/Member/Form/Task/Delete.php',
'CRM/Member/Form/Task/Email.php',
'CRM/Member/Form/Task/Label.php',
'CRM/Member/Form/Task/PDFLetter.php',
'CRM/Member/Form/Task/PDFLetterCommon.php',
'CRM/Member/Form/Task/PickProfile.php',
'CRM/Member/Form/Task/Print.php',
'CRM/Member/Form/Task/Result.php',
'CRM/Member/Form/Task/SearchTaskHookSample.php',
'CRM/Member/Form/Task.php',
'CRM/Member/Form.php',
'CRM/Member/Import/Controller.php',
'CRM/Member/Import/Field.php',
'CRM/Member/Import/Form/DataSource.php',
'CRM/Member/Import/Form/MapField.php',
'CRM/Member/Import/Form/Preview.php',
'CRM/Member/Import/Form/Summary.php',
'CRM/Member/Import/Parser/Membership.php',
'CRM/Member/Import/Parser.php',
'CRM/Member/Info.php',
'CRM/Member/Page/AJAX.php',
'CRM/Member/Page/DashBoard.php',
'CRM/Member/Page/MembershipStatus.php',
'CRM/Member/Page/MembershipType.php',
'CRM/Member/Page/Tab.php',
'CRM/Member/Page/UserDashboard.php',
'CRM/Member/PseudoConstant.php',
'CRM/Member/Selector/Search.php',
'CRM/Member/StateMachine/Search.php',
'CRM/Member/Task.php',
'CRM/Member/Tokens.php',
'CRM/Note/Form/Note.php',
'CRM/PCP/BAO/PCP.php',
'CRM/PCP/Controller/PCP.php',
'CRM/PCP/DAO/PCP.php',
'CRM/PCP/DAO/PCPBlock.php',
'CRM/PCP/Form/Campaign.php',
'CRM/PCP/Form/Contribute.php',
'CRM/PCP/Form/Event.php',
'CRM/PCP/Form/PCP.php',
'CRM/PCP/Form/PCPAccount.php',
'CRM/PCP/Page/PCP.php',
'CRM/PCP/Page/PCPInfo.php',
'CRM/PCP/StateMachine/PCP.php',
'CRM/Pledge/BAO/Pledge.php',
'CRM/Pledge/BAO/PledgeBlock.php',
'CRM/Pledge/BAO/PledgePayment.php',
'CRM/Pledge/BAO/Query.php',
'CRM/Pledge/Controller/Search.php',
'CRM/Pledge/DAO/Pledge.php',
'CRM/Pledge/DAO/PledgeBlock.php',
'CRM/Pledge/DAO/PledgePayment.php',
'CRM/Pledge/Form/Payment.php',
'CRM/Pledge/Form/Pledge.php',
'CRM/Pledge/Form/PledgeView.php',
'CRM/Pledge/Form/Search.php',
'CRM/Pledge/Form/Task/Delete.php',
'CRM/Pledge/Form/Task/Print.php',
'CRM/Pledge/Form/Task/Result.php',
'CRM/Pledge/Form/Task/SearchTaskHookSample.php',
'CRM/Pledge/Form/Task.php',
'CRM/Pledge/Info.php',
'CRM/Pledge/Page/AJAX.php',
'CRM/Pledge/Page/DashBoard.php',
'CRM/Pledge/Page/Payment.php',
'CRM/Pledge/Page/Tab.php',
'CRM/Pledge/Page/UserDashboard.php',
'CRM/Pledge/Selector/Search.php',
'CRM/Pledge/StateMachine/Search.php',
'CRM/Pledge/Task.php',
'CRM/Price/BAO/LineItem.php',
'CRM/Price/BAO/PriceField.php',
'CRM/Price/BAO/PriceFieldValue.php',
'CRM/Price/BAO/PriceSet.php',
'CRM/Price/DAO/LineItem.php',
'CRM/Price/DAO/PriceField.php',
'CRM/Price/DAO/PriceFieldValue.php',
'CRM/Price/DAO/PriceSet.php',
'CRM/Price/DAO/PriceSetEntity.php',
'CRM/Price/Form/DeleteField.php',
'CRM/Price/Form/DeleteSet.php',
'CRM/Price/Form/Field.php',
'CRM/Price/Form/Option.php',
'CRM/Price/Form/Preview.php',
'CRM/Price/Form/Set.php',
'CRM/Price/Page/Field.php',
'CRM/Price/Page/Option.php',
'CRM/Price/Page/Set.php',
'CRM/Profile/Form/Dynamic.php',
'CRM/Profile/Form/Edit.php',
'CRM/Profile/Form/Search.php',
'CRM/Profile/Form.php',
'CRM/Profile/Page/Dynamic.php',
'CRM/Profile/Page/Listings.php',
'CRM/Profile/Page/MultipleRecordFieldsListing.php',
'CRM/Profile/Page/Router.php',
'CRM/Profile/Page/View.php',
'CRM/Profile/Selector/Listings.php',
'CRM/Queue/BAO/QueueItem.php',
'CRM/Queue/DAO/QueueItem.php',
'CRM/Queue/ErrorPolicy.php',
'CRM/Queue/Menu.php',
'CRM/Queue/Page/AJAX.php',
'CRM/Queue/Page/Runner.php',
'CRM/Queue/Queue/Memory.php',
'CRM/Queue/Queue/Sql.php',
'CRM/Queue/Queue.php',
'CRM/Queue/Runner.php',
'CRM/Queue/Service.php',
'CRM/Queue/Task.php',
'CRM/Queue/TaskContext.php',
'CRM/Report/BAO/Hook.php',
'CRM/Report/BAO/HookInterface.php',
'CRM/Report/BAO/ReportInstance.php',
'CRM/Report/DAO/ReportInstance.php',
'CRM/Report/Form/Activity.php',
'CRM/Report/Form/ActivitySummary.php',
'CRM/Report/Form/Campaign/SurveyDetails.php',
'CRM/Report/Form/Case/Demographics.php',
'CRM/Report/Form/Case/Detail.php',
'CRM/Report/Form/Case/Summary.php',
'CRM/Report/Form/Case/TimeSpent.php',
'CRM/Report/Form/Contact/CurrentEmployer.php',
'CRM/Report/Form/Contact/Detail.php',
'CRM/Report/Form/Contact/Log.php',
'CRM/Report/Form/Contact/LoggingDetail.php',
'CRM/Report/Form/Contact/LoggingSummary.php',
'CRM/Report/Form/Contact/Relationship.php',
'CRM/Report/Form/Contact/Summary.php',
'CRM/Report/Form/Contribute/Bookkeeping.php',
'CRM/Report/Form/Contribute/DeferredRevenue.php',
'CRM/Report/Form/Contribute/Detail.php',
'CRM/Report/Form/Contribute/History.php',
'CRM/Report/Form/Contribute/HouseholdSummary.php',
'CRM/Report/Form/Contribute/LoggingDetail.php',
'CRM/Report/Form/Contribute/LoggingSummary.php',
'CRM/Report/Form/Contribute/Lybunt.php',
'CRM/Report/Form/Contribute/OrganizationSummary.php',
'CRM/Report/Form/Contribute/PCP.php',
'CRM/Report/Form/Contribute/Recur.php',
'CRM/Report/Form/Contribute/RecurSummary.php',
'CRM/Report/Form/Contribute/Repeat.php',
'CRM/Report/Form/Contribute/SoftCredit.php',
'CRM/Report/Form/Contribute/Summary.php',
'CRM/Report/Form/Contribute/Sybunt.php',
'CRM/Report/Form/Contribute/TopDonor.php',
'CRM/Report/Form/Event/Income.php',
'CRM/Report/Form/Event/IncomeCountSummary.php',
'CRM/Report/Form/Event/ParticipantListCount.php',
'CRM/Report/Form/Event/ParticipantListing.php',
'CRM/Report/Form/Event/Summary.php',
'CRM/Report/Form/Event.php',
'CRM/Report/Form/Extended.php',
'CRM/Report/Form/Grant/Detail.php',
'CRM/Report/Form/Grant/Statistics.php',
'CRM/Report/Form/Instance.php',
'CRM/Report/Form/Mailing/Bounce.php',
'CRM/Report/Form/Mailing/Clicks.php',
'CRM/Report/Form/Mailing/Detail.php',
'CRM/Report/Form/Mailing/Opened.php',
'CRM/Report/Form/Mailing/Summary.php',
'CRM/Report/Form/Member/ContributionDetail.php',
'CRM/Report/Form/Member/Detail.php',
'CRM/Report/Form/Member/Lapse.php',
'CRM/Report/Form/Member/Summary.php',
'CRM/Report/Form/Membership/Summary.php',
'CRM/Report/Form/Pledge/Detail.php',
'CRM/Report/Form/Pledge/Pbnp.php',
'CRM/Report/Form/Pledge/Summary.php',
'CRM/Report/Form/Register.php',
'CRM/Report/Form/Walklist/Walklist.php',
'CRM/Report/Form.php',
'CRM/Report/Info.php',
'CRM/Report/Interface.php',
'CRM/Report/Page/Instance.php',
'CRM/Report/Page/InstanceList.php',
'CRM/Report/Page/Options.php',
'CRM/Report/Page/Report.php',
'CRM/Report/Page/TemplateList.php',
'CRM/Report/Utils/Get.php',
'CRM/Report/Utils/Report.php',
'CRM/SMS/BAO/Provider.php',
'CRM/SMS/Controller/Send.php',
'CRM/SMS/DAO/Provider.php',
'CRM/SMS/Form/Group.php',
'CRM/SMS/Form/Provider.php',
'CRM/SMS/Form/Schedule.php',
'CRM/SMS/Form/Upload.php',
'CRM/SMS/Page/Callback.php',
'CRM/SMS/Page/Provider.php',
'CRM/SMS/Provider.php',
'CRM/SMS/StateMachine/Send.php',
'CRM/Tag/Form/Tag.php',
'CRM/UF/Form/AbstractPreview.php',
'CRM/UF/Form/AdvanceSetting.php',
'CRM/UF/Form/Field.php',
'CRM/UF/Form/Group.php',
'CRM/UF/Form/Inline/Preview.php',
'CRM/UF/Form/Inline/PreviewById.php',
'CRM/UF/Form/Preview.php',
'CRM/UF/Page/AJAX.php',
'CRM/UF/Page/Field.php',
'CRM/UF/Page/Group.php',
'CRM/UF/Page/ProfileEditor.php',
'CRM/Upgrade/Controller.php',
'CRM/Upgrade/Form.php',
'CRM/Upgrade/Headless.php',
'CRM/Upgrade/Incremental/Base.php',
'CRM/Upgrade/Incremental/General.php',
'CRM/Upgrade/Incremental/php/FourFive.php',
'CRM/Upgrade/Incremental/php/FourFour.php',
'CRM/Upgrade/Incremental/php/FourOne.php',
'CRM/Upgrade/Incremental/php/FourSeven.php',
'CRM/Upgrade/Incremental/php/FourSix.php',
'CRM/Upgrade/Incremental/php/FourThree.php',
'CRM/Upgrade/Incremental/php/FourTwo.php',
'CRM/Upgrade/Page/Cleanup.php',
'CRM/Upgrade/Page/Upgrade.php',
'CRM/Upgrade/Snapshot/V4p2/Price/BAO/Field.php',
'CRM/Upgrade/Snapshot/V4p2/Price/BAO/FieldValue.php',
'CRM/Upgrade/Snapshot/V4p2/Price/BAO/LineItem.php',
'CRM/Upgrade/Snapshot/V4p2/Price/BAO/Set.php',
'CRM/Upgrade/Snapshot/V4p2/Price/DAO/Field.php',
'CRM/Upgrade/Snapshot/V4p2/Price/DAO/FieldValue.php',
'CRM/Upgrade/Snapshot/V4p2/Price/DAO/LineItem.php',
'CRM/Upgrade/Snapshot/V4p2/Price/DAO/Set.php',
'CRM/Upgrade/Snapshot/V4p2/Price/DAO/SetEntity.php',
'CRM/Upgrade/StateMachine.php',
'CRM/Upgrade/Steps/47/200_Example.up.php',
'CRM/Utils/Address/BatchUpdate.php',
'CRM/Utils/Address/USPS.php',
'CRM/Utils/Address.php',
'CRM/Utils/API/AbstractFieldCoder.php',
'CRM/Utils/API/HTMLInputCoder.php',
'CRM/Utils/API/MatchOption.php',
'CRM/Utils/API/NullOutputCoder.php',
'CRM/Utils/API/ReloadOption.php',
'CRM/Utils/Array.php',
'CRM/Utils/AutoClean.php',
'CRM/Utils/Cache/APCcache.php',
'CRM/Utils/Cache/ArrayCache.php',
'CRM/Utils/Cache/Interface.php',
'CRM/Utils/Cache/Memcache.php',
'CRM/Utils/Cache/Memcached.php',
'CRM/Utils/Cache/NoCache.php',
'CRM/Utils/Cache/Redis.php',
'CRM/Utils/Cache/SerializeCache.php',
'CRM/Utils/Cache/SqlGroup.php',
'CRM/Utils/Cache.php',
'CRM/Utils/Check/Component/Case.php',
'CRM/Utils/Check/Component/Env.php',
'CRM/Utils/Check/Component/Security.php',
'CRM/Utils/Check/Component.php',
'CRM/Utils/Check/Message.php',
'CRM/Utils/Check.php',
'CRM/Utils/Constant.php',
'CRM/Utils/Crypt.php',
'CRM/Utils/Date.php',
'CRM/Utils/DeprecatedUtils.php',
'CRM/Utils/FakeObject.php',
'CRM/Utils/File.php',
'CRM/Utils/Geocode/Google.php',
'CRM/Utils/Geocode/Yahoo.php',
'CRM/Utils/Geocode.php',
'CRM/Utils/GlobalStack.php',
'CRM/Utils/Hook/Backdrop.php',
'CRM/Utils/Hook/Drupal.php',
'CRM/Utils/Hook/Drupal6.php',
'CRM/Utils/Hook/Drupal8.php',
'CRM/Utils/Hook/DrupalBase.php',
'CRM/Utils/Hook/Joomla.php',
'CRM/Utils/Hook/Soap.php',
'CRM/Utils/Hook/UnitTests.php',
'CRM/Utils/Hook/WordPress.php',
'CRM/Utils/Hook.php',
'CRM/Utils/Http.php',
'CRM/Utils/HttpClient.php',
'CRM/Utils/ICalendar.php',
'CRM/Utils/JS.php',
'CRM/Utils/JSON.php',
'CRM/Utils/Mail/EmailProcessor.php',
'CRM/Utils/Mail/Incoming.php',
'CRM/Utils/Mail.php',
'CRM/Utils/Migrate/Export.php',
'CRM/Utils/Migrate/ExportJSON.php',
'CRM/Utils/Migrate/Import.php',
'CRM/Utils/Migrate/ImportJSON.php',
'CRM/Utils/Money.php',
'CRM/Utils/Network.php',
'CRM/Utils/Number.php',
'CRM/Utils/OpenFlashChart.php',
'CRM/Utils/OptionBag.php',
'CRM/Utils/Pager.php',
'CRM/Utils/PagerAToZ.php',
'CRM/Utils/PDF/Document.php',
'CRM/Utils/PDF/Label.php',
'CRM/Utils/PDF/Utils.php',
'CRM/Utils/PseudoConstant.php',
'CRM/Utils/QueryFormatter.php',
'CRM/Utils/ReCAPTCHA.php',
'CRM/Utils/Recent.php',
'CRM/Utils/Request.php',
'CRM/Utils/REST.php',
'CRM/Utils/Rule.php',
'CRM/Utils/Signer.php',
'CRM/Utils/SoapServer.php',
'CRM/Utils/Sort.php',
'CRM/Utils/SQL/Insert.php',
'CRM/Utils/SQL/Select.php',
'CRM/Utils/SQL.php',
'CRM/Utils/String.php',
'CRM/Utils/System/Backdrop.php',
'CRM/Utils/System/Base.php',
'CRM/Utils/System/Drupal.php',
'CRM/Utils/System/Drupal6.php',
'CRM/Utils/System/Drupal8.php',
'CRM/Utils/System/DrupalBase.php',
'CRM/Utils/System/Joomla.php',
'CRM/Utils/System/Soap.php',
'CRM/Utils/System/UnitTests.php',
'CRM/Utils/System/WordPress.php',
'CRM/Utils/System.php',
'CRM/Utils/SystemLogger.php',
'CRM/Utils/Time.php',
'CRM/Utils/Token.php',
'CRM/Utils/Type.php',
'CRM/Utils/Verp.php',
'CRM/Utils/VersionCheck.php',
'CRM/Utils/Weight.php',
'CRM/Utils/Wrapper.php',
'CRM/Utils/XML.php',
'CRM/Utils/Zip.php',
'CRM/Widget/Widget.php',
'distmaker/utils/joomlaxml.php',
'drupal/modules/civicrm_engage/Engage/Report/Form/CallList.php',
'drupal/modules/civicrm_engage/Engage/Report/Form/List.php',
'drupal/modules/civicrm_engage/Engage/Report/Form/WalkList.php',
'drupal/modules/civicrm_member_roles/tests/phpunit/CiviDrupalMemberRoles/CronTest.php',
'drupal/tests/phpunit/bootstrap.php',
'drupal/tests/phpunit/CiviDrupal/HookTest.php',
'ext/org.civicrm.api4/api4.civix.php',
'ext/org.civicrm.api4/api4.php',
'ext/org.civicrm.api4/Civi/API/Api4SelectQuery.php',
'ext/org.civicrm.api4/Civi/API/Provider/ActionObjectProvider.php',
'ext/org.civicrm.api4/Civi/API/Result.php',
'ext/org.civicrm.api4/Civi/API/V4/Action/Create.php',
'ext/org.civicrm.api4/Civi/API/V4/Action/Delete.php',
'ext/org.civicrm.api4/Civi/API/V4/Action/Get.php',
'ext/org.civicrm.api4/Civi/API/V4/Action/GetActions.php',
'ext/org.civicrm.api4/Civi/API/V4/Action/GetFields.php',
'ext/org.civicrm.api4/Civi/API/V4/Action/Update.php',
'ext/org.civicrm.api4/Civi/API/V4/Action.php',
'ext/org.civicrm.api4/Civi/API/V4/Entity/Entity/Get.php',
'ext/org.civicrm.api4/Civi/API/V4/Entity/Participant/Get.php',
'ext/org.civicrm.api4/Civi/API/V4/Entity.php',
'ext/org.civicrm.api4/Civi/API/V4/ReflectionUtils.php',
'ext/org.civicrm.api4/Civi/Api4/Entity.php',
'ext/org.civicrm.api4/Civi/Api4/Participant.php',
'ext/org.civicrm.api4/tests/phpunit/bootstrap.php',
'ext/org.civicrm.api4/tests/phpunit/Civi/API/V4/ParticipantTest.php',
'ext/org.civicrm.api4/tests/phpunit/Civi/API/V4/ReflectionUtilsTest.php',
'ext/org.civicrm.cvform/CRM/Cvform/Upgrader/Base.php',
'ext/org.civicrm.cvform/CRM/Cvform/Upgrader.php',
'ext/org.civicrm.cvform/cvform.civix.php',
'ext/org.civicrm.cvform/cvform.php',
'ext/org.civicrm.cvform/settings/Cvform.setting.php',
'ext/org.civicrm.cvform/src/Cvform.php',
'ext/org.civicrm.cvform/src/CvformException.php',
'ext/org.civicrm.cvform/src/CvformManager.php',
'ext/org.civicrm.cvform/tests/phpunit/bootstrap.php',
'ext/org.civicrm.cvform/tests/phpunit/CvformManagerTest.php',
'ext/org.civicrm.cvform/tests/phpunit/InstallTest.php',
'ext/org.example.hello/hello.civix.php',
'ext/org.example.hello/hello.php',
'ext/org.example.hello/tests/phpunit/bootstrap.php',
'ext/org.example.hello/tests/phpunit/CRM/Hello/WorldTest.php',
'extern/authorizeIPN.php',
'extern/cxn.php',
'extern/ipn.php',
'extern/open.php',
'extern/pxIPN.php',
'extern/rest.php',
'extern/soap.php',
'extern/url.php',
'extern/widget.php',
'install/civicrm.php',
'install/index.php',
'install/langs.php',
'joomla/admin/admin.civicrm.php',
'joomla/admin/configure.php',
'joomla/admin/helpers/api.php',
'joomla/admin/plugins/civicrm/civicrm.php',
'joomla/admin/plugins/civicrmicon/civicrmicon.php',
'joomla/admin/plugins/civicrmsys/civicrmsys.php',
'joomla/admin/plugins/example/example.php',
'joomla/script.civicrm.php',
'joomla/site/civicrm.html.php',
'joomla/site/civicrm.php',
'joomla/site/elements/civicontribpages.php',
'joomla/site/elements/civicontribpagespcp.php',
'joomla/site/elements/civicustomsearch.php',
'joomla/site/elements/civievents.php',
'joomla/site/elements/civieventsonline.php',
'joomla/site/elements/civipcps.php',
'joomla/site/elements/civiprofiles.php',
'joomla/site/views/Contributions/tmpl/default.php',
'joomla/site/views/Contributions/tmpl/pcp.php',
'joomla/site/views/Contributions/tmpl/pcpinfo.php',
'joomla/site/views/Contributions/view.html.php',
'joomla/site/views/CustomSearch/tmpl/default.php',
'joomla/site/views/CustomSearch/view.html.php',
'joomla/site/views/Dashboard/view.html.php',
'joomla/site/views/Events/tmpl/default.php',
'joomla/site/views/Events/tmpl/eventlisting.php',
'joomla/site/views/Events/tmpl/participantlisting.php',
'joomla/site/views/Events/tmpl/register.php',
'joomla/site/views/Events/view.html.php',
'joomla/site/views/MailingList/view.html.php',
'joomla/site/views/Profiles/tmpl/default.php',
'joomla/site/views/Profiles/tmpl/edit.php',
'joomla/site/views/Profiles/tmpl/search.php',
'joomla/site/views/Profiles/tmpl/view.php',
'joomla/site/views/Profiles/view.html.php',
'packages/_ORIGINAL_/Contact/Vcard/Build.php',
'packages/_ORIGINAL_/DB/DataObject.php',
'packages/_ORIGINAL_/DB.php',
'packages/_ORIGINAL_/ezc/Base/src/ezc_bootstrap.php',
'packages/_ORIGINAL_/ezc/Mail/src/parser/interfaces/part_parser.php',
'packages/_ORIGINAL_/HTML/QuickForm/advmultiselect.php',
'packages/_ORIGINAL_/HTML/QuickForm/checkbox.php',
'packages/_ORIGINAL_/HTML/QuickForm/Controller.php',
'packages/_ORIGINAL_/HTML/QuickForm/date.php',
'packages/_ORIGINAL_/HTML/QuickForm/group.php',
'packages/_ORIGINAL_/HTML/QuickForm/hidden.php',
'packages/_ORIGINAL_/HTML/QuickForm/hierselect.php',
'packages/_ORIGINAL_/HTML/QuickForm/input.php',
'packages/_ORIGINAL_/HTML/QuickForm/Page.php',
'packages/_ORIGINAL_/HTML/QuickForm/radio.php',
'packages/_ORIGINAL_/HTML/QuickForm/Renderer/Array.php',
'packages/_ORIGINAL_/HTML/QuickForm/Renderer/Default.php',
'packages/_ORIGINAL_/HTML/QuickForm/Rule/Email.php',
'packages/_ORIGINAL_/HTML/QuickForm/Rule/Required.php',
'packages/_ORIGINAL_/HTML/QuickForm/select.php',
'packages/_ORIGINAL_/HTML/QuickForm.php',
'packages/_ORIGINAL_/IDS/Monitor.php',
'packages/_ORIGINAL_/Log.php',
'packages/_ORIGINAL_/Mail/mail.php',
'packages/_ORIGINAL_/Mail/mime.php',
'packages/_ORIGINAL_/Mail/mimePart.php',
'packages/_ORIGINAL_/Mail/sendmail.php',
'packages/_ORIGINAL_/Mail/smtp.php',
'packages/_ORIGINAL_/Mail.php',
'packages/_ORIGINAL_/Net/SMTP.php',
'packages/_ORIGINAL_/PEAR/Autoloader.php',
'packages/_ORIGINAL_/PEAR/Config.php',
'packages/_ORIGINAL_/PEAR/ErrorStack.php',
'packages/_ORIGINAL_/PEAR/Exception.php',
'packages/_ORIGINAL_/PEAR/Registry.php',
'packages/_ORIGINAL_/PEAR.php',
'packages/_ORIGINAL_/PHP/Beautifier.php',
'packages/_ORIGINAL_/PHPgettext/gettext.php',
'packages/_ORIGINAL_/Services/JSON.php',
'packages/_ORIGINAL_/Smarty/Smarty.class.php',
'packages/_ORIGINAL_/Smarty/Smarty_Compiler.class.php',
'packages/_ORIGINAL_/System.php',
'packages/_ORIGINAL_/Validate/Finance/CreditCard.php',
'packages/Auth/SASL/Anonymous.php',
'packages/Auth/SASL/Common.php',
'packages/Auth/SASL/CramMD5.php',
'packages/Auth/SASL/DigestMD5.php',
'packages/Auth/SASL/External.php',
'packages/Auth/SASL/Login.php',
'packages/Auth/SASL/Plain.php',
'packages/Auth/SASL.php',
'packages/Console/Getopt.php',
'packages/Contact/Vcard/Build.php',
'packages/Contact/Vcard/Parse.php',
'packages/Date/Calc.php',
'packages/Date/Human.php',
'packages/Date/Span.php',
'packages/Date/TimeZone.php',
'packages/Date.php',
'packages/DB/common.php',
'packages/DB/DataObject/Cast.php',
'packages/DB/DataObject/createTables.php',
'packages/DB/DataObject/Error.php',
'packages/DB/DataObject/Generator.php',
'packages/DB/DataObject.php',
'packages/DB/dbase.php',
'packages/DB/mssql.php',
'packages/DB/mysql.php',
'packages/DB/mysqli.php',
'packages/DB/odbc.php',
'packages/DB/pgsql.php',
'packages/DB/storage.php',
'packages/DB/Table/Base.php',
'packages/DB/Table/Database.php',
'packages/DB/Table/Date.php',
'packages/DB/Table/Generator.php',
'packages/DB/Table/Manager/mysql.php',
'packages/DB/Table/Manager/mysqli.php',
'packages/DB/Table/Manager/pgsql.php',
'packages/DB/Table/Manager.php',
'packages/DB/Table/QuickForm.php',
'packages/DB/Table/Valid.php',
'packages/DB/Table/XML.php',
'packages/DB/Table.php',
'packages/DB.php',
'packages/eWAY/eWAY_GatewayRequest.php',
'packages/eWAY/eWAY_GatewayResponse.php',
'packages/FirstData/lphp.php',
'packages/FPDI/filters/FilterASCII85.php',
'packages/FPDI/filters/FilterASCIIHexDecode.php',
'packages/FPDI/filters/FilterLZW.php',
'packages/FPDI/fpdf_tpl.php',
'packages/FPDI/fpdi.php',
'packages/FPDI/fpdi_bridge.php',
'packages/FPDI/fpdi_pdf_parser.php',
'packages/FPDI/pdf_context.php',
'packages/FPDI/pdf_parser.php',
'packages/git-footnote/src/CRM/GitFootnote/AbstractWordFilter.php',
'packages/git-footnote/src/CRM/GitFootnote/CommentFilter.php',
'packages/git-footnote/src/CRM/GitFootnote/CommitMessage.php',
'packages/git-footnote/src/CRM/GitFootnote/Filter.php',
'packages/git-footnote/src/CRM/GitFootnote/JiraFilter.php',
'packages/git-footnote/tests/bootstrap.php',
'packages/git-footnote/tests/CRM/GitFootnote/CommentFilterTest.php',
'packages/git-footnote/tests/CRM/GitFootnote/CommitMessageTest.php',
'packages/git-footnote/tests/CRM/GitFootnote/JiraFilterTest.php',
'packages/git-footnote/vendor/autoload.php',
'packages/git-footnote/vendor/composer/autoload_classmap.php',
'packages/git-footnote/vendor/composer/autoload_namespaces.php',
'packages/git-footnote/vendor/composer/autoload_real.php',
'packages/git-footnote/vendor/composer/ClassLoader.php',
'packages/git-footnote/vendor/totten/jira-api-restclient/examples/common.php',
'packages/git-footnote/vendor/totten/jira-api-restclient/examples/create_version.php',
'packages/git-footnote/vendor/totten/jira-api-restclient/examples/edit_issue.php',
'packages/git-footnote/vendor/totten/jira-api-restclient/examples/inc/blob.php',
'packages/git-footnote/vendor/totten/jira-api-restclient/examples/walking_issues.php',
'packages/git-footnote/vendor/totten/jira-api-restclient/Jira/Api/Authentication/Anonymous.php',
'packages/git-footnote/vendor/totten/jira-api-restclient/Jira/Api/Authentication/AuthenticationInterface.php',
'packages/git-footnote/vendor/totten/jira-api-restclient/Jira/Api/Authentication/Basic.php',
'packages/git-footnote/vendor/totten/jira-api-restclient/Jira/Api/Client/ClientInterface.php',
'packages/git-footnote/vendor/totten/jira-api-restclient/Jira/Api/Client/CurlClient.php',
'packages/git-footnote/vendor/totten/jira-api-restclient/Jira/Api/Client/MemcacheProxyClient.php',
'packages/git-footnote/vendor/totten/jira-api-restclient/Jira/Api/Client/PHPClient.php',
'packages/git-footnote/vendor/totten/jira-api-restclient/Jira/Api/Result.php',
'packages/git-footnote/vendor/totten/jira-api-restclient/Jira/Api.php',
'packages/git-footnote/vendor/totten/jira-api-restclient/Jira/Autoloader.php',
'packages/git-footnote/vendor/totten/jira-api-restclient/Jira/Issue.php',
'packages/git-footnote/vendor/totten/jira-api-restclient/Jira/Issues/Walker.php',
'packages/git-footnote/vendor/totten/jira-api-restclient/Jira/IssueType.php',
'packages/git-footnote/vendor/totten/jira-api-restclient/tests/bootstrap.php',
'packages/HTML/Common.php',
'packages/HTML/QuickForm/Action/Back.php',
'packages/HTML/QuickForm/Action/Direct.php',
'packages/HTML/QuickForm/Action/Display.php',
'packages/HTML/QuickForm/Action/Jump.php',
'packages/HTML/QuickForm/Action/Next.php',
'packages/HTML/QuickForm/Action/Submit.php',
'packages/HTML/QuickForm/Action.php',
'packages/HTML/QuickForm/advcheckbox.php',
'packages/HTML/QuickForm/advmultiselect.php',
'packages/HTML/QuickForm/autocomplete.php',
'packages/HTML/QuickForm/button.php',
'packages/HTML/QuickForm/checkbox.php',
'packages/HTML/QuickForm/Controller.php',
'packages/HTML/QuickForm/date.php',
'packages/HTML/QuickForm/element.php',
'packages/HTML/QuickForm/file.php',
'packages/HTML/QuickForm/group.php',
'packages/HTML/QuickForm/header.php',
'packages/HTML/QuickForm/hidden.php',
'packages/HTML/QuickForm/hiddenselect.php',
'packages/HTML/QuickForm/hierselect.php',
'packages/HTML/QuickForm/html.php',
'packages/HTML/QuickForm/image.php',
'packages/HTML/QuickForm/input.php',
'packages/HTML/QuickForm/link.php',
'packages/HTML/QuickForm/Page.php',
'packages/HTML/QuickForm/password.php',
'packages/HTML/QuickForm/radio.php',
'packages/HTML/QuickForm/Renderer/Array.php',
'packages/HTML/QuickForm/Renderer/ArraySmarty.php',
'packages/HTML/QuickForm/Renderer/Default.php',
'packages/HTML/QuickForm/Renderer/ITDynamic.php',
'packages/HTML/QuickForm/Renderer/ITStatic.php',
'packages/HTML/QuickForm/Renderer/Object.php',
'packages/HTML/QuickForm/Renderer/ObjectFlexy.php',
'packages/HTML/QuickForm/Renderer/QuickHtml.php',
'packages/HTML/QuickForm/Renderer.php',
'packages/HTML/QuickForm/reset.php',
'packages/HTML/QuickForm/Rule/Callback.php',
'packages/HTML/QuickForm/Rule/Compare.php',
'packages/HTML/QuickForm/Rule/Email.php',
'packages/HTML/QuickForm/Rule/Range.php',
'packages/HTML/QuickForm/Rule/Regex.php',
'packages/HTML/QuickForm/Rule/Required.php',
'packages/HTML/QuickForm/Rule.php',
'packages/HTML/QuickForm/RuleRegistry.php',
'packages/HTML/QuickForm/select.php',
'packages/HTML/QuickForm/static.php',
'packages/HTML/QuickForm/submit.php',
'packages/HTML/QuickForm/text.php',
'packages/HTML/QuickForm/textarea.php',
'packages/HTML/QuickForm/xbutton.php',
'packages/HTML/QuickForm.php',
'packages/HTML/Template/IT.php',
'packages/HTML/Template/IT_Error.php',
'packages/HTML/Template/ITX.php',
'packages/html2text/rcube_html2text.php',
'packages/HTTP/Request/Listener.php',
'packages/HTTP/Request.php',
'packages/IDS/Caching/Apc.php',
'packages/IDS/Caching/Database.php',
'packages/IDS/Caching/Factory.php',
'packages/IDS/Caching/File.php',
'packages/IDS/Caching/Interface.php',
'packages/IDS/Caching/Memcached.php',
'packages/IDS/Caching/Session.php',
'packages/IDS/Config/Config.ini.php',
'packages/IDS/Converter.php',
'packages/IDS/Event.php',
'packages/IDS/Filter/Storage.php',
'packages/IDS/Filter.php',
'packages/IDS/Init.php',
'packages/IDS/Log/Composite.php',
'packages/IDS/Log/Database.php',
'packages/IDS/Log/Email.php',
'packages/IDS/Log/File.php',
'packages/IDS/Log/Interface.php',
'packages/IDS/Monitor.php',
'packages/IDS/Report.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrCollections.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/CSS/AlphaValue.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/CSS/Background.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/CSS/Border.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/CSS/Color.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/CSS/Composite.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/CSS/Filter.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/CSS/Font.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/CSS/FontFamily.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/CSS/Length.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/CSS/ListStyle.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/CSS/Multiple.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/CSS/Number.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/CSS/Percentage.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/CSS/TextDecoration.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/CSS/URI.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/CSS.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/Enum.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/HTML/Bool.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/HTML/Class.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/HTML/Color.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/HTML/FrameTarget.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/HTML/ID.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/HTML/Length.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/HTML/LinkTypes.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/HTML/MultiLength.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/HTML/Nmtokens.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/HTML/Pixels.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/Integer.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/Lang.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/Switch.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/Text.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/URI/Email.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/URI/Host.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/URI/IPv4.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/URI/IPv6.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef/URI.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrDef.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrTransform/Background.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrTransform/BdoDir.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrTransform/BgColor.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrTransform/BoolToCSS.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrTransform/Border.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrTransform/EnumToCSS.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrTransform/ImgRequired.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrTransform/ImgSpace.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrTransform/Input.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrTransform/Lang.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrTransform/Length.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrTransform/Name.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrTransform/NameSync.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrTransform/Nofollow.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrTransform/SafeEmbed.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrTransform/SafeObject.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrTransform/SafeParam.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrTransform/ScriptRequired.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrTransform/Textarea.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrTransform.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrTypes.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/AttrValidator.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Bootstrap.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/ChildDef/Chameleon.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/ChildDef/Custom.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/ChildDef/Empty.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/ChildDef/Optional.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/ChildDef/Required.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/ChildDef/StrictBlockquote.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/ChildDef/Table.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/ChildDef.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Config.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigDef/Directive.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigDef/DirectiveAlias.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigDef/Namespace.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigDef.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/Builder/ConfigSchema.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/Builder/Xml.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/Exception.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/Interchange/Directive.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/Interchange/Id.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/Interchange/Namespace.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/Interchange.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/InterchangeBuilder.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/Validator.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/ValidatorAtom.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/ContentSets.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Context.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/CSSDefinition.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Definition.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/DefinitionCache/Decorator/Memory.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/DefinitionCache/Decorator.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/DefinitionCache/Null.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/DefinitionCache/Serializer.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/DefinitionCache.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/DefinitionCacheFactory.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Doctype.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/DoctypeRegistry.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/ElementDef.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Encoder.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/EntityLookup.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/EntityParser.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/ErrorCollector.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/ErrorStruct.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Exception.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Filter/ExtractStyleBlocks.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Filter/YouTube.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Filter.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Generator.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLDefinition.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModule/Bdo.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModule/CommonAttributes.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModule/Edit.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModule/Forms.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModule/Hypertext.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModule/Image.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModule/Legacy.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModule/List.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModule/Name.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModule/Nofollow.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModule/Object.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModule/Presentation.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModule/Proprietary.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModule/Ruby.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModule/SafeEmbed.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModule/SafeObject.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModule/Scripting.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModule/StyleAttribute.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModule/Tables.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModule/Target.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModule/Text.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModule/Tidy/Name.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModule/Tidy/Proprietary.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModule/Tidy/Strict.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModule/Tidy/Transitional.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModule/Tidy/XHTML.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModule/Tidy.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModule/XMLCommonAttributes.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModule.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModuleManager.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/IDAccumulator.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Injector/AutoParagraph.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Injector/DisplayLinkURI.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Injector/Linkify.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Injector/PurifierLinkify.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Injector/RemoveEmpty.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Injector/SafeObject.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Injector.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Language/classes/en-x-test.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Language/messages/en-x-test.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Language/messages/en-x-testmini.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Language/messages/en.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Language.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/LanguageFactory.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Length.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Lexer/DirectLex.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Lexer/DOMLex.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Lexer/PEARSax3.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Lexer/PH5P.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Lexer.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/PercentEncoder.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Printer/ConfigForm.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Printer/CSSDefinition.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Printer/HTMLDefinition.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Printer.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/PropertyList.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/PropertyListIterator.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Strategy/Composite.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Strategy/Core.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Strategy/FixNesting.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Strategy/MakeWellFormed.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Strategy/RemoveForeignElements.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Strategy/ValidateAttributes.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Strategy.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/StringHash.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/StringHashParser.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/TagTransform/Font.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/TagTransform/Simple.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/TagTransform.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Token/Comment.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Token/Empty.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Token/End.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Token/Start.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Token/Tag.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Token/Text.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/Token.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/TokenFactory.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/UnitConverter.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/URI.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/URIDefinition.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/URIFilter/DisableExternal.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/URIFilter/DisableExternalResources.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/URIFilter/DisableResources.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/URIFilter/HostBlacklist.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/URIFilter/MakeAbsolute.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/URIFilter/Munge.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/URIFilter.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/URIParser.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/URIScheme/data.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/URIScheme/file.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/URIScheme/ftp.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/URIScheme/http.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/URIScheme/https.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/URIScheme/mailto.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/URIScheme/news.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/URIScheme/nntp.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/URIScheme.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/URISchemeRegistry.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/VarParser/Flexible.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/VarParser/Native.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/VarParser.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier/VarParserException.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier.auto.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier.autoload.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier.func.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier.includes.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier.kses.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier.path.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier.php',
'packages/IDS/vendors/htmlpurifier/HTMLPurifier.safe-includes.php',
'packages/IDS/Version.php',
'packages/kcfinder/browse.php',
'packages/kcfinder/conf/config.php',
'packages/kcfinder/core/autoload.php',
'packages/kcfinder/core/bootstrap.php',
'packages/kcfinder/core/class/browser.php',
'packages/kcfinder/core/class/minifier.php',
'packages/kcfinder/core/class/uploader.php',
'packages/kcfinder/core/types/type_img.php',
'packages/kcfinder/core/types/type_mime.php',
'packages/kcfinder/css/index.php',
'packages/kcfinder/index.php',
'packages/kcfinder/integration/BolmerCMS.php',
'packages/kcfinder/integration/civicrm.php',
'packages/kcfinder/integration/drupal.php',
'packages/kcfinder/js/index.php',
'packages/kcfinder/js_localize.php',
'packages/kcfinder/lang/af.php',
'packages/kcfinder/lang/bg.php',
'packages/kcfinder/lang/ca.php',
'packages/kcfinder/lang/cs.php',
'packages/kcfinder/lang/da.php',
'packages/kcfinder/lang/de.php',
'packages/kcfinder/lang/el.php',
'packages/kcfinder/lang/en.php',
'packages/kcfinder/lang/es.php',
'packages/kcfinder/lang/et.php',
'packages/kcfinder/lang/fa.php',
'packages/kcfinder/lang/fi.php',
'packages/kcfinder/lang/fr.php',
'packages/kcfinder/lang/he.php',
'packages/kcfinder/lang/hu.php',
'packages/kcfinder/lang/id.php',
'packages/kcfinder/lang/it.php',
'packages/kcfinder/lang/ja.php',
'packages/kcfinder/lang/lt.php',
'packages/kcfinder/lang/lv.php',
'packages/kcfinder/lang/nl.php',
'packages/kcfinder/lang/no.php',
'packages/kcfinder/lang/pl.php',
'packages/kcfinder/lang/pt-br.php',
'packages/kcfinder/lang/pt.php',
'packages/kcfinder/lang/ro.php',
'packages/kcfinder/lang/ru.php',
'packages/kcfinder/lang/sk.php',
'packages/kcfinder/lang/sv.php',
'packages/kcfinder/lang/tr.php',
'packages/kcfinder/lang/uk.php',
'packages/kcfinder/lang/vi.php',
'packages/kcfinder/lang/zh-cn.php',
'packages/kcfinder/lib/class_fastImage.php',
'packages/kcfinder/lib/class_image.php',
'packages/kcfinder/lib/class_image_gd.php',
'packages/kcfinder/lib/class_image_gmagick.php',
'packages/kcfinder/lib/class_image_imagick.php',
'packages/kcfinder/lib/class_zipFolder.php',
'packages/kcfinder/lib/helper_dir.php',
'packages/kcfinder/lib/helper_file.php',
'packages/kcfinder/lib/helper_httpCache.php',
'packages/kcfinder/lib/helper_path.php',
'packages/kcfinder/lib/helper_text.php',
'packages/kcfinder/themes/dark/css.php',
'packages/kcfinder/themes/dark/js.php',
'packages/kcfinder/themes/default/css.php',
'packages/kcfinder/themes/default/js.php',
'packages/kcfinder/tpl/tpl_browser.php',
'packages/kcfinder/tpl/tpl_css.php',
'packages/kcfinder/tpl/tpl_javascript.php',
'packages/kcfinder/upload.php',
'packages/Log/composite.php',
'packages/Log/console.php',
'packages/Log/daemon.php',
'packages/Log/display.php',
'packages/Log/error_log.php',
'packages/Log/file.php',
'packages/Log/firebug.php',
'packages/Log/mail.php',
'packages/Log/mcal.php',
'packages/Log/mdb2.php',
'packages/Log/null.php',
'packages/Log/observer.php',
'packages/Log/sql.php',
'packages/Log/sqlite.php',
'packages/Log/syslog.php',
'packages/Log/win.php',
'packages/Log.php',
'packages/Mail/mail.php',
'packages/Mail/mime.php',
'packages/Mail/mimeDecode.php',
'packages/Mail/mimePart.php',
'packages/Mail/mock.php',
'packages/Mail/null.php',
'packages/Mail/RFC822.php',
'packages/Mail/sendmail.php',
'packages/Mail/smtp.php',
'packages/Mail/smtpmx.php',
'packages/Mail.php',
'packages/Net/Curl.php',
'packages/Net/DIME.php',
'packages/Net/SMTP.php',
'packages/Net/Socket.php',
'packages/Net/URL.php',
'packages/Net/UserAgent/Detect/APC.php',
'packages/Net/UserAgent/Detect.php',
'packages/OpenFlashChart/php-ofc-library/dot_base.php',
'packages/OpenFlashChart/php-ofc-library/JSON.php',
'packages/OpenFlashChart/php-ofc-library/json_format.php',
'packages/OpenFlashChart/php-ofc-library/ofc_area_base.php',
'packages/OpenFlashChart/php-ofc-library/ofc_area_hollow.php',
'packages/OpenFlashChart/php-ofc-library/ofc_area_line.php',
'packages/OpenFlashChart/php-ofc-library/ofc_arrow.php',
'packages/OpenFlashChart/php-ofc-library/ofc_background.php',
'packages/OpenFlashChart/php-ofc-library/ofc_bar.php',
'packages/OpenFlashChart/php-ofc-library/ofc_bar_3d.php',
'packages/OpenFlashChart/php-ofc-library/ofc_bar_base.php',
'packages/OpenFlashChart/php-ofc-library/ofc_bar_filled.php',
'packages/OpenFlashChart/php-ofc-library/ofc_bar_glass.php',
'packages/OpenFlashChart/php-ofc-library/ofc_bar_sketch.php',
'packages/OpenFlashChart/php-ofc-library/ofc_bar_stack.php',
'packages/OpenFlashChart/php-ofc-library/ofc_candle.php',
'packages/OpenFlashChart/php-ofc-library/ofc_hbar.php',
'packages/OpenFlashChart/php-ofc-library/ofc_legend.php',
'packages/OpenFlashChart/php-ofc-library/ofc_line.php',
'packages/OpenFlashChart/php-ofc-library/ofc_line_base.php',
'packages/OpenFlashChart/php-ofc-library/ofc_line_dot.php',
'packages/OpenFlashChart/php-ofc-library/ofc_line_hollow.php',
'packages/OpenFlashChart/php-ofc-library/ofc_line_style.php',
'packages/OpenFlashChart/php-ofc-library/ofc_menu.php',
'packages/OpenFlashChart/php-ofc-library/ofc_pie.php',
'packages/OpenFlashChart/php-ofc-library/ofc_radar_axis.php',
'packages/OpenFlashChart/php-ofc-library/ofc_radar_axis_labels.php',
'packages/OpenFlashChart/php-ofc-library/ofc_radar_spoke_labels.php',
'packages/OpenFlashChart/php-ofc-library/ofc_scatter.php',
'packages/OpenFlashChart/php-ofc-library/ofc_scatter_line.php',
'packages/OpenFlashChart/php-ofc-library/ofc_shape.php',
'packages/OpenFlashChart/php-ofc-library/ofc_sugar.php',
'packages/OpenFlashChart/php-ofc-library/ofc_tags.php',
'packages/OpenFlashChart/php-ofc-library/ofc_title.php',
'packages/OpenFlashChart/php-ofc-library/ofc_tooltip.php',
'packages/OpenFlashChart/php-ofc-library/ofc_x_axis.php',
'packages/OpenFlashChart/php-ofc-library/ofc_x_axis_label.php',
'packages/OpenFlashChart/php-ofc-library/ofc_x_axis_labels.php',
'packages/OpenFlashChart/php-ofc-library/ofc_x_legend.php',
'packages/OpenFlashChart/php-ofc-library/ofc_y_axis.php',
'packages/OpenFlashChart/php-ofc-library/ofc_y_axis_base.php',
'packages/OpenFlashChart/php-ofc-library/ofc_y_axis_label.php',
'packages/OpenFlashChart/php-ofc-library/ofc_y_axis_labels.php',
'packages/OpenFlashChart/php-ofc-library/ofc_y_axis_right.php',
'packages/OpenFlashChart/php-ofc-library/ofc_y_legend.php',
'packages/OpenFlashChart/php-ofc-library/open-flash-chart-object.php',
'packages/OpenFlashChart/php-ofc-library/open-flash-chart.php',
'packages/Pager/Common.php',
'packages/Pager/HtmlWidgets.php',
'packages/Pager/Jumping.php',
'packages/Pager/Pager.php',
'packages/Pager/Sliding.php',
'packages/Pager.php',
'packages/PayJunction/pjClasses.php',
'packages/PaymentExpress/pxaccess.inc.php',
'packages/PEAR/ErrorStack.php',
'packages/PEAR/Exception.php',
'packages/PEAR/FixPHP5PEARWarnings.php',
'packages/PEAR.php',
'packages/PEAR5.php',
'packages/PHP/Beautifier/Batch/Output/Directory.php',
'packages/PHP/Beautifier/Batch/Output/DirectoryBz2.php',
'packages/PHP/Beautifier/Batch/Output/DirectoryGz.php',
'packages/PHP/Beautifier/Batch/Output/DirectoryTar.php',
'packages/PHP/Beautifier/Batch/Output/Files.php',
'packages/PHP/Beautifier/Batch/Output/FilesBz2.php',
'packages/PHP/Beautifier/Batch/Output/FilesGz.php',
'packages/PHP/Beautifier/Batch/Output/FilesTar.php',
'packages/PHP/Beautifier/Batch/Output.php',
'packages/PHP/Beautifier/Batch.php',
'packages/PHP/Beautifier/Common.php',
'packages/PHP/Beautifier/Decorator.php',
'packages/PHP/Beautifier/Exception.php',
'packages/PHP/Beautifier/Filter/ArrayNested.filter.php',
'packages/PHP/Beautifier/Filter/Default.filter.php',
'packages/PHP/Beautifier/Filter/IndentStyles.filter.php',
'packages/PHP/Beautifier/Filter/ListClassFunction.filter.php',
'packages/PHP/Beautifier/Filter/Lowercase.filter.php',
'packages/PHP/Beautifier/Filter/NewLines.filter.php',
'packages/PHP/Beautifier/Filter/Pear.filter.php',
'packages/PHP/Beautifier/Filter/phpBB.filter.php',
'packages/PHP/Beautifier/Filter.php',
'packages/PHP/Beautifier/StreamWrapper/Tarz.php',
'packages/PHP/Beautifier/StreamWrapper.php',
'packages/PHP/Beautifier/Tokenizer.php',
'packages/PHP/Beautifier.php',
'packages/PHPgettext/gettext.php',
'packages/PHPgettext/streams.php',
'packages/PHPgettext/tests/LocalesTest.php',
'packages/PHPgettext/tests/ParsingTest.php',
'packages/recaptcha/recaptchalib.php',
'packages/Services/JSON.php',
'packages/simple_html_dom.php',
'packages/Smarty/Config_File.class.php',
'packages/Smarty/gettext/block.t.php',
'packages/Smarty/gettext/tsmarty2c.php',
'packages/Smarty/internals/core.assemble_plugin_filepath.php',
'packages/Smarty/internals/core.assign_smarty_interface.php',
'packages/Smarty/internals/core.create_dir_structure.php',
'packages/Smarty/internals/core.display_debug_console.php',
'packages/Smarty/internals/core.get_include_path.php',
'packages/Smarty/internals/core.get_microtime.php',
'packages/Smarty/internals/core.get_php_resource.php',
'packages/Smarty/internals/core.is_secure.php',
'packages/Smarty/internals/core.is_trusted.php',
'packages/Smarty/internals/core.load_plugins.php',
'packages/Smarty/internals/core.load_resource_plugin.php',
'packages/Smarty/internals/core.process_cached_inserts.php',
'packages/Smarty/internals/core.process_compiled_include.php',
'packages/Smarty/internals/core.read_cache_file.php',
'packages/Smarty/internals/core.rm_auto.php',
'packages/Smarty/internals/core.rmdir.php',
'packages/Smarty/internals/core.run_insert_handler.php',
'packages/Smarty/internals/core.smarty_include_php.php',
'packages/Smarty/internals/core.write_cache_file.php',
'packages/Smarty/internals/core.write_compiled_include.php',
'packages/Smarty/internals/core.write_compiled_resource.php',
'packages/Smarty/internals/core.write_file.php',
'packages/Smarty/plugins/block.textformat.php',
'packages/Smarty/plugins/compiler.assign.php',
'packages/Smarty/plugins/function.assign_debug_info.php',
'packages/Smarty/plugins/function.config_load.php',
'packages/Smarty/plugins/function.counter.php',
'packages/Smarty/plugins/function.cycle.php',
'packages/Smarty/plugins/function.debug.php',
'packages/Smarty/plugins/function.eval.php',
'packages/Smarty/plugins/function.fetch.php',
'packages/Smarty/plugins/function.html_checkboxes.php',
'packages/Smarty/plugins/function.html_image.php',
'packages/Smarty/plugins/function.html_options.php',
'packages/Smarty/plugins/function.html_radios.php',
'packages/Smarty/plugins/function.html_select_date.php',
'packages/Smarty/plugins/function.html_select_time.php',
'packages/Smarty/plugins/function.html_table.php',
'packages/Smarty/plugins/function.mailto.php',
'packages/Smarty/plugins/function.math.php',
'packages/Smarty/plugins/function.popup.php',
'packages/Smarty/plugins/function.popup_init.php',
'packages/Smarty/plugins/modifier.capitalize.php',
'packages/Smarty/plugins/modifier.cat.php',
'packages/Smarty/plugins/modifier.count_characters.php',
'packages/Smarty/plugins/modifier.count_paragraphs.php',
'packages/Smarty/plugins/modifier.count_sentences.php',
'packages/Smarty/plugins/modifier.count_words.php',
'packages/Smarty/plugins/modifier.date_format.php',
'packages/Smarty/plugins/modifier.debug_print_var.php',
'packages/Smarty/plugins/modifier.default.php',
'packages/Smarty/plugins/modifier.escape.php',
'packages/Smarty/plugins/modifier.indent.php',
'packages/Smarty/plugins/modifier.lower.php',
'packages/Smarty/plugins/modifier.nl2br.php',
'packages/Smarty/plugins/modifier.print_array.php',
'packages/Smarty/plugins/modifier.regex_replace.php',
'packages/Smarty/plugins/modifier.replace.php',
'packages/Smarty/plugins/modifier.spacify.php',
'packages/Smarty/plugins/modifier.string_format.php',
'packages/Smarty/plugins/modifier.strip.php',
'packages/Smarty/plugins/modifier.strip_tags.php',
'packages/Smarty/plugins/modifier.truncate.php',
'packages/Smarty/plugins/modifier.upper.php',
'packages/Smarty/plugins/modifier.wordwrap.php',
'packages/Smarty/plugins/outputfilter.trimwhitespace.php',
'packages/Smarty/plugins/shared.escape_special_chars.php',
'packages/Smarty/plugins/shared.make_timestamp.php',
'packages/Smarty/Smarty.class.php',
'packages/Smarty/Smarty_Compiler.class.php',
'packages/snappy/src/autoload.php',
'packages/snappy/src/Knp/Snappy/AbstractGenerator.php',
'packages/snappy/src/Knp/Snappy/GeneratorInterface.php',
'packages/snappy/src/Knp/Snappy/Image.php',
'packages/snappy/src/Knp/Snappy/Pdf.php',
'packages/Structures/Graph/Manipulator/AcyclicTest.php',
'packages/Structures/Graph/Manipulator/TopologicalSorter.php',
'packages/Structures/Graph/Node.php',
'packages/Structures/Graph.php',
'packages/SymfonyComponents/YAML/sfYaml.php',
'packages/SymfonyComponents/YAML/sfYamlDumper.php',
'packages/SymfonyComponents/YAML/sfYamlInline.php',
'packages/SymfonyComponents/YAML/sfYamlParser.php',
'packages/System/Command.php',
'packages/System.php',
'packages/TbsZip/tbszip.php',
'packages/Validate/Finance/CreditCard.php',
'packages/Validate/Finance.php',
'packages/Validate.php',
'packages/VERSIONS.php',
'packages/When/When.php',
'packages/When/When_Iterator.php',
'packages/XML/Util.php',
'settings/Address.setting.php',
'settings/Campaign.setting.php',
'settings/Contribute.setting.php',
'settings/Core.setting.php',
'settings/Developer.setting.php',
'settings/Directory.setting.php',
'settings/Event.setting.php',
'settings/Extension.setting.php',
'settings/Localization.setting.php',
'settings/Mailing.setting.php',
'settings/Map.setting.php',
'settings/Member.setting.php',
'settings/Multisite.setting.php',
'settings/Search.setting.php',
'settings/Url.setting.php',
'sql/GenerateData.php',
'sql/GenerateGroups.php',
'sql/GenerateMailing.php',
'sql/GenerateReportData.php',
'tests/bin/api3.php',
'tests/bin/run.php',
'tests/extensions/test.extension.manager.moduletest/moduletest.php',
'tests/extensions/test.extension.manager.paymenttest/main.php',
'tests/extensions/test.extension.manager.reporttest/main.php',
'tests/extensions/test.extension.manager.searchtest/main.php',
'tests/phpunit/AllTests.php',
'tests/phpunit/api/v3/ACLCachingTest.php',
'tests/phpunit/api/v3/ACLPermissionTest.php',
'tests/phpunit/api/v3/ActionScheduleTest.php',
'tests/phpunit/api/v3/ActivityContactTest.php',
'tests/phpunit/api/v3/ActivityTest.php',
'tests/phpunit/api/v3/ActivityTypeTest.php',
'tests/phpunit/api/v3/AddressTest.php',
'tests/phpunit/api/v3/AllTests.php',
'tests/phpunit/api/v3/APITest.php',
'tests/phpunit/api/v3/APIWrapperTest.php',
'tests/phpunit/api/v3/AttachmentTest.php',
'tests/phpunit/api/v3/BatchTest.php',
'tests/phpunit/api/v3/CampaignTest.php',
'tests/phpunit/api/v3/CaseTest.php',
'tests/phpunit/api/v3/CaseTypeTest.php',
'tests/phpunit/api/v3/ConstantTest.php',
'tests/phpunit/api/v3/ContactTest.php',
'tests/phpunit/api/v3/ContactTypeTest.php',
'tests/phpunit/api/v3/ContributionPageTest.php',
'tests/phpunit/api/v3/ContributionRecurTest.php',
'tests/phpunit/api/v3/ContributionSoftTest.php',
'tests/phpunit/api/v3/ContributionTest.php',
'tests/phpunit/api/v3/CountryTest.php',
'tests/phpunit/api/v3/CRM11793Test.php',
'tests/phpunit/api/v3/CustomFieldTest.php',
'tests/phpunit/api/v3/CustomGroupTest.php',
'tests/phpunit/api/v3/CustomSearchTest.php',
'tests/phpunit/api/v3/CustomValueContactTypeTest.php',
'tests/phpunit/api/v3/CustomValueTest.php',
'tests/phpunit/api/v3/DashboardContactTest.php',
'tests/phpunit/api/v3/DashboardTest.php',
'tests/phpunit/api/v3/dataset/resolver/api/v3/Contact/ExampleAction2.php',
'tests/phpunit/api/v3/dataset/resolver/api/v3/Generic/ExampleAction1.php',
'tests/phpunit/api/v3/dataset/resolver/api/v3/Generic/ExampleAction2.php',
'tests/phpunit/api/v3/dataset/resolver/api/v3/TestEntity.php',
'tests/phpunit/api/v3/DomainTest.php',
'tests/phpunit/api/v3/EmailTest.php',
'tests/phpunit/api/v3/EntityBatchTest.php',
'tests/phpunit/api/v3/EntityJoinTest.php',
'tests/phpunit/api/v3/EntityTagACLTest.php',
'tests/phpunit/api/v3/EntityTagTest.php',
'tests/phpunit/api/v3/EventTest.php',
'tests/phpunit/api/v3/FinancialTypeACLTest.php',
'tests/phpunit/api/v3/GrantTest.php',
'tests/phpunit/api/v3/GroupContactTest.php',
'tests/phpunit/api/v3/GroupNestingTest.php',
'tests/phpunit/api/v3/GroupOrganizationTest.php',
'tests/phpunit/api/v3/GroupTest.php',
'tests/phpunit/api/v3/ImTest.php',
'tests/phpunit/api/v3/JobProcessMailingTest.php',
'tests/phpunit/api/v3/JobTest.php',
'tests/phpunit/api/v3/JobTestCustomDataTest.php',
'tests/phpunit/api/v3/LineItemTest.php',
'tests/phpunit/api/v3/LocBlockTest.php',
'tests/phpunit/api/v3/LoggingTest.php',
'tests/phpunit/api/v3/MailingABTest.php',
'tests/phpunit/api/v3/MailingContactTest.php',
'tests/phpunit/api/v3/MailingGroupTest.php',
'tests/phpunit/api/v3/MailingTest.php',
'tests/phpunit/api/v3/MailSettingsTest.php',
'tests/phpunit/api/v3/MappingFieldTest.php',
'tests/phpunit/api/v3/MappingTest.php',
'tests/phpunit/api/v3/MembershipPaymentTest.php',
'tests/phpunit/api/v3/MembershipStatusTest.php',
'tests/phpunit/api/v3/MembershipTest.php',
'tests/phpunit/api/v3/MembershipTypeTest.php',
'tests/phpunit/api/v3/MessageTemplateTest.php',
'tests/phpunit/api/v3/NavigationTest.php',
'tests/phpunit/api/v3/NoteTest.php',
'tests/phpunit/api/v3/OpenIDTest.php',
'tests/phpunit/api/v3/OptionGroupTest.php',
'tests/phpunit/api/v3/OptionValueTest.php',
'tests/phpunit/api/v3/OrderTest.php',
'tests/phpunit/api/v3/ParticipantPaymentTest.php',
'tests/phpunit/api/v3/ParticipantStatusTypeTest.php',
'tests/phpunit/api/v3/ParticipantTest.php',
'tests/phpunit/api/v3/PaymentProcessorTest.php',
'tests/phpunit/api/v3/PaymentProcessorTypeTest.php',
'tests/phpunit/api/v3/PaymentTest.php',
'tests/phpunit/api/v3/PaymentTokenTest.php',
'tests/phpunit/api/v3/PhoneTest.php',
'tests/phpunit/api/v3/PledgePaymentTest.php',
'tests/phpunit/api/v3/PledgeTest.php',
'tests/phpunit/api/v3/PriceFieldTest.php',
'tests/phpunit/api/v3/PriceFieldValueTest.php',
'tests/phpunit/api/v3/PriceSetTest.php',
'tests/phpunit/api/v3/ProductTest.php',
'tests/phpunit/api/v3/ProfileTest.php',
'tests/phpunit/api/v3/RelationshipTest.php',
'tests/phpunit/api/v3/RelationshipTypeTest.php',
'tests/phpunit/api/v3/ReportTemplateTest.php',
'tests/phpunit/api/v3/SavedSearchTest.php',
'tests/phpunit/api/v3/SelectQueryTest.php',
'tests/phpunit/api/v3/settings/test.setting.php',
'tests/phpunit/api/v3/SettingTest.php',
'tests/phpunit/api/v3/StatusPreferenceTest.php',
'tests/phpunit/api/v3/SurveyRespondantTest.php',
'tests/phpunit/api/v3/SurveyTest.php',
'tests/phpunit/api/v3/SyntaxConformanceTest.php',
'tests/phpunit/api/v3/SystemCheckTest.php',
'tests/phpunit/api/v3/SystemTest.php',
'tests/phpunit/api/v3/TagTest.php',
'tests/phpunit/api/v3/TaxContributionPageTest.php',
'tests/phpunit/api/v3/UFFieldTest.php',
'tests/phpunit/api/v3/UFGroupTest.php',
'tests/phpunit/api/v3/UFJoinTest.php',
'tests/phpunit/api/v3/UFMatchTest.php',
'tests/phpunit/api/v3/UserTest.php',
'tests/phpunit/api/v3/UtilsTest.php',
'tests/phpunit/api/v3/WebsiteTest.php',
'tests/phpunit/Civi/ActionSchedule/AbstractMappingTest.php',
'tests/phpunit/Civi/AllTests.php',
'tests/phpunit/Civi/Angular/ManagerTest.php',
'tests/phpunit/Civi/API/KernelTest.php',
'tests/phpunit/Civi/API/RequestTest.php',
'tests/phpunit/Civi/API/Subscriber/DynamicFKAuthorizationTest.php',
'tests/phpunit/Civi/API/Subscriber/TransactionSubscriberTest.php',
'tests/phpunit/Civi/API/Subscriber/WhitelistSubscriberTest.php',
'tests/phpunit/Civi/CCase/SequenceListenerTest.php',
'tests/phpunit/Civi/Core/ResolverTest.php',
'tests/phpunit/Civi/Core/SettingsManagerTest.php',
'tests/phpunit/Civi/Test/ExampleHookTest.php',
'tests/phpunit/Civi/Test/ExampleTransactionalTest.php',
'tests/phpunit/Civi/Token/TokenProcessorTest.php',
'tests/phpunit/CiviTest/bootstrap.php',
'tests/phpunit/CiviTest/CiviCaseTestCase.php',
'tests/phpunit/CiviTest/civicrm.settings.local.php',
'tests/phpunit/CiviTest/CiviDBAssert.php',
'tests/phpunit/CiviTest/CiviMailUtils.php',
'tests/phpunit/CiviTest/CiviReportTestCase.php',
'tests/phpunit/CiviTest/CiviSeleniumSettings.auto.php',
'tests/phpunit/CiviTest/CiviSeleniumSettings.php',
'tests/phpunit/CiviTest/CiviSeleniumTestCase.php',
'tests/phpunit/CiviTest/CiviTestSuite.php',
'tests/phpunit/CiviTest/CiviUnitTestCase.php',
'tests/phpunit/CRM/Activity/AllTests.php',
'tests/phpunit/CRM/Activity/BAO/ActivityAssignmentTest.php',
'tests/phpunit/CRM/Activity/BAO/ActivityTargetTest.php',
'tests/phpunit/CRM/Activity/BAO/ActivityTest.php',
'tests/phpunit/CRM/AllTests.php',
'tests/phpunit/CRM/Batch/Form/EntryTest.php',
'tests/phpunit/CRM/Bridge/OG/DrupalTest.php',
'tests/phpunit/CRM/Case/AllTests.php',
'tests/phpunit/CRM/Case/BAO/CaseTest.php',
'tests/phpunit/CRM/Case/BAO/CaseTypeForkTest.php',
'tests/phpunit/CRM/Case/BAO/CaseTypeTest.php',
'tests/phpunit/CRM/Case/BAO/QueryTest.php',
'tests/phpunit/CRM/Case/PseudoConstantTest.php',
'tests/phpunit/CRM/Case/XMLRepositoryTest.php',
'tests/phpunit/CRM/Contact/AllTests.php',
'tests/phpunit/CRM/Contact/BAO/ContactTest.php',
'tests/phpunit/CRM/Contact/BAO/ContactType/ContactSearchTest.php',
'tests/phpunit/CRM/Contact/BAO/ContactType/ContactTest.php',
'tests/phpunit/CRM/Contact/BAO/ContactType/ContactTypeTest.php',
'tests/phpunit/CRM/Contact/BAO/ContactType/RelationshipTest.php',
'tests/phpunit/CRM/Contact/BAO/GroupContactCacheTest.php',
'tests/phpunit/CRM/Contact/BAO/GroupContactTest.php',
'tests/phpunit/CRM/Contact/BAO/GroupTest.php',
'tests/phpunit/CRM/Contact/BAO/QueryTest.php',
'tests/phpunit/CRM/Contact/BAO/QueryTestDataProvider.php',
'tests/phpunit/CRM/Contact/BAO/SavedSearchTest.php',
'tests/phpunit/CRM/Contact/Form/Search/Custom/GroupTest.php',
'tests/phpunit/CRM/Contact/Form/Search/Custom/GroupTestDataProvider.php',
'tests/phpunit/CRM/Contact/Form/Search/Custom/SampleTest.php',
'tests/phpunit/CRM/Contact/Form/Search/Custom/SampleTestDataProvider.php',
'tests/phpunit/CRM/Contact/Form/Task/EmailCommonTest.php',
'tests/phpunit/CRM/Contact/Form/Task/PrintDocumentTest.php',
'tests/phpunit/CRM/Contact/Import/Parser/ContactTest.php',
'tests/phpunit/CRM/Contact/Page/AjaxTest.php',
'tests/phpunit/CRM/Contact/SelectorTest.php',
'tests/phpunit/CRM/Contribute/ActionMapping/ByTypeTest.php',
'tests/phpunit/CRM/Contribute/AllTests.php',
'tests/phpunit/CRM/Contribute/BAO/ContributionPageTest.php',
'tests/phpunit/CRM/Contribute/BAO/ContributionRecurTest.php',
'tests/phpunit/CRM/Contribute/BAO/ContributionTest.php',
'tests/phpunit/CRM/Contribute/BAO/ContributionTypeTest.php',
'tests/phpunit/CRM/Contribute/BAO/ManagePremiumsTest.php',
'tests/phpunit/CRM/Contribute/Form/Contribution/MainTest.php',
'tests/phpunit/CRM/Contribute/Form/ContributionTest.php',
'tests/phpunit/CRM/Contribute/Form/Task/InvoiceTest.php',
'tests/phpunit/CRM/Contribute/Form/Task/PDFLetterCommonTest.php',
'tests/phpunit/CRM/Contribute/Form/Task/StatusTest.php',
'tests/phpunit/CRM/Core/AllTests.php',
'tests/phpunit/CRM/Core/BAO/ActionScheduleTest.php',
'tests/phpunit/CRM/Core/BAO/AddressTest.php',
'tests/phpunit/CRM/Core/BAO/CacheTest.php',
'tests/phpunit/CRM/Core/BAO/ConfigSettingTest.php',
'tests/phpunit/CRM/Core/BAO/CustomFieldTest.php',
'tests/phpunit/CRM/Core/BAO/CustomGroupTest.php',
'tests/phpunit/CRM/Core/BAO/CustomQueryTest.php',
'tests/phpunit/CRM/Core/BAO/CustomValueTableMultipleTest.php',
'tests/phpunit/CRM/Core/BAO/CustomValueTableSetGetTest.php',
'tests/phpunit/CRM/Core/BAO/CustomValueTableTest.php',
'tests/phpunit/CRM/Core/BAO/CustomValueTest.php',
'tests/phpunit/CRM/Core/BAO/DashboardTest.php',
'tests/phpunit/CRM/Core/BAO/EmailTest.php',
'tests/phpunit/CRM/Core/BAO/FinancialTrxnTest.php',
'tests/phpunit/CRM/Core/BAO/IMTest.php',
'tests/phpunit/CRM/Core/BAO/LocationTest.php',
'tests/phpunit/CRM/Core/BAO/NavigationTest.php',
'tests/phpunit/CRM/Core/BAO/OpenIDTest.php',
'tests/phpunit/CRM/Core/BAO/OptionValueTest.php',
'tests/phpunit/CRM/Core/BAO/PhoneTest.php',
'tests/phpunit/CRM/Core/BAO/PreferencesTest.php',
'tests/phpunit/CRM/Core/BAO/PrevNextCacheTest.php',
'tests/phpunit/CRM/Core/BAO/RecurringEntityTest.php',
'tests/phpunit/CRM/Core/BAO/SchemaHandlerTest.php',
'tests/phpunit/CRM/Core/BAO/SettingTest.php',
'tests/phpunit/CRM/Core/BAO/UFFieldTest.php',
'tests/phpunit/CRM/Core/CodeGen/FreshnessTest.php',
'tests/phpunit/CRM/Core/CommunityMessagesTest.php',
'tests/phpunit/CRM/Core/Config/MailerTest.php',
'tests/phpunit/CRM/Core/DAO/AllCoreTablesTest.php',
'tests/phpunit/CRM/Core/DAOConformanceTest.php',
'tests/phpunit/CRM/Core/DAOTest.php',
'tests/phpunit/CRM/Core/ErrorTest.php',
'tests/phpunit/CRM/Core/FieldOptionsTest.php',
'tests/phpunit/CRM/Core/InnoDBIndexerTest.php',
'tests/phpunit/CRM/Core/JobManagerTest.php',
'tests/phpunit/CRM/Core/ManagedEntitiesTest.php',
'tests/phpunit/CRM/Core/MenuTest.php',
'tests/phpunit/CRM/Core/OptionGroupTest.php',
'tests/phpunit/CRM/Core/Page/AJAXTest.php',
'tests/phpunit/CRM/Core/Page/RedirectTest.php',
'tests/phpunit/CRM/Core/Payment/AuthorizeNetIPNTest.php',
'tests/phpunit/CRM/Core/Payment/AuthorizeNetTest.php',
'tests/phpunit/CRM/Core/Payment/BaseIPNTest.php',
'tests/phpunit/CRM/Core/Payment/PayPalPNTest.php',
'tests/phpunit/CRM/Core/Payment/PayPalProIPNTest.php',
'tests/phpunit/CRM/Core/PaymentTest.php',
'tests/phpunit/CRM/Core/Permission/BaseTest.php',
'tests/phpunit/CRM/Core/Permission/GenericTest.php',
'tests/phpunit/CRM/Core/Permission/JoomlaTest.php',
'tests/phpunit/CRM/Core/PseudoConstantTest.php',
'tests/phpunit/CRM/Core/RegionTest.php',
'tests/phpunit/CRM/Core/Resources/StringsTest.php',
'tests/phpunit/CRM/Core/ResourcesTest.php',
'tests/phpunit/CRM/Core/Smarty/plugins/CrmScopeTest.php',
'tests/phpunit/CRM/Core/TransactionTest.php',
'tests/phpunit/CRM/Custom/Page/AjaxTest.php',
'tests/phpunit/CRM/Dedupe/DedupeFinderTest.php',
'tests/phpunit/CRM/Dedupe/MergerTest.php',
'tests/phpunit/CRM/Event/AllTests.php',
'tests/phpunit/CRM/Event/BAO/AdditionalPaymentTest.php',
'tests/phpunit/CRM/Event/BAO/ParticipantStatusTest.php',
'tests/phpunit/CRM/Event/BAO/ParticipantTest.php',
'tests/phpunit/CRM/Export/BAO/ExportTest.php',
'tests/phpunit/CRM/Extension/AllTests.php',
'tests/phpunit/CRM/Extension/BrowserTest.php',
'tests/phpunit/CRM/Extension/Container/AllTests.php',
'tests/phpunit/CRM/Extension/Container/BasicTest.php',
'tests/phpunit/CRM/Extension/Container/CollectionTest.php',
'tests/phpunit/CRM/Extension/Container/StaticTest.php',
'tests/phpunit/CRM/Extension/InfoTest.php',
'tests/phpunit/CRM/Extension/Manager/AllTests.php',
'tests/phpunit/CRM/Extension/Manager/ModuleTest.php',
'tests/phpunit/CRM/Extension/Manager/PaymentTest.php',
'tests/phpunit/CRM/Extension/Manager/ReportTest.php',
'tests/phpunit/CRM/Extension/Manager/SearchTest.php',
'tests/phpunit/CRM/Extension/ManagerTest.php',
'tests/phpunit/CRM/Extension/MapperTest.php',
'tests/phpunit/CRM/Financial/BAO/FinancialAccountTest.php',
'tests/phpunit/CRM/Financial/BAO/FinancialItemTest.php',
'tests/phpunit/CRM/Financial/BAO/FinancialTypeAccountTest.php',
'tests/phpunit/CRM/Financial/BAO/FinancialTypeTest.php',
'tests/phpunit/CRM/Financial/BAO/PaymentProcessorTypeTest.php',
'tests/phpunit/CRM/Financial/Page/AjaxBatchSummaryTest.php',
'tests/phpunit/CRM/Financial/Page/AjaxTest.php',
'tests/phpunit/CRM/Group/Page/AjaxTest.php',
'tests/phpunit/CRM/Import/DataSource/CsvTest.php',
'tests/phpunit/CRM/Mailing/BAO/QueryTest.php',
'tests/phpunit/CRM/Mailing/BAO/QueryTestDataProvider.php',
'tests/phpunit/CRM/Mailing/BAO/SpoolTest.php',
'tests/phpunit/CRM/Member/AllTests.php',
'tests/phpunit/CRM/Member/BAO/MembershipLogTest.php',
'tests/phpunit/CRM/Member/BAO/MembershipStatusTest.php',
'tests/phpunit/CRM/Member/BAO/MembershipTest.php',
'tests/phpunit/CRM/Member/BAO/MembershipTypeTest.php',
'tests/phpunit/CRM/Member/BAO/QueryTest.php',
'tests/phpunit/CRM/Member/Form/AllTests.php',
'tests/phpunit/CRM/Member/Form/MembershipRenewalTest.php',
'tests/phpunit/CRM/Member/Form/MembershipTest.php',
'tests/phpunit/CRM/Member/Import/Parser/MembershipTest.php',
'tests/phpunit/CRM/PCP/BAO/PCPTest.php',
'tests/phpunit/CRM/Pledge/AllTests.php',
'tests/phpunit/CRM/Pledge/BAO/PledgeBlockTest.php',
'tests/phpunit/CRM/Pledge/BAO/PledgePaymentTest.php',
'tests/phpunit/CRM/Pledge/BAO/PledgeTest.php',
'tests/phpunit/CRM/Price/BAO/PriceSetTest.php',
'tests/phpunit/CRM/Queue/AllTests.php',
'tests/phpunit/CRM/Queue/Queue/AllTests.php',
'tests/phpunit/CRM/Queue/Queue/SqlTest.php',
'tests/phpunit/CRM/Queue/QueueTest.php',
'tests/phpunit/CRM/Queue/RunnerTest.php',
'tests/phpunit/CRM/Report/Form/Contribute/DetailTest.php',
'tests/phpunit/CRM/Report/Form/TestCaseTest.php',
'tests/phpunit/CRM/UF/Page/ProfileEditorTest.php',
'tests/phpunit/CRM/Utils/API/MatchOptionTest.php',
'tests/phpunit/CRM/Utils/API/ReloadOptionTest.php',
'tests/phpunit/CRM/Utils/ArrayTest.php',
'tests/phpunit/CRM/Utils/AutoCleanTest.php',
'tests/phpunit/CRM/Utils/Cache/AllTests.php',
'tests/phpunit/CRM/Utils/Cache/SqlGroupTest.php',
'tests/phpunit/CRM/Utils/DeprecatedUtilsTest.php',
'tests/phpunit/CRM/Utils/FileTest.php',
'tests/phpunit/CRM/Utils/GlobalStackTest.php',
'tests/phpunit/CRM/Utils/HookTest.php',
'tests/phpunit/CRM/Utils/HTMLTest.php',
'tests/phpunit/CRM/Utils/HtmlToTextTest.php',
'tests/phpunit/CRM/Utils/HttpClientTest.php',
'tests/phpunit/CRM/Utils/JSTest.php',
'tests/phpunit/CRM/Utils/MailTest.php',
'tests/phpunit/CRM/Utils/Migrate/ImportExportTest.php',
'tests/phpunit/CRM/Utils/NumberTest.php',
'tests/phpunit/CRM/Utils/QueryFormatterTest.php',
'tests/phpunit/CRM/Utils/RestTest.php',
'tests/phpunit/CRM/Utils/RuleTest.php',
'tests/phpunit/CRM/Utils/SignerTest.php',
'tests/phpunit/CRM/Utils/SQL/InsertTest.php',
'tests/phpunit/CRM/Utils/SQL/SelectTest.php',
'tests/phpunit/CRM/Utils/StringTest.php',
'tests/phpunit/CRM/Utils/SystemTest.php',
'tests/phpunit/CRM/Utils/TimeTest.php',
'tests/phpunit/CRM/Utils/TypeTest.php',
'tests/phpunit/CRM/Utils/versionCheckTest.php',
'tests/phpunit/CRM/Utils/ZipTest.php',
'tests/phpunit/EnvTests.php',
'tests/phpunit/HelloTest.php',
'tests/phpunit/WebTest/ACL/AssignUsersToRolesTest.php',
'tests/phpunit/WebTest/Activity/AddRecurringActivityTest.php',
'tests/phpunit/WebTest/Activity/ContactContextAddTest.php',
'tests/phpunit/WebTest/Activity/IcalTest.php',
'tests/phpunit/WebTest/Activity/StandaloneAddTest.php',
'tests/phpunit/WebTest/Admin/CustomAddTest.php',
'tests/phpunit/WebTest/Admin/CustomAddTestSameField.php',
'tests/phpunit/WebTest/Admin/Form/ScheduleReminderTest.php',
'tests/phpunit/WebTest/Admin/Form/Setting/LocalizationTest.php',
'tests/phpunit/WebTest/Admin/MoveCustomDataTest.php',
'tests/phpunit/WebTest/Admin/RelationshipTypeAddTest.php',
'tests/phpunit/WebTest/AllTests.php',
'tests/phpunit/WebTest/Campaign/ActivityTest.php',
'tests/phpunit/WebTest/Campaign/CampaignDescriptionTest.php',
'tests/phpunit/WebTest/Campaign/MailingTest.php',
'tests/phpunit/WebTest/Campaign/MembershipTest.php',
'tests/phpunit/WebTest/Campaign/OfflineContributionTest.php',
'tests/phpunit/WebTest/Campaign/OfflineEventRegistrationTest.php',
'tests/phpunit/WebTest/Campaign/OnlineContributionTest.php',
'tests/phpunit/WebTest/Campaign/OnlineEventRegistrationTest.php',
'tests/phpunit/WebTest/Campaign/PetitionUsageScenarioTest.php',
'tests/phpunit/WebTest/Campaign/PledgeTest.php',
'tests/phpunit/WebTest/Campaign/SurveyUsageScenarioTest.php',
'tests/phpunit/WebTest/Case/ActivityToCaseTest.php',
'tests/phpunit/WebTest/Case/AddCaseTest.php',
'tests/phpunit/WebTest/Case/AddCaseTypeTest.php',
'tests/phpunit/WebTest/Case/CaseCustomFieldsTest.php',
'tests/phpunit/WebTest/Case/CaseDashboardTest.php',
'tests/phpunit/WebTest/Contact/AddCmsUserTest.php',
'tests/phpunit/WebTest/Contact/AddContactsToEventAdvancedSearchTest.php',
'tests/phpunit/WebTest/Contact/AddressParsingTest.php',
'tests/phpunit/WebTest/Contact/AddTest.php',
'tests/phpunit/WebTest/Contact/AddViaProfileTest.php',
'tests/phpunit/WebTest/Contact/AdvancedSearchedRelatedContactTest.php',
'tests/phpunit/WebTest/Contact/AdvancedSearchTest.php',
'tests/phpunit/WebTest/Contact/AdvanceSearchPaneTest.php',
'tests/phpunit/WebTest/Contact/AdvanceSearchPrivacyOptionsTest.php',
'tests/phpunit/WebTest/Contact/ContactReferenceFieldTest.php',
'tests/phpunit/WebTest/Contact/ContactTagTest.php',
'tests/phpunit/WebTest/Contact/CreateCmsUserFromContactTest.php',
'tests/phpunit/WebTest/Contact/CustomDataAddTest.php',
'tests/phpunit/WebTest/Contact/DeceasedContactsAdvancedSearchTest.php',
'tests/phpunit/WebTest/Contact/DupeContactTest.php',
'tests/phpunit/WebTest/Contact/EditContactTest.php',
'tests/phpunit/WebTest/Contact/GroupAddTest.php',
'tests/phpunit/WebTest/Contact/InlineFieldsEditTest.php',
'tests/phpunit/WebTest/Contact/MergeContactsTest.php',
'tests/phpunit/WebTest/Contact/MultipleContactSubTypes.php',
'tests/phpunit/WebTest/Contact/PrevNextTest.php',
'tests/phpunit/WebTest/Contact/PrivacyOptionSearchTest.php',
'tests/phpunit/WebTest/Contact/ProfileChecksumTest.php',
'tests/phpunit/WebTest/Contact/RelationshipAddTest.php',
'tests/phpunit/WebTest/Contact/SearchBuilderTest.php',
'tests/phpunit/WebTest/Contact/SearchbyDateFilterTest.php',
'tests/phpunit/WebTest/Contact/SearchTest.php',
'tests/phpunit/WebTest/Contact/SignatureTest.php',
'tests/phpunit/WebTest/Contact/TagAddTest.php',
'tests/phpunit/WebTest/Contact/TagSetSearchTest.php',
'tests/phpunit/WebTest/Contact/TaskActionAddToGroupTest.php',
'tests/phpunit/WebTest/Contact/TaskActionSendMassMailing.php',
'tests/phpunit/WebTest/Contact/TaskActionSendSMS.php',
'tests/phpunit/WebTest/Contact/UpdateProfileTest.php',
'tests/phpunit/WebTest/Contribute/AccrualSettingTest.php',
'tests/phpunit/WebTest/Contribute/AddBatchesTest.php',
'tests/phpunit/WebTest/Contribute/AddPricesetTest.php',
'tests/phpunit/WebTest/Contribute/ConfirmOptionalTest.php',
'tests/phpunit/WebTest/Contribute/ContactContextAddTest.php',
'tests/phpunit/WebTest/Contribute/ContributionPageAddTest.php',
'tests/phpunit/WebTest/Contribute/OfflineContributionTest.php',
'tests/phpunit/WebTest/Contribute/OfflineRecurContributionTest.php',
'tests/phpunit/WebTest/Contribute/OnBehalfOfOrganization.php',
'tests/phpunit/WebTest/Contribute/OnlineContributionTest.php',
'tests/phpunit/WebTest/Contribute/OnlineMultiplePaymentProcessorTest.php',
'tests/phpunit/WebTest/Contribute/OnlineRecurContributionTest.php',
'tests/phpunit/WebTest/Contribute/PCPAddTest.php',
'tests/phpunit/WebTest/Contribute/StandaloneAddTest.php',
'tests/phpunit/WebTest/Contribute/UpdateBatchPendingContributionTest.php',
'tests/phpunit/WebTest/Contribute/UpdateContributionTest.php',
'tests/phpunit/WebTest/Contribute/UpdatePendingContributionTest.php',
'tests/phpunit/WebTest/Contribute/VerifySSLContributionTest.php',
'tests/phpunit/WebTest/Event/AddEventTest.php',
'tests/phpunit/WebTest/Event/AdditionalPaymentTest.php',
'tests/phpunit/WebTest/Event/AddParticipationTest.php',
'tests/phpunit/WebTest/Event/AddPricesetTest.php',
'tests/phpunit/WebTest/Event/AddRecurringEventTest.php',
'tests/phpunit/WebTest/Event/ChangeParticipantStatus.php',
'tests/phpunit/WebTest/Event/EventListingTest.php',
'tests/phpunit/WebTest/Event/EventWaitListTest.php',
'tests/phpunit/WebTest/Event/MultipleEventRegistrationbyCartTest.php',
'tests/phpunit/WebTest/Event/MultiprofileEventTest.php',
'tests/phpunit/WebTest/Event/ParticipantCountTest.php',
'tests/phpunit/WebTest/Event/ParticipantSearchTest.php',
'tests/phpunit/WebTest/Event/PCPAddTest.php',
'tests/phpunit/WebTest/Event/PricesetMaxCountTest.php',
'tests/phpunit/WebTest/Event/TellAFriendTest.php',
'tests/phpunit/WebTest/Export/ContactTest.php',
'tests/phpunit/WebTest/Export/ExportCiviSeleniumTestCase.php',
'tests/phpunit/WebTest/Financial/FinancialAccountTest.php',
'tests/phpunit/WebTest/Financial/FinancialAccountTypeTest.php',
'tests/phpunit/WebTest/Financial/FinancialBatchExport.php',
'tests/phpunit/WebTest/Generic/CheckActivityTest.php',
'tests/phpunit/WebTest/Generic/CheckDashboardTest.php',
'tests/phpunit/WebTest/Generic/CheckFindTest.php',
'tests/phpunit/WebTest/Generic/GeneralClickAroundTest.php',
'tests/phpunit/WebTest/Grant/ContactContextAddTest.php',
'tests/phpunit/WebTest/Grant/CustomFieldsetTest.php',
'tests/phpunit/WebTest/Grant/StandaloneAddTest.php',
'tests/phpunit/WebTest/Import/ActivityTest.php',
'tests/phpunit/WebTest/Import/AddressImportTest.php',
'tests/phpunit/WebTest/Import/AddressParsingTest.php',
'tests/phpunit/WebTest/Import/ContactCustomDataTest.php',
'tests/phpunit/WebTest/Import/ContactSubtypeTest.php',
'tests/phpunit/WebTest/Import/ContactTest.php',
'tests/phpunit/WebTest/Import/ContributionTest.php',
'tests/phpunit/WebTest/Import/CustomDataTest.php',
'tests/phpunit/WebTest/Import/DateFormatTest.php',
'tests/phpunit/WebTest/Import/DuplicateMatchingTest.php',
'tests/phpunit/WebTest/Import/GroupTest.php',
'tests/phpunit/WebTest/Import/ImportCiviSeleniumTestCase.php',
'tests/phpunit/WebTest/Import/MatchExternalIdTest.php',
'tests/phpunit/WebTest/Import/MemberTest.php',
'tests/phpunit/WebTest/Import/MultipleRelationshipTest.php',
'tests/phpunit/WebTest/Import/ParticipantTest.php',
'tests/phpunit/WebTest/Import/SavedMappingTest.php',
'tests/phpunit/WebTest/Import/TagTest.php',
'tests/phpunit/WebTest/Mailing/ABMailingTest.php',
'tests/phpunit/WebTest/Mailing/AddMessageTemplateTest.php',
'tests/phpunit/WebTest/Mailing/AddNewMailingComponentTest.php',
'tests/phpunit/WebTest/Mailing/MailingTest.php',
'tests/phpunit/WebTest/Mailing/SpoolTest.php',
'tests/phpunit/WebTest/Mailing/ValidateBodyMailingComponentTest.php',
'tests/phpunit/WebTest/Member/BatchUpdateViaProfileTest.php',
'tests/phpunit/WebTest/Member/ContactContextAddTest.php',
'tests/phpunit/WebTest/Member/DefaultMembershipPricesetTest.php',
'tests/phpunit/WebTest/Member/EditMembershipTest.php',
'tests/phpunit/WebTest/Member/FixedMembershipTypeTest.php',
'tests/phpunit/WebTest/Member/InheritedMembershipTest.php',
'tests/phpunit/WebTest/Member/OfflineAutoRenewMembershipTest.php',
'tests/phpunit/WebTest/Member/OfflineMembershipAddPricesetTest.php',
'tests/phpunit/WebTest/Member/OfflineMembershipRenewTest.php',
'tests/phpunit/WebTest/Member/OnlineAutoRenewMembershipGCTest.php',
'tests/phpunit/WebTest/Member/OnlineAutoRenewMembershipTest.php',
'tests/phpunit/WebTest/Member/OnlineMembershipAddPricesetTest.php',
'tests/phpunit/WebTest/Member/OnlineMembershipCreateTest.php',
'tests/phpunit/WebTest/Member/OnlineMembershipRenewTest.php',
'tests/phpunit/WebTest/Member/SeperateMembershipPaymentTest.php',
'tests/phpunit/WebTest/Member/StandaloneAddTest.php',
'tests/phpunit/WebTest/Member/UpdateMembershipScriptTest.php',
'tests/phpunit/WebTest/Pledge/AddCancelPaymentTest.php',
'tests/phpunit/WebTest/Pledge/ContactContextAddTest.php',
'tests/phpunit/WebTest/Pledge/ContactContextPledgePaymentAddTest.php',
'tests/phpunit/WebTest/Pledge/StandaloneAddDeleteTest.php',
'tests/phpunit/WebTest/Pledge/StandaloneAddTest.php',
'tests/phpunit/WebTest/Profile/BatchUpdateTest.php',
'tests/phpunit/WebTest/Profile/DedupeTest.php',
'tests/phpunit/WebTest/Profile/MultiRecordProfileAddTest.php',
'tests/phpunit/WebTest/Profile/ProfileAddTest.php',
'tests/phpunit/WebTest/Profile/ProfileCountryState.php',
'tests/phpunit/WebTest/Profile/ProfileGroupSubscriptionTest.php',
'tests/phpunit/WebTest/Profile/SearchTest.php',
'tests/phpunit/WebTest/Release/InstallScript.php',
'tests/phpunit/WebTest/Release/ReleaseTestCase.php',
'tests/phpunit/WebTest/Release/UpgradeScript.php',
'tests/phpunit/WebTest/Report/AddTest.php',
'tests/phpunit/WebTest/Report/DonarReportTest.php',
'tests/phpunit/WebTest/Report/LoggingReportTest.php',
'tests/phpunit/WebTest/Report/RolePermissionReportTest.php',
'tests/phpunit/WebTest/Utils/RedirectTest.php',
'tests/phpunit/WebTest/Utils/RestTest.php',
'tests/qunit/crm-api3/test.php',
'tests/qunit/crm-backbone/test.php',
'tests/qunit/crm-translate/test.php',
'tests/qunit/example/test.php',
'tests/qunit/profile-editor/test.php',
'tmp/add-group.php',
'tmp/checkdb.php',
'tmp/compare-fieldkeys.php',
'tmp/read-all-daos-prefix.php',
'tmp/read-all-daos.php',
'tmp/tmp.php',
'tmp/txn.php',
'tmp/zoo.php',
'tools/bin/scripts/cli.php',
'tools/bin/scripts/ImportTags.php',
'tools/bin/scripts/memcache.php',
'tools/bin/scripts/NormalizePhone.php',
'tools/bin/scripts/set-version.php',
'tools/bin/scripts/testProcess.php',
'tools/bin/scripts/updateNameCache.php',
'tools/extensions/cividiscount/api/v3/DiscountCode.php',
'tools/extensions/cividiscount/api/v3/DiscountTrack.php',
'tools/extensions/cividiscount/cividiscount.civix.php',
'tools/extensions/cividiscount/cividiscount.php',
'tools/extensions/cividiscount/CRM/CiviDiscount/BAO/Item.php',
'tools/extensions/cividiscount/CRM/CiviDiscount/BAO/Track.php',
'tools/extensions/cividiscount/CRM/CiviDiscount/DAO/Item.php',
'tools/extensions/cividiscount/CRM/CiviDiscount/DAO/Track.php',
'tools/extensions/cividiscount/CRM/CiviDiscount/DiscountCalculator.php',
'tools/extensions/cividiscount/CRM/CiviDiscount/Form/Admin.php',
'tools/extensions/cividiscount/CRM/CiviDiscount/Page/List.php',
'tools/extensions/cividiscount/CRM/CiviDiscount/Page/Report.php',
'tools/extensions/cividiscount/CRM/CiviDiscount/Page/Usage.php',
'tools/extensions/cividiscount/CRM/CiviDiscount/Page/View.php',
'tools/extensions/cividiscount/CRM/CiviDiscount/Upgrader/Base.php',
'tools/extensions/cividiscount/CRM/CiviDiscount/Upgrader.php',
'tools/extensions/cividiscount/CRM/CiviDiscount/Utils.php',
'tools/extensions/cividiscount/src/Ok.php',
'tools/extensions/civisualize/api/v3/Activity/Getstat.php',
'tools/extensions/civisualize/api/v3/Contact/Getstat.php',
'tools/extensions/civisualize/api/v3/GroupContact/Getstat.php',
'tools/extensions/civisualize/api/v3/Participant/Getstat.php',
'tools/extensions/civisualize/api/v3/Tag/Getstat.php',
'tools/extensions/civisualize/civisualize.civix.php',
'tools/extensions/civisualize/civisualize.php',
'tools/extensions/civisualize/CRM/Civisualize/Dashlet.mgd.php',
'tools/extensions/civisualize/CRM/Civisualize/Page/Main.php',
'tools/extensions/civisualize/CRM/Core/Smarty/plugins/function.crmRetrieve.php',
'tools/extensions/civisualize/CRM/Core/Smarty/plugins/function.crmSQL.php',
'tools/extensions/civisualize/CRM/Core/Smarty/plugins/function.crmTitle.php',
'tools/extensions/civivolunteer/api/v3/VolunteerAssignment.php',
'tools/extensions/civivolunteer/api/v3/VolunteerCommendation.php',
'tools/extensions/civivolunteer/api/v3/VolunteerNeed.php',
'tools/extensions/civivolunteer/api/v3/VolunteerProject.php',
'tools/extensions/civivolunteer/api/v3/VolunteerProjectContact.php',
'tools/extensions/civivolunteer/api/v3/VolunteerUtil.php',
'tools/extensions/civivolunteer/CRM/Volunteer/Angular/Manager.php',
'tools/extensions/civivolunteer/CRM/Volunteer/BAO/Activity.php',
'tools/extensions/civivolunteer/CRM/Volunteer/BAO/Assignment.php',
'tools/extensions/civivolunteer/CRM/Volunteer/BAO/Commendation.php',
'tools/extensions/civivolunteer/CRM/Volunteer/BAO/Need.php',
'tools/extensions/civivolunteer/CRM/Volunteer/BAO/NeedSearch.php',
'tools/extensions/civivolunteer/CRM/Volunteer/BAO/Project.php',
'tools/extensions/civivolunteer/CRM/Volunteer/BAO/ProjectContact.php',
'tools/extensions/civivolunteer/CRM/Volunteer/DAO/Need.php',
'tools/extensions/civivolunteer/CRM/Volunteer/DAO/Project.php',
'tools/extensions/civivolunteer/CRM/Volunteer/DAO/ProjectContact.php',
'tools/extensions/civivolunteer/CRM/Volunteer/Form/Commendation.php',
'tools/extensions/civivolunteer/CRM/Volunteer/Form/IncludeProfile.php',
'tools/extensions/civivolunteer/CRM/Volunteer/Form/Log.php',
'tools/extensions/civivolunteer/CRM/Volunteer/Form/Manage.php',
'tools/extensions/civivolunteer/CRM/Volunteer/Form/Volunteer.php',
'tools/extensions/civivolunteer/CRM/Volunteer/Form/VolunteerReport.mgd.php',
'tools/extensions/civivolunteer/CRM/Volunteer/Form/VolunteerReport.php',
'tools/extensions/civivolunteer/CRM/Volunteer/Form/VolunteerSignUp.php',
'tools/extensions/civivolunteer/CRM/Volunteer/Page/Angular/Modules.php',
'tools/extensions/civivolunteer/CRM/Volunteer/Page/Angular.php',
'tools/extensions/civivolunteer/CRM/Volunteer/Page/Backbone.php',
'tools/extensions/civivolunteer/CRM/Volunteer/Page/Roster.php',
'tools/extensions/civivolunteer/CRM/Volunteer/Page/Router.php',
'tools/extensions/civivolunteer/CRM/Volunteer/Permission.php',
'tools/extensions/civivolunteer/CRM/Volunteer/Upgrader/Base.php',
'tools/extensions/civivolunteer/CRM/Volunteer/Upgrader.php',
'tools/extensions/civivolunteer/settings/volunteer.setting.php',
'tools/extensions/civivolunteer/tests/phpunit/api/v3/VolunteerNeedTest.php',
'tools/extensions/civivolunteer/tests/phpunit/api/v3/VolunteerProjectContactTest.php',
'tools/extensions/civivolunteer/tests/phpunit/api/v3/VolunteerProjectTest.php',
'tools/extensions/civivolunteer/tests/phpunit/CRM/Volunteer/BAO/AssignmentTest.php',
'tools/extensions/civivolunteer/tests/phpunit/CRM/Volunteer/BAO/ProjectTest.php',
'tools/extensions/civivolunteer/tests/phpunit/VolunteerTestAbstract.php',
'tools/extensions/civivolunteer/volunteer.civix.php',
'tools/extensions/civivolunteer/volunteer.php',
'tools/extensions/civivolunteer/volunteer.slider.php',
'tools/extensions/org.civicrm.angularex/angularex.civix.php',
'tools/extensions/org.civicrm.angularex/angularex.php',
'tools/extensions/org.civicrm.angularprofiles/angularprofiles.civix.php',
'tools/extensions/org.civicrm.angularprofiles/angularprofiles.php',
'tools/extensions/org.civicrm.angularprofiles/api/v3/Profile/Getangularsettings.php',
'tools/extensions/org.civicrm.angularprofiles/CRM/AngularProfiles/Page/Template.php',
'tools/extensions/org.civicrm.civixexample/ang/civixexample.ang.php',
'tools/extensions/org.civicrm.civixexample/api/v3/MyEntity/MyAction.php',
'tools/extensions/org.civicrm.civixexample/api/v3/MyEntity.php',
'tools/extensions/org.civicrm.civixexample/civixexample.civix.php',
'tools/extensions/org.civicrm.civixexample/civixexample.php',
'tools/extensions/org.civicrm.civixexample/CRM/Civixexample/BAO/MyEntity.php',
'tools/extensions/org.civicrm.civixexample/CRM/Civixexample/Form/MyForm.php',
'tools/extensions/org.civicrm.civixexample/CRM/Civixexample/Form/Report/MyReport.mgd.php',
'tools/extensions/org.civicrm.civixexample/CRM/Civixexample/Form/Report/MyReport.php',
'tools/extensions/org.civicrm.civixexample/CRM/Civixexample/Form/Search/MySearch.mgd.php',
'tools/extensions/org.civicrm.civixexample/CRM/Civixexample/Form/Search/MySearch.php',
'tools/extensions/org.civicrm.civixexample/CRM/Civixexample/Page/MyPage.php',
'tools/extensions/org.civicrm.civixexample/CRM/Civixexample/Upgrader/Base.php',
'tools/extensions/org.civicrm.civixexample/CRM/Civixexample/Upgrader.php',
'tools/extensions/org.civicrm.civixexample/tests/phpunit/bootstrap.php',
'tools/extensions/org.civicrm.civixexample/tests/phpunit/Civi/Civiexample/BarTest.php',
'tools/extensions/org.civicrm.civixexample/tests/phpunit/Civi/Civiexample/EndTest.php',
'tools/extensions/org.civicrm.civixexample/tests/phpunit/CRM/Civiexample/FooTest.php',
'tools/extensions/org.civicrm.civixexample/tests/phpunit/CRM/Civiexample/LegacyTest.php',
'tools/extensions/org.civicrm.civixexample/xml/schema/CRM/Civixexample/MyEntity.entityType.php',
'tools/extensions/org.civicrm.civixexample-orig/ang/civixexample.ang.php',
'tools/extensions/org.civicrm.civixexample-orig/api/v3/MyEntity/MyAction.php',
'tools/extensions/org.civicrm.civixexample-orig/api/v3/MyEntity.php',
'tools/extensions/org.civicrm.civixexample-orig/civixexample.civix.php',
'tools/extensions/org.civicrm.civixexample-orig/civixexample.php',
'tools/extensions/org.civicrm.civixexample-orig/CRM/Civixexample/BAO/MyEntity.php',
'tools/extensions/org.civicrm.civixexample-orig/CRM/Civixexample/Form/MyForm.php',
'tools/extensions/org.civicrm.civixexample-orig/CRM/Civixexample/Form/Report/MyReport.mgd.php',
'tools/extensions/org.civicrm.civixexample-orig/CRM/Civixexample/Form/Report/MyReport.php',
'tools/extensions/org.civicrm.civixexample-orig/CRM/Civixexample/Form/Search/MySearch.mgd.php',
'tools/extensions/org.civicrm.civixexample-orig/CRM/Civixexample/Form/Search/MySearch.php',
'tools/extensions/org.civicrm.civixexample-orig/CRM/Civixexample/Page/MyPage.php',
'tools/extensions/org.civicrm.civixexample-orig/CRM/Civixexample/Upgrader/Base.php',
'tools/extensions/org.civicrm.civixexample-orig/CRM/Civixexample/Upgrader.php',
'tools/extensions/org.civicrm.civixexample-orig/tests/phpunit/CRM/Foo/MyTest.php',
'tools/extensions/org.civicrm.civixexample-orig/xml/schema/CRM/Civixexample/MyEntity.entityType.php',
'tools/extensions/org.civicrm.demoqueue/CRM/Demoqueue/Page/DemoQueue.php',
'tools/extensions/org.civicrm.demoqueue/CRM/Demoqueue/Page/DemoQueueDone.php',
'tools/extensions/org.civicrm.demoqueue/demoqueue.civix.php',
'tools/extensions/org.civicrm.demoqueue/demoqueue.php',
'tools/extensions/org.civicrm.logfoo/logfoo.civix.php',
'tools/extensions/org.civicrm.logfoo/logfoo.php',
'tools/extensions/org.civicrm.testapalooza/CRM/Testapalooza/FooBar.php',
'tools/extensions/org.civicrm.testapalooza/CRM/Testapalooza/Page/FooBar.php',
'tools/extensions/org.civicrm.testapalooza/src/FooBar.php',
'tools/extensions/org.civicrm.testapalooza/testapalooza.civix.php',
'tools/extensions/org.civicrm.testapalooza/testapalooza.php',
'tools/extensions/org.civicrm.testapalooza/tests/phpunit/bootstrap.php',
'tools/extensions/org.civicrm.testapalooza/tests/phpunit/Civi/Testapalooza/MyHeadlessTest.php',
'tools/extensions/org.civicrm.testapalooza/tests/phpunit/CRM/Testapalooza/MyCoreStyleTest.php',
'tools/extensions/org.civicrm.testapalooza/tests/phpunit/CRM/Testapalooza/MyEndToEndTest.php',
'tools/extensions/org.civicrm.testapalooza/tests/phpunit/CRM/Testapalooza/MyHeadlessTest.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/api/v3/Googlegroup.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/CRM/Googlegroup/Form/Setting.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/CRM/Googlegroup/Form/Sync.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/CRM/Googlegroup/Utils.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/autoload.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/examples/appengineauth.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/examples/batch.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/examples/fileupload.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/examples/idtoken.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/examples/index.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/examples/multi-api.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/examples/service-account.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/examples/simple-query.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/examples/simplefileupload.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/examples/templates/base.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/examples/user-example.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Auth/Abstract.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Auth/AppIdentity.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Auth/AssertionCredentials.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Auth/ComputeEngine.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Auth/Exception.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Auth/LoginTicket.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Auth/OAuth2.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Auth/Simple.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/autoload.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Cache/Abstract.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Cache/Apc.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Cache/Exception.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Cache/File.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Cache/Memcache.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Cache/Null.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Client.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Collection.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Config.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Exception.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Http/Batch.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Http/CacheParser.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Http/MediaFileUpload.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Http/Request.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Http/REST.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/IO/Abstract.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/IO/Curl.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/IO/Exception.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/IO/Stream.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Logger/Abstract.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Logger/Exception.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Logger/File.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Logger/Null.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Logger/Psr.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Model.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/AdExchangeBuyer.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/AdExchangeSeller.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Admin.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/AdSense.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/AdSenseHost.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Analytics.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/AndroidEnterprise.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/AndroidPublisher.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Appsactivity.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/AppState.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Audit.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Autoscaler.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Bigquery.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Blogger.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Books.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Calendar.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/CivicInfo.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Cloudlatencytest.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/CloudMonitoring.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Cloudsearch.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Compute.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Computeaccounts.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Container.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Coordinate.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Customsearch.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Dataflow.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Datastore.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Deploymentmanager.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Dfareporting.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Directory.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Dns.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/DoubleClickBidManager.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Doubleclicksearch.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Drive.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Exception.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Fitness.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Freebase.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Fusiontables.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Games.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/GamesConfiguration.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/GamesManagement.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Genomics.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Gmail.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/GroupsMigration.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Groupssettings.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/IdentityToolkit.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Licensing.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Logging.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Manager.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/MapsEngine.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Mirror.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Oauth2.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Pagespeedonline.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Plus.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/PlusDomains.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Prediction.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Pubsub.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/QPXExpress.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Replicapool.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Replicapoolupdater.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Reports.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Reseller.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Resource.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Resourceviews.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/ShoppingContent.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/SiteVerification.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Spectrum.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/SQLAdmin.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Storage.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/TagManager.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Taskqueue.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Tasks.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Translate.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Urlshortener.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Webfonts.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/Webmasters.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/YouTube.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service/YouTubeAnalytics.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Service.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Signer/Abstract.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Signer/P12.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Task/Exception.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Task/Retryable.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Task/Runner.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Utils/URITemplate.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Utils.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Verifier/Abstract.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/src/Google/Verifier/Pem.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/tests/adsense/AdSenseTest.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/tests/BaseTest.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/tests/bootstrap.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/tests/general/ApiBatchRequestTest.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/tests/general/ApiCacheParserTest.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/tests/general/ApiClientTest.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/tests/general/ApiMediaFileUploadTest.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/tests/general/ApiModelTest.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/tests/general/ApiOAuth2Test.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/tests/general/AuthTest.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/tests/general/CacheTest.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/tests/general/ComputeEngineAuthTest.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/tests/general/IoTest.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/tests/general/LoggerTest.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/tests/general/RequestTest.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/tests/general/RestTest.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/tests/general/ServiceTest.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/tests/general/TaskTest.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/tests/general/URITemplateTest.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/tests/OAuthHelper.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/tests/pagespeed/PageSpeedTest.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/tests/plus/PlusTest.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/tests/tasks/TasksTest.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/tests/urlshortener/UrlShortenerTests.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/google-api-php-client/tests/youtube/YouTubeTest.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/googlegroup.civix.php',
'tools/extensions/uk.co.vedaconsulting.googlegroup/googlegroup.php',
'tools/scripts/civimail-spooler/civimail-spooler.php',
'tools/scripts/csv-generator/csv_generator.php',
'tools/scripts/solr/createSolrJSON.php',
'tools/scripts/solr/createSolrXML.php',
'tools/scripts/solr/createSyncJSON.php',
'vendor/autoload.php',
'vendor/civicrm/civicrm-cxn-rpc/src/AesHelper.php',
'vendor/civicrm/civicrm-cxn-rpc/src/Agent.php',
'vendor/civicrm/civicrm-cxn-rpc/src/ApiClient.php',
'vendor/civicrm/civicrm-cxn-rpc/src/ApiServer.php',
'vendor/civicrm/civicrm-cxn-rpc/src/AppMeta.php',
'vendor/civicrm/civicrm-cxn-rpc/src/AppStore/AppStoreInterface.php',
'vendor/civicrm/civicrm-cxn-rpc/src/AppStore/SingletonAppStore.php',
'vendor/civicrm/civicrm-cxn-rpc/src/BinHex.php',
'vendor/civicrm/civicrm-cxn-rpc/src/CA.php',
'vendor/civicrm/civicrm-cxn-rpc/src/CertificateValidatorInterface.php',
'vendor/civicrm/civicrm-cxn-rpc/src/Constants.php',
'vendor/civicrm/civicrm-cxn-rpc/src/Cxn.php',
'vendor/civicrm/civicrm-cxn-rpc/src/CxnStore/ArrayCxnStore.php',
'vendor/civicrm/civicrm-cxn-rpc/src/CxnStore/CxnStoreInterface.php',
'vendor/civicrm/civicrm-cxn-rpc/src/CxnStore/JsonFileCxnStore.php',
'vendor/civicrm/civicrm-cxn-rpc/src/DefaultCertificateValidator.php',
'vendor/civicrm/civicrm-cxn-rpc/src/Exception/CxnException.php',
'vendor/civicrm/civicrm-cxn-rpc/src/Exception/ExpiredCertException.php',
'vendor/civicrm/civicrm-cxn-rpc/src/Exception/GarbledMessageException.php',
'vendor/civicrm/civicrm-cxn-rpc/src/Exception/InvalidCertException.php',
'vendor/civicrm/civicrm-cxn-rpc/src/Exception/InvalidMessageException.php',
'vendor/civicrm/civicrm-cxn-rpc/src/Http/FakeHttp.php',
'vendor/civicrm/civicrm-cxn-rpc/src/Http/HttpInterface.php',
'vendor/civicrm/civicrm-cxn-rpc/src/Http/PhpHttp.php',
'vendor/civicrm/civicrm-cxn-rpc/src/Http/ViaPortHttp.php',
'vendor/civicrm/civicrm-cxn-rpc/src/KeyPair.php',
'vendor/civicrm/civicrm-cxn-rpc/src/Message/AppMetasMessage.php',
'vendor/civicrm/civicrm-cxn-rpc/src/Message/GarbledMessage.php',
'vendor/civicrm/civicrm-cxn-rpc/src/Message/InsecureMessage.php',
'vendor/civicrm/civicrm-cxn-rpc/src/Message/RegistrationMessage.php',
'vendor/civicrm/civicrm-cxn-rpc/src/Message/StdMessage.php',
'vendor/civicrm/civicrm-cxn-rpc/src/Message.php',
'vendor/civicrm/civicrm-cxn-rpc/src/Messages.php',
'vendor/civicrm/civicrm-cxn-rpc/src/RegistrationClient.php',
'vendor/civicrm/civicrm-cxn-rpc/src/RegistrationServer.php',
'vendor/civicrm/civicrm-cxn-rpc/src/Time.php',
'vendor/civicrm/civicrm-cxn-rpc/src/UserError.php',
'vendor/civicrm/civicrm-cxn-rpc/src/X509Util.php',
'vendor/civicrm/civicrm-cxn-rpc/tests/AppMetasMessageTest.php',
'vendor/civicrm/civicrm-cxn-rpc/tests/bootstrap.php',
'vendor/civicrm/civicrm-cxn-rpc/tests/CATest.php',
'vendor/civicrm/civicrm-cxn-rpc/tests/Http/ViaPortHttpTest.php',
'vendor/civicrm/civicrm-cxn-rpc/tests/RegistrationServerTest.php',
'vendor/civicrm/civicrm-cxn-rpc/tests/RoundtripTest.php',
'vendor/composer/autoload_classmap.php',
'vendor/composer/autoload_files.php',
'vendor/composer/autoload_namespaces.php',
'vendor/composer/autoload_psr4.php',
'vendor/composer/autoload_real.php',
'vendor/composer/autoload_static.php',
'vendor/composer/ClassLoader.php',
'vendor/composer/include_paths.php',
'vendor/dompdf/dompdf/autoload.inc.php',
'vendor/dompdf/dompdf/lib/Cpdf.php',
'vendor/dompdf/dompdf/lib/fonts/dompdf_font_family_cache.dist.php',
'vendor/dompdf/dompdf/lib/html5lib/Data.php',
'vendor/dompdf/dompdf/lib/html5lib/InputStream.php',
'vendor/dompdf/dompdf/lib/html5lib/Parser.php',
'vendor/dompdf/dompdf/lib/html5lib/Tokenizer.php',
'vendor/dompdf/dompdf/lib/html5lib/TreeBuilder.php',
'vendor/dompdf/dompdf/src/Adapter/CPDF.php',
'vendor/dompdf/dompdf/src/Adapter/GD.php',
'vendor/dompdf/dompdf/src/Adapter/PDFLib.php',
'vendor/dompdf/dompdf/src/Autoloader.php',
'vendor/dompdf/dompdf/src/Canvas.php',
'vendor/dompdf/dompdf/src/CanvasFactory.php',
'vendor/dompdf/dompdf/src/Cellmap.php',
'vendor/dompdf/dompdf/src/Css/AttributeTranslator.php',
'vendor/dompdf/dompdf/src/Css/Color.php',
'vendor/dompdf/dompdf/src/Css/Style.php',
'vendor/dompdf/dompdf/src/Css/Stylesheet.php',
'vendor/dompdf/dompdf/src/Dompdf.php',
'vendor/dompdf/dompdf/src/Exception/ImageException.php',
'vendor/dompdf/dompdf/src/Exception.php',
'vendor/dompdf/dompdf/src/FontMetrics.php',
'vendor/dompdf/dompdf/src/Frame/Factory.php',
'vendor/dompdf/dompdf/src/Frame/FrameList.php',
'vendor/dompdf/dompdf/src/Frame/FrameListIterator.php',
'vendor/dompdf/dompdf/src/Frame/FrameTree.php',
'vendor/dompdf/dompdf/src/Frame/FrameTreeIterator.php',
'vendor/dompdf/dompdf/src/Frame/FrameTreeList.php',
'vendor/dompdf/dompdf/src/Frame.php',
'vendor/dompdf/dompdf/src/FrameDecorator/AbstractFrameDecorator.php',
'vendor/dompdf/dompdf/src/FrameDecorator/Block.php',
'vendor/dompdf/dompdf/src/FrameDecorator/Image.php',
'vendor/dompdf/dompdf/src/FrameDecorator/Inline.php',
'vendor/dompdf/dompdf/src/FrameDecorator/ListBullet.php',
'vendor/dompdf/dompdf/src/FrameDecorator/ListBulletImage.php',
'vendor/dompdf/dompdf/src/FrameDecorator/NullFrameDecorator.php',
'vendor/dompdf/dompdf/src/FrameDecorator/Page.php',
'vendor/dompdf/dompdf/src/FrameDecorator/Table.php',
'vendor/dompdf/dompdf/src/FrameDecorator/TableCell.php',
'vendor/dompdf/dompdf/src/FrameDecorator/TableRow.php',
'vendor/dompdf/dompdf/src/FrameDecorator/TableRowGroup.php',
'vendor/dompdf/dompdf/src/FrameDecorator/Text.php',
'vendor/dompdf/dompdf/src/FrameReflower/AbstractFrameReflower.php',
'vendor/dompdf/dompdf/src/FrameReflower/Block.php',
'vendor/dompdf/dompdf/src/FrameReflower/Image.php',
'vendor/dompdf/dompdf/src/FrameReflower/Inline.php',
'vendor/dompdf/dompdf/src/FrameReflower/ListBullet.php',
'vendor/dompdf/dompdf/src/FrameReflower/NullFrameReflower.php',
'vendor/dompdf/dompdf/src/FrameReflower/Page.php',
'vendor/dompdf/dompdf/src/FrameReflower/Table.php',
'vendor/dompdf/dompdf/src/FrameReflower/TableCell.php',
'vendor/dompdf/dompdf/src/FrameReflower/TableRow.php',
'vendor/dompdf/dompdf/src/FrameReflower/TableRowGroup.php',
'vendor/dompdf/dompdf/src/FrameReflower/Text.php',
'vendor/dompdf/dompdf/src/Helpers.php',
'vendor/dompdf/dompdf/src/Image/Cache.php',
'vendor/dompdf/dompdf/src/JavascriptEmbedder.php',
'vendor/dompdf/dompdf/src/LineBox.php',
'vendor/dompdf/dompdf/src/Options.php',
'vendor/dompdf/dompdf/src/PhpEvaluator.php',
'vendor/dompdf/dompdf/src/Positioner/Absolute.php',
'vendor/dompdf/dompdf/src/Positioner/AbstractPositioner.php',
'vendor/dompdf/dompdf/src/Positioner/Block.php',
'vendor/dompdf/dompdf/src/Positioner/Fixed.php',
'vendor/dompdf/dompdf/src/Positioner/Inline.php',
'vendor/dompdf/dompdf/src/Positioner/ListBullet.php',
'vendor/dompdf/dompdf/src/Positioner/NullPositioner.php',
'vendor/dompdf/dompdf/src/Positioner/TableCell.php',
'vendor/dompdf/dompdf/src/Positioner/TableRow.php',
'vendor/dompdf/dompdf/src/Renderer/AbstractRenderer.php',
'vendor/dompdf/dompdf/src/Renderer/Block.php',
'vendor/dompdf/dompdf/src/Renderer/Image.php',
'vendor/dompdf/dompdf/src/Renderer/Inline.php',
'vendor/dompdf/dompdf/src/Renderer/ListBullet.php',
'vendor/dompdf/dompdf/src/Renderer/TableCell.php',
'vendor/dompdf/dompdf/src/Renderer/TableRowGroup.php',
'vendor/dompdf/dompdf/src/Renderer/Text.php',
'vendor/dompdf/dompdf/src/Renderer.php',
'vendor/dompdf/dompdf/tests/bootstrap.php',
'vendor/dompdf/dompdf/tests/Dompdf/Tests/AutoloaderTest.php',
'vendor/dompdf/dompdf/tests/Dompdf/Tests/DompdfTest.php',
'vendor/dompdf/dompdf/tests/Dompdf/Tests/HelpersTest.php',
'vendor/dompdf/dompdf/tests/Dompdf/Tests/OptionsTest.php',
'vendor/phenx/php-font-lib/index.php',
'vendor/phenx/php-font-lib/src/FontLib/AdobeFontMetrics.php',
'vendor/phenx/php-font-lib/src/FontLib/Autoloader.php',
'vendor/phenx/php-font-lib/src/FontLib/BinaryStream.php',
'vendor/phenx/php-font-lib/src/FontLib/EncodingMap.php',
'vendor/phenx/php-font-lib/src/FontLib/EOT/File.php',
'vendor/phenx/php-font-lib/src/FontLib/EOT/Header.php',
'vendor/phenx/php-font-lib/src/FontLib/Font.php',
'vendor/phenx/php-font-lib/src/FontLib/Glyph/Outline.php',
'vendor/phenx/php-font-lib/src/FontLib/Glyph/OutlineComponent.php',
'vendor/phenx/php-font-lib/src/FontLib/Glyph/OutlineComposite.php',
'vendor/phenx/php-font-lib/src/FontLib/Glyph/OutlineSimple.php',
'vendor/phenx/php-font-lib/src/FontLib/Header.php',
'vendor/phenx/php-font-lib/src/FontLib/OpenType/File.php',
'vendor/phenx/php-font-lib/src/FontLib/OpenType/TableDirectoryEntry.php',
'vendor/phenx/php-font-lib/src/FontLib/Table/DirectoryEntry.php',
'vendor/phenx/php-font-lib/src/FontLib/Table/Table.php',
'vendor/phenx/php-font-lib/src/FontLib/Table/Type/cmap.php',
'vendor/phenx/php-font-lib/src/FontLib/Table/Type/glyf.php',
'vendor/phenx/php-font-lib/src/FontLib/Table/Type/head.php',
'vendor/phenx/php-font-lib/src/FontLib/Table/Type/hhea.php',
'vendor/phenx/php-font-lib/src/FontLib/Table/Type/hmtx.php',
'vendor/phenx/php-font-lib/src/FontLib/Table/Type/kern.php',
'vendor/phenx/php-font-lib/src/FontLib/Table/Type/loca.php',
'vendor/phenx/php-font-lib/src/FontLib/Table/Type/maxp.php',
'vendor/phenx/php-font-lib/src/FontLib/Table/Type/name.php',
'vendor/phenx/php-font-lib/src/FontLib/Table/Type/nameRecord.php',
'vendor/phenx/php-font-lib/src/FontLib/Table/Type/os2.php',
'vendor/phenx/php-font-lib/src/FontLib/Table/Type/post.php',
'vendor/phenx/php-font-lib/src/FontLib/TrueType/Collection.php',
'vendor/phenx/php-font-lib/src/FontLib/TrueType/File.php',
'vendor/phenx/php-font-lib/src/FontLib/TrueType/Header.php',
'vendor/phenx/php-font-lib/src/FontLib/TrueType/TableDirectoryEntry.php',
'vendor/phenx/php-font-lib/src/FontLib/WOFF/File.php',
'vendor/phenx/php-font-lib/src/FontLib/WOFF/Header.php',
'vendor/phenx/php-font-lib/src/FontLib/WOFF/TableDirectoryEntry.php',
'vendor/phenx/php-svg-lib/src/autoload.php',
'vendor/phenx/php-svg-lib/src/Svg/DefaultStyle.php',
'vendor/phenx/php-svg-lib/src/Svg/Document.php',
'vendor/phenx/php-svg-lib/src/Svg/Style.php',
'vendor/phenx/php-svg-lib/src/Svg/Surface/CPdf.php',
'vendor/phenx/php-svg-lib/src/Svg/Surface/SurfaceCpdf.php',
'vendor/phenx/php-svg-lib/src/Svg/Surface/SurfaceGmagick.php',
'vendor/phenx/php-svg-lib/src/Svg/Surface/SurfaceInterface.php',
'vendor/phenx/php-svg-lib/src/Svg/Surface/SurfacePDFLib.php',
'vendor/phenx/php-svg-lib/src/Svg/Tag/AbstractTag.php',
'vendor/phenx/php-svg-lib/src/Svg/Tag/Anchor.php',
'vendor/phenx/php-svg-lib/src/Svg/Tag/Circle.php',
'vendor/phenx/php-svg-lib/src/Svg/Tag/Ellipse.php',
'vendor/phenx/php-svg-lib/src/Svg/Tag/Group.php',
'vendor/phenx/php-svg-lib/src/Svg/Tag/Image.php',
'vendor/phenx/php-svg-lib/src/Svg/Tag/Line.php',
'vendor/phenx/php-svg-lib/src/Svg/Tag/LinearGradient.php',
'vendor/phenx/php-svg-lib/src/Svg/Tag/Path.php',
'vendor/phenx/php-svg-lib/src/Svg/Tag/Polygon.php',
'vendor/phenx/php-svg-lib/src/Svg/Tag/Polyline.php',
'vendor/phenx/php-svg-lib/src/Svg/Tag/RadialGradient.php',
'vendor/phenx/php-svg-lib/src/Svg/Tag/Rect.php',
'vendor/phenx/php-svg-lib/src/Svg/Tag/Shape.php',
'vendor/phenx/php-svg-lib/src/Svg/Tag/Stop.php',
'vendor/phenx/php-svg-lib/src/Svg/Tag/Text.php',
'vendor/phenx/php-svg-lib/tests/Svg/StyleTest.php',
'vendor/phpoffice/phpword/samples/index.php',
'vendor/phpoffice/phpword/samples/Sample_01_SimpleText.php',
'vendor/phpoffice/phpword/samples/Sample_02_TabStops.php',
'vendor/phpoffice/phpword/samples/Sample_03_Sections.php',
'vendor/phpoffice/phpword/samples/Sample_04_Textrun.php',
'vendor/phpoffice/phpword/samples/Sample_05_Multicolumn.php',
'vendor/phpoffice/phpword/samples/Sample_06_Footnote.php',
'vendor/phpoffice/phpword/samples/Sample_07_TemplateCloneRow.php',
'vendor/phpoffice/phpword/samples/Sample_08_ParagraphPagination.php',
'vendor/phpoffice/phpword/samples/Sample_09_Tables.php',
'vendor/phpoffice/phpword/samples/Sample_10_EastAsianFontStyle.php',
'vendor/phpoffice/phpword/samples/Sample_11_ReadWord2007.php',
'vendor/phpoffice/phpword/samples/Sample_11_ReadWord97.php',
'vendor/phpoffice/phpword/samples/Sample_12_HeaderFooter.php',
'vendor/phpoffice/phpword/samples/Sample_13_Images.php',
'vendor/phpoffice/phpword/samples/Sample_14_ListItem.php',
'vendor/phpoffice/phpword/samples/Sample_15_Link.php',
'vendor/phpoffice/phpword/samples/Sample_16_Object.php',
'vendor/phpoffice/phpword/samples/Sample_17_TitleTOC.php',
'vendor/phpoffice/phpword/samples/Sample_18_Watermark.php',
'vendor/phpoffice/phpword/samples/Sample_19_TextBreak.php',
'vendor/phpoffice/phpword/samples/Sample_20_BGColor.php',
'vendor/phpoffice/phpword/samples/Sample_21_TableRowRules.php',
'vendor/phpoffice/phpword/samples/Sample_22_CheckBox.php',
'vendor/phpoffice/phpword/samples/Sample_23_TemplateBlock.php',
'vendor/phpoffice/phpword/samples/Sample_24_ReadODText.php',
'vendor/phpoffice/phpword/samples/Sample_25_TextBox.php',
'vendor/phpoffice/phpword/samples/Sample_26_Html.php',
'vendor/phpoffice/phpword/samples/Sample_27_Field.php',
'vendor/phpoffice/phpword/samples/Sample_28_ReadRTF.php',
'vendor/phpoffice/phpword/samples/Sample_29_Line.php',
'vendor/phpoffice/phpword/samples/Sample_30_ReadHTML.php',
'vendor/phpoffice/phpword/samples/Sample_31_Shape.php',
'vendor/phpoffice/phpword/samples/Sample_32_Chart.php',
'vendor/phpoffice/phpword/samples/Sample_33_FormField.php',
'vendor/phpoffice/phpword/samples/Sample_34_SDT.php',
'vendor/phpoffice/phpword/samples/Sample_35_InternalLink.php',
'vendor/phpoffice/phpword/samples/Sample_36_RTL.php',
'vendor/phpoffice/phpword/samples/Sample_Footer.php',
'vendor/phpoffice/phpword/samples/Sample_Header.php',
'vendor/phpoffice/phpword/src/PhpWord/Autoloader.php',
'vendor/phpoffice/phpword/src/PhpWord/Collection/AbstractCollection.php',
'vendor/phpoffice/phpword/src/PhpWord/Collection/Bookmarks.php',
'vendor/phpoffice/phpword/src/PhpWord/Collection/Charts.php',
'vendor/phpoffice/phpword/src/PhpWord/Collection/Endnotes.php',
'vendor/phpoffice/phpword/src/PhpWord/Collection/Footnotes.php',
'vendor/phpoffice/phpword/src/PhpWord/Collection/Titles.php',
'vendor/phpoffice/phpword/src/PhpWord/Element/AbstractContainer.php',
'vendor/phpoffice/phpword/src/PhpWord/Element/AbstractElement.php',
'vendor/phpoffice/phpword/src/PhpWord/Element/Bookmark.php',
'vendor/phpoffice/phpword/src/PhpWord/Element/Cell.php',
'vendor/phpoffice/phpword/src/PhpWord/Element/Chart.php',
'vendor/phpoffice/phpword/src/PhpWord/Element/CheckBox.php',
'vendor/phpoffice/phpword/src/PhpWord/Element/Endnote.php',
'vendor/phpoffice/phpword/src/PhpWord/Element/Field.php',
'vendor/phpoffice/phpword/src/PhpWord/Element/Footer.php',
'vendor/phpoffice/phpword/src/PhpWord/Element/Footnote.php',
'vendor/phpoffice/phpword/src/PhpWord/Element/FormField.php',
'vendor/phpoffice/phpword/src/PhpWord/Element/Header.php',
'vendor/phpoffice/phpword/src/PhpWord/Element/Image.php',
'vendor/phpoffice/phpword/src/PhpWord/Element/Line.php',
'vendor/phpoffice/phpword/src/PhpWord/Element/Link.php',
'vendor/phpoffice/phpword/src/PhpWord/Element/ListItem.php',
'vendor/phpoffice/phpword/src/PhpWord/Element/ListItemRun.php',
'vendor/phpoffice/phpword/src/PhpWord/Element/Object.php',
'vendor/phpoffice/phpword/src/PhpWord/Element/PageBreak.php',
'vendor/phpoffice/phpword/src/PhpWord/Element/PreserveText.php',
'vendor/phpoffice/phpword/src/PhpWord/Element/Row.php',
'vendor/phpoffice/phpword/src/PhpWord/Element/SDT.php',
'vendor/phpoffice/phpword/src/PhpWord/Element/Section.php',
'vendor/phpoffice/phpword/src/PhpWord/Element/Shape.php',
'vendor/phpoffice/phpword/src/PhpWord/Element/Table.php',
'vendor/phpoffice/phpword/src/PhpWord/Element/Text.php',
'vendor/phpoffice/phpword/src/PhpWord/Element/TextBox.php',
'vendor/phpoffice/phpword/src/PhpWord/Element/TextBreak.php',
'vendor/phpoffice/phpword/src/PhpWord/Element/TextRun.php',
'vendor/phpoffice/phpword/src/PhpWord/Element/Title.php',
'vendor/phpoffice/phpword/src/PhpWord/Element/TOC.php',
'vendor/phpoffice/phpword/src/PhpWord/Exception/CopyFileException.php',
'vendor/phpoffice/phpword/src/PhpWord/Exception/CreateTemporaryFileException.php',
'vendor/phpoffice/phpword/src/PhpWord/Exception/Exception.php',
'vendor/phpoffice/phpword/src/PhpWord/Exception/InvalidImageException.php',
'vendor/phpoffice/phpword/src/PhpWord/Exception/InvalidObjectException.php',
'vendor/phpoffice/phpword/src/PhpWord/Exception/InvalidStyleException.php',
'vendor/phpoffice/phpword/src/PhpWord/Exception/UnsupportedImageTypeException.php',
'vendor/phpoffice/phpword/src/PhpWord/IOFactory.php',
'vendor/phpoffice/phpword/src/PhpWord/Media.php',
'vendor/phpoffice/phpword/src/PhpWord/Metadata/Compatibility.php',
'vendor/phpoffice/phpword/src/PhpWord/Metadata/DocInfo.php',
'vendor/phpoffice/phpword/src/PhpWord/Metadata/Protection.php',
'vendor/phpoffice/phpword/src/PhpWord/PhpWord.php',
'vendor/phpoffice/phpword/src/PhpWord/Reader/AbstractReader.php',
'vendor/phpoffice/phpword/src/PhpWord/Reader/HTML.php',
'vendor/phpoffice/phpword/src/PhpWord/Reader/MsDoc.php',
'vendor/phpoffice/phpword/src/PhpWord/Reader/ODText/AbstractPart.php',
'vendor/phpoffice/phpword/src/PhpWord/Reader/ODText/Content.php',
'vendor/phpoffice/phpword/src/PhpWord/Reader/ODText/Meta.php',
'vendor/phpoffice/phpword/src/PhpWord/Reader/ODText.php',
'vendor/phpoffice/phpword/src/PhpWord/Reader/ReaderInterface.php',
'vendor/phpoffice/phpword/src/PhpWord/Reader/RTF/Document.php',
'vendor/phpoffice/phpword/src/PhpWord/Reader/RTF.php',
'vendor/phpoffice/phpword/src/PhpWord/Reader/Word2007/AbstractPart.php',
'vendor/phpoffice/phpword/src/PhpWord/Reader/Word2007/DocPropsApp.php',
'vendor/phpoffice/phpword/src/PhpWord/Reader/Word2007/DocPropsCore.php',
'vendor/phpoffice/phpword/src/PhpWord/Reader/Word2007/DocPropsCustom.php',
'vendor/phpoffice/phpword/src/PhpWord/Reader/Word2007/Document.php',
'vendor/phpoffice/phpword/src/PhpWord/Reader/Word2007/Endnotes.php',
'vendor/phpoffice/phpword/src/PhpWord/Reader/Word2007/Footnotes.php',
'vendor/phpoffice/phpword/src/PhpWord/Reader/Word2007/Numbering.php',
'vendor/phpoffice/phpword/src/PhpWord/Reader/Word2007/Styles.php',
'vendor/phpoffice/phpword/src/PhpWord/Reader/Word2007.php',
'vendor/phpoffice/phpword/src/PhpWord/Settings.php',
'vendor/phpoffice/phpword/src/PhpWord/Shared/Converter.php',
'vendor/phpoffice/phpword/src/PhpWord/Shared/Drawing.php',
'vendor/phpoffice/phpword/src/PhpWord/Shared/Font.php',
'vendor/phpoffice/phpword/src/PhpWord/Shared/Html.php',
'vendor/phpoffice/phpword/src/PhpWord/Shared/OLERead.php',
'vendor/phpoffice/phpword/src/PhpWord/Shared/PCLZip/pclzip.lib.php',
'vendor/phpoffice/phpword/src/PhpWord/Shared/String.php',
'vendor/phpoffice/phpword/src/PhpWord/Shared/XMLReader.php',
'vendor/phpoffice/phpword/src/PhpWord/Shared/XMLWriter.php',
'vendor/phpoffice/phpword/src/PhpWord/Shared/ZipArchive.php',
'vendor/phpoffice/phpword/src/PhpWord/Style/AbstractStyle.php',
'vendor/phpoffice/phpword/src/PhpWord/Style/Alignment.php',
'vendor/phpoffice/phpword/src/PhpWord/Style/Border.php',
'vendor/phpoffice/phpword/src/PhpWord/Style/Cell.php',
'vendor/phpoffice/phpword/src/PhpWord/Style/Chart.php',
'vendor/phpoffice/phpword/src/PhpWord/Style/Extrusion.php',
'vendor/phpoffice/phpword/src/PhpWord/Style/Fill.php',
'vendor/phpoffice/phpword/src/PhpWord/Style/Font.php',
'vendor/phpoffice/phpword/src/PhpWord/Style/Frame.php',
'vendor/phpoffice/phpword/src/PhpWord/Style/Image.php',
'vendor/phpoffice/phpword/src/PhpWord/Style/Indentation.php',
'vendor/phpoffice/phpword/src/PhpWord/Style/Line.php',
'vendor/phpoffice/phpword/src/PhpWord/Style/LineNumbering.php',
'vendor/phpoffice/phpword/src/PhpWord/Style/ListItem.php',
'vendor/phpoffice/phpword/src/PhpWord/Style/Numbering.php',
'vendor/phpoffice/phpword/src/PhpWord/Style/NumberingLevel.php',
'vendor/phpoffice/phpword/src/PhpWord/Style/Outline.php',
'vendor/phpoffice/phpword/src/PhpWord/Style/Paper.php',
'vendor/phpoffice/phpword/src/PhpWord/Style/Paragraph.php',
'vendor/phpoffice/phpword/src/PhpWord/Style/Row.php',
'vendor/phpoffice/phpword/src/PhpWord/Style/Section.php',
'vendor/phpoffice/phpword/src/PhpWord/Style/Shading.php',
'vendor/phpoffice/phpword/src/PhpWord/Style/Shadow.php',
'vendor/phpoffice/phpword/src/PhpWord/Style/Shape.php',
'vendor/phpoffice/phpword/src/PhpWord/Style/Spacing.php',
'vendor/phpoffice/phpword/src/PhpWord/Style/Tab.php',
'vendor/phpoffice/phpword/src/PhpWord/Style/Table.php',
'vendor/phpoffice/phpword/src/PhpWord/Style/TextBox.php',
'vendor/phpoffice/phpword/src/PhpWord/Style/TOC.php',
'vendor/phpoffice/phpword/src/PhpWord/Style.php',
'vendor/phpoffice/phpword/src/PhpWord/Template.php',
'vendor/phpoffice/phpword/src/PhpWord/TemplateProcessor.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/AbstractWriter.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/HTML/Element/AbstractElement.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/HTML/Element/Container.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/HTML/Element/Endnote.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/HTML/Element/Footnote.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/HTML/Element/Image.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/HTML/Element/Link.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/HTML/Element/ListItem.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/HTML/Element/PageBreak.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/HTML/Element/Table.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/HTML/Element/Text.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/HTML/Element/TextBreak.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/HTML/Element/TextRun.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/HTML/Element/Title.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/HTML/Part/AbstractPart.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/HTML/Part/Body.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/HTML/Part/Head.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/HTML/Style/AbstractStyle.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/HTML/Style/Font.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/HTML/Style/Generic.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/HTML/Style/Image.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/HTML/Style/Paragraph.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/HTML.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/ODText/Element/AbstractElement.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/ODText/Element/Container.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/ODText/Element/Image.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/ODText/Element/Link.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/ODText/Element/Table.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/ODText/Element/Text.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/ODText/Element/TextBreak.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/ODText/Element/TextRun.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/ODText/Element/Title.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/ODText/Part/AbstractPart.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/ODText/Part/Content.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/ODText/Part/Manifest.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/ODText/Part/Meta.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/ODText/Part/Mimetype.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/ODText/Part/Styles.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/ODText/Style/AbstractStyle.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/ODText/Style/Font.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/ODText/Style/Image.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/ODText/Style/Paragraph.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/ODText/Style/Section.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/ODText/Style/Table.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/ODText.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/PDF/AbstractRenderer.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/PDF/DomPDF.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/PDF/MPDF.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/PDF/TCPDF.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/PDF.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/RTF/Element/AbstractElement.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/RTF/Element/Container.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/RTF/Element/Image.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/RTF/Element/Link.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/RTF/Element/ListItem.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/RTF/Element/PageBreak.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/RTF/Element/Table.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/RTF/Element/Text.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/RTF/Element/TextBreak.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/RTF/Element/TextRun.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/RTF/Element/Title.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/RTF/Part/AbstractPart.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/RTF/Part/Document.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/RTF/Part/Header.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/RTF/Style/AbstractStyle.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/RTF/Style/Border.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/RTF/Style/Font.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/RTF/Style/Paragraph.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/RTF/Style/Section.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/RTF.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Element/AbstractElement.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Element/Bookmark.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Element/Chart.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Element/CheckBox.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Element/Container.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Element/Endnote.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Element/Field.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Element/Footnote.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Element/FormField.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Element/Image.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Element/Line.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Element/Link.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Element/ListItem.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Element/ListItemRun.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Element/Object.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Element/PageBreak.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Element/PreserveText.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Element/SDT.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Element/Shape.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Element/Table.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Element/Text.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Element/TextBox.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Element/TextBreak.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Element/TextRun.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Element/Title.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Element/TOC.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Part/AbstractPart.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Part/Chart.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Part/ContentTypes.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Part/DocPropsApp.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Part/DocPropsCore.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Part/DocPropsCustom.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Part/Document.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Part/Endnotes.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Part/FontTable.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Part/Footer.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Part/Footnotes.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Part/Header.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Part/Numbering.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Part/Rels.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Part/RelsDocument.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Part/RelsPart.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Part/Settings.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Part/Styles.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Part/Theme.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Part/WebSettings.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Style/AbstractStyle.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Style/Alignment.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Style/Cell.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Style/Extrusion.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Style/Fill.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Style/Font.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Style/Frame.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Style/Image.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Style/Indentation.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Style/Line.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Style/LineNumbering.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Style/MarginBorder.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Style/Outline.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Style/Paragraph.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Style/Row.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Style/Section.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Style/Shading.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Style/Shadow.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Style/Shape.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Style/Spacing.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Style/Tab.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Style/Table.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007/Style/TextBox.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/Word2007.php',
'vendor/phpoffice/phpword/src/PhpWord/Writer/WriterInterface.php',
'vendor/phpoffice/phpword/tests/bootstrap.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/_includes/TestHelperDOCX.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/_includes/XmlDocument.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/AutoloaderTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Collection/CollectionTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Element/AbstractElementTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Element/CellTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Element/CheckBoxTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Element/FieldTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Element/FooterTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Element/FootnoteTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Element/HeaderTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Element/ImageTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Element/LineTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Element/LinkTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Element/ListItemRunTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Element/ListItemTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Element/ObjectTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Element/PageBreakTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Element/PreserveTextTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Element/RowTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Element/SDTTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Element/SectionTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Element/TableTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Element/TextBoxTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Element/TextBreakTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Element/TextRunTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Element/TextTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Element/TitleTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Element/TOCTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Exception/CopyFileExceptionTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Exception/CreateTemporaryFileExceptionTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Exception/ExceptionTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Exception/InvalidImageExceptionTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Exception/InvalidStyleExceptionTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Exception/UnsupportedImageTypeExceptionTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/IOFactoryTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/MediaTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Metadata/DocInfoTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/PhpWordTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Reader/HTMLTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Reader/ODTextTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Reader/RTFTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Reader/Word2007Test.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/SettingsTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Shared/ConverterTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Shared/HtmlTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Shared/StringTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Shared/XMLReaderTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Shared/XMLWriterTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Shared/ZipArchiveTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Style/AbstractStyleTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Style/CellTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Style/FontTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Style/ImageTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Style/IndentationTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Style/LineNumberingTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Style/LineTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Style/ListItemTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Style/NumberingLevelTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Style/NumberingTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Style/ParagraphTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Style/RowTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Style/SectionTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Style/ShadingTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Style/SpacingTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Style/TableTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Style/TabTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Style/TextBoxTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Style/TOCTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/StyleTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/TemplateProcessorTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Writer/HTML/ElementTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Writer/HTML/PartTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Writer/HTML/StyleTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Writer/HTMLTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Writer/ODText/ElementTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Writer/ODText/Part/AbstractPartTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Writer/ODText/Part/ContentTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Writer/ODText/StyleTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Writer/ODTextTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Writer/PDF/DomPDFTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Writer/PDF/MPDFTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Writer/PDF/TCPDFTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Writer/PDFTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Writer/RTF/ElementTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Writer/RTF/StyleTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Writer/RTFTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Writer/Word2007/ElementTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Writer/Word2007/Part/AbstractPartTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Writer/Word2007/Part/DocumentTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Writer/Word2007/Part/FooterTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Writer/Word2007/Part/FootnotesTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Writer/Word2007/Part/HeaderTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Writer/Word2007/Part/NumberingTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Writer/Word2007/Part/SettingsTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Writer/Word2007/Part/StylesTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Writer/Word2007/PartTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Writer/Word2007/Style/FontTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Writer/Word2007/StyleTest.php',
'vendor/phpoffice/phpword/tests/PhpWord/Tests/Writer/Word2007Test.php',
'vendor/phpseclib/phpseclib/build/sami.conf.php',
'vendor/phpseclib/phpseclib/phpseclib/Crypt/AES.php',
'vendor/phpseclib/phpseclib/phpseclib/Crypt/Base.php',
'vendor/phpseclib/phpseclib/phpseclib/Crypt/Blowfish.php',
'vendor/phpseclib/phpseclib/phpseclib/Crypt/DES.php',
'vendor/phpseclib/phpseclib/phpseclib/Crypt/Hash.php',
'vendor/phpseclib/phpseclib/phpseclib/Crypt/Random.php',
'vendor/phpseclib/phpseclib/phpseclib/Crypt/RC2.php',
'vendor/phpseclib/phpseclib/phpseclib/Crypt/RC4.php',
'vendor/phpseclib/phpseclib/phpseclib/Crypt/Rijndael.php',
'vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA.php',
'vendor/phpseclib/phpseclib/phpseclib/Crypt/TripleDES.php',
'vendor/phpseclib/phpseclib/phpseclib/Crypt/Twofish.php',
'vendor/phpseclib/phpseclib/phpseclib/File/ANSI.php',
'vendor/phpseclib/phpseclib/phpseclib/File/ASN1.php',
'vendor/phpseclib/phpseclib/phpseclib/File/X509.php',
'vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger.php',
'vendor/phpseclib/phpseclib/phpseclib/Net/SCP.php',
'vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/Stream.php',
'vendor/phpseclib/phpseclib/phpseclib/Net/SFTP.php',
'vendor/phpseclib/phpseclib/phpseclib/Net/SSH1.php',
'vendor/phpseclib/phpseclib/phpseclib/Net/SSH2.php',
'vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent.php',
'vendor/phpseclib/phpseclib/phpseclib/System/SSH_Agent.php',
'vendor/phpseclib/phpseclib/tests/bootstrap.php',
'vendor/phpseclib/phpseclib/tests/Functional/Net/SCPSSH2UserStoryTest.php',
'vendor/phpseclib/phpseclib/tests/Functional/Net/SFTPLargeFileTest.php',
'vendor/phpseclib/phpseclib/tests/Functional/Net/SFTPUserStoryTest.php',
'vendor/phpseclib/phpseclib/tests/Functional/Net/SSH2AgentTest.php',
'vendor/phpseclib/phpseclib/tests/Functional/Net/SSH2Test.php',
'vendor/phpseclib/phpseclib/tests/PhpseclibFunctionalTestCase.php',
'vendor/phpseclib/phpseclib/tests/PhpseclibTestCase.php',
'vendor/phpseclib/phpseclib/tests/Unit/Crypt/AES/InternalTest.php',
'vendor/phpseclib/phpseclib/tests/Unit/Crypt/AES/McryptTest.php',
'vendor/phpseclib/phpseclib/tests/Unit/Crypt/AES/TestCase.php',
'vendor/phpseclib/phpseclib/tests/Unit/Crypt/Hash/MD5Test.php',
'vendor/phpseclib/phpseclib/tests/Unit/Crypt/Hash/SHA256_96Test.php',
'vendor/phpseclib/phpseclib/tests/Unit/Crypt/Hash/SHA256Test.php',
'vendor/phpseclib/phpseclib/tests/Unit/Crypt/Hash/SHA512_96Test.php',
'vendor/phpseclib/phpseclib/tests/Unit/Crypt/Hash/SHA512Test.php',
'vendor/phpseclib/phpseclib/tests/Unit/Crypt/Hash/TestCase.php',
'vendor/phpseclib/phpseclib/tests/Unit/Crypt/RandomTest.php',
'vendor/phpseclib/phpseclib/tests/Unit/Crypt/RSA/LoadKeyTest.php',
'vendor/phpseclib/phpseclib/tests/Unit/File/ASN1Test.php',
'vendor/phpseclib/phpseclib/tests/Unit/File/X509/CSRTest.php',
'vendor/phpseclib/phpseclib/tests/Unit/File/X509/SPKACTest.php',
'vendor/phpseclib/phpseclib/tests/Unit/Math/BigInteger/BCMathTest.php',
'vendor/phpseclib/phpseclib/tests/Unit/Math/BigInteger/GMPTest.php',
'vendor/phpseclib/phpseclib/tests/Unit/Math/BigInteger/InternalOpenSSLTest.php',
'vendor/phpseclib/phpseclib/tests/Unit/Math/BigInteger/InternalTest.php',
'vendor/phpseclib/phpseclib/tests/Unit/Math/BigInteger/TestCase.php',
'vendor/phpseclib/phpseclib/tests/Unit/Net/SFTPStreamTest.php',
'vendor/phpseclib/phpseclib/tests/Unit/Net/SSH1Test.php',
'vendor/phpseclib/phpseclib/tests/Unit/Net/SSH2Test.php',
'vendor/psr/log/Psr/Log/AbstractLogger.php',
'vendor/psr/log/Psr/Log/InvalidArgumentException.php',
'vendor/psr/log/Psr/Log/LoggerAwareInterface.php',
'vendor/psr/log/Psr/Log/LoggerAwareTrait.php',
'vendor/psr/log/Psr/Log/LoggerInterface.php',
'vendor/psr/log/Psr/Log/LoggerTrait.php',
'vendor/psr/log/Psr/Log/LogLevel.php',
'vendor/psr/log/Psr/Log/NullLogger.php',
'vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php',
'vendor/symfony/config/Symfony/Component/Config/ConfigCache.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/ArrayNode.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/BaseNode.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/BooleanNode.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/Builder/ArrayNodeDefinition.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/Builder/BooleanNodeDefinition.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/Builder/EnumNodeDefinition.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/Builder/ExprBuilder.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/Builder/FloatNodeDefinition.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/Builder/IntegerNodeDefinition.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/Builder/MergeBuilder.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/Builder/NodeBuilder.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/Builder/NodeDefinition.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/Builder/NodeParentInterface.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/Builder/NormalizationBuilder.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/Builder/NumericNodeDefinition.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/Builder/ParentNodeDefinitionInterface.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/Builder/ScalarNodeDefinition.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/Builder/TreeBuilder.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/Builder/ValidationBuilder.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/Builder/VariableNodeDefinition.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/ConfigurationInterface.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/Dumper/XmlReferenceDumper.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/Dumper/YamlReferenceDumper.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/EnumNode.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/Exception/DuplicateKeyException.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/Exception/Exception.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/Exception/ForbiddenOverwriteException.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/Exception/InvalidConfigurationException.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/Exception/InvalidDefinitionException.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/Exception/InvalidTypeException.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/Exception/UnsetKeyException.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/FloatNode.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/IntegerNode.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/NodeInterface.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/NumericNode.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/Processor.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/PrototypedArrayNode.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/PrototypeNodeInterface.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/ReferenceDumper.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/ScalarNode.php',
'vendor/symfony/config/Symfony/Component/Config/Definition/VariableNode.php',
'vendor/symfony/config/Symfony/Component/Config/Exception/FileLoaderImportCircularReferenceException.php',
'vendor/symfony/config/Symfony/Component/Config/Exception/FileLoaderLoadException.php',
'vendor/symfony/config/Symfony/Component/Config/FileLocator.php',
'vendor/symfony/config/Symfony/Component/Config/FileLocatorInterface.php',
'vendor/symfony/config/Symfony/Component/Config/Loader/DelegatingLoader.php',
'vendor/symfony/config/Symfony/Component/Config/Loader/FileLoader.php',
'vendor/symfony/config/Symfony/Component/Config/Loader/Loader.php',
'vendor/symfony/config/Symfony/Component/Config/Loader/LoaderInterface.php',
'vendor/symfony/config/Symfony/Component/Config/Loader/LoaderResolver.php',
'vendor/symfony/config/Symfony/Component/Config/Loader/LoaderResolverInterface.php',
'vendor/symfony/config/Symfony/Component/Config/Resource/DirectoryResource.php',
'vendor/symfony/config/Symfony/Component/Config/Resource/FileResource.php',
'vendor/symfony/config/Symfony/Component/Config/Resource/ResourceInterface.php',
'vendor/symfony/config/Symfony/Component/Config/Tests/ConfigCacheTest.php',
'vendor/symfony/config/Symfony/Component/Config/Tests/Definition/ArrayNodeTest.php',
'vendor/symfony/config/Symfony/Component/Config/Tests/Definition/BooleanNodeTest.php',
'vendor/symfony/config/Symfony/Component/Config/Tests/Definition/Builder/ArrayNodeDefinitionTest.php',
'vendor/symfony/config/Symfony/Component/Config/Tests/Definition/Builder/EnumNodeDefinitionTest.php',
'vendor/symfony/config/Symfony/Component/Config/Tests/Definition/Builder/ExprBuilderTest.php',
'vendor/symfony/config/Symfony/Component/Config/Tests/Definition/Builder/NodeBuilderTest.php',
'vendor/symfony/config/Symfony/Component/Config/Tests/Definition/Builder/NumericNodeDefinitionTest.php',
'vendor/symfony/config/Symfony/Component/Config/Tests/Definition/Builder/TreeBuilderTest.php',
'vendor/symfony/config/Symfony/Component/Config/Tests/Definition/Dumper/XmlReferenceDumperTest.php',
'vendor/symfony/config/Symfony/Component/Config/Tests/Definition/Dumper/YamlReferenceDumperTest.php',
'vendor/symfony/config/Symfony/Component/Config/Tests/Definition/EnumNodeTest.php',
'vendor/symfony/config/Symfony/Component/Config/Tests/Definition/FinalizationTest.php',
'vendor/symfony/config/Symfony/Component/Config/Tests/Definition/FloatNodeTest.php',
'vendor/symfony/config/Symfony/Component/Config/Tests/Definition/IntegerNodeTest.php',
'vendor/symfony/config/Symfony/Component/Config/Tests/Definition/MergeTest.php',
'vendor/symfony/config/Symfony/Component/Config/Tests/Definition/NormalizationTest.php',
'vendor/symfony/config/Symfony/Component/Config/Tests/Definition/PrototypedArrayNodeTest.php',
'vendor/symfony/config/Symfony/Component/Config/Tests/Definition/ScalarNodeTest.php',
'vendor/symfony/config/Symfony/Component/Config/Tests/FileLocatorTest.php',
'vendor/symfony/config/Symfony/Component/Config/Tests/Fixtures/Builder/BarNodeDefinition.php',
'vendor/symfony/config/Symfony/Component/Config/Tests/Fixtures/Builder/NodeBuilder.php',
'vendor/symfony/config/Symfony/Component/Config/Tests/Fixtures/Builder/VariableNodeDefinition.php',
'vendor/symfony/config/Symfony/Component/Config/Tests/Fixtures/Configuration/ExampleConfiguration.php',
'vendor/symfony/config/Symfony/Component/Config/Tests/Loader/DelegatingLoaderTest.php',
'vendor/symfony/config/Symfony/Component/Config/Tests/Loader/FileLoaderTest.php',
'vendor/symfony/config/Symfony/Component/Config/Tests/Loader/LoaderResolverTest.php',
'vendor/symfony/config/Symfony/Component/Config/Tests/Loader/LoaderTest.php',
'vendor/symfony/config/Symfony/Component/Config/Tests/Resource/DirectoryResourceTest.php',
'vendor/symfony/config/Symfony/Component/Config/Tests/Resource/FileResourceTest.php',
'vendor/symfony/config/Symfony/Component/Config/Tests/Util/XmlUtilsTest.php',
'vendor/symfony/config/Symfony/Component/Config/Util/XmlUtils.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Alias.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Compiler/AnalyzeServiceReferencesPass.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Compiler/CheckCircularReferencesPass.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Compiler/CheckDefinitionValidityPass.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Compiler/CheckExceptionOnInvalidReferenceBehaviorPass.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Compiler/CheckReferenceValidityPass.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Compiler/Compiler.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Compiler/CompilerPassInterface.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Compiler/DecoratorServicePass.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Compiler/InlineServiceDefinitionsPass.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Compiler/LoggingFormatter.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Compiler/MergeExtensionConfigurationPass.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Compiler/PassConfig.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Compiler/RemoveAbstractDefinitionsPass.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Compiler/RemovePrivateAliasesPass.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Compiler/RemoveUnusedDefinitionsPass.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Compiler/RepeatablePassInterface.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Compiler/RepeatedPass.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Compiler/ReplaceAliasByActualDefinitionPass.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Compiler/ResolveDefinitionTemplatesPass.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Compiler/ResolveInvalidReferencesPass.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Compiler/ResolveParameterPlaceHoldersPass.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Compiler/ResolveReferencesToAliasesPass.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Compiler/ServiceReferenceGraph.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Compiler/ServiceReferenceGraphEdge.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Compiler/ServiceReferenceGraphNode.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Container.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/ContainerAware.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/ContainerAwareInterface.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/ContainerAwareTrait.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/ContainerBuilder.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/ContainerInterface.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Definition.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/DefinitionDecorator.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Dumper/Dumper.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Dumper/DumperInterface.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Dumper/GraphvizDumper.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Dumper/XmlDumper.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Dumper/YamlDumper.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Exception/BadMethodCallException.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Exception/ExceptionInterface.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Exception/InactiveScopeException.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Exception/InvalidArgumentException.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Exception/LogicException.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Exception/OutOfBoundsException.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Exception/ParameterCircularReferenceException.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Exception/ParameterNotFoundException.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Exception/RuntimeException.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Exception/ScopeCrossingInjectionException.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Exception/ScopeWideningInjectionException.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Exception/ServiceCircularReferenceException.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Exception/ServiceNotFoundException.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/ExpressionLanguage.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Extension/ConfigurationExtensionInterface.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Extension/Extension.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Extension/ExtensionInterface.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Extension/PrependExtensionInterface.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/IntrospectableContainerInterface.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/LazyProxy/Instantiator/InstantiatorInterface.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/LazyProxy/Instantiator/RealServiceInstantiator.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/LazyProxy/PhpDumper/DumperInterface.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/LazyProxy/PhpDumper/NullDumper.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Loader/ClosureLoader.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Loader/FileLoader.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Loader/IniFileLoader.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Loader/PhpFileLoader.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Loader/XmlFileLoader.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Loader/YamlFileLoader.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Parameter.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/ParameterBag/FrozenParameterBag.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/ParameterBag/ParameterBag.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/ParameterBag/ParameterBagInterface.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Reference.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Scope.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/ScopeInterface.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/SimpleXMLElement.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/TaggedContainerInterface.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Compiler/AnalyzeServiceReferencesPassTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Compiler/CheckCircularReferencesPassTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Compiler/CheckDefinitionValidityPassTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Compiler/CheckExceptionOnInvalidReferenceBehaviorPassTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Compiler/CheckReferenceValidityPassTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Compiler/DecoratorServicePassTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Compiler/InlineServiceDefinitionsPassTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Compiler/IntegrationTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Compiler/RemoveUnusedDefinitionsPassTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Compiler/ReplaceAliasByActualDefinitionPassTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Compiler/ResolveDefinitionTemplatesPassTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Compiler/ResolveInvalidReferencesPassTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Compiler/ResolveReferencesToAliasesPassTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/ContainerBuilderTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/ContainerTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/CrossCheckTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/DefinitionDecoratorTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/DefinitionTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Dumper/GraphvizDumperTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Dumper/PhpDumperTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Dumper/XmlDumperTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Dumper/YamlDumperTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Extension/ExtensionTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/containers/container10.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/containers/container11.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/containers/container12.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/containers/container13.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/containers/container14.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/containers/container15.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/containers/container16.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/containers/container17.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/containers/container18.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/containers/container8.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/containers/container9.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/includes/classes.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/includes/createphar.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/includes/foo.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/includes/ProjectExtension.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/includes/ProjectWithXsdExtension.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services1-1.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services1.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services10.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services11.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services12.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services8.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9_compiled.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/php/simple.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/LazyProxy/Instantiator/RealServiceInstantiatorTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/LazyProxy/PhpDumper/NullDumperTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Loader/ClosureLoaderTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Loader/IniFileLoaderTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Loader/PhpFileLoaderTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Loader/XmlFileLoaderTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Loader/YamlFileLoaderTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/ParameterBag/FrozenParameterBagTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/ParameterBag/ParameterBagTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/ParameterTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/ReferenceTest.php',
'vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Variable.php',
'vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/ContainerAwareEventDispatcher.php',
'vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/Debug/TraceableEventDispatcher.php',
'vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/Debug/TraceableEventDispatcherInterface.php',
'vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/Debug/WrappedListener.php',
'vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/DependencyInjection/RegisterListenersPass.php',
'vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/Event.php',
'vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/EventDispatcher.php',
'vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/EventDispatcherInterface.php',
'vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/EventSubscriberInterface.php',
'vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/GenericEvent.php',
'vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/ImmutableEventDispatcher.php',
'vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/Tests/ContainerAwareEventDispatcherTest.php',
'vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/Tests/Debug/TraceableEventDispatcherTest.php',
'vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/Tests/DependencyInjection/RegisterListenersPassTest.php',
'vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/Tests/EventDispatcherTest.php',
'vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/Tests/EventTest.php',
'vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/Tests/GenericEventTest.php',
'vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/Tests/ImmutableEventDispatcherTest.php',
'vendor/symfony/filesystem/Symfony/Component/Filesystem/Exception/ExceptionInterface.php',
'vendor/symfony/filesystem/Symfony/Component/Filesystem/Exception/FileNotFoundException.php',
'vendor/symfony/filesystem/Symfony/Component/Filesystem/Exception/IOException.php',
'vendor/symfony/filesystem/Symfony/Component/Filesystem/Exception/IOExceptionInterface.php',
'vendor/symfony/filesystem/Symfony/Component/Filesystem/Filesystem.php',
'vendor/symfony/filesystem/Symfony/Component/Filesystem/Tests/ExceptionTest.php',
'vendor/symfony/filesystem/Symfony/Component/Filesystem/Tests/FilesystemTest.php',
'vendor/symfony/filesystem/Symfony/Component/Filesystem/Tests/FilesystemTestCase.php',
'vendor/symfony/finder/Symfony/Component/Finder/Adapter/AbstractAdapter.php',
'vendor/symfony/finder/Symfony/Component/Finder/Adapter/AbstractFindAdapter.php',
'vendor/symfony/finder/Symfony/Component/Finder/Adapter/AdapterInterface.php',
'vendor/symfony/finder/Symfony/Component/Finder/Adapter/BsdFindAdapter.php',
'vendor/symfony/finder/Symfony/Component/Finder/Adapter/GnuFindAdapter.php',
'vendor/symfony/finder/Symfony/Component/Finder/Adapter/PhpAdapter.php',
'vendor/symfony/finder/Symfony/Component/Finder/Comparator/Comparator.php',
'vendor/symfony/finder/Symfony/Component/Finder/Comparator/DateComparator.php',
'vendor/symfony/finder/Symfony/Component/Finder/Comparator/NumberComparator.php',
'vendor/symfony/finder/Symfony/Component/Finder/Exception/AccessDeniedException.php',
'vendor/symfony/finder/Symfony/Component/Finder/Exception/AdapterFailureException.php',
'vendor/symfony/finder/Symfony/Component/Finder/Exception/ExceptionInterface.php',
'vendor/symfony/finder/Symfony/Component/Finder/Exception/OperationNotPermitedException.php',
'vendor/symfony/finder/Symfony/Component/Finder/Exception/ShellCommandFailureException.php',
'vendor/symfony/finder/Symfony/Component/Finder/Expression/Expression.php',
'vendor/symfony/finder/Symfony/Component/Finder/Expression/Glob.php',
'vendor/symfony/finder/Symfony/Component/Finder/Expression/Regex.php',
'vendor/symfony/finder/Symfony/Component/Finder/Expression/ValueInterface.php',
'vendor/symfony/finder/Symfony/Component/Finder/Finder.php',
'vendor/symfony/finder/Symfony/Component/Finder/Glob.php',
'vendor/symfony/finder/Symfony/Component/Finder/Iterator/CustomFilterIterator.php',
'vendor/symfony/finder/Symfony/Component/Finder/Iterator/DateRangeFilterIterator.php',
'vendor/symfony/finder/Symfony/Component/Finder/Iterator/DepthRangeFilterIterator.php',
'vendor/symfony/finder/Symfony/Component/Finder/Iterator/ExcludeDirectoryFilterIterator.php',
'vendor/symfony/finder/Symfony/Component/Finder/Iterator/FilecontentFilterIterator.php',
'vendor/symfony/finder/Symfony/Component/Finder/Iterator/FilenameFilterIterator.php',
'vendor/symfony/finder/Symfony/Component/Finder/Iterator/FilePathsIterator.php',
'vendor/symfony/finder/Symfony/Component/Finder/Iterator/FileTypeFilterIterator.php',
'vendor/symfony/finder/Symfony/Component/Finder/Iterator/FilterIterator.php',
'vendor/symfony/finder/Symfony/Component/Finder/Iterator/MultiplePcreFilterIterator.php',
'vendor/symfony/finder/Symfony/Component/Finder/Iterator/PathFilterIterator.php',
'vendor/symfony/finder/Symfony/Component/Finder/Iterator/RecursiveDirectoryIterator.php',
'vendor/symfony/finder/Symfony/Component/Finder/Iterator/SizeRangeFilterIterator.php',
'vendor/symfony/finder/Symfony/Component/Finder/Iterator/SortableIterator.php',
'vendor/symfony/finder/Symfony/Component/Finder/Shell/Command.php',
'vendor/symfony/finder/Symfony/Component/Finder/Shell/Shell.php',
'vendor/symfony/finder/Symfony/Component/Finder/SplFileInfo.php',
'vendor/symfony/finder/Symfony/Component/Finder/Tests/Comparator/ComparatorTest.php',
'vendor/symfony/finder/Symfony/Component/Finder/Tests/Comparator/DateComparatorTest.php',
'vendor/symfony/finder/Symfony/Component/Finder/Tests/Comparator/NumberComparatorTest.php',
'vendor/symfony/finder/Symfony/Component/Finder/Tests/Expression/ExpressionTest.php',
'vendor/symfony/finder/Symfony/Component/Finder/Tests/Expression/GlobTest.php',
'vendor/symfony/finder/Symfony/Component/Finder/Tests/Expression/RegexTest.php',
'vendor/symfony/finder/Symfony/Component/Finder/Tests/FakeAdapter/DummyAdapter.php',
'vendor/symfony/finder/Symfony/Component/Finder/Tests/FakeAdapter/FailingAdapter.php',
'vendor/symfony/finder/Symfony/Component/Finder/Tests/FakeAdapter/NamedAdapter.php',
'vendor/symfony/finder/Symfony/Component/Finder/Tests/FakeAdapter/UnsupportedAdapter.php',
'vendor/symfony/finder/Symfony/Component/Finder/Tests/FinderTest.php',
'vendor/symfony/finder/Symfony/Component/Finder/Tests/Iterator/CustomFilterIteratorTest.php',
'vendor/symfony/finder/Symfony/Component/Finder/Tests/Iterator/DateRangeFilterIteratorTest.php',
'vendor/symfony/finder/Symfony/Component/Finder/Tests/Iterator/DepthRangeFilterIteratorTest.php',
'vendor/symfony/finder/Symfony/Component/Finder/Tests/Iterator/ExcludeDirectoryFilterIteratorTest.php',
'vendor/symfony/finder/Symfony/Component/Finder/Tests/Iterator/FilecontentFilterIteratorTest.php',
'vendor/symfony/finder/Symfony/Component/Finder/Tests/Iterator/FilenameFilterIteratorTest.php',
'vendor/symfony/finder/Symfony/Component/Finder/Tests/Iterator/FilePathsIteratorTest.php',
'vendor/symfony/finder/Symfony/Component/Finder/Tests/Iterator/FileTypeFilterIteratorTest.php',
'vendor/symfony/finder/Symfony/Component/Finder/Tests/Iterator/FilterIteratorTest.php',
'vendor/symfony/finder/Symfony/Component/Finder/Tests/Iterator/Iterator.php',
'vendor/symfony/finder/Symfony/Component/Finder/Tests/Iterator/IteratorTestCase.php',
'vendor/symfony/finder/Symfony/Component/Finder/Tests/Iterator/MockFileListIterator.php',
'vendor/symfony/finder/Symfony/Component/Finder/Tests/Iterator/MockSplFileInfo.php',
'vendor/symfony/finder/Symfony/Component/Finder/Tests/Iterator/MultiplePcreFilterIteratorTest.php',
'vendor/symfony/finder/Symfony/Component/Finder/Tests/Iterator/PathFilterIteratorTest.php',
'vendor/symfony/finder/Symfony/Component/Finder/Tests/Iterator/RealIteratorTestCase.php',
'vendor/symfony/finder/Symfony/Component/Finder/Tests/Iterator/RecursiveDirectoryIteratorTest.php',
'vendor/symfony/finder/Symfony/Component/Finder/Tests/Iterator/SizeRangeFilterIteratorTest.php',
'vendor/symfony/finder/Symfony/Component/Finder/Tests/Iterator/SortableIteratorTest.php',
'vendor/symfony/process/Symfony/Component/Process/Exception/ExceptionInterface.php',
'vendor/symfony/process/Symfony/Component/Process/Exception/InvalidArgumentException.php',
'vendor/symfony/process/Symfony/Component/Process/Exception/LogicException.php',
'vendor/symfony/process/Symfony/Component/Process/Exception/ProcessFailedException.php',
'vendor/symfony/process/Symfony/Component/Process/Exception/ProcessTimedOutException.php',
'vendor/symfony/process/Symfony/Component/Process/Exception/RuntimeException.php',
'vendor/symfony/process/Symfony/Component/Process/ExecutableFinder.php',
'vendor/symfony/process/Symfony/Component/Process/PhpExecutableFinder.php',
'vendor/symfony/process/Symfony/Component/Process/PhpProcess.php',
'vendor/symfony/process/Symfony/Component/Process/Process.php',
'vendor/symfony/process/Symfony/Component/Process/ProcessBuilder.php',
'vendor/symfony/process/Symfony/Component/Process/ProcessPipes.php',
'vendor/symfony/process/Symfony/Component/Process/ProcessUtils.php',
'vendor/symfony/process/Symfony/Component/Process/Tests/AbstractProcessTest.php',
'vendor/symfony/process/Symfony/Component/Process/Tests/ExecutableFinderTest.php',
'vendor/symfony/process/Symfony/Component/Process/Tests/NonStopableProcess.php',
'vendor/symfony/process/Symfony/Component/Process/Tests/PhpExecutableFinderTest.php',
'vendor/symfony/process/Symfony/Component/Process/Tests/PhpProcessTest.php',
'vendor/symfony/process/Symfony/Component/Process/Tests/PipeStdinInStdoutStdErrStreamSelect.php',
'vendor/symfony/process/Symfony/Component/Process/Tests/ProcessBuilderTest.php',
'vendor/symfony/process/Symfony/Component/Process/Tests/ProcessFailedExceptionTest.php',
'vendor/symfony/process/Symfony/Component/Process/Tests/ProcessInSigchildEnvironment.php',
'vendor/symfony/process/Symfony/Component/Process/Tests/ProcessUtilsTest.php',
'vendor/symfony/process/Symfony/Component/Process/Tests/SigchildDisabledProcessTest.php',
'vendor/symfony/process/Symfony/Component/Process/Tests/SigchildEnabledProcessTest.php',
'vendor/symfony/process/Symfony/Component/Process/Tests/SignalListener.php',
'vendor/symfony/process/Symfony/Component/Process/Tests/SimpleProcessTest.php',
'vendor/tecnickcom/tcpdf/config/tcpdf_config.php',
'vendor/tecnickcom/tcpdf/fonts/courier.php',
'vendor/tecnickcom/tcpdf/fonts/dejavusans.php',
'vendor/tecnickcom/tcpdf/fonts/helvetica.php',
'vendor/tecnickcom/tcpdf/fonts/hysmyeongjostdmedium.php',
'vendor/tecnickcom/tcpdf/fonts/times.php',
'vendor/tecnickcom/tcpdf/fonts/timesb.php',
'vendor/tecnickcom/tcpdf/fonts/timesbi.php',
'vendor/tecnickcom/tcpdf/fonts/timesi.php',
'vendor/tecnickcom/tcpdf/include/barcodes/datamatrix.php',
'vendor/tecnickcom/tcpdf/include/barcodes/pdf417.php',
'vendor/tecnickcom/tcpdf/include/barcodes/qrcode.php',
'vendor/tecnickcom/tcpdf/include/tcpdf_colors.php',
'vendor/tecnickcom/tcpdf/include/tcpdf_filters.php',
'vendor/tecnickcom/tcpdf/include/tcpdf_font_data.php',
'vendor/tecnickcom/tcpdf/include/tcpdf_fonts.php',
'vendor/tecnickcom/tcpdf/include/tcpdf_images.php',
'vendor/tecnickcom/tcpdf/include/tcpdf_static.php',
'vendor/tecnickcom/tcpdf/tcpdf.php',
'vendor/tecnickcom/tcpdf/tcpdf_autoconfig.php',
'vendor/tecnickcom/tcpdf/tcpdf_barcodes_1d.php',
'vendor/tecnickcom/tcpdf/tcpdf_barcodes_2d.php',
'vendor/tecnickcom/tcpdf/tcpdf_import.php',
'vendor/tecnickcom/tcpdf/tcpdf_parser.php',
'vendor/totten/ca-config/src/CA/Config/Curl.php',
'vendor/totten/ca-config/src/CA/Config/Stream.php',
'vendor/totten/ca-config/tests/bootstrap.php',
'vendor/totten/ca-config/tests/CA/Config/CurlTest.php',
'vendor/totten/ca-config/tests/CA/Config/StreamTest.php',
'vendor/totten/ca-config/tests/CA/Config/TestBase.php',
'vendor/zetacomponents/base/docs/repos/autoloads/my_autoload.php',
'vendor/zetacomponents/base/docs/repos/autoloads/your_autoload.php',
'vendor/zetacomponents/base/docs/repos/Me/myclass1.php',
'vendor/zetacomponents/base/docs/repos/Me/myclass2.php',
'vendor/zetacomponents/base/docs/repos/You/yourclass1.php',
'vendor/zetacomponents/base/docs/repos/You/yourclass2.php',
'vendor/zetacomponents/base/docs/tutorial_autoload.php',
'vendor/zetacomponents/base/docs/tutorial_example_01.php',
'vendor/zetacomponents/base/docs/tutorial_example_02.php',
'vendor/zetacomponents/base/docs/tutorial_example_03.php',
'vendor/zetacomponents/base/docs/tutorial_example_04.php',
'vendor/zetacomponents/base/docs/tutorial_lazy_initialization.php',
'vendor/zetacomponents/base/src/base.php',
'vendor/zetacomponents/base/src/base_autoload.php',
'vendor/zetacomponents/base/src/exceptions/autoload.php',
'vendor/zetacomponents/base/src/exceptions/double_class_repository_prefix.php',
'vendor/zetacomponents/base/src/exceptions/exception.php',
'vendor/zetacomponents/base/src/exceptions/extension_not_found.php',
'vendor/zetacomponents/base/src/exceptions/file_exception.php',
'vendor/zetacomponents/base/src/exceptions/file_io.php',
'vendor/zetacomponents/base/src/exceptions/file_not_found.php',
'vendor/zetacomponents/base/src/exceptions/file_permission.php',
'vendor/zetacomponents/base/src/exceptions/functionality_not_supported.php',
'vendor/zetacomponents/base/src/exceptions/init_callback_configured.php',
'vendor/zetacomponents/base/src/exceptions/invalid_callback_class.php',
'vendor/zetacomponents/base/src/exceptions/invalid_parent_class.php',
'vendor/zetacomponents/base/src/exceptions/property_not_found.php',
'vendor/zetacomponents/base/src/exceptions/property_permission.php',
'vendor/zetacomponents/base/src/exceptions/setting_not_found.php',
'vendor/zetacomponents/base/src/exceptions/setting_value.php',
'vendor/zetacomponents/base/src/exceptions/value.php',
'vendor/zetacomponents/base/src/exceptions/whatever.php',
'vendor/zetacomponents/base/src/ezc_bootstrap.php',
'vendor/zetacomponents/base/src/features.php',
'vendor/zetacomponents/base/src/file.php',
'vendor/zetacomponents/base/src/init.php',
'vendor/zetacomponents/base/src/interfaces/configuration_initializer.php',
'vendor/zetacomponents/base/src/interfaces/persistable.php',
'vendor/zetacomponents/base/src/metadata/pear.php',
'vendor/zetacomponents/base/src/metadata/tarball.php',
'vendor/zetacomponents/base/src/metadata.php',
'vendor/zetacomponents/base/src/options/autoload.php',
'vendor/zetacomponents/base/src/options.php',
'vendor/zetacomponents/base/src/struct.php',
'vendor/zetacomponents/base/src/structs/file_find_context.php',
'vendor/zetacomponents/base/src/structs/repository_directory.php',
'vendor/zetacomponents/base/tests/base_init_test.php',
'vendor/zetacomponents/base/tests/base_options_test.php',
'vendor/zetacomponents/base/tests/base_test.php',
'vendor/zetacomponents/base/tests/extra_repository/autoload/translation_autoload.php',
'vendor/zetacomponents/base/tests/extra_repository/Translation/test.php',
'vendor/zetacomponents/base/tests/features_unix_test.php',
'vendor/zetacomponents/base/tests/features_windows_test.php',
'vendor/zetacomponents/base/tests/file_calculate_relative_path_test.php',
'vendor/zetacomponents/base/tests/file_copy_recursive_test.php',
'vendor/zetacomponents/base/tests/file_find_recursive_test.php',
'vendor/zetacomponents/base/tests/file_is_absolute_path.php',
'vendor/zetacomponents/base/tests/file_remove_recursive_test.php',
'vendor/zetacomponents/base/tests/init/base_init_callback.php',
'vendor/zetacomponents/base/tests/init/base_init_class.php',
'vendor/zetacomponents/base/tests/metadata_pear_test.php',
'vendor/zetacomponents/base/tests/metadata_tarball_test.php',
'vendor/zetacomponents/base/tests/struct_test.php',
'vendor/zetacomponents/base/tests/suite.php',
'vendor/zetacomponents/base/tests/test_options.php',
'vendor/zetacomponents/base/tests/test_repository/autoload_files/basetest_autoload.php',
'vendor/zetacomponents/base/tests/test_repository/autoload_files/basetest_long_autoload.php',
'vendor/zetacomponents/base/tests/test_repository/autoload_files/object_autoload.php',
'vendor/zetacomponents/base/tests/test_repository/object/object.php',
'vendor/zetacomponents/base/tests/test_repository/TestClasses/base_test_class.php',
'vendor/zetacomponents/base/tests/test_repository/TestClasses/base_test_class_number_two.php',
'vendor/zetacomponents/base/tests/test_repository/TestClasses/base_test_long_class.php',
'vendor/zetacomponents/mail/docs/display-example/display-example.php',
'vendor/zetacomponents/mail/docs/mail-listing-example/app/paging_links.php',
'vendor/zetacomponents/mail/docs/mail-listing-example/mail.php',
'vendor/zetacomponents/mail/docs/tutorial/tutorial_autoload.php',
'vendor/zetacomponents/mail/docs/tutorial/tutorial_charset.php',
'vendor/zetacomponents/mail/docs/tutorial/tutorial_composer.php',
'vendor/zetacomponents/mail/docs/tutorial/tutorial_composer_attachments.php',
'vendor/zetacomponents/mail/docs/tutorial/tutorial_extend_create.php',
'vendor/zetacomponents/mail/docs/tutorial/tutorial_extend_use.php',
'vendor/zetacomponents/mail/docs/tutorial/tutorial_html_display.php',
'vendor/zetacomponents/mail/docs/tutorial/tutorial_imap.php',
'vendor/zetacomponents/mail/docs/tutorial/tutorial_imap_extra.php',
'vendor/zetacomponents/mail/docs/tutorial/tutorial_imap_ssl.php',
'vendor/zetacomponents/mail/docs/tutorial/tutorial_imap_uids.php',
'vendor/zetacomponents/mail/docs/tutorial/tutorial_mail_attachments.php',
'vendor/zetacomponents/mail/docs/tutorial/tutorial_mail_simple.php',
'vendor/zetacomponents/mail/docs/tutorial/tutorial_mbox.php',
'vendor/zetacomponents/mail/docs/tutorial/tutorial_parse.php',
'vendor/zetacomponents/mail/docs/tutorial/tutorial_pop3.php',
'vendor/zetacomponents/mail/docs/tutorial/tutorial_pop3_options.php',
'vendor/zetacomponents/mail/docs/tutorial/tutorial_smtp_auth.php',
'vendor/zetacomponents/mail/docs/tutorial/tutorial_smtp_ssl.php',
'vendor/zetacomponents/mail/docs/tutorial/tutorial_tools.php',
'vendor/zetacomponents/mail/src/composer.php',
'vendor/zetacomponents/mail/src/exceptions/invalid_limit.php',
'vendor/zetacomponents/mail/src/exceptions/mail_exception.php',
'vendor/zetacomponents/mail/src/exceptions/no_such_message.php',
'vendor/zetacomponents/mail/src/exceptions/offset_out_of_range.php',
'vendor/zetacomponents/mail/src/exceptions/transport_exception.php',
'vendor/zetacomponents/mail/src/exceptions/transport_smtp_exception.php',
'vendor/zetacomponents/mail/src/interfaces/part.php',
'vendor/zetacomponents/mail/src/interfaces/transport.php',
'vendor/zetacomponents/mail/src/internal/charset_convert.php',
'vendor/zetacomponents/mail/src/internal/header_folder.php',
'vendor/zetacomponents/mail/src/mail.php',
'vendor/zetacomponents/mail/src/mail_autoload.php',
'vendor/zetacomponents/mail/src/options/composer_options.php',
'vendor/zetacomponents/mail/src/options/imap_options.php',
'vendor/zetacomponents/mail/src/options/imap_set_options.php',
'vendor/zetacomponents/mail/src/options/parser_options.php',
'vendor/zetacomponents/mail/src/options/pop3_options.php',
'vendor/zetacomponents/mail/src/options/smtp_options.php',
'vendor/zetacomponents/mail/src/options/transport_options.php',
'vendor/zetacomponents/mail/src/parser/headers_holder.php',
'vendor/zetacomponents/mail/src/parser/interfaces/parser_set.php',
'vendor/zetacomponents/mail/src/parser/interfaces/part_parser.php',
'vendor/zetacomponents/mail/src/parser/parser.php',
'vendor/zetacomponents/mail/src/parser/parts/delivery_status_parser.php',
'vendor/zetacomponents/mail/src/parser/parts/file_parser.php',
'vendor/zetacomponents/mail/src/parser/parts/multipart_alternative_parser.php',
'vendor/zetacomponents/mail/src/parser/parts/multipart_digest_parser.php',
'vendor/zetacomponents/mail/src/parser/parts/multipart_mixed_parser.php',
'vendor/zetacomponents/mail/src/parser/parts/multipart_parser.php',
'vendor/zetacomponents/mail/src/parser/parts/multipart_related_parser.php',
'vendor/zetacomponents/mail/src/parser/parts/multipart_report_parser.php',
'vendor/zetacomponents/mail/src/parser/parts/rfc822_digest_parser.php',
'vendor/zetacomponents/mail/src/parser/parts/rfc822_parser.php',
'vendor/zetacomponents/mail/src/parser/parts/text_parser.php',
'vendor/zetacomponents/mail/src/parser/rfc2231_implementation.php',
'vendor/zetacomponents/mail/src/parser/shutdown_handler.php',
'vendor/zetacomponents/mail/src/parts/delivery_status.php',
'vendor/zetacomponents/mail/src/parts/file.php',
'vendor/zetacomponents/mail/src/parts/fileparts/disk_file.php',
'vendor/zetacomponents/mail/src/parts/fileparts/stream_file.php',
'vendor/zetacomponents/mail/src/parts/fileparts/virtual_file.php',
'vendor/zetacomponents/mail/src/parts/multipart.php',
'vendor/zetacomponents/mail/src/parts/multiparts/multipart_alternative.php',
'vendor/zetacomponents/mail/src/parts/multiparts/multipart_digest.php',
'vendor/zetacomponents/mail/src/parts/multiparts/multipart_mixed.php',
'vendor/zetacomponents/mail/src/parts/multiparts/multipart_related.php',
'vendor/zetacomponents/mail/src/parts/multiparts/multipart_report.php',
'vendor/zetacomponents/mail/src/parts/rfc822_digest.php',
'vendor/zetacomponents/mail/src/parts/text.php',
'vendor/zetacomponents/mail/src/structs/content_disposition_header.php',
'vendor/zetacomponents/mail/src/structs/mail_address.php',
'vendor/zetacomponents/mail/src/structs/walk_context.php',
'vendor/zetacomponents/mail/src/tools.php',
'vendor/zetacomponents/mail/src/transports/file/file_set.php',
'vendor/zetacomponents/mail/src/transports/imap/imap_set.php',
'vendor/zetacomponents/mail/src/transports/imap/imap_transport.php',
'vendor/zetacomponents/mail/src/transports/mbox/mbox_set.php',
'vendor/zetacomponents/mail/src/transports/mbox/mbox_transport.php',
'vendor/zetacomponents/mail/src/transports/mta/mta_transport.php',
'vendor/zetacomponents/mail/src/transports/mta/transport_mta.php',
'vendor/zetacomponents/mail/src/transports/pop3/pop3_set.php',
'vendor/zetacomponents/mail/src/transports/pop3/pop3_transport.php',
'vendor/zetacomponents/mail/src/transports/smtp/smtp_transport.php',
'vendor/zetacomponents/mail/src/transports/smtp/transport_smtp.php',
'vendor/zetacomponents/mail/src/transports/storage/storage_set.php',
'vendor/zetacomponents/mail/src/transports/transport_connection.php',
'vendor/zetacomponents/mail/src/transports/variable/var_set.php',
'vendor/zetacomponents/mail/tests/composer_test.php',
'vendor/zetacomponents/mail/tests/header_folder_test.php',
'vendor/zetacomponents/mail/tests/interfaces/part_test.php',
'vendor/zetacomponents/mail/tests/mail_test.php',
'vendor/zetacomponents/mail/tests/options/classes/custom_classes.php',
'vendor/zetacomponents/mail/tests/options/parser_options_test.php',
'vendor/zetacomponents/mail/tests/options/transport_options_test.php',
'vendor/zetacomponents/mail/tests/parser/data/classes/custom_classes.php',
'vendor/zetacomponents/mail/tests/parser/headers_holder_test.php',
'vendor/zetacomponents/mail/tests/parser/parser_test.php',
'vendor/zetacomponents/mail/tests/parser/parts/multipart_mixed_test.php',
'vendor/zetacomponents/mail/tests/parser/rfc2231_implementation_test.php',
'vendor/zetacomponents/mail/tests/parser/walk_context_test.php',
'vendor/zetacomponents/mail/tests/parts/file_part_test.php',
'vendor/zetacomponents/mail/tests/parts/multipart_digest_test.php',
'vendor/zetacomponents/mail/tests/parts/multipart_test.php',
'vendor/zetacomponents/mail/tests/parts/rfc822_digest_test.php',
'vendor/zetacomponents/mail/tests/parts/stream_file_part_test.php',
'vendor/zetacomponents/mail/tests/parts/text_part_test.php',
'vendor/zetacomponents/mail/tests/parts/virtual_file_part_test.php',
'vendor/zetacomponents/mail/tests/suite.php',
'vendor/zetacomponents/mail/tests/tools_test.php',
'vendor/zetacomponents/mail/tests/transports/data/parse-script.php',
'vendor/zetacomponents/mail/tests/transports/transport_file_test.php',
'vendor/zetacomponents/mail/tests/transports/transport_imap_test.php',
'vendor/zetacomponents/mail/tests/transports/transport_imap_uid_test.php',
'vendor/zetacomponents/mail/tests/transports/transport_mbox_test.php',
'vendor/zetacomponents/mail/tests/transports/transport_mta_test.php',
'vendor/zetacomponents/mail/tests/transports/transport_pop3_test.php',
'vendor/zetacomponents/mail/tests/transports/transport_smtp_auth_test.php',
'vendor/zetacomponents/mail/tests/transports/transport_smtp_test.php',
'vendor/zetacomponents/mail/tests/transports/transport_storage_test.php',
'vendor/zetacomponents/mail/tests/transports/transport_variable_test.php',
'vendor/zetacomponents/mail/tests/transports/wrappers/imap_custom_wrapper.php',
'vendor/zetacomponents/mail/tests/transports/wrappers/imap_wrapper.php',
'vendor/zetacomponents/mail/tests/transports/wrappers/pop3_wrapper.php',
'vendor/zetacomponents/mail/tests/transports/wrappers/smtp_wrapper.php',
'vendor/zetacomponents/mail/tests/tutorial_examples.php',
'WordPress/assets/templates/civicrm.shortcode.php',
'WordPress/civicrm.php',
'WordPress/includes/civicrm.basepage.php',
'WordPress/includes/civicrm.shortcodes.modal.php',
'WordPress/includes/civicrm.shortcodes.php',
'WordPress/includes/civicrm.users.php',
'WordPress/uninstall.php',
'WordPress/wp-cli/civicrm.php',
'xml/GenCode.php',
'xml/plugins/block.ts.php',
'xml/spec.php',
);
require_once "Smarty/internals/core.get_include_path.php";
$start = microtime(1);
for ($trial = 0; $trial < $trials; $trial++) {
foreach ($files as $file) {
$p = array("file_path"=>$file);
smarty_core_get_include_path($p, CRM_Core_Smarty::singleton());
}
}
$end = microtime(1);
printf("trials=`%d`; runtime=`%.4f` (seconds); memory=`%dk`\n", $trials, $end - $start, memory_get_usage()/1024);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment