QDnsAcȧCAW4bw#et,MUTF8'9n"pi zTt'n5Us[C.dr /TY6Dnscns]Ihu'PStand7v0Dhcx ۳ OUBv0Lab w]8"M`Ur*gF=0RD_ Dn Fouz{X5#Dn uZ)eS xxKIpv6 l. sA2boxdR"ungF^21Map-U3   -SBswEH3u"Ex  ) < :8rsEz Cl>rIp-T!fiX %Pg9 H %%vpFJ 6 9ٛ: z/ F'V$ H/1J ? -]KuQToUtfx #E1%Dn:|  '/@tf8B21DnsQzj:|I_4sTo#waMsgBuf+ k_/& C_F0Win_zki&Pt _!Li iRb1mXi fn_!Ms h  'cp1nzA !_Phj|Wsn CdUb+}"Tc ~bAKBcvUdHΞoC_E6!ki)kOoBDott^P {] <BcondL 3xcobz6az% )z6I:J*|u_1Reg% EK| ?@12&>:&<DbuV= g f e d c b a ` _ ^ ] \ [ Z Y X W V U T S R Q P O/50Rq56}6|6{6z6y6x6w6h6h6h77777777778888~8}8|8{8l8l8l99999998EnleB0rcmG=xecrresvs$dnMOuSExs_Azuvj8 ˼k  T/T 7T B9 ffvg0UIL4k  1Mas47ragHWŤhu ڣ ( ;!No TwB ~L kt q ,Q? \ġ (lڋ / A)s5&k3 2 NX C I & ]KK G7 iWW[5LBָ5!keA_Kt  WRw!tly r_81Chou~l< ׺84DlglT uulF*av/5}0Dlg  "#acE 0WS_ANSI_UNICODEMuct_For_ôWur dwLBSubVEdwOK c  ov  W7* O0WA4Arc0Anye!s"rcToBRUSHOBJ_%_KQ!pvU!Rbn u thBitBltCLIPqc/&ar!3ppo@"DCdInGamuSPixel Ch7p6 yQhMeta^F 2CorRM"TogWm~  l d x? H W CC@IBPa"XnPCDIBS? H0ard9 Elliptic_  l j  g L`=PHalft?8tch5I_I_  SPW ##6gonY   R )1Sca  BolidǑDPtoLPDd0 1 ;314;5E6O7Y8c9vO222m2m2m2m2m2m2m33'(333334Z4[4G4G42G4G4G4G4Gx555555<91B#DCK vjPCapabi#sepAEUDCOnZ>cthEng%&SQf0horBg; Bl"@SurfK3Engy2Eng`Q5RGlyphr%-j $ \ _2  @ Er IJgr'm}A0radR Ni"Ba}7NW=b4EngqCgPlgM*$X X=:3ROPAokeA W :=%!)1 ontFamili &:EN`ICMProimp m1udccAinkWR ԳRaxtFloo)Ft aWFONT}  "S76fdg&6ifi3AvTrucNx X]Y agnFix Or s ~-di public function boot() { // Register an autoloader for proxies to avoid issues when unserializing them // when the ORM is used. if (! $this->container->hasParameter('doctrine.orm.proxy_namespace')) { return; } $namespace = (string) $this->container->getParameter('doctrine.orm.proxy_namespace'); $dir = (string) $this->container->getParameter('doctrine.orm.proxy_dir'); $proxyGenerator = null; if ($this->container->getParameter('doctrine.orm.auto_generate_proxy_classes')) { // See https://github.com/symfony/symfony/pull/3419 for usage of references /** @psalm-suppress UnsupportedPropertyReferenceUsage */ $container = &$this->container; $proxyGenerator = static function ($proxyDir, $proxyNamespace, $class) use (&$container): void { $originalClassName = (new DefaultProxyClassNameResolver())->resolveClassName($class); $registry = $container->get('doctrine'); assert($registry instanceof Registry); foreach ($registry->getManagers() as $em) { assert($em instanceof EntityManagerInterface); if (! $em->getConfiguration()->getAutoGenerateProxyClasses()) { continue; } $metadataFactory = $em->getMetadataFactory(); if ($metadataFactory->isTransient($originalClassName)) { continue; } $classMetadata = $metadataFactory->getMetadataFor($originalClassName); $em->getProxyFactory()->generateProxyClasses([$classMetadata]); clearstatcache(true, Autoloader::resolveFile($proxyDir, $proxyNamespace, $class)); break; } }; } $this->autoloader = Autoloader::register($dir, $namespace, $proxyGenerator); } /** @return void */ public function shutdown() { if ($this->autoloader !== null) { spl_autoload_unregister($this->autoloader); $this->autoloader = null; } // Clear all entity managers to clear references to entities for GC if ($this->container->hasParameter('doctrine.entity_managers')) { foreach ($this->container->getParameter('doctrine.entity_managers') as $id) { if (! $this->container->initialized($id)) { continue; } $this->container->get($id)->clear(); } } // Close all connections to avoid reaching too many connections in the process when booting again later (tests) if (! $this->container->hasParameter('doctrine.connections')) { return; } foreach ($this->container->getParameter('doctrine.connections') as $id) { if (! $this->container->initialized($id)) { continue; } $this->container->get($id)->close(); } } /** @return void */ public function registerCommands(Application $application) { } public function getPath(): string { return dirname(__DIR__); } }