autoload_static.php 705 ko
Newer Older
2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000
        'Doctrine\\ORM\\Mapping\\ManyToMany' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Mapping/ManyToMany.php',
        'Doctrine\\ORM\\Mapping\\ManyToOne' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Mapping/ManyToOne.php',
        'Doctrine\\ORM\\Mapping\\MappedSuperclass' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Mapping/MappedSuperclass.php',
        'Doctrine\\ORM\\Mapping\\MappingException' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Mapping/MappingException.php',
        'Doctrine\\ORM\\Mapping\\NamedNativeQueries' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Mapping/NamedNativeQueries.php',
        'Doctrine\\ORM\\Mapping\\NamedNativeQuery' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Mapping/NamedNativeQuery.php',
        'Doctrine\\ORM\\Mapping\\NamedQueries' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Mapping/NamedQueries.php',
        'Doctrine\\ORM\\Mapping\\NamedQuery' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Mapping/NamedQuery.php',
        'Doctrine\\ORM\\Mapping\\NamingStrategy' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Mapping/NamingStrategy.php',
        'Doctrine\\ORM\\Mapping\\OneToMany' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Mapping/OneToMany.php',
        'Doctrine\\ORM\\Mapping\\OneToOne' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Mapping/OneToOne.php',
        'Doctrine\\ORM\\Mapping\\OrderBy' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Mapping/OrderBy.php',
        'Doctrine\\ORM\\Mapping\\PostLoad' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Mapping/PostLoad.php',
        'Doctrine\\ORM\\Mapping\\PostPersist' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Mapping/PostPersist.php',
        'Doctrine\\ORM\\Mapping\\PostRemove' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Mapping/PostRemove.php',
        'Doctrine\\ORM\\Mapping\\PostUpdate' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Mapping/PostUpdate.php',
        'Doctrine\\ORM\\Mapping\\PreFlush' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Mapping/PreFlush.php',
        'Doctrine\\ORM\\Mapping\\PrePersist' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Mapping/PrePersist.php',
        'Doctrine\\ORM\\Mapping\\PreRemove' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Mapping/PreRemove.php',
        'Doctrine\\ORM\\Mapping\\PreUpdate' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Mapping/PreUpdate.php',
        'Doctrine\\ORM\\Mapping\\QuoteStrategy' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Mapping/QuoteStrategy.php',
        'Doctrine\\ORM\\Mapping\\ReflectionEmbeddedProperty' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Mapping/ReflectionEmbeddedProperty.php',
        'Doctrine\\ORM\\Mapping\\Reflection\\ReflectionPropertiesGetter' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Mapping/Reflection/ReflectionPropertiesGetter.php',
        'Doctrine\\ORM\\Mapping\\SequenceGenerator' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Mapping/SequenceGenerator.php',
        'Doctrine\\ORM\\Mapping\\SqlResultSetMapping' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Mapping/SqlResultSetMapping.php',
        'Doctrine\\ORM\\Mapping\\SqlResultSetMappings' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Mapping/SqlResultSetMappings.php',
        'Doctrine\\ORM\\Mapping\\Table' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Mapping/Table.php',
        'Doctrine\\ORM\\Mapping\\UnderscoreNamingStrategy' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Mapping/UnderscoreNamingStrategy.php',
        'Doctrine\\ORM\\Mapping\\UniqueConstraint' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Mapping/UniqueConstraint.php',
        'Doctrine\\ORM\\Mapping\\Version' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Mapping/Version.php',
        'Doctrine\\ORM\\NativeQuery' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/NativeQuery.php',
        'Doctrine\\ORM\\NoResultException' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/NoResultException.php',
        'Doctrine\\ORM\\NonUniqueResultException' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/NonUniqueResultException.php',
        'Doctrine\\ORM\\ORMException' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/ORMException.php',
        'Doctrine\\ORM\\ORMInvalidArgumentException' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/ORMInvalidArgumentException.php',
        'Doctrine\\ORM\\OptimisticLockException' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/OptimisticLockException.php',
        'Doctrine\\ORM\\PersistentCollection' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/PersistentCollection.php',
        'Doctrine\\ORM\\Persisters\\Collection\\AbstractCollectionPersister' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Persisters/Collection/AbstractCollectionPersister.php',
        'Doctrine\\ORM\\Persisters\\Collection\\CollectionPersister' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Persisters/Collection/CollectionPersister.php',
        'Doctrine\\ORM\\Persisters\\Collection\\ManyToManyPersister' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Persisters/Collection/ManyToManyPersister.php',
        'Doctrine\\ORM\\Persisters\\Collection\\OneToManyPersister' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Persisters/Collection/OneToManyPersister.php',
        'Doctrine\\ORM\\Persisters\\Entity\\AbstractEntityInheritancePersister' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Persisters/Entity/AbstractEntityInheritancePersister.php',
        'Doctrine\\ORM\\Persisters\\Entity\\BasicEntityPersister' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php',
        'Doctrine\\ORM\\Persisters\\Entity\\CachedPersisterContext' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Persisters/Entity/CachedPersisterContext.php',
        'Doctrine\\ORM\\Persisters\\Entity\\EntityPersister' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Persisters/Entity/EntityPersister.php',
        'Doctrine\\ORM\\Persisters\\Entity\\JoinedSubclassPersister' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Persisters/Entity/JoinedSubclassPersister.php',
        'Doctrine\\ORM\\Persisters\\Entity\\SingleTablePersister' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Persisters/Entity/SingleTablePersister.php',
        'Doctrine\\ORM\\Persisters\\Exception\\CantUseInOperatorOnCompositeKeys' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Persisters/Exception/CantUseInOperatorOnCompositeKeys.php',
        'Doctrine\\ORM\\Persisters\\Exception\\InvalidOrientation' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Persisters/Exception/InvalidOrientation.php',
        'Doctrine\\ORM\\Persisters\\Exception\\UnrecognizedField' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Persisters/Exception/UnrecognizedField.php',
        'Doctrine\\ORM\\Persisters\\MatchingAssociationFieldRequiresObject' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Persisters/MatchingAssociationFieldRequiresObject.php',
        'Doctrine\\ORM\\Persisters\\PersisterException' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Persisters/PersisterException.php',
        'Doctrine\\ORM\\Persisters\\SqlExpressionVisitor' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Persisters/SqlExpressionVisitor.php',
        'Doctrine\\ORM\\Persisters\\SqlValueVisitor' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Persisters/SqlValueVisitor.php',
        'Doctrine\\ORM\\PessimisticLockException' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/PessimisticLockException.php',
        'Doctrine\\ORM\\Proxy\\Autoloader' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Proxy/Autoloader.php',
        'Doctrine\\ORM\\Proxy\\Proxy' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Proxy/Proxy.php',
        'Doctrine\\ORM\\Proxy\\ProxyFactory' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Proxy/ProxyFactory.php',
        'Doctrine\\ORM\\Query' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query.php',
        'Doctrine\\ORM\\QueryBuilder' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/QueryBuilder.php',
        'Doctrine\\ORM\\Query\\AST\\ASTException' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/ASTException.php',
        'Doctrine\\ORM\\Query\\AST\\AggregateExpression' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/AggregateExpression.php',
        'Doctrine\\ORM\\Query\\AST\\ArithmeticExpression' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/ArithmeticExpression.php',
        'Doctrine\\ORM\\Query\\AST\\ArithmeticFactor' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/ArithmeticFactor.php',
        'Doctrine\\ORM\\Query\\AST\\ArithmeticTerm' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/ArithmeticTerm.php',
        'Doctrine\\ORM\\Query\\AST\\BetweenExpression' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/BetweenExpression.php',
        'Doctrine\\ORM\\Query\\AST\\CoalesceExpression' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/CoalesceExpression.php',
        'Doctrine\\ORM\\Query\\AST\\CollectionMemberExpression' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/CollectionMemberExpression.php',
        'Doctrine\\ORM\\Query\\AST\\ComparisonExpression' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/ComparisonExpression.php',
        'Doctrine\\ORM\\Query\\AST\\ConditionalExpression' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/ConditionalExpression.php',
        'Doctrine\\ORM\\Query\\AST\\ConditionalFactor' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/ConditionalFactor.php',
        'Doctrine\\ORM\\Query\\AST\\ConditionalPrimary' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/ConditionalPrimary.php',
        'Doctrine\\ORM\\Query\\AST\\ConditionalTerm' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/ConditionalTerm.php',
        'Doctrine\\ORM\\Query\\AST\\DeleteClause' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/DeleteClause.php',
        'Doctrine\\ORM\\Query\\AST\\DeleteStatement' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/DeleteStatement.php',
        'Doctrine\\ORM\\Query\\AST\\EmptyCollectionComparisonExpression' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/EmptyCollectionComparisonExpression.php',
        'Doctrine\\ORM\\Query\\AST\\ExistsExpression' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/ExistsExpression.php',
        'Doctrine\\ORM\\Query\\AST\\FromClause' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/FromClause.php',
        'Doctrine\\ORM\\Query\\AST\\Functions\\AbsFunction' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/Functions/AbsFunction.php',
        'Doctrine\\ORM\\Query\\AST\\Functions\\AvgFunction' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/Functions/AvgFunction.php',
        'Doctrine\\ORM\\Query\\AST\\Functions\\BitAndFunction' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/Functions/BitAndFunction.php',
        'Doctrine\\ORM\\Query\\AST\\Functions\\BitOrFunction' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/Functions/BitOrFunction.php',
        'Doctrine\\ORM\\Query\\AST\\Functions\\ConcatFunction' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/Functions/ConcatFunction.php',
        'Doctrine\\ORM\\Query\\AST\\Functions\\CountFunction' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/Functions/CountFunction.php',
        'Doctrine\\ORM\\Query\\AST\\Functions\\CurrentDateFunction' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/Functions/CurrentDateFunction.php',
        'Doctrine\\ORM\\Query\\AST\\Functions\\CurrentTimeFunction' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/Functions/CurrentTimeFunction.php',
        'Doctrine\\ORM\\Query\\AST\\Functions\\CurrentTimestampFunction' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/Functions/CurrentTimestampFunction.php',
        'Doctrine\\ORM\\Query\\AST\\Functions\\DateAddFunction' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/Functions/DateAddFunction.php',
        'Doctrine\\ORM\\Query\\AST\\Functions\\DateDiffFunction' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/Functions/DateDiffFunction.php',
        'Doctrine\\ORM\\Query\\AST\\Functions\\DateSubFunction' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/Functions/DateSubFunction.php',
        'Doctrine\\ORM\\Query\\AST\\Functions\\FunctionNode' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/Functions/FunctionNode.php',
        'Doctrine\\ORM\\Query\\AST\\Functions\\IdentityFunction' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/Functions/IdentityFunction.php',
        'Doctrine\\ORM\\Query\\AST\\Functions\\LengthFunction' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/Functions/LengthFunction.php',
        'Doctrine\\ORM\\Query\\AST\\Functions\\LocateFunction' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/Functions/LocateFunction.php',
        'Doctrine\\ORM\\Query\\AST\\Functions\\LowerFunction' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/Functions/LowerFunction.php',
        'Doctrine\\ORM\\Query\\AST\\Functions\\MaxFunction' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/Functions/MaxFunction.php',
        'Doctrine\\ORM\\Query\\AST\\Functions\\MinFunction' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/Functions/MinFunction.php',
        'Doctrine\\ORM\\Query\\AST\\Functions\\ModFunction' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/Functions/ModFunction.php',
        'Doctrine\\ORM\\Query\\AST\\Functions\\SizeFunction' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/Functions/SizeFunction.php',
        'Doctrine\\ORM\\Query\\AST\\Functions\\SqrtFunction' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/Functions/SqrtFunction.php',
        'Doctrine\\ORM\\Query\\AST\\Functions\\SubstringFunction' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/Functions/SubstringFunction.php',
        'Doctrine\\ORM\\Query\\AST\\Functions\\SumFunction' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/Functions/SumFunction.php',
        'Doctrine\\ORM\\Query\\AST\\Functions\\TrimFunction' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/Functions/TrimFunction.php',
        'Doctrine\\ORM\\Query\\AST\\Functions\\UpperFunction' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/Functions/UpperFunction.php',
        'Doctrine\\ORM\\Query\\AST\\GeneralCaseExpression' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/GeneralCaseExpression.php',
        'Doctrine\\ORM\\Query\\AST\\GroupByClause' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/GroupByClause.php',
        'Doctrine\\ORM\\Query\\AST\\HavingClause' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/HavingClause.php',
        'Doctrine\\ORM\\Query\\AST\\IdentificationVariableDeclaration' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/IdentificationVariableDeclaration.php',
        'Doctrine\\ORM\\Query\\AST\\InExpression' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/InExpression.php',
        'Doctrine\\ORM\\Query\\AST\\IndexBy' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/IndexBy.php',
        'Doctrine\\ORM\\Query\\AST\\InputParameter' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/InputParameter.php',
        'Doctrine\\ORM\\Query\\AST\\InstanceOfExpression' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/InstanceOfExpression.php',
        'Doctrine\\ORM\\Query\\AST\\Join' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/Join.php',
        'Doctrine\\ORM\\Query\\AST\\JoinAssociationDeclaration' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/JoinAssociationDeclaration.php',
        'Doctrine\\ORM\\Query\\AST\\JoinAssociationPathExpression' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/JoinAssociationPathExpression.php',
        'Doctrine\\ORM\\Query\\AST\\JoinClassPathExpression' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/JoinClassPathExpression.php',
        'Doctrine\\ORM\\Query\\AST\\JoinVariableDeclaration' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/JoinVariableDeclaration.php',
        'Doctrine\\ORM\\Query\\AST\\LikeExpression' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/LikeExpression.php',
        'Doctrine\\ORM\\Query\\AST\\Literal' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/Literal.php',
        'Doctrine\\ORM\\Query\\AST\\NewObjectExpression' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/NewObjectExpression.php',
        'Doctrine\\ORM\\Query\\AST\\Node' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/Node.php',
        'Doctrine\\ORM\\Query\\AST\\NullComparisonExpression' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/NullComparisonExpression.php',
        'Doctrine\\ORM\\Query\\AST\\NullIfExpression' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/NullIfExpression.php',
        'Doctrine\\ORM\\Query\\AST\\OrderByClause' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/OrderByClause.php',
        'Doctrine\\ORM\\Query\\AST\\OrderByItem' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/OrderByItem.php',
        'Doctrine\\ORM\\Query\\AST\\ParenthesisExpression' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/ParenthesisExpression.php',
        'Doctrine\\ORM\\Query\\AST\\PartialObjectExpression' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/PartialObjectExpression.php',
        'Doctrine\\ORM\\Query\\AST\\PathExpression' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/PathExpression.php',
        'Doctrine\\ORM\\Query\\AST\\QuantifiedExpression' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/QuantifiedExpression.php',
        'Doctrine\\ORM\\Query\\AST\\RangeVariableDeclaration' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/RangeVariableDeclaration.php',
        'Doctrine\\ORM\\Query\\AST\\SelectClause' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/SelectClause.php',
        'Doctrine\\ORM\\Query\\AST\\SelectExpression' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/SelectExpression.php',
        'Doctrine\\ORM\\Query\\AST\\SelectStatement' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/SelectStatement.php',
        'Doctrine\\ORM\\Query\\AST\\SimpleArithmeticExpression' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/SimpleArithmeticExpression.php',
        'Doctrine\\ORM\\Query\\AST\\SimpleCaseExpression' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/SimpleCaseExpression.php',
        'Doctrine\\ORM\\Query\\AST\\SimpleSelectClause' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/SimpleSelectClause.php',
        'Doctrine\\ORM\\Query\\AST\\SimpleSelectExpression' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/SimpleSelectExpression.php',
        'Doctrine\\ORM\\Query\\AST\\SimpleWhenClause' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/SimpleWhenClause.php',
        'Doctrine\\ORM\\Query\\AST\\Subselect' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/Subselect.php',
        'Doctrine\\ORM\\Query\\AST\\SubselectFromClause' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/SubselectFromClause.php',
        'Doctrine\\ORM\\Query\\AST\\SubselectIdentificationVariableDeclaration' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/SubselectIdentificationVariableDeclaration.php',
        'Doctrine\\ORM\\Query\\AST\\TypedExpression' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/TypedExpression.php',
        'Doctrine\\ORM\\Query\\AST\\UpdateClause' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/UpdateClause.php',
        'Doctrine\\ORM\\Query\\AST\\UpdateItem' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/UpdateItem.php',
        'Doctrine\\ORM\\Query\\AST\\UpdateStatement' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/UpdateStatement.php',
        'Doctrine\\ORM\\Query\\AST\\WhenClause' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/WhenClause.php',
        'Doctrine\\ORM\\Query\\AST\\WhereClause' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/AST/WhereClause.php',
        'Doctrine\\ORM\\Query\\Exec\\AbstractSqlExecutor' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/Exec/AbstractSqlExecutor.php',
        'Doctrine\\ORM\\Query\\Exec\\MultiTableDeleteExecutor' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/Exec/MultiTableDeleteExecutor.php',
        'Doctrine\\ORM\\Query\\Exec\\MultiTableUpdateExecutor' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/Exec/MultiTableUpdateExecutor.php',
        'Doctrine\\ORM\\Query\\Exec\\SingleSelectExecutor' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php',
        'Doctrine\\ORM\\Query\\Exec\\SingleTableDeleteUpdateExecutor' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleTableDeleteUpdateExecutor.php',
        'Doctrine\\ORM\\Query\\Expr' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/Expr.php',
        'Doctrine\\ORM\\Query\\Expr\\Andx' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/Expr/Andx.php',
        'Doctrine\\ORM\\Query\\Expr\\Base' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/Expr/Base.php',
        'Doctrine\\ORM\\Query\\Expr\\Comparison' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/Expr/Comparison.php',
        'Doctrine\\ORM\\Query\\Expr\\Composite' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/Expr/Composite.php',
        'Doctrine\\ORM\\Query\\Expr\\From' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/Expr/From.php',
        'Doctrine\\ORM\\Query\\Expr\\Func' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/Expr/Func.php',
        'Doctrine\\ORM\\Query\\Expr\\GroupBy' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/Expr/GroupBy.php',
        'Doctrine\\ORM\\Query\\Expr\\Join' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/Expr/Join.php',
        'Doctrine\\ORM\\Query\\Expr\\Literal' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/Expr/Literal.php',
        'Doctrine\\ORM\\Query\\Expr\\Math' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/Expr/Math.php',
        'Doctrine\\ORM\\Query\\Expr\\OrderBy' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/Expr/OrderBy.php',
        'Doctrine\\ORM\\Query\\Expr\\Orx' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/Expr/Orx.php',
        'Doctrine\\ORM\\Query\\Expr\\Select' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/Expr/Select.php',
        'Doctrine\\ORM\\Query\\FilterCollection' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/FilterCollection.php',
        'Doctrine\\ORM\\Query\\Filter\\FilterException' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/Filter/FilterException.php',
        'Doctrine\\ORM\\Query\\Filter\\SQLFilter' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/Filter/SQLFilter.php',
        'Doctrine\\ORM\\Query\\Lexer' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/Lexer.php',
        'Doctrine\\ORM\\Query\\Parameter' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/Parameter.php',
        'Doctrine\\ORM\\Query\\ParameterTypeInferer' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/ParameterTypeInferer.php',
        'Doctrine\\ORM\\Query\\Parser' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php',
        'Doctrine\\ORM\\Query\\ParserResult' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/ParserResult.php',
        'Doctrine\\ORM\\Query\\Printer' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/Printer.php',
        'Doctrine\\ORM\\Query\\QueryException' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/QueryException.php',
        'Doctrine\\ORM\\Query\\QueryExpressionVisitor' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/QueryExpressionVisitor.php',
        'Doctrine\\ORM\\Query\\ResultSetMapping' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/ResultSetMapping.php',
        'Doctrine\\ORM\\Query\\ResultSetMappingBuilder' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/ResultSetMappingBuilder.php',
        'Doctrine\\ORM\\Query\\SqlWalker' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/SqlWalker.php',
        'Doctrine\\ORM\\Query\\TreeWalker' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/TreeWalker.php',
        'Doctrine\\ORM\\Query\\TreeWalkerAdapter' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/TreeWalkerAdapter.php',
        'Doctrine\\ORM\\Query\\TreeWalkerChain' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/TreeWalkerChain.php',
        'Doctrine\\ORM\\Query\\TreeWalkerChainIterator' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Query/TreeWalkerChainIterator.php',
        'Doctrine\\ORM\\Repository\\DefaultRepositoryFactory' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Repository/DefaultRepositoryFactory.php',
        'Doctrine\\ORM\\Repository\\Exception\\InvalidFindByCall' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Repository/Exception/InvalidFindByCall.php',
        'Doctrine\\ORM\\Repository\\Exception\\InvalidMagicMethodCall' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Repository/Exception/InvalidMagicMethodCall.php',
        'Doctrine\\ORM\\Repository\\RepositoryFactory' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Repository/RepositoryFactory.php',
        'Doctrine\\ORM\\Tools\\AttachEntityListenersListener' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/AttachEntityListenersListener.php',
        'Doctrine\\ORM\\Tools\\Console\\Command\\AbstractEntityManagerCommand' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Console/Command/AbstractEntityManagerCommand.php',
        'Doctrine\\ORM\\Tools\\Console\\Command\\ClearCache\\CollectionRegionCommand' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Console/Command/ClearCache/CollectionRegionCommand.php',
        'Doctrine\\ORM\\Tools\\Console\\Command\\ClearCache\\EntityRegionCommand' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Console/Command/ClearCache/EntityRegionCommand.php',
        'Doctrine\\ORM\\Tools\\Console\\Command\\ClearCache\\MetadataCommand' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Console/Command/ClearCache/MetadataCommand.php',
        'Doctrine\\ORM\\Tools\\Console\\Command\\ClearCache\\QueryCommand' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Console/Command/ClearCache/QueryCommand.php',
        'Doctrine\\ORM\\Tools\\Console\\Command\\ClearCache\\QueryRegionCommand' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Console/Command/ClearCache/QueryRegionCommand.php',
        'Doctrine\\ORM\\Tools\\Console\\Command\\ClearCache\\ResultCommand' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Console/Command/ClearCache/ResultCommand.php',
        'Doctrine\\ORM\\Tools\\Console\\Command\\ConvertDoctrine1SchemaCommand' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Console/Command/ConvertDoctrine1SchemaCommand.php',
        'Doctrine\\ORM\\Tools\\Console\\Command\\ConvertMappingCommand' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Console/Command/ConvertMappingCommand.php',
        'Doctrine\\ORM\\Tools\\Console\\Command\\EnsureProductionSettingsCommand' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Console/Command/EnsureProductionSettingsCommand.php',
        'Doctrine\\ORM\\Tools\\Console\\Command\\GenerateEntitiesCommand' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Console/Command/GenerateEntitiesCommand.php',
        'Doctrine\\ORM\\Tools\\Console\\Command\\GenerateProxiesCommand' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Console/Command/GenerateProxiesCommand.php',
        'Doctrine\\ORM\\Tools\\Console\\Command\\GenerateRepositoriesCommand' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Console/Command/GenerateRepositoriesCommand.php',
        'Doctrine\\ORM\\Tools\\Console\\Command\\InfoCommand' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Console/Command/InfoCommand.php',
        'Doctrine\\ORM\\Tools\\Console\\Command\\MappingDescribeCommand' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Console/Command/MappingDescribeCommand.php',
        'Doctrine\\ORM\\Tools\\Console\\Command\\RunDqlCommand' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Console/Command/RunDqlCommand.php',
        'Doctrine\\ORM\\Tools\\Console\\Command\\SchemaTool\\AbstractCommand' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Console/Command/SchemaTool/AbstractCommand.php',
        'Doctrine\\ORM\\Tools\\Console\\Command\\SchemaTool\\CreateCommand' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Console/Command/SchemaTool/CreateCommand.php',
        'Doctrine\\ORM\\Tools\\Console\\Command\\SchemaTool\\DropCommand' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Console/Command/SchemaTool/DropCommand.php',
        'Doctrine\\ORM\\Tools\\Console\\Command\\SchemaTool\\UpdateCommand' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Console/Command/SchemaTool/UpdateCommand.php',
        'Doctrine\\ORM\\Tools\\Console\\Command\\ValidateSchemaCommand' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Console/Command/ValidateSchemaCommand.php',
        'Doctrine\\ORM\\Tools\\Console\\ConsoleRunner' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Console/ConsoleRunner.php',
        'Doctrine\\ORM\\Tools\\Console\\EntityManagerProvider' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Console/EntityManagerProvider.php',
        'Doctrine\\ORM\\Tools\\Console\\EntityManagerProvider\\ConnectionFromManagerProvider' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Console/EntityManagerProvider/ConnectionFromManagerProvider.php',
        'Doctrine\\ORM\\Tools\\Console\\EntityManagerProvider\\HelperSetManagerProvider' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Console/EntityManagerProvider/HelperSetManagerProvider.php',
        'Doctrine\\ORM\\Tools\\Console\\EntityManagerProvider\\SingleManagerProvider' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Console/EntityManagerProvider/SingleManagerProvider.php',
        'Doctrine\\ORM\\Tools\\Console\\EntityManagerProvider\\UnknownManagerException' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Console/EntityManagerProvider/UnknownManagerException.php',
        'Doctrine\\ORM\\Tools\\Console\\Helper\\EntityManagerHelper' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Console/Helper/EntityManagerHelper.php',
        'Doctrine\\ORM\\Tools\\Console\\MetadataFilter' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Console/MetadataFilter.php',
        'Doctrine\\ORM\\Tools\\ConvertDoctrine1Schema' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/ConvertDoctrine1Schema.php',
        'Doctrine\\ORM\\Tools\\DebugUnitOfWorkListener' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/DebugUnitOfWorkListener.php',
        'Doctrine\\ORM\\Tools\\DisconnectedClassMetadataFactory' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/DisconnectedClassMetadataFactory.php',
        'Doctrine\\ORM\\Tools\\EntityGenerator' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/EntityGenerator.php',
        'Doctrine\\ORM\\Tools\\EntityRepositoryGenerator' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/EntityRepositoryGenerator.php',
        'Doctrine\\ORM\\Tools\\Event\\GenerateSchemaEventArgs' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Event/GenerateSchemaEventArgs.php',
        'Doctrine\\ORM\\Tools\\Event\\GenerateSchemaTableEventArgs' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Event/GenerateSchemaTableEventArgs.php',
        'Doctrine\\ORM\\Tools\\Exception\\MissingColumnException' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Exception/MissingColumnException.php',
        'Doctrine\\ORM\\Tools\\Exception\\NotSupported' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Exception/NotSupported.php',
        'Doctrine\\ORM\\Tools\\Export\\ClassMetadataExporter' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Export/ClassMetadataExporter.php',
        'Doctrine\\ORM\\Tools\\Export\\Driver\\AbstractExporter' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Export/Driver/AbstractExporter.php',
        'Doctrine\\ORM\\Tools\\Export\\Driver\\AnnotationExporter' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Export/Driver/AnnotationExporter.php',
        'Doctrine\\ORM\\Tools\\Export\\Driver\\PhpExporter' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Export/Driver/PhpExporter.php',
        'Doctrine\\ORM\\Tools\\Export\\Driver\\XmlExporter' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Export/Driver/XmlExporter.php',
        'Doctrine\\ORM\\Tools\\Export\\Driver\\YamlExporter' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Export/Driver/YamlExporter.php',
        'Doctrine\\ORM\\Tools\\Export\\ExportException' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Export/ExportException.php',
        'Doctrine\\ORM\\Tools\\Pagination\\CountOutputWalker' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Pagination/CountOutputWalker.php',
        'Doctrine\\ORM\\Tools\\Pagination\\CountWalker' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Pagination/CountWalker.php',
        'Doctrine\\ORM\\Tools\\Pagination\\Exception\\RowNumberOverFunctionNotEnabled' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Pagination/Exception/RowNumberOverFunctionNotEnabled.php',
        'Doctrine\\ORM\\Tools\\Pagination\\LimitSubqueryOutputWalker' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Pagination/LimitSubqueryOutputWalker.php',
        'Doctrine\\ORM\\Tools\\Pagination\\LimitSubqueryWalker' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Pagination/LimitSubqueryWalker.php',
        'Doctrine\\ORM\\Tools\\Pagination\\Paginator' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Pagination/Paginator.php',
        'Doctrine\\ORM\\Tools\\Pagination\\RowNumberOverFunction' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Pagination/RowNumberOverFunction.php',
        'Doctrine\\ORM\\Tools\\Pagination\\WhereInWalker' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Pagination/WhereInWalker.php',
        'Doctrine\\ORM\\Tools\\ResolveTargetEntityListener' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/ResolveTargetEntityListener.php',
        'Doctrine\\ORM\\Tools\\SchemaTool' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/SchemaTool.php',
        'Doctrine\\ORM\\Tools\\SchemaValidator' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/SchemaValidator.php',
        'Doctrine\\ORM\\Tools\\Setup' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/Setup.php',
        'Doctrine\\ORM\\Tools\\ToolEvents' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/ToolEvents.php',
        'Doctrine\\ORM\\Tools\\ToolsException' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Tools/ToolsException.php',
        'Doctrine\\ORM\\TransactionRequiredException' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/TransactionRequiredException.php',
        'Doctrine\\ORM\\UnexpectedResultException' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/UnexpectedResultException.php',
        'Doctrine\\ORM\\UnitOfWork' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/UnitOfWork.php',
        'Doctrine\\ORM\\Utility\\HierarchyDiscriminatorResolver' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Utility/HierarchyDiscriminatorResolver.php',
        'Doctrine\\ORM\\Utility\\IdentifierFlattener' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Utility/IdentifierFlattener.php',
        'Doctrine\\ORM\\Utility\\PersisterHelper' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Utility/PersisterHelper.php',
        'Doctrine\\ORM\\Version' => __DIR__ . '/..' . '/doctrine/orm/lib/Doctrine/ORM/Version.php',
        'Doctrine\\Persistence\\AbstractManagerRegistry' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/AbstractManagerRegistry.php',
        'Doctrine\\Persistence\\ConnectionRegistry' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/ConnectionRegistry.php',
        'Doctrine\\Persistence\\Event\\LifecycleEventArgs' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/Event/LifecycleEventArgs.php',
        'Doctrine\\Persistence\\Event\\LoadClassMetadataEventArgs' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/Event/LoadClassMetadataEventArgs.php',
        'Doctrine\\Persistence\\Event\\ManagerEventArgs' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/Event/ManagerEventArgs.php',
        'Doctrine\\Persistence\\Event\\OnClearEventArgs' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/Event/OnClearEventArgs.php',
        'Doctrine\\Persistence\\Event\\PreUpdateEventArgs' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/Event/PreUpdateEventArgs.php',
        'Doctrine\\Persistence\\ManagerRegistry' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/ManagerRegistry.php',
        'Doctrine\\Persistence\\Mapping\\AbstractClassMetadataFactory' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/Mapping/AbstractClassMetadataFactory.php',
        'Doctrine\\Persistence\\Mapping\\ClassMetadata' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/Mapping/ClassMetadata.php',
        'Doctrine\\Persistence\\Mapping\\ClassMetadataFactory' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/Mapping/ClassMetadataFactory.php',
        'Doctrine\\Persistence\\Mapping\\Driver\\AnnotationDriver' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/Mapping/Driver/AnnotationDriver.php',
        'Doctrine\\Persistence\\Mapping\\Driver\\DefaultFileLocator' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/Mapping/Driver/DefaultFileLocator.php',
        'Doctrine\\Persistence\\Mapping\\Driver\\FileDriver' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/Mapping/Driver/FileDriver.php',
        'Doctrine\\Persistence\\Mapping\\Driver\\FileLocator' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/Mapping/Driver/FileLocator.php',
        'Doctrine\\Persistence\\Mapping\\Driver\\MappingDriver' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/Mapping/Driver/MappingDriver.php',
        'Doctrine\\Persistence\\Mapping\\Driver\\MappingDriverChain' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/Mapping/Driver/MappingDriverChain.php',
        'Doctrine\\Persistence\\Mapping\\Driver\\PHPDriver' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/Mapping/Driver/PHPDriver.php',
        'Doctrine\\Persistence\\Mapping\\Driver\\StaticPHPDriver' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/Mapping/Driver/StaticPHPDriver.php',
        'Doctrine\\Persistence\\Mapping\\Driver\\SymfonyFileLocator' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/Mapping/Driver/SymfonyFileLocator.php',
        'Doctrine\\Persistence\\Mapping\\MappingException' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/Mapping/MappingException.php',
        'Doctrine\\Persistence\\Mapping\\ProxyClassNameResolver' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/Mapping/ProxyClassNameResolver.php',
        'Doctrine\\Persistence\\Mapping\\ReflectionService' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/Mapping/ReflectionService.php',
        'Doctrine\\Persistence\\Mapping\\RuntimeReflectionService' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/Mapping/RuntimeReflectionService.php',
        'Doctrine\\Persistence\\Mapping\\StaticReflectionService' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/Mapping/StaticReflectionService.php',
        'Doctrine\\Persistence\\NotifyPropertyChanged' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/NotifyPropertyChanged.php',
        'Doctrine\\Persistence\\ObjectManager' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/ObjectManager.php',
        'Doctrine\\Persistence\\ObjectManagerAware' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/ObjectManagerAware.php',
        'Doctrine\\Persistence\\ObjectManagerDecorator' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/ObjectManagerDecorator.php',
        'Doctrine\\Persistence\\ObjectRepository' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/ObjectRepository.php',
        'Doctrine\\Persistence\\PropertyChangedListener' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/PropertyChangedListener.php',
        'Doctrine\\Persistence\\Proxy' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/Proxy.php',
        'Doctrine\\Persistence\\Reflection\\RuntimePublicReflectionProperty' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/Reflection/RuntimePublicReflectionProperty.php',
        'Doctrine\\Persistence\\Reflection\\TypedNoDefaultReflectionProperty' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/Reflection/TypedNoDefaultReflectionProperty.php',
        'Doctrine\\Persistence\\Reflection\\TypedNoDefaultReflectionPropertyBase' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/Reflection/TypedNoDefaultReflectionPropertyBase.php',
        'Doctrine\\Persistence\\Reflection\\TypedNoDefaultRuntimePublicReflectionProperty' => __DIR__ . '/..' . '/doctrine/persistence/lib/Doctrine/Persistence/Reflection/TypedNoDefaultRuntimePublicReflectionProperty.php',
        'Doctrine\\SqlFormatter\\CliHighlighter' => __DIR__ . '/..' . '/doctrine/sql-formatter/src/CliHighlighter.php',
        'Doctrine\\SqlFormatter\\Cursor' => __DIR__ . '/..' . '/doctrine/sql-formatter/src/Cursor.php',
        'Doctrine\\SqlFormatter\\Highlighter' => __DIR__ . '/..' . '/doctrine/sql-formatter/src/Highlighter.php',
        'Doctrine\\SqlFormatter\\HtmlHighlighter' => __DIR__ . '/..' . '/doctrine/sql-formatter/src/HtmlHighlighter.php',
        'Doctrine\\SqlFormatter\\NullHighlighter' => __DIR__ . '/..' . '/doctrine/sql-formatter/src/NullHighlighter.php',
        'Doctrine\\SqlFormatter\\SqlFormatter' => __DIR__ . '/..' . '/doctrine/sql-formatter/src/SqlFormatter.php',
        'Doctrine\\SqlFormatter\\Token' => __DIR__ . '/..' . '/doctrine/sql-formatter/src/Token.php',
        'Doctrine\\SqlFormatter\\Tokenizer' => __DIR__ . '/..' . '/doctrine/sql-formatter/src/Tokenizer.php',
        'Fig\\Link\\EvolvableLinkProviderTrait' => __DIR__ . '/..' . '/fig/link-util/src/EvolvableLinkProviderTrait.php',
        'Fig\\Link\\EvolvableLinkTrait' => __DIR__ . '/..' . '/fig/link-util/src/EvolvableLinkTrait.php',
        'Fig\\Link\\GenericLinkProvider' => __DIR__ . '/..' . '/fig/link-util/src/GenericLinkProvider.php',
        'Fig\\Link\\Link' => __DIR__ . '/..' . '/fig/link-util/src/Link.php',
        'Fig\\Link\\LinkProviderTrait' => __DIR__ . '/..' . '/fig/link-util/src/LinkProviderTrait.php',
        'Fig\\Link\\LinkTrait' => __DIR__ . '/..' . '/fig/link-util/src/LinkTrait.php',
        'Fig\\Link\\Relations' => __DIR__ . '/..' . '/fig/link-util/src/Relations.php',
        'Fig\\Link\\TemplatedHrefTrait' => __DIR__ . '/..' . '/fig/link-util/src/TemplatedHrefTrait.php',
        'JsonException' => __DIR__ . '/..' . '/symfony/polyfill-php73/Resources/stubs/JsonException.php',
        'Laminas\\Code\\DeclareStatement' => __DIR__ . '/..' . '/laminas/laminas-code/src/DeclareStatement.php',
        'Laminas\\Code\\Exception\\BadMethodCallException' => __DIR__ . '/..' . '/laminas/laminas-code/src/Exception/BadMethodCallException.php',
        'Laminas\\Code\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/laminas/laminas-code/src/Exception/ExceptionInterface.php',
        'Laminas\\Code\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/laminas/laminas-code/src/Exception/InvalidArgumentException.php',
        'Laminas\\Code\\Exception\\RuntimeException' => __DIR__ . '/..' . '/laminas/laminas-code/src/Exception/RuntimeException.php',
        'Laminas\\Code\\Generator\\AbstractGenerator' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/AbstractGenerator.php',
        'Laminas\\Code\\Generator\\AbstractMemberGenerator' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/AbstractMemberGenerator.php',
        'Laminas\\Code\\Generator\\BodyGenerator' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/BodyGenerator.php',
        'Laminas\\Code\\Generator\\ClassGenerator' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/ClassGenerator.php',
        'Laminas\\Code\\Generator\\DocBlockGenerator' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/DocBlockGenerator.php',
        'Laminas\\Code\\Generator\\DocBlock\\Tag' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/DocBlock/Tag.php',
        'Laminas\\Code\\Generator\\DocBlock\\TagManager' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/DocBlock/TagManager.php',
        'Laminas\\Code\\Generator\\DocBlock\\Tag\\AbstractTypeableTag' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/DocBlock/Tag/AbstractTypeableTag.php',
        'Laminas\\Code\\Generator\\DocBlock\\Tag\\AuthorTag' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/DocBlock/Tag/AuthorTag.php',
        'Laminas\\Code\\Generator\\DocBlock\\Tag\\GenericTag' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/DocBlock/Tag/GenericTag.php',
        'Laminas\\Code\\Generator\\DocBlock\\Tag\\LicenseTag' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/DocBlock/Tag/LicenseTag.php',
        'Laminas\\Code\\Generator\\DocBlock\\Tag\\MethodTag' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/DocBlock/Tag/MethodTag.php',
        'Laminas\\Code\\Generator\\DocBlock\\Tag\\ParamTag' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/DocBlock/Tag/ParamTag.php',
        'Laminas\\Code\\Generator\\DocBlock\\Tag\\PropertyTag' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/DocBlock/Tag/PropertyTag.php',
        'Laminas\\Code\\Generator\\DocBlock\\Tag\\ReturnTag' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/DocBlock/Tag/ReturnTag.php',
        'Laminas\\Code\\Generator\\DocBlock\\Tag\\TagInterface' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/DocBlock/Tag/TagInterface.php',
        'Laminas\\Code\\Generator\\DocBlock\\Tag\\ThrowsTag' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/DocBlock/Tag/ThrowsTag.php',
        'Laminas\\Code\\Generator\\DocBlock\\Tag\\VarTag' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/DocBlock/Tag/VarTag.php',
        'Laminas\\Code\\Generator\\EnumGenerator\\Cases\\BackedCases' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/EnumGenerator/Cases/BackedCases.php',
        'Laminas\\Code\\Generator\\EnumGenerator\\Cases\\CaseFactory' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/EnumGenerator/Cases/CaseFactory.php',
        'Laminas\\Code\\Generator\\EnumGenerator\\Cases\\PureCases' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/EnumGenerator/Cases/PureCases.php',
        'Laminas\\Code\\Generator\\EnumGenerator\\EnumGenerator' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/EnumGenerator/EnumGenerator.php',
        'Laminas\\Code\\Generator\\EnumGenerator\\Name' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/EnumGenerator/Name.php',
        'Laminas\\Code\\Generator\\Exception\\ClassNotFoundException' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/Exception/ClassNotFoundException.php',
        'Laminas\\Code\\Generator\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/Exception/ExceptionInterface.php',
        'Laminas\\Code\\Generator\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/Exception/InvalidArgumentException.php',
        'Laminas\\Code\\Generator\\Exception\\RuntimeException' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/Exception/RuntimeException.php',
        'Laminas\\Code\\Generator\\FileGenerator' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/FileGenerator.php',
        'Laminas\\Code\\Generator\\GeneratorInterface' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/GeneratorInterface.php',
        'Laminas\\Code\\Generator\\InterfaceGenerator' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/InterfaceGenerator.php',
        'Laminas\\Code\\Generator\\MethodGenerator' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/MethodGenerator.php',
        'Laminas\\Code\\Generator\\ParameterGenerator' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/ParameterGenerator.php',
        'Laminas\\Code\\Generator\\PromotedParameterGenerator' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/PromotedParameterGenerator.php',
        'Laminas\\Code\\Generator\\PropertyGenerator' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/PropertyGenerator.php',
        'Laminas\\Code\\Generator\\PropertyValueGenerator' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/PropertyValueGenerator.php',
        'Laminas\\Code\\Generator\\TraitGenerator' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/TraitGenerator.php',
        'Laminas\\Code\\Generator\\TraitUsageGenerator' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/TraitUsageGenerator.php',
        'Laminas\\Code\\Generator\\TraitUsageInterface' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/TraitUsageInterface.php',
        'Laminas\\Code\\Generator\\TypeGenerator' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/TypeGenerator.php',
        'Laminas\\Code\\Generator\\TypeGenerator\\AtomicType' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/TypeGenerator/AtomicType.php',
        'Laminas\\Code\\Generator\\ValueGenerator' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generator/ValueGenerator.php',
        'Laminas\\Code\\Generic\\Prototype\\PrototypeClassFactory' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generic/Prototype/PrototypeClassFactory.php',
        'Laminas\\Code\\Generic\\Prototype\\PrototypeGenericInterface' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generic/Prototype/PrototypeGenericInterface.php',
        'Laminas\\Code\\Generic\\Prototype\\PrototypeInterface' => __DIR__ . '/..' . '/laminas/laminas-code/src/Generic/Prototype/PrototypeInterface.php',
        'Laminas\\Code\\Reflection\\ClassReflection' => __DIR__ . '/..' . '/laminas/laminas-code/src/Reflection/ClassReflection.php',
        'Laminas\\Code\\Reflection\\DocBlockReflection' => __DIR__ . '/..' . '/laminas/laminas-code/src/Reflection/DocBlockReflection.php',
        'Laminas\\Code\\Reflection\\DocBlock\\TagManager' => __DIR__ . '/..' . '/laminas/laminas-code/src/Reflection/DocBlock/TagManager.php',
        'Laminas\\Code\\Reflection\\DocBlock\\Tag\\AuthorTag' => __DIR__ . '/..' . '/laminas/laminas-code/src/Reflection/DocBlock/Tag/AuthorTag.php',
        'Laminas\\Code\\Reflection\\DocBlock\\Tag\\GenericTag' => __DIR__ . '/..' . '/laminas/laminas-code/src/Reflection/DocBlock/Tag/GenericTag.php',
        'Laminas\\Code\\Reflection\\DocBlock\\Tag\\LicenseTag' => __DIR__ . '/..' . '/laminas/laminas-code/src/Reflection/DocBlock/Tag/LicenseTag.php',
        'Laminas\\Code\\Reflection\\DocBlock\\Tag\\MethodTag' => __DIR__ . '/..' . '/laminas/laminas-code/src/Reflection/DocBlock/Tag/MethodTag.php',
        'Laminas\\Code\\Reflection\\DocBlock\\Tag\\ParamTag' => __DIR__ . '/..' . '/laminas/laminas-code/src/Reflection/DocBlock/Tag/ParamTag.php',
        'Laminas\\Code\\Reflection\\DocBlock\\Tag\\PhpDocTypedTagInterface' => __DIR__ . '/..' . '/laminas/laminas-code/src/Reflection/DocBlock/Tag/PhpDocTypedTagInterface.php',
        'Laminas\\Code\\Reflection\\DocBlock\\Tag\\PropertyTag' => __DIR__ . '/..' . '/laminas/laminas-code/src/Reflection/DocBlock/Tag/PropertyTag.php',
        'Laminas\\Code\\Reflection\\DocBlock\\Tag\\ReturnTag' => __DIR__ . '/..' . '/laminas/laminas-code/src/Reflection/DocBlock/Tag/ReturnTag.php',
        'Laminas\\Code\\Reflection\\DocBlock\\Tag\\TagInterface' => __DIR__ . '/..' . '/laminas/laminas-code/src/Reflection/DocBlock/Tag/TagInterface.php',
        'Laminas\\Code\\Reflection\\DocBlock\\Tag\\ThrowsTag' => __DIR__ . '/..' . '/laminas/laminas-code/src/Reflection/DocBlock/Tag/ThrowsTag.php',
        'Laminas\\Code\\Reflection\\DocBlock\\Tag\\VarTag' => __DIR__ . '/..' . '/laminas/laminas-code/src/Reflection/DocBlock/Tag/VarTag.php',
        'Laminas\\Code\\Reflection\\Exception\\BadMethodCallException' => __DIR__ . '/..' . '/laminas/laminas-code/src/Reflection/Exception/BadMethodCallException.php',
        'Laminas\\Code\\Reflection\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/laminas/laminas-code/src/Reflection/Exception/ExceptionInterface.php',
        'Laminas\\Code\\Reflection\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/laminas/laminas-code/src/Reflection/Exception/InvalidArgumentException.php',
        'Laminas\\Code\\Reflection\\Exception\\RuntimeException' => __DIR__ . '/..' . '/laminas/laminas-code/src/Reflection/Exception/RuntimeException.php',
        'Laminas\\Code\\Reflection\\FunctionReflection' => __DIR__ . '/..' . '/laminas/laminas-code/src/Reflection/FunctionReflection.php',
        'Laminas\\Code\\Reflection\\MethodReflection' => __DIR__ . '/..' . '/laminas/laminas-code/src/Reflection/MethodReflection.php',
        'Laminas\\Code\\Reflection\\ParameterReflection' => __DIR__ . '/..' . '/laminas/laminas-code/src/Reflection/ParameterReflection.php',
        'Laminas\\Code\\Reflection\\PropertyReflection' => __DIR__ . '/..' . '/laminas/laminas-code/src/Reflection/PropertyReflection.php',
        'Laminas\\Code\\Reflection\\ReflectionInterface' => __DIR__ . '/..' . '/laminas/laminas-code/src/Reflection/ReflectionInterface.php',
        'Laminas\\Code\\Scanner\\DocBlockScanner' => __DIR__ . '/..' . '/laminas/laminas-code/src/Scanner/DocBlockScanner.php',
        'Negotiation\\AbstractNegotiator' => __DIR__ . '/..' . '/willdurand/negotiation/src/Negotiation/AbstractNegotiator.php',
        'Negotiation\\Accept' => __DIR__ . '/..' . '/willdurand/negotiation/src/Negotiation/Accept.php',
        'Negotiation\\AcceptCharset' => __DIR__ . '/..' . '/willdurand/negotiation/src/Negotiation/AcceptCharset.php',
        'Negotiation\\AcceptEncoding' => __DIR__ . '/..' . '/willdurand/negotiation/src/Negotiation/AcceptEncoding.php',
        'Negotiation\\AcceptHeader' => __DIR__ . '/..' . '/willdurand/negotiation/src/Negotiation/AcceptHeader.php',
        'Negotiation\\AcceptLanguage' => __DIR__ . '/..' . '/willdurand/negotiation/src/Negotiation/AcceptLanguage.php',
        'Negotiation\\AcceptMatch' => __DIR__ . '/..' . '/willdurand/negotiation/src/Negotiation/AcceptMatch.php',
        'Negotiation\\BaseAccept' => __DIR__ . '/..' . '/willdurand/negotiation/src/Negotiation/BaseAccept.php',
        'Negotiation\\CharsetNegotiator' => __DIR__ . '/..' . '/willdurand/negotiation/src/Negotiation/CharsetNegotiator.php',
        'Negotiation\\EncodingNegotiator' => __DIR__ . '/..' . '/willdurand/negotiation/src/Negotiation/EncodingNegotiator.php',
        'Negotiation\\Exception\\Exception' => __DIR__ . '/..' . '/willdurand/negotiation/src/Negotiation/Exception/Exception.php',
        'Negotiation\\Exception\\InvalidArgument' => __DIR__ . '/..' . '/willdurand/negotiation/src/Negotiation/Exception/InvalidArgument.php',
        'Negotiation\\Exception\\InvalidHeader' => __DIR__ . '/..' . '/willdurand/negotiation/src/Negotiation/Exception/InvalidHeader.php',
        'Negotiation\\Exception\\InvalidLanguage' => __DIR__ . '/..' . '/willdurand/negotiation/src/Negotiation/Exception/InvalidLanguage.php',
        'Negotiation\\Exception\\InvalidMediaType' => __DIR__ . '/..' . '/willdurand/negotiation/src/Negotiation/Exception/InvalidMediaType.php',
        'Negotiation\\LanguageNegotiator' => __DIR__ . '/..' . '/willdurand/negotiation/src/Negotiation/LanguageNegotiator.php',
        'Negotiation\\Negotiator' => __DIR__ . '/..' . '/willdurand/negotiation/src/Negotiation/Negotiator.php',
        'Nelmio\\CorsBundle\\DependencyInjection\\Compiler\\CorsConfigurationProviderPass' => __DIR__ . '/..' . '/nelmio/cors-bundle/DependencyInjection/Compiler/CorsConfigurationProviderPass.php',
        'Nelmio\\CorsBundle\\DependencyInjection\\Configuration' => __DIR__ . '/..' . '/nelmio/cors-bundle/DependencyInjection/Configuration.php',
        'Nelmio\\CorsBundle\\DependencyInjection\\NelmioCorsExtension' => __DIR__ . '/..' . '/nelmio/cors-bundle/DependencyInjection/NelmioCorsExtension.php',
        'Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener' => __DIR__ . '/..' . '/nelmio/cors-bundle/EventListener/CacheableResponseVaryListener.php',
        'Nelmio\\CorsBundle\\EventListener\\CorsListener' => __DIR__ . '/..' . '/nelmio/cors-bundle/EventListener/CorsListener.php',
        'Nelmio\\CorsBundle\\NelmioCorsBundle' => __DIR__ . '/..' . '/nelmio/cors-bundle/NelmioCorsBundle.php',
        'Nelmio\\CorsBundle\\Options\\ConfigProvider' => __DIR__ . '/..' . '/nelmio/cors-bundle/Options/ConfigProvider.php',
        'Nelmio\\CorsBundle\\Options\\ProviderInterface' => __DIR__ . '/..' . '/nelmio/cors-bundle/Options/ProviderInterface.php',
        'Nelmio\\CorsBundle\\Options\\Resolver' => __DIR__ . '/..' . '/nelmio/cors-bundle/Options/Resolver.php',
        'Nelmio\\CorsBundle\\Options\\ResolverInterface' => __DIR__ . '/..' . '/nelmio/cors-bundle/Options/ResolverInterface.php',
        'Normalizer' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php',
        'PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstExprArrayItemNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprArrayItemNode.php',
        'PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstExprArrayNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprArrayNode.php',
        'PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstExprFalseNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprFalseNode.php',
        'PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstExprFloatNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprFloatNode.php',
        'PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstExprIntegerNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprIntegerNode.php',
        'PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstExprNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprNode.php',
        'PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstExprNullNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprNullNode.php',
        'PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstExprStringNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprStringNode.php',
        'PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstExprTrueNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprTrueNode.php',
        'PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstFetchNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstFetchNode.php',
        'PHPStan\\PhpDocParser\\Ast\\Node' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/Node.php',
        'PHPStan\\PhpDocParser\\Ast\\NodeAttributes' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/NodeAttributes.php',
        'PHPStan\\PhpDocParser\\Ast\\PhpDoc\\DeprecatedTagValueNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/PhpDoc/DeprecatedTagValueNode.php',
        'PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ExtendsTagValueNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/PhpDoc/ExtendsTagValueNode.php',
        'PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/PhpDoc/GenericTagValueNode.php',
        'PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/PhpDoc/ImplementsTagValueNode.php',
        'PHPStan\\PhpDocParser\\Ast\\PhpDoc\\InvalidTagValueNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/PhpDoc/InvalidTagValueNode.php',
        'PHPStan\\PhpDocParser\\Ast\\PhpDoc\\MethodTagValueNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/PhpDoc/MethodTagValueNode.php',
        'PHPStan\\PhpDocParser\\Ast\\PhpDoc\\MethodTagValueParameterNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/PhpDoc/MethodTagValueParameterNode.php',
        'PHPStan\\PhpDocParser\\Ast\\PhpDoc\\MixinTagValueNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/PhpDoc/MixinTagValueNode.php',
        'PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/PhpDoc/ParamTagValueNode.php',
        'PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocChildNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/PhpDoc/PhpDocChildNode.php',
        'PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/PhpDoc/PhpDocNode.php',
        'PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/PhpDoc/PhpDocTagNode.php',
        'PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagValueNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/PhpDoc/PhpDocTagValueNode.php',
        'PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/PhpDoc/PhpDocTextNode.php',
        'PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PropertyTagValueNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/PhpDoc/PropertyTagValueNode.php',
        'PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/PhpDoc/ReturnTagValueNode.php',
        'PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/PhpDoc/TemplateTagValueNode.php',
        'PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ThrowsTagValueNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/PhpDoc/ThrowsTagValueNode.php',
        'PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TypeAliasImportTagValueNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/PhpDoc/TypeAliasImportTagValueNode.php',
        'PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TypeAliasTagValueNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/PhpDoc/TypeAliasTagValueNode.php',
        'PHPStan\\PhpDocParser\\Ast\\PhpDoc\\UsesTagValueNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/PhpDoc/UsesTagValueNode.php',
        'PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/PhpDoc/VarTagValueNode.php',
        'PHPStan\\PhpDocParser\\Ast\\Type\\ArrayShapeItemNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/Type/ArrayShapeItemNode.php',
        'PHPStan\\PhpDocParser\\Ast\\Type\\ArrayShapeNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/Type/ArrayShapeNode.php',
        'PHPStan\\PhpDocParser\\Ast\\Type\\ArrayTypeNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/Type/ArrayTypeNode.php',
        'PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/Type/CallableTypeNode.php',
        'PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/Type/CallableTypeParameterNode.php',
        'PHPStan\\PhpDocParser\\Ast\\Type\\ConstTypeNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/Type/ConstTypeNode.php',
        'PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/Type/GenericTypeNode.php',
        'PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/Type/IdentifierTypeNode.php',
        'PHPStan\\PhpDocParser\\Ast\\Type\\IntersectionTypeNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/Type/IntersectionTypeNode.php',
        'PHPStan\\PhpDocParser\\Ast\\Type\\NullableTypeNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/Type/NullableTypeNode.php',
        'PHPStan\\PhpDocParser\\Ast\\Type\\ThisTypeNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/Type/ThisTypeNode.php',
        'PHPStan\\PhpDocParser\\Ast\\Type\\TypeNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/Type/TypeNode.php',
        'PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Ast/Type/UnionTypeNode.php',
        'PHPStan\\PhpDocParser\\Lexer\\Lexer' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Lexer/Lexer.php',
        'PHPStan\\PhpDocParser\\Parser\\ConstExprParser' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Parser/ConstExprParser.php',
        'PHPStan\\PhpDocParser\\Parser\\ParserException' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Parser/ParserException.php',
        'PHPStan\\PhpDocParser\\Parser\\PhpDocParser' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Parser/PhpDocParser.php',
        'PHPStan\\PhpDocParser\\Parser\\TokenIterator' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Parser/TokenIterator.php',
        'PHPStan\\PhpDocParser\\Parser\\TypeParser' => __DIR__ . '/..' . '/phpstan/phpdoc-parser/src/Parser/TypeParser.php',
        'PackageVersions\\FallbackVersions' => __DIR__ . '/..' . '/composer/package-versions-deprecated/src/PackageVersions/FallbackVersions.php',
        'PackageVersions\\Installer' => __DIR__ . '/..' . '/composer/package-versions-deprecated/src/PackageVersions/Installer.php',
        'PackageVersions\\Versions' => __DIR__ . '/..' . '/composer/package-versions-deprecated/src/PackageVersions/Versions.php',
        'PhpParser\\Builder' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Builder.php',
        'PhpParser\\BuilderFactory' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/BuilderFactory.php',
        'PhpParser\\BuilderHelpers' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/BuilderHelpers.php',
        'PhpParser\\Builder\\ClassConst' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Builder/ClassConst.php',
        'PhpParser\\Builder\\Class_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Builder/Class_.php',
        'PhpParser\\Builder\\Declaration' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Builder/Declaration.php',
        'PhpParser\\Builder\\EnumCase' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Builder/EnumCase.php',
        'PhpParser\\Builder\\Enum_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Builder/Enum_.php',
        'PhpParser\\Builder\\FunctionLike' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Builder/FunctionLike.php',
        'PhpParser\\Builder\\Function_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Builder/Function_.php',
        'PhpParser\\Builder\\Interface_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Builder/Interface_.php',
        'PhpParser\\Builder\\Method' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Builder/Method.php',
        'PhpParser\\Builder\\Namespace_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Builder/Namespace_.php',
        'PhpParser\\Builder\\Param' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Builder/Param.php',
        'PhpParser\\Builder\\Property' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Builder/Property.php',
        'PhpParser\\Builder\\TraitUse' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Builder/TraitUse.php',
        'PhpParser\\Builder\\TraitUseAdaptation' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Builder/TraitUseAdaptation.php',
        'PhpParser\\Builder\\Trait_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Builder/Trait_.php',
        'PhpParser\\Builder\\Use_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Builder/Use_.php',
        'PhpParser\\Comment' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Comment.php',
        'PhpParser\\Comment\\Doc' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Comment/Doc.php',
        'PhpParser\\ConstExprEvaluationException' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/ConstExprEvaluationException.php',
        'PhpParser\\ConstExprEvaluator' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/ConstExprEvaluator.php',
        'PhpParser\\Error' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Error.php',
        'PhpParser\\ErrorHandler' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/ErrorHandler.php',
        'PhpParser\\ErrorHandler\\Collecting' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/ErrorHandler/Collecting.php',
        'PhpParser\\ErrorHandler\\Throwing' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/ErrorHandler/Throwing.php',
        'PhpParser\\Internal\\DiffElem' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Internal/DiffElem.php',
        'PhpParser\\Internal\\Differ' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Internal/Differ.php',
        'PhpParser\\Internal\\PrintableNewAnonClassNode' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Internal/PrintableNewAnonClassNode.php',
        'PhpParser\\Internal\\TokenStream' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Internal/TokenStream.php',
        'PhpParser\\JsonDecoder' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/JsonDecoder.php',
        'PhpParser\\Lexer' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Lexer.php',
        'PhpParser\\Lexer\\Emulative' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Lexer/Emulative.php',
        'PhpParser\\Lexer\\TokenEmulator\\AttributeEmulator' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/AttributeEmulator.php',
        'PhpParser\\Lexer\\TokenEmulator\\CoaleseEqualTokenEmulator' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/CoaleseEqualTokenEmulator.php',
        'PhpParser\\Lexer\\TokenEmulator\\EnumTokenEmulator' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/EnumTokenEmulator.php',
        'PhpParser\\Lexer\\TokenEmulator\\ExplicitOctalEmulator' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/ExplicitOctalEmulator.php',
        'PhpParser\\Lexer\\TokenEmulator\\FlexibleDocStringEmulator' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/FlexibleDocStringEmulator.php',
        'PhpParser\\Lexer\\TokenEmulator\\FnTokenEmulator' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/FnTokenEmulator.php',
        'PhpParser\\Lexer\\TokenEmulator\\KeywordEmulator' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/KeywordEmulator.php',
        'PhpParser\\Lexer\\TokenEmulator\\MatchTokenEmulator' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/MatchTokenEmulator.php',
        'PhpParser\\Lexer\\TokenEmulator\\NullsafeTokenEmulator' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/NullsafeTokenEmulator.php',
        'PhpParser\\Lexer\\TokenEmulator\\NumericLiteralSeparatorEmulator' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/NumericLiteralSeparatorEmulator.php',
        'PhpParser\\Lexer\\TokenEmulator\\ReadonlyTokenEmulator' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/ReadonlyTokenEmulator.php',
        'PhpParser\\Lexer\\TokenEmulator\\ReverseEmulator' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/ReverseEmulator.php',
        'PhpParser\\Lexer\\TokenEmulator\\TokenEmulator' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/TokenEmulator.php',
        'PhpParser\\NameContext' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/NameContext.php',
        'PhpParser\\Node' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node.php',
        'PhpParser\\NodeAbstract' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/NodeAbstract.php',
        'PhpParser\\NodeDumper' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/NodeDumper.php',
        'PhpParser\\NodeFinder' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/NodeFinder.php',
        'PhpParser\\NodeTraverser' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/NodeTraverser.php',
        'PhpParser\\NodeTraverserInterface' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/NodeTraverserInterface.php',
        'PhpParser\\NodeVisitor' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/NodeVisitor.php',
        'PhpParser\\NodeVisitorAbstract' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/NodeVisitorAbstract.php',
        'PhpParser\\NodeVisitor\\CloningVisitor' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/NodeVisitor/CloningVisitor.php',
        'PhpParser\\NodeVisitor\\FindingVisitor' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/NodeVisitor/FindingVisitor.php',
        'PhpParser\\NodeVisitor\\FirstFindingVisitor' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/NodeVisitor/FirstFindingVisitor.php',
        'PhpParser\\NodeVisitor\\NameResolver' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/NodeVisitor/NameResolver.php',
        'PhpParser\\NodeVisitor\\NodeConnectingVisitor' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/NodeVisitor/NodeConnectingVisitor.php',
        'PhpParser\\NodeVisitor\\ParentConnectingVisitor' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/NodeVisitor/ParentConnectingVisitor.php',
        'PhpParser\\Node\\Arg' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Arg.php',
        'PhpParser\\Node\\Attribute' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Attribute.php',
        'PhpParser\\Node\\AttributeGroup' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/AttributeGroup.php',
        'PhpParser\\Node\\ComplexType' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/ComplexType.php',
        'PhpParser\\Node\\Const_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Const_.php',
        'PhpParser\\Node\\Expr' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr.php',
        'PhpParser\\Node\\Expr\\ArrayDimFetch' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/ArrayDimFetch.php',
        'PhpParser\\Node\\Expr\\ArrayItem' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/ArrayItem.php',
        'PhpParser\\Node\\Expr\\Array_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Array_.php',
        'PhpParser\\Node\\Expr\\ArrowFunction' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/ArrowFunction.php',
        'PhpParser\\Node\\Expr\\Assign' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Assign.php',
        'PhpParser\\Node\\Expr\\AssignOp' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp.php',
        'PhpParser\\Node\\Expr\\AssignOp\\BitwiseAnd' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseAnd.php',
        'PhpParser\\Node\\Expr\\AssignOp\\BitwiseOr' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseOr.php',
        'PhpParser\\Node\\Expr\\AssignOp\\BitwiseXor' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseXor.php',
        'PhpParser\\Node\\Expr\\AssignOp\\Coalesce' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Coalesce.php',
        'PhpParser\\Node\\Expr\\AssignOp\\Concat' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Concat.php',
        'PhpParser\\Node\\Expr\\AssignOp\\Div' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Div.php',
        'PhpParser\\Node\\Expr\\AssignOp\\Minus' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Minus.php',
        'PhpParser\\Node\\Expr\\AssignOp\\Mod' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Mod.php',
        'PhpParser\\Node\\Expr\\AssignOp\\Mul' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Mul.php',
        'PhpParser\\Node\\Expr\\AssignOp\\Plus' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Plus.php',
        'PhpParser\\Node\\Expr\\AssignOp\\Pow' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Pow.php',
        'PhpParser\\Node\\Expr\\AssignOp\\ShiftLeft' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/ShiftLeft.php',
        'PhpParser\\Node\\Expr\\AssignOp\\ShiftRight' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/ShiftRight.php',
        'PhpParser\\Node\\Expr\\AssignRef' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignRef.php',
        'PhpParser\\Node\\Expr\\BinaryOp' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp.php',
        'PhpParser\\Node\\Expr\\BinaryOp\\BitwiseAnd' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseAnd.php',
        'PhpParser\\Node\\Expr\\BinaryOp\\BitwiseOr' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseOr.php',
        'PhpParser\\Node\\Expr\\BinaryOp\\BitwiseXor' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseXor.php',
        'PhpParser\\Node\\Expr\\BinaryOp\\BooleanAnd' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanAnd.php',
        'PhpParser\\Node\\Expr\\BinaryOp\\BooleanOr' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanOr.php',
        'PhpParser\\Node\\Expr\\BinaryOp\\Coalesce' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Coalesce.php',
        'PhpParser\\Node\\Expr\\BinaryOp\\Concat' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Concat.php',
        'PhpParser\\Node\\Expr\\BinaryOp\\Div' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Div.php',
        'PhpParser\\Node\\Expr\\BinaryOp\\Equal' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Equal.php',
        'PhpParser\\Node\\Expr\\BinaryOp\\Greater' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Greater.php',
        'PhpParser\\Node\\Expr\\BinaryOp\\GreaterOrEqual' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/GreaterOrEqual.php',
        'PhpParser\\Node\\Expr\\BinaryOp\\Identical' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Identical.php',
        'PhpParser\\Node\\Expr\\BinaryOp\\LogicalAnd' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalAnd.php',
        'PhpParser\\Node\\Expr\\BinaryOp\\LogicalOr' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalOr.php',
        'PhpParser\\Node\\Expr\\BinaryOp\\LogicalXor' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalXor.php',
        'PhpParser\\Node\\Expr\\BinaryOp\\Minus' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Minus.php',
        'PhpParser\\Node\\Expr\\BinaryOp\\Mod' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Mod.php',
        'PhpParser\\Node\\Expr\\BinaryOp\\Mul' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Mul.php',
        'PhpParser\\Node\\Expr\\BinaryOp\\NotEqual' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/NotEqual.php',
        'PhpParser\\Node\\Expr\\BinaryOp\\NotIdentical' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/NotIdentical.php',
        'PhpParser\\Node\\Expr\\BinaryOp\\Plus' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Plus.php',
        'PhpParser\\Node\\Expr\\BinaryOp\\Pow' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Pow.php',
        'PhpParser\\Node\\Expr\\BinaryOp\\ShiftLeft' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/ShiftLeft.php',
        'PhpParser\\Node\\Expr\\BinaryOp\\ShiftRight' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/ShiftRight.php',
        'PhpParser\\Node\\Expr\\BinaryOp\\Smaller' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Smaller.php',
        'PhpParser\\Node\\Expr\\BinaryOp\\SmallerOrEqual' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/SmallerOrEqual.php',
        'PhpParser\\Node\\Expr\\BinaryOp\\Spaceship' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Spaceship.php',
        'PhpParser\\Node\\Expr\\BitwiseNot' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BitwiseNot.php',
        'PhpParser\\Node\\Expr\\BooleanNot' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/BooleanNot.php',
        'PhpParser\\Node\\Expr\\CallLike' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/CallLike.php',
        'PhpParser\\Node\\Expr\\Cast' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Cast.php',
        'PhpParser\\Node\\Expr\\Cast\\Array_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Array_.php',
        'PhpParser\\Node\\Expr\\Cast\\Bool_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Bool_.php',
        'PhpParser\\Node\\Expr\\Cast\\Double' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Double.php',
        'PhpParser\\Node\\Expr\\Cast\\Int_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Int_.php',
        'PhpParser\\Node\\Expr\\Cast\\Object_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Object_.php',
        'PhpParser\\Node\\Expr\\Cast\\String_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/String_.php',
        'PhpParser\\Node\\Expr\\Cast\\Unset_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Unset_.php',
        'PhpParser\\Node\\Expr\\ClassConstFetch' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/ClassConstFetch.php',
        'PhpParser\\Node\\Expr\\Clone_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Clone_.php',
        'PhpParser\\Node\\Expr\\Closure' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Closure.php',
        'PhpParser\\Node\\Expr\\ClosureUse' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/ClosureUse.php',
        'PhpParser\\Node\\Expr\\ConstFetch' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/ConstFetch.php',
        'PhpParser\\Node\\Expr\\Empty_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Empty_.php',
        'PhpParser\\Node\\Expr\\Error' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Error.php',
        'PhpParser\\Node\\Expr\\ErrorSuppress' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/ErrorSuppress.php',
        'PhpParser\\Node\\Expr\\Eval_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Eval_.php',
        'PhpParser\\Node\\Expr\\Exit_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Exit_.php',
        'PhpParser\\Node\\Expr\\FuncCall' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/FuncCall.php',
        'PhpParser\\Node\\Expr\\Include_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Include_.php',
        'PhpParser\\Node\\Expr\\Instanceof_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Instanceof_.php',
        'PhpParser\\Node\\Expr\\Isset_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Isset_.php',
        'PhpParser\\Node\\Expr\\List_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/List_.php',
        'PhpParser\\Node\\Expr\\Match_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Match_.php',
        'PhpParser\\Node\\Expr\\MethodCall' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/MethodCall.php',
        'PhpParser\\Node\\Expr\\New_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/New_.php',
        'PhpParser\\Node\\Expr\\NullsafeMethodCall' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/NullsafeMethodCall.php',
        'PhpParser\\Node\\Expr\\NullsafePropertyFetch' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/NullsafePropertyFetch.php',
        'PhpParser\\Node\\Expr\\PostDec' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/PostDec.php',
        'PhpParser\\Node\\Expr\\PostInc' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/PostInc.php',
        'PhpParser\\Node\\Expr\\PreDec' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/PreDec.php',
        'PhpParser\\Node\\Expr\\PreInc' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/PreInc.php',
        'PhpParser\\Node\\Expr\\Print_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Print_.php',
        'PhpParser\\Node\\Expr\\PropertyFetch' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/PropertyFetch.php',
        'PhpParser\\Node\\Expr\\ShellExec' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/ShellExec.php',
        'PhpParser\\Node\\Expr\\StaticCall' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/StaticCall.php',
        'PhpParser\\Node\\Expr\\StaticPropertyFetch' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/StaticPropertyFetch.php',
        'PhpParser\\Node\\Expr\\Ternary' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Ternary.php',
        'PhpParser\\Node\\Expr\\Throw_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Throw_.php',
        'PhpParser\\Node\\Expr\\UnaryMinus' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/UnaryMinus.php',
        'PhpParser\\Node\\Expr\\UnaryPlus' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/UnaryPlus.php',
        'PhpParser\\Node\\Expr\\Variable' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Variable.php',
        'PhpParser\\Node\\Expr\\YieldFrom' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/YieldFrom.php',
        'PhpParser\\Node\\Expr\\Yield_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Expr/Yield_.php',
        'PhpParser\\Node\\FunctionLike' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/FunctionLike.php',
        'PhpParser\\Node\\Identifier' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Identifier.php',
        'PhpParser\\Node\\IntersectionType' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/IntersectionType.php',
        'PhpParser\\Node\\MatchArm' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/MatchArm.php',
        'PhpParser\\Node\\Name' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Name.php',
        'PhpParser\\Node\\Name\\FullyQualified' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Name/FullyQualified.php',
        'PhpParser\\Node\\Name\\Relative' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Name/Relative.php',
        'PhpParser\\Node\\NullableType' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/NullableType.php',
        'PhpParser\\Node\\Param' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Param.php',
        'PhpParser\\Node\\Scalar' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Scalar.php',
        'PhpParser\\Node\\Scalar\\DNumber' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Scalar/DNumber.php',
        'PhpParser\\Node\\Scalar\\Encapsed' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Scalar/Encapsed.php',
        'PhpParser\\Node\\Scalar\\EncapsedStringPart' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Scalar/EncapsedStringPart.php',
        'PhpParser\\Node\\Scalar\\LNumber' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Scalar/LNumber.php',
        'PhpParser\\Node\\Scalar\\MagicConst' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst.php',
        'PhpParser\\Node\\Scalar\\MagicConst\\Class_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Class_.php',
        'PhpParser\\Node\\Scalar\\MagicConst\\Dir' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Dir.php',
        'PhpParser\\Node\\Scalar\\MagicConst\\File' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/File.php',
        'PhpParser\\Node\\Scalar\\MagicConst\\Function_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Function_.php',
        'PhpParser\\Node\\Scalar\\MagicConst\\Line' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Line.php',
        'PhpParser\\Node\\Scalar\\MagicConst\\Method' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Method.php',
        'PhpParser\\Node\\Scalar\\MagicConst\\Namespace_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Namespace_.php',
        'PhpParser\\Node\\Scalar\\MagicConst\\Trait_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Trait_.php',
        'PhpParser\\Node\\Scalar\\String_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Scalar/String_.php',
        'PhpParser\\Node\\Stmt' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt.php',
        'PhpParser\\Node\\Stmt\\Break_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Break_.php',
        'PhpParser\\Node\\Stmt\\Case_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Case_.php',
        'PhpParser\\Node\\Stmt\\Catch_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Catch_.php',
        'PhpParser\\Node\\Stmt\\ClassConst' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassConst.php',
        'PhpParser\\Node\\Stmt\\ClassLike' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassLike.php',
        'PhpParser\\Node\\Stmt\\ClassMethod' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassMethod.php',
        'PhpParser\\Node\\Stmt\\Class_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Class_.php',
        'PhpParser\\Node\\Stmt\\Const_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Const_.php',
        'PhpParser\\Node\\Stmt\\Continue_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Continue_.php',
        'PhpParser\\Node\\Stmt\\DeclareDeclare' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/DeclareDeclare.php',
        'PhpParser\\Node\\Stmt\\Declare_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Declare_.php',
        'PhpParser\\Node\\Stmt\\Do_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Do_.php',
        'PhpParser\\Node\\Stmt\\Echo_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Echo_.php',
        'PhpParser\\Node\\Stmt\\ElseIf_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/ElseIf_.php',
        'PhpParser\\Node\\Stmt\\Else_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Else_.php',
        'PhpParser\\Node\\Stmt\\EnumCase' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/EnumCase.php',
        'PhpParser\\Node\\Stmt\\Enum_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Enum_.php',
        'PhpParser\\Node\\Stmt\\Expression' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Expression.php',
        'PhpParser\\Node\\Stmt\\Finally_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Finally_.php',
        'PhpParser\\Node\\Stmt\\For_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/For_.php',
        'PhpParser\\Node\\Stmt\\Foreach_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Foreach_.php',
        'PhpParser\\Node\\Stmt\\Function_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Function_.php',
        'PhpParser\\Node\\Stmt\\Global_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Global_.php',
        'PhpParser\\Node\\Stmt\\Goto_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Goto_.php',
        'PhpParser\\Node\\Stmt\\GroupUse' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/GroupUse.php',
        'PhpParser\\Node\\Stmt\\HaltCompiler' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/HaltCompiler.php',
        'PhpParser\\Node\\Stmt\\If_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/If_.php',
        'PhpParser\\Node\\Stmt\\InlineHTML' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/InlineHTML.php',
        'PhpParser\\Node\\Stmt\\Interface_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Interface_.php',
        'PhpParser\\Node\\Stmt\\Label' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Label.php',
        'PhpParser\\Node\\Stmt\\Namespace_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Namespace_.php',
        'PhpParser\\Node\\Stmt\\Nop' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Nop.php',
        'PhpParser\\Node\\Stmt\\Property' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Property.php',
        'PhpParser\\Node\\Stmt\\PropertyProperty' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/PropertyProperty.php',
        'PhpParser\\Node\\Stmt\\Return_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Return_.php',
        'PhpParser\\Node\\Stmt\\StaticVar' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/StaticVar.php',
        'PhpParser\\Node\\Stmt\\Static_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Static_.php',
        'PhpParser\\Node\\Stmt\\Switch_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Switch_.php',
        'PhpParser\\Node\\Stmt\\Throw_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Throw_.php',
        'PhpParser\\Node\\Stmt\\TraitUse' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUse.php',
        'PhpParser\\Node\\Stmt\\TraitUseAdaptation' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation.php',
        'PhpParser\\Node\\Stmt\\TraitUseAdaptation\\Alias' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation/Alias.php',
        'PhpParser\\Node\\Stmt\\TraitUseAdaptation\\Precedence' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation/Precedence.php',
        'PhpParser\\Node\\Stmt\\Trait_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Trait_.php',
        'PhpParser\\Node\\Stmt\\TryCatch' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/TryCatch.php',
        'PhpParser\\Node\\Stmt\\Unset_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Unset_.php',
        'PhpParser\\Node\\Stmt\\UseUse' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/UseUse.php',
        'PhpParser\\Node\\Stmt\\Use_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Use_.php',
        'PhpParser\\Node\\Stmt\\While_' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/Stmt/While_.php',
        'PhpParser\\Node\\UnionType' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/UnionType.php',
        'PhpParser\\Node\\VarLikeIdentifier' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/VarLikeIdentifier.php',
        'PhpParser\\Node\\VariadicPlaceholder' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Node/VariadicPlaceholder.php',
        'PhpParser\\Parser' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Parser.php',
        'PhpParser\\ParserAbstract' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/ParserAbstract.php',
        'PhpParser\\ParserFactory' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/ParserFactory.php',
        'PhpParser\\Parser\\Multiple' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Parser/Multiple.php',
        'PhpParser\\Parser\\Php5' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Parser/Php5.php',
        'PhpParser\\Parser\\Php7' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Parser/Php7.php',
        'PhpParser\\Parser\\Tokens' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/Parser/Tokens.php',
        'PhpParser\\PrettyPrinterAbstract' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/PrettyPrinterAbstract.php',
        'PhpParser\\PrettyPrinter\\Standard' => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser/PrettyPrinter/Standard.php',
        'ProxyManager\\Autoloader\\Autoloader' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Autoloader/Autoloader.php',
        'ProxyManager\\Autoloader\\AutoloaderInterface' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Autoloader/AutoloaderInterface.php',
        'ProxyManager\\Configuration' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Configuration.php',
        'ProxyManager\\Exception\\DisabledMethodException' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Exception/DisabledMethodException.php',
        'ProxyManager\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Exception/ExceptionInterface.php',
        'ProxyManager\\Exception\\FileNotWritableException' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Exception/FileNotWritableException.php',
        'ProxyManager\\Exception\\InvalidProxiedClassException' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Exception/InvalidProxiedClassException.php',
        'ProxyManager\\Exception\\InvalidProxyDirectoryException' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Exception/InvalidProxyDirectoryException.php',
        'ProxyManager\\Exception\\UnsupportedProxiedClassException' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Exception/UnsupportedProxiedClassException.php',
        'ProxyManager\\Factory\\AbstractBaseFactory' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Factory/AbstractBaseFactory.php',
        'ProxyManager\\Factory\\AccessInterceptorScopeLocalizerFactory' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Factory/AccessInterceptorScopeLocalizerFactory.php',
        'ProxyManager\\Factory\\AccessInterceptorValueHolderFactory' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Factory/AccessInterceptorValueHolderFactory.php',
        'ProxyManager\\Factory\\LazyLoadingGhostFactory' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Factory/LazyLoadingGhostFactory.php',
        'ProxyManager\\Factory\\LazyLoadingValueHolderFactory' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Factory/LazyLoadingValueHolderFactory.php',
        'ProxyManager\\Factory\\NullObjectFactory' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Factory/NullObjectFactory.php',
        'ProxyManager\\Factory\\RemoteObjectFactory' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Factory/RemoteObjectFactory.php',
        'ProxyManager\\Factory\\RemoteObject\\AdapterInterface' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Factory/RemoteObject/AdapterInterface.php',
        'ProxyManager\\Factory\\RemoteObject\\Adapter\\BaseAdapter' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Factory/RemoteObject/Adapter/BaseAdapter.php',
        'ProxyManager\\Factory\\RemoteObject\\Adapter\\JsonRpc' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Factory/RemoteObject/Adapter/JsonRpc.php',
        'ProxyManager\\Factory\\RemoteObject\\Adapter\\Soap' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Factory/RemoteObject/Adapter/Soap.php',
        'ProxyManager\\Factory\\RemoteObject\\Adapter\\XmlRpc' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Factory/RemoteObject/Adapter/XmlRpc.php',
        'ProxyManager\\FileLocator\\FileLocator' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/FileLocator/FileLocator.php',
        'ProxyManager\\FileLocator\\FileLocatorInterface' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/FileLocator/FileLocatorInterface.php',
        'ProxyManager\\GeneratorStrategy\\BaseGeneratorStrategy' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/GeneratorStrategy/BaseGeneratorStrategy.php',
        'ProxyManager\\GeneratorStrategy\\EvaluatingGeneratorStrategy' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/GeneratorStrategy/EvaluatingGeneratorStrategy.php',
        'ProxyManager\\GeneratorStrategy\\FileWriterGeneratorStrategy' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/GeneratorStrategy/FileWriterGeneratorStrategy.php',
        'ProxyManager\\GeneratorStrategy\\GeneratorStrategyInterface' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/GeneratorStrategy/GeneratorStrategyInterface.php',
        'ProxyManager\\Generator\\ClassGenerator' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Generator/ClassGenerator.php',
        'ProxyManager\\Generator\\MagicMethodGenerator' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Generator/MagicMethodGenerator.php',
        'ProxyManager\\Generator\\MethodGenerator' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Generator/MethodGenerator.php',
        'ProxyManager\\Generator\\Util\\ClassGeneratorUtils' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Generator/Util/ClassGeneratorUtils.php',
        'ProxyManager\\Generator\\Util\\IdentifierSuffixer' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Generator/Util/IdentifierSuffixer.php',
        'ProxyManager\\Generator\\Util\\ProxiedMethodReturnExpression' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Generator/Util/ProxiedMethodReturnExpression.php',
        'ProxyManager\\Generator\\Util\\UniqueIdentifierGenerator' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Generator/Util/UniqueIdentifierGenerator.php',
        'ProxyManager\\Inflector\\ClassNameInflector' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Inflector/ClassNameInflector.php',
        'ProxyManager\\Inflector\\ClassNameInflectorInterface' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Inflector/ClassNameInflectorInterface.php',
        'ProxyManager\\Inflector\\Util\\ParameterEncoder' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Inflector/Util/ParameterEncoder.php',
        'ProxyManager\\Inflector\\Util\\ParameterHasher' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Inflector/Util/ParameterHasher.php',
        'ProxyManager\\ProxyGenerator\\AccessInterceptorScopeLocalizerGenerator' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizerGenerator.php',
        'ProxyManager\\ProxyGenerator\\AccessInterceptorScopeLocalizer\\MethodGenerator\\BindProxyProperties' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/BindProxyProperties.php',
        'ProxyManager\\ProxyGenerator\\AccessInterceptorScopeLocalizer\\MethodGenerator\\InterceptedMethod' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/InterceptedMethod.php',
        'ProxyManager\\ProxyGenerator\\AccessInterceptorScopeLocalizer\\MethodGenerator\\MagicClone' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicClone.php',
        'ProxyManager\\ProxyGenerator\\AccessInterceptorScopeLocalizer\\MethodGenerator\\MagicGet' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicGet.php',
        'ProxyManager\\ProxyGenerator\\AccessInterceptorScopeLocalizer\\MethodGenerator\\MagicIsset' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicIsset.php',
        'ProxyManager\\ProxyGenerator\\AccessInterceptorScopeLocalizer\\MethodGenerator\\MagicSet' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicSet.php',
        'ProxyManager\\ProxyGenerator\\AccessInterceptorScopeLocalizer\\MethodGenerator\\MagicSleep' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicSleep.php',
        'ProxyManager\\ProxyGenerator\\AccessInterceptorScopeLocalizer\\MethodGenerator\\MagicUnset' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicUnset.php',
        'ProxyManager\\ProxyGenerator\\AccessInterceptorScopeLocalizer\\MethodGenerator\\StaticProxyConstructor' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/StaticProxyConstructor.php',
        'ProxyManager\\ProxyGenerator\\AccessInterceptorScopeLocalizer\\MethodGenerator\\Util\\InterceptorGenerator' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/Util/InterceptorGenerator.php',
        'ProxyManager\\ProxyGenerator\\AccessInterceptorValueHolderGenerator' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolderGenerator.php',
        'ProxyManager\\ProxyGenerator\\AccessInterceptorValueHolder\\MethodGenerator\\InterceptedMethod' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/InterceptedMethod.php',
        'ProxyManager\\ProxyGenerator\\AccessInterceptorValueHolder\\MethodGenerator\\MagicClone' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicClone.php',
        'ProxyManager\\ProxyGenerator\\AccessInterceptorValueHolder\\MethodGenerator\\MagicGet' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicGet.php',
        'ProxyManager\\ProxyGenerator\\AccessInterceptorValueHolder\\MethodGenerator\\MagicIsset' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicIsset.php',
        'ProxyManager\\ProxyGenerator\\AccessInterceptorValueHolder\\MethodGenerator\\MagicSet' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicSet.php',
        'ProxyManager\\ProxyGenerator\\AccessInterceptorValueHolder\\MethodGenerator\\MagicUnset' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicUnset.php',
        'ProxyManager\\ProxyGenerator\\AccessInterceptorValueHolder\\MethodGenerator\\StaticProxyConstructor' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/StaticProxyConstructor.php',
        'ProxyManager\\ProxyGenerator\\AccessInterceptorValueHolder\\MethodGenerator\\Util\\InterceptorGenerator' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/Util/InterceptorGenerator.php',
        'ProxyManager\\ProxyGenerator\\AccessInterceptor\\MethodGenerator\\MagicWakeup' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/AccessInterceptor/MethodGenerator/MagicWakeup.php',
        'ProxyManager\\ProxyGenerator\\AccessInterceptor\\MethodGenerator\\SetMethodPrefixInterceptor' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/AccessInterceptor/MethodGenerator/SetMethodPrefixInterceptor.php',
        'ProxyManager\\ProxyGenerator\\AccessInterceptor\\MethodGenerator\\SetMethodSuffixInterceptor' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/AccessInterceptor/MethodGenerator/SetMethodSuffixInterceptor.php',
        'ProxyManager\\ProxyGenerator\\AccessInterceptor\\PropertyGenerator\\MethodPrefixInterceptors' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/AccessInterceptor/PropertyGenerator/MethodPrefixInterceptors.php',
        'ProxyManager\\ProxyGenerator\\AccessInterceptor\\PropertyGenerator\\MethodSuffixInterceptors' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/AccessInterceptor/PropertyGenerator/MethodSuffixInterceptors.php',
        'ProxyManager\\ProxyGenerator\\Assertion\\CanProxyAssertion' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/Assertion/CanProxyAssertion.php',
        'ProxyManager\\ProxyGenerator\\LazyLoadingGhostGenerator' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoadingGhostGenerator.php',
        'ProxyManager\\ProxyGenerator\\LazyLoadingGhost\\MethodGenerator\\CallInitializer' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/CallInitializer.php',
        'ProxyManager\\ProxyGenerator\\LazyLoadingGhost\\MethodGenerator\\GetProxyInitializer' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/GetProxyInitializer.php',
        'ProxyManager\\ProxyGenerator\\LazyLoadingGhost\\MethodGenerator\\InitializeProxy' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/InitializeProxy.php',
        'ProxyManager\\ProxyGenerator\\LazyLoadingGhost\\MethodGenerator\\IsProxyInitialized' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/IsProxyInitialized.php',
        'ProxyManager\\ProxyGenerator\\LazyLoadingGhost\\MethodGenerator\\MagicClone' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicClone.php',
        'ProxyManager\\ProxyGenerator\\LazyLoadingGhost\\MethodGenerator\\MagicGet' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicGet.php',
        'ProxyManager\\ProxyGenerator\\LazyLoadingGhost\\MethodGenerator\\MagicIsset' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicIsset.php',
        'ProxyManager\\ProxyGenerator\\LazyLoadingGhost\\MethodGenerator\\MagicSet' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicSet.php',
        'ProxyManager\\ProxyGenerator\\LazyLoadingGhost\\MethodGenerator\\MagicSleep' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicSleep.php',
        'ProxyManager\\ProxyGenerator\\LazyLoadingGhost\\MethodGenerator\\MagicUnset' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicUnset.php',
        'ProxyManager\\ProxyGenerator\\LazyLoadingGhost\\MethodGenerator\\SetProxyInitializer' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/SetProxyInitializer.php',
        'ProxyManager\\ProxyGenerator\\LazyLoadingGhost\\MethodGenerator\\SkipDestructor' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/SkipDestructor.php',
        'ProxyManager\\ProxyGenerator\\LazyLoadingGhost\\PropertyGenerator\\InitializationTracker' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/PropertyGenerator/InitializationTracker.php',
        'ProxyManager\\ProxyGenerator\\LazyLoadingGhost\\PropertyGenerator\\InitializerProperty' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/PropertyGenerator/InitializerProperty.php',
        'ProxyManager\\ProxyGenerator\\LazyLoadingGhost\\PropertyGenerator\\PrivatePropertiesMap' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/PropertyGenerator/PrivatePropertiesMap.php',
        'ProxyManager\\ProxyGenerator\\LazyLoadingGhost\\PropertyGenerator\\ProtectedPropertiesMap' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/PropertyGenerator/ProtectedPropertiesMap.php',
        'ProxyManager\\ProxyGenerator\\LazyLoadingValueHolderGenerator' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolderGenerator.php',
        'ProxyManager\\ProxyGenerator\\LazyLoadingValueHolder\\MethodGenerator\\GetProxyInitializer' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/GetProxyInitializer.php',
        'ProxyManager\\ProxyGenerator\\LazyLoadingValueHolder\\MethodGenerator\\InitializeProxy' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/InitializeProxy.php',
        'ProxyManager\\ProxyGenerator\\LazyLoadingValueHolder\\MethodGenerator\\IsProxyInitialized' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/IsProxyInitialized.php',
        'ProxyManager\\ProxyGenerator\\LazyLoadingValueHolder\\MethodGenerator\\LazyLoadingMethodInterceptor' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/LazyLoadingMethodInterceptor.php',
        'ProxyManager\\ProxyGenerator\\LazyLoadingValueHolder\\MethodGenerator\\MagicClone' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicClone.php',
        'ProxyManager\\ProxyGenerator\\LazyLoadingValueHolder\\MethodGenerator\\MagicGet' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicGet.php',
        'ProxyManager\\ProxyGenerator\\LazyLoadingValueHolder\\MethodGenerator\\MagicIsset' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicIsset.php',
        'ProxyManager\\ProxyGenerator\\LazyLoadingValueHolder\\MethodGenerator\\MagicSet' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicSet.php',
        'ProxyManager\\ProxyGenerator\\LazyLoadingValueHolder\\MethodGenerator\\MagicSleep' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicSleep.php',
        'ProxyManager\\ProxyGenerator\\LazyLoadingValueHolder\\MethodGenerator\\MagicUnset' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicUnset.php',
        'ProxyManager\\ProxyGenerator\\LazyLoadingValueHolder\\MethodGenerator\\SetProxyInitializer' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/SetProxyInitializer.php',
        'ProxyManager\\ProxyGenerator\\LazyLoadingValueHolder\\MethodGenerator\\SkipDestructor' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/SkipDestructor.php',
        'ProxyManager\\ProxyGenerator\\LazyLoadingValueHolder\\PropertyGenerator\\InitializerProperty' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/PropertyGenerator/InitializerProperty.php',
        'ProxyManager\\ProxyGenerator\\LazyLoadingValueHolder\\PropertyGenerator\\ValueHolderProperty' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/PropertyGenerator/ValueHolderProperty.php',
        'ProxyManager\\ProxyGenerator\\LazyLoading\\MethodGenerator\\StaticProxyConstructor' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/LazyLoading/MethodGenerator/StaticProxyConstructor.php',
        'ProxyManager\\ProxyGenerator\\NullObjectGenerator' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/NullObjectGenerator.php',
        'ProxyManager\\ProxyGenerator\\NullObject\\MethodGenerator\\NullObjectMethodInterceptor' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/NullObject/MethodGenerator/NullObjectMethodInterceptor.php',
        'ProxyManager\\ProxyGenerator\\NullObject\\MethodGenerator\\StaticProxyConstructor' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/NullObject/MethodGenerator/StaticProxyConstructor.php',
        'ProxyManager\\ProxyGenerator\\PropertyGenerator\\PublicPropertiesMap' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/PropertyGenerator/PublicPropertiesMap.php',
        'ProxyManager\\ProxyGenerator\\ProxyGeneratorInterface' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/ProxyGeneratorInterface.php',
        'ProxyManager\\ProxyGenerator\\RemoteObjectGenerator' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/RemoteObjectGenerator.php',
        'ProxyManager\\ProxyGenerator\\RemoteObject\\MethodGenerator\\MagicGet' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/RemoteObject/MethodGenerator/MagicGet.php',
        'ProxyManager\\ProxyGenerator\\RemoteObject\\MethodGenerator\\MagicIsset' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/RemoteObject/MethodGenerator/MagicIsset.php',
        'ProxyManager\\ProxyGenerator\\RemoteObject\\MethodGenerator\\MagicSet' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/RemoteObject/MethodGenerator/MagicSet.php',
        'ProxyManager\\ProxyGenerator\\RemoteObject\\MethodGenerator\\MagicUnset' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/RemoteObject/MethodGenerator/MagicUnset.php',
        'ProxyManager\\ProxyGenerator\\RemoteObject\\MethodGenerator\\RemoteObjectMethod' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/RemoteObject/MethodGenerator/RemoteObjectMethod.php',
        'ProxyManager\\ProxyGenerator\\RemoteObject\\MethodGenerator\\StaticProxyConstructor' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/RemoteObject/MethodGenerator/StaticProxyConstructor.php',
        'ProxyManager\\ProxyGenerator\\RemoteObject\\PropertyGenerator\\AdapterProperty' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/RemoteObject/PropertyGenerator/AdapterProperty.php',
        'ProxyManager\\ProxyGenerator\\Util\\GetMethodIfExists' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/Util/GetMethodIfExists.php',
        'ProxyManager\\ProxyGenerator\\Util\\Properties' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/Util/Properties.php',
        'ProxyManager\\ProxyGenerator\\Util\\ProxiedMethodsFilter' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/Util/ProxiedMethodsFilter.php',
        'ProxyManager\\ProxyGenerator\\Util\\PublicScopeSimulator' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/Util/PublicScopeSimulator.php',
        'ProxyManager\\ProxyGenerator\\Util\\UnsetPropertiesGenerator' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/Util/UnsetPropertiesGenerator.php',
        'ProxyManager\\ProxyGenerator\\ValueHolder\\MethodGenerator\\Constructor' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/ValueHolder/MethodGenerator/Constructor.php',
        'ProxyManager\\ProxyGenerator\\ValueHolder\\MethodGenerator\\GetWrappedValueHolderValue' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/ValueHolder/MethodGenerator/GetWrappedValueHolderValue.php',
        'ProxyManager\\ProxyGenerator\\ValueHolder\\MethodGenerator\\MagicSleep' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/ProxyGenerator/ValueHolder/MethodGenerator/MagicSleep.php',
        'ProxyManager\\Proxy\\AccessInterceptorInterface' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Proxy/AccessInterceptorInterface.php',
        'ProxyManager\\Proxy\\AccessInterceptorValueHolderInterface' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Proxy/AccessInterceptorValueHolderInterface.php',
        'ProxyManager\\Proxy\\Exception\\RemoteObjectException' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Proxy/Exception/RemoteObjectException.php',
        'ProxyManager\\Proxy\\FallbackValueHolderInterface' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Proxy/FallbackValueHolderInterface.php',
        'ProxyManager\\Proxy\\GhostObjectInterface' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Proxy/GhostObjectInterface.php',
        'ProxyManager\\Proxy\\LazyLoadingInterface' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Proxy/LazyLoadingInterface.php',
        'ProxyManager\\Proxy\\NullObjectInterface' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Proxy/NullObjectInterface.php',
        'ProxyManager\\Proxy\\ProxyInterface' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Proxy/ProxyInterface.php',
        'ProxyManager\\Proxy\\RemoteObjectInterface' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Proxy/RemoteObjectInterface.php',
        'ProxyManager\\Proxy\\SmartReferenceInterface' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Proxy/SmartReferenceInterface.php',
        'ProxyManager\\Proxy\\ValueHolderInterface' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Proxy/ValueHolderInterface.php',
        'ProxyManager\\Proxy\\VirtualProxyInterface' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Proxy/VirtualProxyInterface.php',
        'ProxyManager\\Signature\\ClassSignatureGenerator' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Signature/ClassSignatureGenerator.php',
        'ProxyManager\\Signature\\ClassSignatureGeneratorInterface' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Signature/ClassSignatureGeneratorInterface.php',
        'ProxyManager\\Signature\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Signature/Exception/ExceptionInterface.php',
        'ProxyManager\\Signature\\Exception\\InvalidSignatureException' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Signature/Exception/InvalidSignatureException.php',
        'ProxyManager\\Signature\\Exception\\MissingSignatureException' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Signature/Exception/MissingSignatureException.php',
        'ProxyManager\\Signature\\SignatureChecker' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Signature/SignatureChecker.php',
        'ProxyManager\\Signature\\SignatureCheckerInterface' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Signature/SignatureCheckerInterface.php',
        'ProxyManager\\Signature\\SignatureGenerator' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Signature/SignatureGenerator.php',
        'ProxyManager\\Signature\\SignatureGeneratorInterface' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Signature/SignatureGeneratorInterface.php',
        'ProxyManager\\Stub\\EmptyClassStub' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Stub/EmptyClassStub.php',
        'ProxyManager\\Version' => __DIR__ . '/..' . '/friendsofphp/proxy-manager-lts/src/ProxyManager/Version.php',
        'Psr\\Cache\\CacheException' => __DIR__ . '/..' . '/psr/cache/src/CacheException.php',
        'Psr\\Cache\\CacheItemInterface' => __DIR__ . '/..' . '/psr/cache/src/CacheItemInterface.php',
        'Psr\\Cache\\CacheItemPoolInterface' => __DIR__ . '/..' . '/psr/cache/src/CacheItemPoolInterface.php',
        'Psr\\Cache\\InvalidArgumentException' => __DIR__ . '/..' . '/psr/cache/src/InvalidArgumentException.php',
        'Psr\\Container\\ContainerExceptionInterface' => __DIR__ . '/..' . '/psr/container/src/ContainerExceptionInterface.php',
        'Psr\\Container\\ContainerInterface' => __DIR__ . '/..' . '/psr/container/src/ContainerInterface.php',
        'Psr\\Container\\NotFoundExceptionInterface' => __DIR__ . '/..' . '/psr/container/src/NotFoundExceptionInterface.php',
        'Psr\\EventDispatcher\\EventDispatcherInterface' => __DIR__ . '/..' . '/psr/event-dispatcher/src/EventDispatcherInterface.php',
        'Psr\\EventDispatcher\\ListenerProviderInterface' => __DIR__ . '/..' . '/psr/event-dispatcher/src/ListenerProviderInterface.php',
        'Psr\\EventDispatcher\\StoppableEventInterface' => __DIR__ . '/..' . '/psr/event-dispatcher/src/StoppableEventInterface.php',
        'Psr\\Link\\EvolvableLinkInterface' => __DIR__ . '/..' . '/psr/link/src/EvolvableLinkInterface.php',
        'Psr\\Link\\EvolvableLinkProviderInterface' => __DIR__ . '/..' . '/psr/link/src/EvolvableLinkProviderInterface.php',
        'Psr\\Link\\LinkInterface' => __DIR__ . '/..' . '/psr/link/src/LinkInterface.php',
        'Psr\\Link\\LinkProviderInterface' => __DIR__ . '/..' . '/psr/link/src/LinkProviderInterface.php',
        'Psr\\Log\\AbstractLogger' => __DIR__ . '/..' . '/psr/log/src/AbstractLogger.php',
        'Psr\\Log\\InvalidArgumentException' => __DIR__ . '/..' . '/psr/log/src/InvalidArgumentException.php',
        'Psr\\Log\\LogLevel' => __DIR__ . '/..' . '/psr/log/src/LogLevel.php',
        'Psr\\Log\\LoggerAwareInterface' => __DIR__ . '/..' . '/psr/log/src/LoggerAwareInterface.php',
        'Psr\\Log\\LoggerAwareTrait' => __DIR__ . '/..' . '/psr/log/src/LoggerAwareTrait.php',
        'Psr\\Log\\LoggerInterface' => __DIR__ . '/..' . '/psr/log/src/LoggerInterface.php',
        'Psr\\Log\\LoggerTrait' => __DIR__ . '/..' . '/psr/log/src/LoggerTrait.php',
        'Psr\\Log\\NullLogger' => __DIR__ . '/..' . '/psr/log/src/NullLogger.php',
        'ReturnTypeWillChange' => __DIR__ . '/..' . '/symfony/polyfill-php81/Resources/stubs/ReturnTypeWillChange.php',
        'Stringable' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Stringable.php',
        'Symfony\\Bridge\\Doctrine\\CacheWarmer\\ProxyCacheWarmer' => __DIR__ . '/..' . '/symfony/doctrine-bridge/CacheWarmer/ProxyCacheWarmer.php',
        'Symfony\\Bridge\\Doctrine\\ContainerAwareEventManager' => __DIR__ . '/..' . '/symfony/doctrine-bridge/ContainerAwareEventManager.php',
        'Symfony\\Bridge\\Doctrine\\DataCollector\\DoctrineDataCollector' => __DIR__ . '/..' . '/symfony/doctrine-bridge/DataCollector/DoctrineDataCollector.php',
        'Symfony\\Bridge\\Doctrine\\DataCollector\\ObjectParameter' => __DIR__ . '/..' . '/symfony/doctrine-bridge/DataCollector/ObjectParameter.php',
        'Symfony\\Bridge\\Doctrine\\DataFixtures\\ContainerAwareLoader' => __DIR__ . '/..' . '/symfony/doctrine-bridge/DataFixtures/ContainerAwareLoader.php',
        'Symfony\\Bridge\\Doctrine\\DependencyInjection\\AbstractDoctrineExtension' => __DIR__ . '/..' . '/symfony/doctrine-bridge/DependencyInjection/AbstractDoctrineExtension.php',
        'Symfony\\Bridge\\Doctrine\\DependencyInjection\\CompilerPass\\DoctrineValidationPass' => __DIR__ . '/..' . '/symfony/doctrine-bridge/DependencyInjection/CompilerPass/DoctrineValidationPass.php',
        'Symfony\\Bridge\\Doctrine\\DependencyInjection\\CompilerPass\\RegisterEventListenersAndSubscribersPass' => __DIR__ . '/..' . '/symfony/doctrine-bridge/DependencyInjection/CompilerPass/RegisterEventListenersAndSubscribersPass.php',
        'Symfony\\Bridge\\Doctrine\\DependencyInjection\\CompilerPass\\RegisterMappingsPass' => __DIR__ . '/..' . '/symfony/doctrine-bridge/DependencyInjection/CompilerPass/RegisterMappingsPass.php',
        'Symfony\\Bridge\\Doctrine\\DependencyInjection\\CompilerPass\\RegisterUidTypePass' => __DIR__ . '/..' . '/symfony/doctrine-bridge/DependencyInjection/CompilerPass/RegisterUidTypePass.php',
        'Symfony\\Bridge\\Doctrine\\DependencyInjection\\Security\\UserProvider\\EntityFactory' => __DIR__ . '/..' . '/symfony/doctrine-bridge/DependencyInjection/Security/UserProvider/EntityFactory.php',
        'Symfony\\Bridge\\Doctrine\\Form\\ChoiceList\\DoctrineChoiceLoader' => __DIR__ . '/..' . '/symfony/doctrine-bridge/Form/ChoiceList/DoctrineChoiceLoader.php',
        'Symfony\\Bridge\\Doctrine\\Form\\ChoiceList\\EntityLoaderInterface' => __DIR__ . '/..' . '/symfony/doctrine-bridge/Form/ChoiceList/EntityLoaderInterface.php',
        'Symfony\\Bridge\\Doctrine\\Form\\ChoiceList\\IdReader' => __DIR__ . '/..' . '/symfony/doctrine-bridge/Form/ChoiceList/IdReader.php',
        'Symfony\\Bridge\\Doctrine\\Form\\ChoiceList\\ORMQueryBuilderLoader' => __DIR__ . '/..' . '/symfony/doctrine-bridge/Form/ChoiceList/ORMQueryBuilderLoader.php',
        'Symfony\\Bridge\\Doctrine\\Form\\DataTransformer\\CollectionToArrayTransformer' => __DIR__ . '/..' . '/symfony/doctrine-bridge/Form/DataTransformer/CollectionToArrayTransformer.php',
        'Symfony\\Bridge\\Doctrine\\Form\\DoctrineOrmExtension' => __DIR__ . '/..' . '/symfony/doctrine-bridge/Form/DoctrineOrmExtension.php',
        'Symfony\\Bridge\\Doctrine\\Form\\DoctrineOrmTypeGuesser' => __DIR__ . '/..' . '/symfony/doctrine-bridge/Form/DoctrineOrmTypeGuesser.php',
        'Symfony\\Bridge\\Doctrine\\Form\\EventListener\\MergeDoctrineCollectionListener' => __DIR__ . '/..' . '/symfony/doctrine-bridge/Form/EventListener/MergeDoctrineCollectionListener.php',
        'Symfony\\Bridge\\Doctrine\\Form\\Type\\DoctrineType' => __DIR__ . '/..' . '/symfony/doctrine-bridge/Form/Type/DoctrineType.php',
        'Symfony\\Bridge\\Doctrine\\Form\\Type\\EntityType' => __DIR__ . '/..' . '/symfony/doctrine-bridge/Form/Type/EntityType.php',
        'Symfony\\Bridge\\Doctrine\\IdGenerator\\UlidGenerator' => __DIR__ . '/..' . '/symfony/doctrine-bridge/IdGenerator/UlidGenerator.php',
        'Symfony\\Bridge\\Doctrine\\IdGenerator\\UuidGenerator' => __DIR__ . '/..' . '/symfony/doctrine-bridge/IdGenerator/UuidGenerator.php',
        'Symfony\\Bridge\\Doctrine\\Logger\\DbalLogger' => __DIR__ . '/..' . '/symfony/doctrine-bridge/Logger/DbalLogger.php',
        'Symfony\\Bridge\\Doctrine\\ManagerRegistry' => __DIR__ . '/..' . '/symfony/doctrine-bridge/ManagerRegistry.php',
        'Symfony\\Bridge\\Doctrine\\Messenger\\AbstractDoctrineMiddleware' => __DIR__ . '/..' . '/symfony/doctrine-bridge/Messenger/AbstractDoctrineMiddleware.php',
        'Symfony\\Bridge\\Doctrine\\Messenger\\DoctrineClearEntityManagerWorkerSubscriber' => __DIR__ . '/..' . '/symfony/doctrine-bridge/Messenger/DoctrineClearEntityManagerWorkerSubscriber.php',
        'Symfony\\Bridge\\Doctrine\\Messenger\\DoctrineCloseConnectionMiddleware' => __DIR__ . '/..' . '/symfony/doctrine-bridge/Messenger/DoctrineCloseConnectionMiddleware.php',
        'Symfony\\Bridge\\Doctrine\\Messenger\\DoctrineOpenTransactionLoggerMiddleware' => __DIR__ . '/..' . '/symfony/doctrine-bridge/Messenger/DoctrineOpenTransactionLoggerMiddleware.php',
        'Symfony\\Bridge\\Doctrine\\Messenger\\DoctrinePingConnectionMiddleware' => __DIR__ . '/..' . '/symfony/doctrine-bridge/Messenger/DoctrinePingConnectionMiddleware.php',
        'Symfony\\Bridge\\Doctrine\\Messenger\\DoctrineTransactionMiddleware' => __DIR__ . '/..' . '/symfony/doctrine-bridge/Messenger/DoctrineTransactionMiddleware.php',
        'Symfony\\Bridge\\Doctrine\\PropertyInfo\\DoctrineExtractor' => __DIR__ . '/..' . '/symfony/doctrine-bridge/PropertyInfo/DoctrineExtractor.php',
        'Symfony\\Bridge\\Doctrine\\SchemaListener\\DoctrineDbalCacheAdapterSchemaSubscriber' => __DIR__ . '/..' . '/symfony/doctrine-bridge/SchemaListener/DoctrineDbalCacheAdapterSchemaSubscriber.php',
        'Symfony\\Bridge\\Doctrine\\SchemaListener\\MessengerTransportDoctrineSchemaSubscriber' => __DIR__ . '/..' . '/symfony/doctrine-bridge/SchemaListener/MessengerTransportDoctrineSchemaSubscriber.php',
        'Symfony\\Bridge\\Doctrine\\SchemaListener\\PdoCacheAdapterDoctrineSchemaSubscriber' => __DIR__ . '/..' . '/symfony/doctrine-bridge/SchemaListener/PdoCacheAdapterDoctrineSchemaSubscriber.php',
        'Symfony\\Bridge\\Doctrine\\SchemaListener\\RememberMeTokenProviderDoctrineSchemaSubscriber' => __DIR__ . '/..' . '/symfony/doctrine-bridge/SchemaListener/RememberMeTokenProviderDoctrineSchemaSubscriber.php',
        'Symfony\\Bridge\\Doctrine\\Security\\RememberMe\\DoctrineTokenProvider' => __DIR__ . '/..' . '/symfony/doctrine-bridge/Security/RememberMe/DoctrineTokenProvider.php',
        'Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider' => __DIR__ . '/..' . '/symfony/doctrine-bridge/Security/User/EntityUserProvider.php',
        'Symfony\\Bridge\\Doctrine\\Security\\User\\UserLoaderInterface' => __DIR__ . '/..' . '/symfony/doctrine-bridge/Security/User/UserLoaderInterface.php',
        'Symfony\\Bridge\\Doctrine\\Test\\DoctrineTestHelper' => __DIR__ . '/..' . '/symfony/doctrine-bridge/Test/DoctrineTestHelper.php',
        'Symfony\\Bridge\\Doctrine\\Test\\TestRepositoryFactory' => __DIR__ . '/..' . '/symfony/doctrine-bridge/Test/TestRepositoryFactory.php',
        'Symfony\\Bridge\\Doctrine\\Types\\AbstractUidType' => __DIR__ . '/..' . '/symfony/doctrine-bridge/Types/AbstractUidType.php',
        'Symfony\\Bridge\\Doctrine\\Types\\UlidType' => __DIR__ . '/..' . '/symfony/doctrine-bridge/Types/UlidType.php',
        'Symfony\\Bridge\\Doctrine\\Types\\UuidType' => __DIR__ . '/..' . '/symfony/doctrine-bridge/Types/UuidType.php',
        'Symfony\\Bridge\\Doctrine\\Validator\\Constraints\\UniqueEntity' => __DIR__ . '/..' . '/symfony/doctrine-bridge/Validator/Constraints/UniqueEntity.php',
        'Symfony\\Bridge\\Doctrine\\Validator\\Constraints\\UniqueEntityValidator' => __DIR__ . '/..' . '/symfony/doctrine-bridge/Validator/Constraints/UniqueEntityValidator.php',
        'Symfony\\Bridge\\Doctrine\\Validator\\DoctrineInitializer' => __DIR__ . '/..' . '/symfony/doctrine-bridge/Validator/DoctrineInitializer.php',
        'Symfony\\Bridge\\Doctrine\\Validator\\DoctrineLoader' => __DIR__ . '/..' . '/symfony/doctrine-bridge/Validator/DoctrineLoader.php',
        'Symfony\\Bridge\\ProxyManager\\LazyProxy\\Instantiator\\LazyLoadingValueHolderFactory' => __DIR__ . '/..' . '/symfony/proxy-manager-bridge/LazyProxy/Instantiator/LazyLoadingValueHolderFactory.php',
        'Symfony\\Bridge\\ProxyManager\\LazyProxy\\Instantiator\\RuntimeInstantiator' => __DIR__ . '/..' . '/symfony/proxy-manager-bridge/LazyProxy/Instantiator/RuntimeInstantiator.php',
        'Symfony\\Bridge\\ProxyManager\\LazyProxy\\PhpDumper\\LazyLoadingValueHolderGenerator' => __DIR__ . '/..' . '/symfony/proxy-manager-bridge/LazyProxy/PhpDumper/LazyLoadingValueHolderGenerator.php',
        'Symfony\\Bridge\\ProxyManager\\LazyProxy\\PhpDumper\\ProxyDumper' => __DIR__ . '/..' . '/symfony/proxy-manager-bridge/LazyProxy/PhpDumper/ProxyDumper.php',
        'Symfony\\Bridge\\Twig\\AppVariable' => __DIR__ . '/..' . '/symfony/twig-bridge/AppVariable.php',
        'Symfony\\Bridge\\Twig\\Command\\DebugCommand' => __DIR__ . '/..' . '/symfony/twig-bridge/Command/DebugCommand.php',
        'Symfony\\Bridge\\Twig\\Command\\LintCommand' => __DIR__ . '/..' . '/symfony/twig-bridge/Command/LintCommand.php',
        'Symfony\\Bridge\\Twig\\DataCollector\\TwigDataCollector' => __DIR__ . '/..' . '/symfony/twig-bridge/DataCollector/TwigDataCollector.php',
        'Symfony\\Bridge\\Twig\\ErrorRenderer\\TwigErrorRenderer' => __DIR__ . '/..' . '/symfony/twig-bridge/ErrorRenderer/TwigErrorRenderer.php',
        'Symfony\\Bridge\\Twig\\Extension\\AssetExtension' => __DIR__ . '/..' . '/symfony/twig-bridge/Extension/AssetExtension.php',
        'Symfony\\Bridge\\Twig\\Extension\\CodeExtension' => __DIR__ . '/..' . '/symfony/twig-bridge/Extension/CodeExtension.php',
        'Symfony\\Bridge\\Twig\\Extension\\CsrfExtension' => __DIR__ . '/..' . '/symfony/twig-bridge/Extension/CsrfExtension.php',
        'Symfony\\Bridge\\Twig\\Extension\\CsrfRuntime' => __DIR__ . '/..' . '/symfony/twig-bridge/Extension/CsrfRuntime.php',
        'Symfony\\Bridge\\Twig\\Extension\\DumpExtension' => __DIR__ . '/..' . '/symfony/twig-bridge/Extension/DumpExtension.php',
        'Symfony\\Bridge\\Twig\\Extension\\ExpressionExtension' => __DIR__ . '/..' . '/symfony/twig-bridge/Extension/ExpressionExtension.php',
        'Symfony\\Bridge\\Twig\\Extension\\FormExtension' => __DIR__ . '/..' . '/symfony/twig-bridge/Extension/FormExtension.php',
        'Symfony\\Bridge\\Twig\\Extension\\HttpFoundationExtension' => __DIR__ . '/..' . '/symfony/twig-bridge/Extension/HttpFoundationExtension.php',
        'Symfony\\Bridge\\Twig\\Extension\\HttpKernelExtension' => __DIR__ . '/..' . '/symfony/twig-bridge/Extension/HttpKernelExtension.php',
        'Symfony\\Bridge\\Twig\\Extension\\HttpKernelRuntime' => __DIR__ . '/..' . '/symfony/twig-bridge/Extension/HttpKernelRuntime.php',
        'Symfony\\Bridge\\Twig\\Extension\\LogoutUrlExtension' => __DIR__ . '/..' . '/symfony/twig-bridge/Extension/LogoutUrlExtension.php',
        'Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension' => __DIR__ . '/..' . '/symfony/twig-bridge/Extension/ProfilerExtension.php',
        'Symfony\\Bridge\\Twig\\Extension\\RoutingExtension' => __DIR__ . '/..' . '/symfony/twig-bridge/Extension/RoutingExtension.php',
        'Symfony\\Bridge\\Twig\\Extension\\SecurityExtension' => __DIR__ . '/..' . '/symfony/twig-bridge/Extension/SecurityExtension.php',
        'Symfony\\Bridge\\Twig\\Extension\\SerializerExtension' => __DIR__ . '/..' . '/symfony/twig-bridge/Extension/SerializerExtension.php',
        'Symfony\\Bridge\\Twig\\Extension\\SerializerRuntime' => __DIR__ . '/..' . '/symfony/twig-bridge/Extension/SerializerRuntime.php',
        'Symfony\\Bridge\\Twig\\Extension\\StopwatchExtension' => __DIR__ . '/..' . '/symfony/twig-bridge/Extension/StopwatchExtension.php',
        'Symfony\\Bridge\\Twig\\Extension\\TranslationExtension' => __DIR__ . '/..' . '/symfony/twig-bridge/Extension/TranslationExtension.php',
        'Symfony\\Bridge\\Twig\\Extension\\WebLinkExtension' => __DIR__ . '/..' . '/symfony/twig-bridge/Extension/WebLinkExtension.php',
        'Symfony\\Bridge\\Twig\\Extension\\WorkflowExtension' => __DIR__ . '/..' . '/symfony/twig-bridge/Extension/WorkflowExtension.php',
        'Symfony\\Bridge\\Twig\\Extension\\YamlExtension' => __DIR__ . '/..' . '/symfony/twig-bridge/Extension/YamlExtension.php',
        'Symfony\\Bridge\\Twig\\Form\\TwigRendererEngine' => __DIR__ . '/..' . '/symfony/twig-bridge/Form/TwigRendererEngine.php',
        'Symfony\\Bridge\\Twig\\Mime\\BodyRenderer' => __DIR__ . '/..' . '/symfony/twig-bridge/Mime/BodyRenderer.php',
        'Symfony\\Bridge\\Twig\\Mime\\NotificationEmail' => __DIR__ . '/..' . '/symfony/twig-bridge/Mime/NotificationEmail.php',
        'Symfony\\Bridge\\Twig\\Mime\\TemplatedEmail' => __DIR__ . '/..' . '/symfony/twig-bridge/Mime/TemplatedEmail.php',
        'Symfony\\Bridge\\Twig\\Mime\\WrappedTemplatedEmail' => __DIR__ . '/..' . '/symfony/twig-bridge/Mime/WrappedTemplatedEmail.php',
        'Symfony\\Bridge\\Twig\\NodeVisitor\\Scope' => __DIR__ . '/..' . '/symfony/twig-bridge/NodeVisitor/Scope.php',
        'Symfony\\Bridge\\Twig\\NodeVisitor\\TranslationDefaultDomainNodeVisitor' => __DIR__ . '/..' . '/symfony/twig-bridge/NodeVisitor/TranslationDefaultDomainNodeVisitor.php',
        'Symfony\\Bridge\\Twig\\NodeVisitor\\TranslationNodeVisitor' => __DIR__ . '/..' . '/symfony/twig-bridge/NodeVisitor/TranslationNodeVisitor.php',
        'Symfony\\Bridge\\Twig\\Node\\DumpNode' => __DIR__ . '/..' . '/symfony/twig-bridge/Node/DumpNode.php',
        'Symfony\\Bridge\\Twig\\Node\\FormThemeNode' => __DIR__ . '/..' . '/symfony/twig-bridge/Node/FormThemeNode.php',
        'Symfony\\Bridge\\Twig\\Node\\RenderBlockNode' => __DIR__ . '/..' . '/symfony/twig-bridge/Node/RenderBlockNode.php',
        'Symfony\\Bridge\\Twig\\Node\\SearchAndRenderBlockNode' => __DIR__ . '/..' . '/symfony/twig-bridge/Node/SearchAndRenderBlockNode.php',
        'Symfony\\Bridge\\Twig\\Node\\StopwatchNode' => __DIR__ . '/..' . '/symfony/twig-bridge/Node/StopwatchNode.php',
        'Symfony\\Bridge\\Twig\\Node\\TransDefaultDomainNode' => __DIR__ . '/..' . '/symfony/twig-bridge/Node/TransDefaultDomainNode.php',
        'Symfony\\Bridge\\Twig\\Node\\TransNode' => __DIR__ . '/..' . '/symfony/twig-bridge/Node/TransNode.php',
        'Symfony\\Bridge\\Twig\\TokenParser\\DumpTokenParser' => __DIR__ . '/..' . '/symfony/twig-bridge/TokenParser/DumpTokenParser.php',
        'Symfony\\Bridge\\Twig\\TokenParser\\FormThemeTokenParser' => __DIR__ . '/..' . '/symfony/twig-bridge/TokenParser/FormThemeTokenParser.php',
        'Symfony\\Bridge\\Twig\\TokenParser\\StopwatchTokenParser' => __DIR__ . '/..' . '/symfony/twig-bridge/TokenParser/StopwatchTokenParser.php',
        'Symfony\\Bridge\\Twig\\TokenParser\\TransDefaultDomainTokenParser' => __DIR__ . '/..' . '/symfony/twig-bridge/TokenParser/TransDefaultDomainTokenParser.php',
        'Symfony\\Bridge\\Twig\\TokenParser\\TransTokenParser' => __DIR__ . '/..' . '/symfony/twig-bridge/TokenParser/TransTokenParser.php',
        'Symfony\\Bridge\\Twig\\Translation\\TwigExtractor' => __DIR__ . '/..' . '/symfony/twig-bridge/Translation/TwigExtractor.php',
        'Symfony\\Bridge\\Twig\\UndefinedCallableHandler' => __DIR__ . '/..' . '/symfony/twig-bridge/UndefinedCallableHandler.php',
        'Symfony\\Bundle\\FrameworkBundle\\CacheWarmer\\AbstractPhpFileCacheWarmer' => __DIR__ . '/..' . '/symfony/framework-bundle/CacheWarmer/AbstractPhpFileCacheWarmer.php',
        'Symfony\\Bundle\\FrameworkBundle\\CacheWarmer\\AnnotationsCacheWarmer' => __DIR__ . '/..' . '/symfony/framework-bundle/CacheWarmer/AnnotationsCacheWarmer.php',
        'Symfony\\Bundle\\FrameworkBundle\\CacheWarmer\\CachePoolClearerCacheWarmer' => __DIR__ . '/..' . '/symfony/framework-bundle/CacheWarmer/CachePoolClearerCacheWarmer.php',
        'Symfony\\Bundle\\FrameworkBundle\\CacheWarmer\\ConfigBuilderCacheWarmer' => __DIR__ . '/..' . '/symfony/framework-bundle/CacheWarmer/ConfigBuilderCacheWarmer.php',
        'Symfony\\Bundle\\FrameworkBundle\\CacheWarmer\\RouterCacheWarmer' => __DIR__ . '/..' . '/symfony/framework-bundle/CacheWarmer/RouterCacheWarmer.php',
        'Symfony\\Bundle\\FrameworkBundle\\CacheWarmer\\SerializerCacheWarmer' => __DIR__ . '/..' . '/symfony/framework-bundle/CacheWarmer/SerializerCacheWarmer.php',
        'Symfony\\Bundle\\FrameworkBundle\\CacheWarmer\\TranslationsCacheWarmer' => __DIR__ . '/..' . '/symfony/framework-bundle/CacheWarmer/TranslationsCacheWarmer.php',
        'Symfony\\Bundle\\FrameworkBundle\\CacheWarmer\\ValidatorCacheWarmer' => __DIR__ . '/..' . '/symfony/framework-bundle/CacheWarmer/ValidatorCacheWarmer.php',
        'Symfony\\Bundle\\FrameworkBundle\\Command\\AboutCommand' => __DIR__ . '/..' . '/symfony/framework-bundle/Command/AboutCommand.php',
        'Symfony\\Bundle\\FrameworkBundle\\Command\\AbstractConfigCommand' => __DIR__ . '/..' . '/symfony/framework-bundle/Command/AbstractConfigCommand.php',
        'Symfony\\Bundle\\FrameworkBundle\\Command\\AssetsInstallCommand' => __DIR__ . '/..' . '/symfony/framework-bundle/Command/AssetsInstallCommand.php',
        'Symfony\\Bundle\\FrameworkBundle\\Command\\BuildDebugContainerTrait' => __DIR__ . '/..' . '/symfony/framework-bundle/Command/BuildDebugContainerTrait.php',
        'Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand' => __DIR__ . '/..' . '/symfony/framework-bundle/Command/CacheClearCommand.php',
        'Symfony\\Bundle\\FrameworkBundle\\Command\\CachePoolClearCommand' => __DIR__ . '/..' . '/symfony/framework-bundle/Command/CachePoolClearCommand.php',
        'Symfony\\Bundle\\FrameworkBundle\\Command\\CachePoolDeleteCommand' => __DIR__ . '/..' . '/symfony/framework-bundle/Command/CachePoolDeleteCommand.php',
        'Symfony\\Bundle\\FrameworkBundle\\Command\\CachePoolListCommand' => __DIR__ . '/..' . '/symfony/framework-bundle/Command/CachePoolListCommand.php',
        'Symfony\\Bundle\\FrameworkBundle\\Command\\CachePoolPruneCommand' => __DIR__ . '/..' . '/symfony/framework-bundle/Command/CachePoolPruneCommand.php',
        'Symfony\\Bundle\\FrameworkBundle\\Command\\CacheWarmupCommand' => __DIR__ . '/..' . '/symfony/framework-bundle/Command/CacheWarmupCommand.php',
        'Symfony\\Bundle\\FrameworkBundle\\Command\\ConfigDebugCommand' => __DIR__ . '/..' . '/symfony/framework-bundle/Command/ConfigDebugCommand.php',
        'Symfony\\Bundle\\FrameworkBundle\\Command\\ConfigDumpReferenceCommand' => __DIR__ . '/..' . '/symfony/framework-bundle/Command/ConfigDumpReferenceCommand.php',
        'Symfony\\Bundle\\FrameworkBundle\\Command\\ContainerDebugCommand' => __DIR__ . '/..' . '/symfony/framework-bundle/Command/ContainerDebugCommand.php',