Error 404 Not Found

GET https://prelive.werkbank.dev.intocommerce.de/

Exceptions

product_stream for id 0193d451ff977279aef95721fc519b7a not found.

Exception

Shopware\Core\Framework\DataAbstractionLayer\Exception\ EntityNotFoundException

Show exception properties
Shopware\Core\Framework\DataAbstractionLayer\Exception\EntityNotFoundException {#10520
  -statusCode: 404
  -headers: []
  #parameters: array:2 [
    "entity" => "product_stream"
    "identifier" => "0193d451ff977279aef95721fc519b7a"
  ]
}
  1.         $stream $this->repository
  2.             ->search($criteria$context)
  3.             ->get($id);
  4.         if (!$stream) {
  5.             throw new EntityNotFoundException('product_stream'$id);
  6.         }
  7.         $data $stream->getApiFilter();
  8.         if (!$data) {
  9.             throw new NoFilterException($id);
  1.         return $criteria;
  2.     }
  3.     private function collectByProductStream(ResolverContext $resolverContextFieldConfig $configFieldConfigCollection $elementConfig): Criteria
  4.     {
  5.         $filters $this->productStreamBuilder->buildFilters(
  6.             $config->getStringValue(),
  7.             $resolverContext->getSalesChannelContext()->getContext()
  8.         );
  9.         $sorting 'name:' FieldSorting::ASCENDING;
  1.                 $collection->add(self::PRODUCT_SLIDER_ENTITY_FALLBACK '_' $slot->getUniqueIdentifier(), ProductDefinition::class, $criteria);
  2.             }
  3.         }
  4.         if ($products->isProductStream() && $products->getValue()) {
  5.             $criteria $this->collectByProductStream($resolverContext$products$config);
  6.             $collection->add(self::PRODUCT_SLIDER_ENTITY_FALLBACK '_' $slot->getUniqueIdentifier(), ProductDefinition::class, $criteria);
  7.         }
  8.         return $collection->all() ? $collection null;
  9.     }
  1.             ));
  2.             return $criteriaCollection;
  3.         }
  4.         return $this->parent->collect($slot$resolverContext);
  5.     }
  6.     public function enrich(CmsSlotEntity $slotResolverContext $resolverContextElementDataCollection $result): void
  7.     {
  8.         $this->parent->enrich($slot$resolverContext$result);
  1.             $resolver $this->resolvers[$slot->getType()] ?? null;
  2.             if (!$resolver) {
  3.                 continue;
  4.             }
  5.             $collection $resolver->collect($slot$resolverContext);
  6.             if ($collection === null) {
  7.                 continue;
  8.             }
  9.             $slotCriteriaList[$slot->getUniqueIdentifier()] = $collection;
  1.     }
  2.     private function loadSlotData(CmsSectionCollection $sectionsResolverContext $resolverContext): void
  3.     {
  4.         $blocks $sections->getBlocks();
  5.         $slots $this->slotDataResolver->resolve($blocks->getSlots(), $resolverContext);
  6.         $blocks->setSlots($slots);
  7.     }
  8.     /**
  1.             // step 4, overwrite slot config
  2.             $this->overwriteSlotConfig($sections$overwrite);
  3.             // step 5, resolve slot data
  4.             $this->loadSlotData($sections$resolverContext);
  5.         }
  6.         $this->dispatcher->dispatch(new CmsPageLoadedEvent($request$pages$context));
  7.         $this->dispatcher->dispatch(new AddCacheTagEvent(...$this->extractProductIds($pages)));
  1.     public function load(Request $requestCriteria $criteriaSalesChannelContext $context,
  2.                          ?array  $config null, ?ResolverContext $resolverContext null): EntitySearchResult
  3.     {
  4.         $timeZone $request->cookies->get('timezone''Europe/Berlin');
  5.         $pages $this->inner->load($request$criteria$context$config$resolverContext);
  6.         foreach ($pages as $page) {
  7.             $sections $page->getSections();
  8.             if ($sections === null || (is_countable($sections) ? count($sections) : 0) === 0) {
  9.                 continue;
  10.             }
  1.             return new CategoryRouteResponse($category);
  2.         }
  3.         $resolverContext = new EntityResolverContext($context$request$this->categoryDefinition$category);
  4.         $pages $this->cmsPageLoader->load(
  5.             $request,
  6.             $this->createCriteria($pageId$request),
  7.             $context,
  8.             $slotConfig,
  9.             $resolverContext
  1.             }
  2.             $key $this->generateKey($navigationId$request$context);
  3.             if ($key === null) {
  4.                 return $this->getDecorated()->load($navigationId$request$context);
  5.             }
  6.             $value $this->cache->get($key, function (ItemInterface $item) use ($navigationId$request$context) {
  7.                 $name self::buildName($navigationId);
in vendor/shopware/core/Profiling/Profiler.php -> Shopware\Core\Content\Category\SalesChannel\{closure} (line 67)
  1.         try {
  2.             foreach (self::$profilers as $profiler) {
  3.                 $profiler->start($name$category$tags);
  4.             }
  5.             $result $closure();
  6.         } finally {
  7.             foreach (self::$profilers as $profiler) {
  8.                 $profiler->stop($name);
  9.             }
  10.         }
  1.     {
  2.         if (Feature::isActive('cache_rework')) {
  3.             return $this->getDecorated()->load($navigationId$request$context);
  4.         }
  5.         return Profiler::trace('category-route', function () use ($navigationId$request$context) {
  6.             if ($context->hasState(...$this->states)) {
  7.                 return $this->getDecorated()->load($navigationId$request$context);
  8.             }
  9.             $key $this->generateKey($navigationId$request$context);
  1.     }
  2.     #[Route(path'/store-api/category/{navigationId}'name'store-api.category.detail'methods: ['GET''POST'])]
  3.     public function load(string $navigationIdRequest $requestSalesChannelContext $context): CategoryRouteResponse
  4.     {
  5.         $response $this->inner->load($navigationId$request$context);
  6.         $route $request->attributes->get('_route');
  7.         if (!\is_string($route) || empty($route)) {
  8.             return $response;
  1.         $page NavigationPage::createFrom($page);
  2.         $navigationId $request->get('navigationId'$context->getSalesChannel()->getNavigationCategoryId());
  3.         $category $this->cmsPageRoute
  4.             ->load($navigationId$request$context)
  5.             ->getCategory();
  6.         if (!$category->getActive()) {
  7.             throw new CategoryNotFoundException($category->getId());
  8.         }
  1.     }
  2.     #[Route(path'/'name'frontend.home.page'options: ['seo' => true], defaults: ['_httpCache' => true], methods: ['GET'])]
  3.     public function home(Request $requestSalesChannelContext $context): ?Response
  4.     {
  5.         $page $this->navigationPageLoader->load($request$context);
  6.         $this->hook(new NavigationPageLoadedHook($page$context));
  7.         return $this->renderStorefront('@Storefront/storefront/page/content/index.html.twig', ['page' => $page]);
  8.     }
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response$event);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2.         $this->requestStack->push($request);
  3.         $response null;
  4.         try {
  5.             return $response $this->handleRaw($request$type);
  6.         } catch (\Throwable $e) {
  7.             if ($e instanceof \Error && !$this->handleAllThrowables) {
  8.                 throw $e;
  9.             }
  1.             $this->dispatcher->dispatch($event);
  2.             return $event->getResponse();
  3.         }
  4.         return parent::handle($request$type$catch);
  5.     }
  6. }
  1.         if (!IpUtils::checkIp('127.0.0.1'$trustedProxies)) {
  2.             Request::setTrustedProxies(array_merge($trustedProxies, ['127.0.0.1']), Request::getTrustedHeaderSet());
  3.         }
  4.         try {
  5.             return $kernel->handle($request$type$catch);
  6.         } finally {
  7.             // restore global state
  8.             Request::setTrustedProxies($trustedProxies$trustedHeaderSet);
  9.         }
  10.     }
  1.     protected function forward(Request $requestbool $catch false, ?Response $entry null): Response
  2.     {
  3.         $this->surrogate?->addSurrogateCapability($request);
  4.         // always a "master" request (as the real master request can be in cache)
  5.         $response SubRequestHandler::handle($this->kernel$requestHttpKernelInterface::MAIN_REQUEST$catch);
  6.         /*
  7.          * Support stale-if-error given on Responses or as a config option.
  8.          * RFC 7234 summarizes in Section 4.2.4 (but also mentions with the individual
  9.          * Cache-Control directives) that
  1.         // avoid that the backend sends no content
  2.         $subRequest->headers->remove('If-Modified-Since');
  3.         $subRequest->headers->remove('If-None-Match');
  4.         $response $this->forward($subRequest$catch);
  5.         if ($response->isCacheable()) {
  6.             $this->store($request$response);
  7.         }
  1.         }
  2.         if (null === $entry) {
  3.             $this->record($request'miss');
  4.             return $this->fetch($request$catch);
  5.         }
  6.         if (!$this->isFreshEnough($request$entry)) {
  7.             $this->record($request'stale');
  1.                 reload the cache by fetching a fresh response and caching it (if possible).
  2.             */
  3.             $this->record($request'reload');
  4.             $response $this->fetch($request$catch);
  5.         } else {
  6.             $response $this->lookup($request$catch);
  7.         }
  8.         $this->restoreResponseBody($request$response);
  9.         if (HttpKernelInterface::MAIN_REQUEST === $type) {
  1.         // only handle main request inside http cache, because ESI tags are also interpreted as main request.
  2.         // sub requests are requests, which are forwarded to the kernel inside the php stack
  3.         // https://github.com/symfony/symfony/issues/51648#issuecomment-1717846894
  4.         if ($type === HttpKernelInterface::MAIN_REQUEST) {
  5.             $response parent::handle($request$type$catch);
  6.         } elseif ($request->attributes->has('_sw_esi')) {
  7.             $response parent::handle($request$type$catch);
  8.         } else {
  9.             $response $this->getKernel()->handle($request$type$catch);
  10.         }
in vendor/shopware/core/Kernel.php -> handle (line 117)
  1.     {
  2.         if (!$this->booted) {
  3.             $this->boot();
  4.         }
  5.         return $this->getHttpKernel()->handle($request$type$catch);
  6.     }
  7.     public function boot(): void
  8.     {
  9.         if ($this->booted === true) {
  1.     ) {
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         if (Kernel::VERSION_ID >= 60400) {
  7.             $response->send(false);
  8.             if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 29)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/var/www/share/prelive.rau.dev.intocommerce.de/releases/20250512174806/vendor/autoload_runtime.php') in public/index.php (line 11)
  1. use Shopware\Core\Framework\Adapter\Kernel\KernelFactory;
  2. use Symfony\Component\HttpFoundation\Response;
  3. $_SERVER['SCRIPT_FILENAME'] = __FILE__;
  4. require_once __DIR__ '/../vendor/autoload_runtime.php';
  5. if (!file_exists(__DIR__ '/../.env') && !file_exists(__DIR__ '/../.env.dist') && !file_exists(__DIR__ '/../.env.local.php')) {
  6.     $_SERVER['APP_RUNTIME_OPTIONS']['disable_dotenv'] = true;
  7. }

Logs

Level Channel Message
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
INFO 20:05:06 app #1 Rule detection: Cart >= 0 (Payment) with priority 100 (id: 018c8692d68a721fa3d7d6378e2eb407)
INFO 20:05:06 app #2 Rule detection: Cart >= 0 with priority 100 (id: 018c8692d6a173c6bd58b7c388be6d43)
INFO 20:05:06 app #3 Rule detection: Always valid (Default) with priority 100 (id: 018c8692e63073d49fd50efdee14d753)
INFO 20:05:06 app #4 Rule detection: Standard Versand with priority 100 (id: 018f197a74ca71d6acc5747c59e57390)
INFO 20:05:06 app #5 Rule detection: Versand Deutschland with priority 100 (id: 018f197a7514716e9d5c53afabf2e642)
INFO 20:05:06 app #6 Rule detection: Zahlungsart Vorkasse with priority 10 (id: 0192091a6111741b9a98db66e8a7f838)
INFO 20:05:06 app #7 Rule detection: All customers with priority 1 (id: 018c8692d6e273b4a1e1881b541af727)
INFO 20:05:06 app #8 Rule detection: Versandanschrift Deutschland with priority 1 (id: 018eec0c79807a4a9e73e4deb3802956)
INFO 20:05:06 app #9 Rule detection: Bruttopreise with priority 1 (id: 019058c2f48377d79327f95e75d0bcb4)
INFO 20:05:06 app #10 Rule detection: Bruttopreise with priority 1 (id: 0190590489297ae7b2a3f20ad8d129a4)
INFO 20:05:06 app #11 Rule detection: Versandanschrift Deutschland Brutto with priority 1 (id: 0191b1c376c7703e9ef88960d5d527e0)
INFO 20:05:06 app #12 Rule detection: Warenkorb Anzahl Produkte = 3 with priority 1 (id: 01939ad0886e762ba8d2e59f19311263)
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.sync` is deprecated for service Shopware\Core\Checkout\Payment\Cart\PaymentHandler\PrePayment and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.sync` is deprecated for service Shopware\Core\Checkout\Payment\Cart\PaymentHandler\DebitPayment and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.sync` is deprecated for service Shopware\Core\Checkout\Payment\Cart\PaymentHandler\CashPayment and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.sync` is deprecated for service Shopware\Core\Checkout\Payment\Cart\PaymentHandler\InvoicePayment and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.sync` is deprecated for service Shopware\Core\Checkout\Payment\Cart\PaymentHandler\DefaultPayment and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.sync` is deprecated for service Swag\PayPal\Checkout\Payment\Method\PayLaterHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.sync` is deprecated for service Swag\PayPal\Checkout\Payment\Method\SEPAHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.sync` is deprecated for service Swag\PayPal\Checkout\Payment\Method\VenmoHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.sync` is deprecated for service Swag\PayPal\Checkout\Payment\Method\ApplePayHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.sync` is deprecated for service Swag\PayPal\Checkout\Payment\Method\GooglePayHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.sync` is deprecated for service Swag\PayPal\Checkout\Payment\Method\PUIHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\BancontactAPMHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\BlikAPMHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\EpsAPMHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\GiropayAPMHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\IdealAPMHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\MultibancoAPMHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\MyBankAPMHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\OxxoAPMHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\P24APMHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\SofortAPMHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since swag/paypal 10.0.0: tag:v10.0.0 - The Swag\PayPal\Checkout\Payment\Method\SofortAPMHandler service will be removed
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\TrustlyAPMHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\ACDCHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\PayPalPaymentHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service CrefoPay\Payment\Core\Payment\Handler\CreditCard and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service CrefoPay\Payment\Core\Payment\Handler\DirectDebit and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service CrefoPay\Payment\Core\Payment\Handler\Invoice and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service CrefoPay\Payment\Core\Payment\Handler\PayPal and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service CrefoPay\Payment\Core\Payment\Handler\Prepaid and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service CrefoPay\Payment\Core\Payment\Handler\Sofort and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service CrefoPay\Payment\Core\Payment\Handler\Giropay and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service CrefoPay\Payment\Core\Payment\Handler\Eps and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service CrefoPay\Payment\Core\Payment\Handler\Ideal and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service CrefoPay\Payment\Core\Payment\Handler\AmazonPay and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service CrefoPay\Payment\Core\Payment\Handler\ApplePay and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service CrefoPay\Payment\Core\Payment\Handler\GooglePay and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service CrefoPay\Payment\Core\Payment\Handler\ZiniaInstallment and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
INFO 20:05:06 php User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service CrefoPay\Payment\Core\Payment\Handler\ZiniaBNPL and will be removed in 6.7.0. Use `shopware.payment.handler` instead.
{
    "exception": {}
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\Adapter\Cache\Event\HttpCacheKeyEvent" to listener "Maxia\MaxiaTaxSwitch6\Storefront\Subscriber\StorefrontSubscriber::onHttpCacheKeyEvent".
{
    "event": "Shopware\\Core\\Framework\\Adapter\\Cache\\Event\\HttpCacheKeyEvent",
    "listener": "Maxia\\MaxiaTaxSwitch6\\Storefront\\Subscriber\\StorefrontSubscriber::onHttpCacheKeyEvent"
}
INFO 20:05:06 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a27579"
    },
    "request_uri": "https://prelive.rau.dev.intocommerce.de/_profiler/a27579?panel=exception&type=request",
    "method": "GET"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\JsonRequestTransformerListener::onRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\JsonRequestTransformerListener::onRequest"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener::setupOAuth".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\ApiAuthenticationListener::setupOAuth"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "MoorlFoundation\Core\Service\EntityAutoCacheService::onRequest".
{
    "event": "kernel.request",
    "listener": "MoorlFoundation\\Core\\Service\\EntityAutoCacheService::onRequest"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request"
}
INFO 20:05:06 php Deprecated: Creation of dynamic property Acris\Navigation\Core\Content\Cms\DataResolver\Element\NavigationMediaCmsElementResolver::$navigationMediaService is deprecated
{
    "exception": {}
}
INFO 20:05:06 php Deprecated: Creation of dynamic property Acris\Navigation\Core\Content\Cms\DataResolver\Element\IconCategoryCmsElementResolver::$navigationMediaService is deprecated
{
    "exception": {}
}
INFO 20:05:06 php Deprecated: Creation of dynamic property Acris\Navigation\Core\Content\Cms\DataResolver\Element\ImageCategoryVerticalCmsElementResolver::$navigationMediaService is deprecated
{
    "exception": {}
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\SalesChannelAuthenticationListener::validateRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\SalesChannelAuthenticationListener::validateRequest"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener::validateRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\ApiAuthenticationListener::validateRequest"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\Acl\AclAnnotationValidator::validate".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\Acl\\AclAnnotationValidator::validate"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Adapter\Cache\CacheStateSubscriber::setStates".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\CacheStateSubscriber::setStates"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\ExpectationSubscriber::checkExpectations".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\ExpectationSubscriber::checkExpectations"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking"
}
DEBUG 20:05:06 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 20:05:06 event Notified event "kernel.controller_arguments" to listener "Dvsn\CheckoutRule\Subscriber\ControllerArgumentsSubscriber::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Dvsn\\CheckoutRule\\Subscriber\\ControllerArgumentsSubscriber::onControllerArguments"
}
DEBUG 20:05:06 event Notified event "kernel.controller_arguments" to listener "ContainerLydxhGi\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerLydxhGi\\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments"
}
DEBUG 20:05:06 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\Event\BeforeSendResponseEvent" to listener "Shopware\Core\Framework\Adapter\Cache\Http\CacheControlListener::__invoke".
{
    "event": "Shopware\\Core\\Framework\\Event\\BeforeSendResponseEvent",
    "listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\Http\\CacheControlListener::__invoke"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\Event\BeforeSendResponseEvent" to listener "Shopware\Storefront\Framework\Routing\CanonicalLinkListener::__invoke".
{
    "event": "Shopware\\Core\\Framework\\Event\\BeforeSendResponseEvent",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\CanonicalLinkListener::__invoke"
}
DEBUG 20:05:06 event Notified event "Shopware\Core\Framework\Event\BeforeSendResponseEvent" to listener "Maxia\MaxiaTaxSwitch6\Storefront\Subscriber\StorefrontSubscriber::removeDuplicateSession".
{
    "event": "Shopware\\Core\\Framework\\Event\\BeforeSendResponseEvent",
    "listener": "Maxia\\MaxiaTaxSwitch6\\Storefront\\Subscriber\\StorefrontSubscriber::removeDuplicateSession"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\JsonRequestTransformerListener::onRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\JsonRequestTransformerListener::onRequest"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener::setupOAuth".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\ApiAuthenticationListener::setupOAuth"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "MoorlFoundation\Core\Service\EntityAutoCacheService::onRequest".
{
    "event": "kernel.request",
    "listener": "MoorlFoundation\\Core\\Service\\EntityAutoCacheService::onRequest"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\SalesChannelAuthenticationListener::validateRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\SalesChannelAuthenticationListener::validateRequest"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener::validateRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\ApiAuthenticationListener::validateRequest"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\Acl\AclAnnotationValidator::validate".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\Acl\\AclAnnotationValidator::validate"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Adapter\Cache\CacheStateSubscriber::setStates".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\CacheStateSubscriber::setStates"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\ExpectationSubscriber::checkExpectations".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\ExpectationSubscriber::checkExpectations"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking"
}
DEBUG 20:05:06 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 20:05:06 event Notified event "kernel.controller_arguments" to listener "Dvsn\CheckoutRule\Subscriber\ControllerArgumentsSubscriber::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Dvsn\\CheckoutRule\\Subscriber\\ControllerArgumentsSubscriber::onControllerArguments"
}
DEBUG 20:05:06 event Notified event "kernel.controller_arguments" to listener "ContainerLydxhGi\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerLydxhGi\\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments"
}
DEBUG 20:05:06 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 20:05:06 event Notified event "kernel.response" to listener "Shopware\Core\Content\Seo\SalesChannel\StoreApiSeoResolver::addSeoInformation".
{
    "event": "kernel.response",
    "listener": "Shopware\\Core\\Content\\Seo\\SalesChannel\\StoreApiSeoResolver::addSeoInformation"
}
DEBUG 20:05:06 event Notified event "kernel.response" to listener "Shopware\Core\System\SalesChannel\Api\StoreApiResponseListener::encodeResponse".
{
    "event": "kernel.response",
    "listener": "Shopware\\Core\\System\\SalesChannel\\Api\\StoreApiResponseListener::encodeResponse"
}
DEBUG 20:05:06 event Notified event "kernel.response" to listener "Shopware\Core\Framework\Api\EventListener\CorsListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\CorsListener::onKernelResponse"
}
DEBUG 20:05:06 event Notified event "kernel.response" to listener "Shopware\Core\Framework\Adapter\Cache\Http\CacheResponseSubscriber::setResponseCacheHeader".
{
    "event": "kernel.response",
    "listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\Http\\CacheResponseSubscriber::setResponseCacheHeader"
}
DEBUG 20:05:06 event Notified event "kernel.response" to listener "Shopware\Core\Profiling\Integration\ServerTiming::onResponseEvent".
{
    "event": "kernel.response",
    "listener": "Shopware\\Core\\Profiling\\Integration\\ServerTiming::onResponseEvent"
}
DEBUG 20:05:06 event Notified event "kernel.response" to listener "Frosh\Tools\Components\Elasticsearch\AdminInfoSubscriberEventListener::__invoke".
{
    "event": "kernel.response",
    "listener": "Frosh\\Tools\\Components\\Elasticsearch\\AdminInfoSubscriberEventListener::__invoke"
}
DEBUG 20:05:06 event Notified event "kernel.response" to listener "Swag\Security\Subscriber\AdminSecurityFixesProvider::__invoke".
{
    "event": "kernel.response",
    "listener": "Swag\\Security\\Subscriber\\AdminSecurityFixesProvider::__invoke"
}
DEBUG 20:05:06 event Notified event "kernel.response" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::setSecurityHeaders".
{
    "event": "kernel.response",
    "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::setSecurityHeaders"
}
DEBUG 20:05:06 event Notified event "kernel.response" to listener "Shopware\Core\Framework\Api\EventListener\ResponseHeaderListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\ResponseHeaderListener::onResponse"
}
DEBUG 20:05:06 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 20:05:06 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse"
}
DEBUG 20:05:06 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 20:05:06 event Notified event "kernel.response" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::response".
{
    "event": "kernel.response",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::response"
}
DEBUG 20:05:06 event Notified event "kernel.response" to listener "Shopware\Storefront\Framework\Routing\ResponseHeaderListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\ResponseHeaderListener::onResponse"
}
DEBUG 20:05:06 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
DEBUG 20:05:06 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 20:05:06 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 20:05:06 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 20:05:06 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 20:05:06 event Notified event "kernel.response" to listener "Maxia\MaxiaTaxSwitch6\Storefront\Subscriber\StorefrontSubscriber::updateCookie".
{
    "event": "kernel.response",
    "listener": "Maxia\\MaxiaTaxSwitch6\\Storefront\\Subscriber\\StorefrontSubscriber::updateCookie"
}
DEBUG 20:05:06 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 20:05:06 event Notified event "kernel.response" to listener "Shopware\Core\Framework\Adapter\Cache\Http\CacheResponseSubscriber::setResponseCache".
{
    "event": "kernel.response",
    "listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\Http\\CacheResponseSubscriber::setResponseCache"
}
DEBUG 20:05:06 event Notified event "kernel.response" to listener "Maxia\MaxiaTaxSwitch6\Storefront\Subscriber\StorefrontSubscriber::updateContextHash".
{
    "event": "kernel.response",
    "listener": "Maxia\\MaxiaTaxSwitch6\\Storefront\\Subscriber\\StorefrontSubscriber::updateContextHash"
}
DEBUG 20:05:06 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 20:05:06 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 20:05:06 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\JsonRequestTransformerListener::onRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\JsonRequestTransformerListener::onRequest"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener::setupOAuth".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\ApiAuthenticationListener::setupOAuth"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "MoorlFoundation\Core\Service\EntityAutoCacheService::onRequest".
{
    "event": "kernel.request",
    "listener": "MoorlFoundation\\Core\\Service\\EntityAutoCacheService::onRequest"
}
DEBUG 20:05:06 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\SalesChannelAuthenticationListener::validateRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\SalesChannelAuthenticationListener::validateRequest"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener::validateRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\ApiAuthenticationListener::validateRequest"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\Acl\AclAnnotationValidator::validate".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\Acl\\AclAnnotationValidator::validate"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Adapter\Cache\CacheStateSubscriber::setStates".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\CacheStateSubscriber::setStates"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\ExpectationSubscriber::checkExpectations".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\ExpectationSubscriber::checkExpectations"
}
DEBUG 20:05:06 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking"
}
DEBUG 20:05:06 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 20:05:06 event Notified event "kernel.controller_arguments" to listener "Dvsn\CheckoutRule\Subscriber\ControllerArgumentsSubscriber::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Dvsn\\CheckoutRule\\Subscriber\\ControllerArgumentsSubscriber::onControllerArguments"
}
DEBUG 20:05:06 event Notified event "kernel.controller_arguments" to listener "ContainerLydxhGi\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerLydxhGi\\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments"
}
DEBUG 20:05:06 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}

Stack Trace

EntityNotFoundException
Shopware\Core\Framework\DataAbstractionLayer\Exception\EntityNotFoundException:
product_stream for id 0193d451ff977279aef95721fc519b7a not found.

  at vendor/shopware/core/Content/ProductStream/Service/ProductStreamBuilder.php:38
  at Shopware\Core\Content\ProductStream\Service\ProductStreamBuilder->buildFilters('0193d451ff977279aef95721fc519b7a', object(Context))
     (vendor/shopware/core/Content/Product/Cms/ProductSliderCmsElementResolver.php:176)
  at Shopware\Core\Content\Product\Cms\ProductSliderCmsElementResolver->collectByProductStream(object(EntityResolverContext), object(FieldConfig), object(FieldConfigCollection))
     (vendor/shopware/core/Content/Product/Cms/ProductSliderCmsElementResolver.php:76)
  at Shopware\Core\Content\Product\Cms\ProductSliderCmsElementResolver->collect(object(CmsSlotEntity), object(EntityResolverContext))
     (vendor/store.shopware.com/maxialistingvariants6/src/Core/Content/Product/Cms/ProductSliderCmsElementResolver.php:65)
  at Maxia\MaxiaListingVariants6\Core\Content\Product\Cms\ProductSliderCmsElementResolver->collect(object(CmsSlotEntity), object(EntityResolverContext))
     (vendor/shopware/core/Content/Cms/DataResolver/CmsSlotsDataResolver.php:62)
  at Shopware\Core\Content\Cms\DataResolver\CmsSlotsDataResolver->resolve(object(CmsSlotCollection), object(EntityResolverContext))
     (vendor/shopware/core/Content/Cms/SalesChannel/SalesChannelCmsPageLoader.php:112)
  at Shopware\Core\Content\Cms\SalesChannel\SalesChannelCmsPageLoader->loadSlotData(object(CmsSectionCollection), object(EntityResolverContext))
     (vendor/shopware/core/Content/Cms/SalesChannel/SalesChannelCmsPageLoader.php:99)
  at Shopware\Core\Content\Cms\SalesChannel\SalesChannelCmsPageLoader->load(object(Request), object(Criteria), object(SalesChannelContext), array('018e0ecc7a7473c3b88047386ebb6446' => array('content' => array('value' => '<span>Maximaler Stauraum</span><p>Fahrbare Montagewagen</p><a href="/produkte/wagen/montagewagen"></a>', 'source' => 'static'), 'verticalAlign' => array('source' => 'static')), '018e0ecc7a7572aea1d7b53ae32c6036' => array('url' => array('source' => 'static'), 'media' => array('value' => '018dd15f1e817cdeb6fcabf228249495', 'source' => 'static'), 'newTab' => array('value' => false, 'source' => 'static'), 'minHeight' => array('value' => '505px', 'source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'horizontalAlign' => array('source' => 'static')), '018e0ecc7a7572aea1d7b53ae3e855e0' => array('content' => array('value' => '<h1 style="color: #00A4E6;" class="h6">Arbeitsplatzeinrichtungen</h1><p><span style="font-size: 32px;"><b>Das Unternehmen werkbank<span style="color: #00A4E6;">360</span></b></span></p><p><b>werkbank<span style="color: #00A4E6;">360</span> – Rundum das Maximum</b> ist eine Marke der Reinhold P. Gerner GmbH und der führende Online-Shop im deutschsprachigen Raum für hochwertige Produkte im Bereich der Arbeitsplatzeinrichtungen. Wir bieten seit über 50 Jahren Kompetenz und Erfahrung für hochwertigste Arbeitsplätze in den Bereichen Industrie, Handwerk, öffentliche Einrichtungen und Werkstätten aber auch für den Privatgebrauch. Mehr als 7.500 Kunden vertrauen unserer Expertise über alle Branchen hinweg.</p><a class="btn btn-primary" href="/ueber-uns">Mehr über uns</a>', 'source' => 'static'), 'verticalAlign' => array('value' => 'center', 'source' => 'static')), '018e0ecc7a7572aea1d7b53ae628fb3f' => array('media' => array('value' => '018deab4edb179cc80d177a3cbf41b01', 'source' => 'static'), 'category' => array('value' => '018d6039a68a74b7855128c27111df0f', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53ae70d15cc' => array('media' => array('value' => '018dc6632b76703cbdb24cba9a972b79', 'source' => 'static'), 'category' => array('value' => '018d6037391679ff92cd1378b187d28e', 'source' => 'static'), 'linkType' => array('value' => 'custom', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('value' => 'https://werkbank360.de/produkte/werkbaenke/gestellbauweise?order=artikelnummer&p=1&properties=5f8b69df6f61463eb047f13546460c0d', 'source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('value' => 'Fahrbar', 'source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => 0, 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53ae70f1509' => array('media' => array('value' => '0193976d25e179b6b112297f47994932', 'source' => 'static'), 'category' => array('value' => '018d60262e067d08b563732702592a29', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53ae87b8d14' => array('media' => array('value' => '018f2ee7a1d179d9999cb3fc69b0f3ba', 'source' => 'static'), 'category' => array('value' => '018d60297f1e7c2f8a6d31a3486f47fc', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53ae90dec71' => array('media' => array('value' => '018f2ee96ab97e6d830aae33047c093e', 'source' => 'static'), 'category' => array('value' => '018cc50e335a71709d0fc88d14d401b7', 'source' => 'static'), 'linkType' => array('value' => 'custom', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('value' => '/medienkanal', 'source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('value' => 'Medienkanal', 'source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53ae9ea508e' => array('media' => array('value' => '019368ddace57db9a849feb880962677', 'source' => 'static'), 'category' => array('value' => '019363d71fc6795083916a54f2d62d07', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '630px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53aea5e1466' => array('media' => array('value' => '018dc5d7cbd67d3e8f27ddcc25e4f341', 'source' => 'static'), 'category' => array('value' => '018d6045c9477399957c0140a65f3cea', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => 0, 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53aead7af0c' => array('media' => array('value' => '018dc5d7cbd77691973b79ce61df129a', 'source' => 'static'), 'category' => array('value' => '018d6046d10a70fdbe506c518b609da6', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => 0, 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53aeb57c761' => array('media' => array('value' => '0190269736ec7f93b72f15625ec7d3ec', 'source' => 'static'), 'category' => array('value' => '018d604d424d7ef5ae7117ecd03bd4ea', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => 0, 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53aebea5992' => array('media' => array('value' => '018dc64babf57e80abeb1df20b81683e', 'source' => 'static'), 'category' => array('value' => '018d63ffa4fc76ad887d0a377766cf27', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53aed50a7a5' => array('media' => array('value' => '018dcfe3ea4b76fcab1f870439587df6', 'source' => 'static'), 'category' => array('value' => '018d8922733075ebb439549c49aee6b8', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#376b24', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53aedb0346d' => array('url' => array('value' => '124c71d524604ccbad6042edce3ac799/navigation/018cc50c8c4d709fa63cf1d09af46b70#', 'source' => 'static'), 'media' => array('value' => '018dd129ae937f148978984b74920e5c', 'source' => 'static'), 'newTab' => array('value' => false, 'source' => 'static'), 'category' => array('value' => '018cc50c8c4d709fa63cf1d09af46b70', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'none', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'horizontalAlign' => array('source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#376b24', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7673a0a5e4a2f90fed8b94' => array('media' => array('value' => '018dd4b698f470f081e271530cee4607', 'source' => 'static'), 'category' => array('value' => '018d89221c437205b45b39f58f1ca5c0', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '630px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#376b24', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7673a0a5e4a2f910cde78e' => array('media' => array('value' => '018dd4bea9a379b8b2e0ffe97f09366f', 'source' => 'static'), 'category' => array('value' => '018d8922b58d78ccba9d69d51e08c2a4', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#467634', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7673a0a5e4a2f91185920e' => array('media' => array('value' => '018dd4c21411711697b86fa95834d1a0', 'source' => 'static'), 'category' => array('value' => '018d8921b9d27d9880db0c1bfc70aad3', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#376b24', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7673a0a5e4a2f9129dece8' => array('content' => array('value' => '<p class="h3"><b><span style="font-size: 36px"><span style="color: rgb(255, 255, 255);">Gute Gründe für werkbank</span><span><font color="#00a4e6">360</font></span></span></b></p><ul><li><span style="background-color:transparent;">Über 12.000 Artikel</span></li><li><span style="background-color:transparent;">Erweiterbare Systeme mit passendem Zubehör</span></li><li><span style="background-color:transparent;">Hochwertige Materialien &amp; herausragende Qualität</span></li><li><span style="background-color:transparent;">Für jede Anforderung die passende Lösung</span></li></ul>', 'source' => 'static'), 'verticalAlign' => array('source' => 'static')), '018e0ecc7a7673a0a5e4a2f9138399c9' => array('url' => array('source' => 'static'), 'media' => array('value' => '018cd9df0ab27bb287c1b4c561e0ee91', 'source' => 'static'), 'newTab' => array('value' => false, 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'displayMode' => array('value' => 'cover', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'horizontalAlign' => array('source' => 'static')), '018e0ecc7a7673a0a5e4a2f915109828' => array('title' => array('value' => '', 'source' => 'static'), 'border' => array('value' => false, 'source' => 'static'), 'rotate' => array('value' => false, 'source' => 'static'), 'products' => array('value' => '0193d451ff977279aef95721fc519b7a', 'source' => 'product_stream'), 'boxLayout' => array('value' => 'standard', 'source' => 'static'), 'elMinWidth' => array('value' => '320px', 'source' => 'static'), 'navigation' => array('value' => true, 'source' => 'static'), 'displayMode' => array('value' => 'standard', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'productStreamLimit' => array('value' => 10, 'source' => 'static'), 'maxiaListingVariants' => array('value' => array('maxia_listing_variants_cms_block_display_mode' => 'selected', 'maxia_listing_variants_cms_block_restricted_properties' => array('46d93244e5c245f98add4d3b853c37a2')), 'source' => 'static'), 'productStreamSorting' => array('value' => 'random', 'source' => 'static')), '018e0ecc7a7673a0a5e4a2f917bfe9cf' => array('content' => array('value' => '<p></p><p style="text-align: center;"><span style="color: rgb(255, 255, 255); font-size: 30px;"><b>Abonnieren Sie unseren Newsletter &amp; sichern Sie sich</b></span></p><span style="font-size: 30px;"><p style="text-align: center;"><b><font color="#ffffff" style="font-size: 30px;"></font><font color="#00a4e6" style="font-size: 30px;">5%-Rabatt*</font></b><font color="#ffffff" style="font-size: 30px;"><b> auf Ihren nächsten Einkau</b>f</font></p></span><p></p><ul>    <li><b>Monatliche Top-Angebote</b></li>    <li><b>Informationen &amp; News</b></li>    <li><b>Gewinnspiele &amp; News</b></li></ul>', 'source' => 'static'), 'verticalAlign' => array('source' => 'static')), '018e65de273172eb8c2b99b9c26c7fcb' => array('media' => array('value' => '018dcfe3ea4b76fcab1f870439587df6', 'source' => 'static'), 'category' => array('value' => '018d8922733075ebb439549c49aee6b8', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#376b24', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e65de273270c9afa3a43e646cdb95' => array('url' => array('value' => '124c71d524604ccbad6042edce3ac799/navigation/018cc50c8c4d709fa63cf1d09af46b70#', 'source' => 'static'), 'media' => array('value' => '018dd129ae937f148978984b74920e5c', 'source' => 'static'), 'newTab' => array('value' => false, 'source' => 'static'), 'category' => array('value' => '018cc50c8c4d709fa63cf1d09af46b70', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'none', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'horizontalAlign' => array('source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#376b24', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e65de273270c9afa3a43e64a972bb' => array('media' => array('value' => '018dd4b698f470f081e271530cee4607', 'source' => 'static'), 'category' => array('value' => '018d89221c437205b45b39f58f1ca5c0', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#376b24', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e65de273270c9afa3a43e6556eb8a' => array('media' => array('value' => '018dd4bea9a379b8b2e0ffe97f09366f', 'source' => 'static'), 'category' => array('value' => '018d8922b58d78ccba9d69d51e08c2a4', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#467634', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e65de273270c9afa3a43e6618249f' => array('media' => array('value' => '018dd4c21411711697b86fa95834d1a0', 'source' => 'static'), 'category' => array('value' => '018d8921b9d27d9880db0c1bfc70aad3', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#376b24', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e66102af27c5ca08a46ed7d0a6777' => array('title' => array('value' => '', 'source' => 'static'), 'border' => array('value' => false, 'source' => 'static'), 'rotate' => array('value' => true, 'source' => 'static'), 'products' => array('value' => '0193d451ff977279aef95721fc519b7a', 'source' => 'product_stream'), 'boxLayout' => array('value' => 'standard', 'source' => 'static'), 'elMinWidth' => array('value' => '300px', 'source' => 'static'), 'navigation' => array('value' => false, 'source' => 'static'), 'displayMode' => array('value' => 'standard', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'productStreamLimit' => array('value' => 4, 'source' => 'static'), 'maxiaListingVariants' => array('value' => array('maxia_listing_variants_cms_block_display_mode' => 'selected', 'maxia_listing_variants_cms_block_restricted_properties' => array('46d93244e5c245f98add4d3b853c37a2')), 'source' => 'static'), 'productStreamSorting' => array('value' => 'random', 'source' => 'static')), '0193cfca1cdc71b7a5637261c60ea0b2' => array('speed' => array('value' => 300, 'source' => 'static'), 'autoplay' => array('value' => true, 'source' => 'static'), 'animateIn' => array('source' => 'static'), 'autoSlide' => array('value' => true, 'source' => 'static'), 'minHeight' => array('value' => '300px', 'source' => 'static'), 'animateOut' => array('source' => 'static'), 'displayMode' => array('value' => 'contain', 'source' => 'static'), 'sliderItems' => array('value' => array(array('newTab' => false, 'mediaUrl' => 'https://werkbank360.de/media/50/39/a3/1742308317/Banner_Maschinenbau-Fertigungstechnik_Startseite_1054x564px.jpg?ts=1742308317')), 'source' => 'static'), 'enableFeature' => array('value' => true, 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'navigationDots' => array('source' => 'static'), 'autoplayTimeout' => array('value' => 5000, 'source' => 'static'), 'navigationArrows' => array('value' => 'inside', 'source' => 'static'), 'autoplayHoverPause' => array('value' => true, 'source' => 'static')), '0193cfca1cdc71b7a563726269b19ef0' => array('content' => array('value' => '<p class="h6" style="color: #00A4E6;">Branche</p><p class="h2" style="color: #FFFFFF;">    <b>Maschinenbau &amp; Fertigungstechnik</b></p><p style="color: #FFFFFF; line-height: 1.5;" class="h6"><br>    <b>Entdecken Sie unsere Produkte, die den AnforderungenIhrer Branche gerecht werden.</b></p><br><p style="text-align: center;" class="h6">    <a style="background-color: #00A4E6; color: #FFFFFF; padding: 20px 20px; text-decoration: none; border-radius: 0px; display: block; width: 85%; box-sizing: border-box; margin: 0 auto; margin-left: 0;" href="/branchen/maschinenbau-fertigungstechnik">        Jetzt entdecken!    </a></p>', 'source' => 'static'), 'verticalAlign' => array('value' => 'center', 'source' => 'static')), '0194459437ad791e817279889f420836' => array('url' => array('source' => 'static'), 'media' => array('value' => '0194459761097f948bab929467e71429', 'source' => 'static'), 'newTab' => array('value' => false, 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'horizontalAlign' => array('source' => 'static')), '0194459437ad791e81727989c2659472' => array('url' => array('source' => 'static'), 'media' => array('value' => '0194459761087bd3a6e9f900266c93e6', 'source' => 'static'), 'newTab' => array('value' => false, 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'horizontalAlign' => array('source' => 'static')), '0194459437ad791e8172798a6ea2934f' => array('media' => array('value' => '01944597dd0b703dae12996074db9c35', 'source' => 'static'), 'category' => array('value' => '018d603f70f27317ba5c1bb9e8dfb066', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static'))), object(EntityResolverContext))
     (vendor/store.shopware.com/netzppowerpack6/src/Core/Cms/SalesChannelCmsPageLoaderDecorator.php:25)
  at NetzpPowerPack6\Core\Cms\SalesChannelCmsPageLoaderDecorator->load(object(Request), object(Criteria), object(SalesChannelContext), array('018e0ecc7a7473c3b88047386ebb6446' => array('content' => array('value' => '<span>Maximaler Stauraum</span><p>Fahrbare Montagewagen</p><a href="/produkte/wagen/montagewagen"></a>', 'source' => 'static'), 'verticalAlign' => array('source' => 'static')), '018e0ecc7a7572aea1d7b53ae32c6036' => array('url' => array('source' => 'static'), 'media' => array('value' => '018dd15f1e817cdeb6fcabf228249495', 'source' => 'static'), 'newTab' => array('value' => false, 'source' => 'static'), 'minHeight' => array('value' => '505px', 'source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'horizontalAlign' => array('source' => 'static')), '018e0ecc7a7572aea1d7b53ae3e855e0' => array('content' => array('value' => '<h1 style="color: #00A4E6;" class="h6">Arbeitsplatzeinrichtungen</h1><p><span style="font-size: 32px;"><b>Das Unternehmen werkbank<span style="color: #00A4E6;">360</span></b></span></p><p><b>werkbank<span style="color: #00A4E6;">360</span> – Rundum das Maximum</b> ist eine Marke der Reinhold P. Gerner GmbH und der führende Online-Shop im deutschsprachigen Raum für hochwertige Produkte im Bereich der Arbeitsplatzeinrichtungen. Wir bieten seit über 50 Jahren Kompetenz und Erfahrung für hochwertigste Arbeitsplätze in den Bereichen Industrie, Handwerk, öffentliche Einrichtungen und Werkstätten aber auch für den Privatgebrauch. Mehr als 7.500 Kunden vertrauen unserer Expertise über alle Branchen hinweg.</p><a class="btn btn-primary" href="/ueber-uns">Mehr über uns</a>', 'source' => 'static'), 'verticalAlign' => array('value' => 'center', 'source' => 'static')), '018e0ecc7a7572aea1d7b53ae628fb3f' => array('media' => array('value' => '018deab4edb179cc80d177a3cbf41b01', 'source' => 'static'), 'category' => array('value' => '018d6039a68a74b7855128c27111df0f', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53ae70d15cc' => array('media' => array('value' => '018dc6632b76703cbdb24cba9a972b79', 'source' => 'static'), 'category' => array('value' => '018d6037391679ff92cd1378b187d28e', 'source' => 'static'), 'linkType' => array('value' => 'custom', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('value' => 'https://werkbank360.de/produkte/werkbaenke/gestellbauweise?order=artikelnummer&p=1&properties=5f8b69df6f61463eb047f13546460c0d', 'source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('value' => 'Fahrbar', 'source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => 0, 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53ae70f1509' => array('media' => array('value' => '0193976d25e179b6b112297f47994932', 'source' => 'static'), 'category' => array('value' => '018d60262e067d08b563732702592a29', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53ae87b8d14' => array('media' => array('value' => '018f2ee7a1d179d9999cb3fc69b0f3ba', 'source' => 'static'), 'category' => array('value' => '018d60297f1e7c2f8a6d31a3486f47fc', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53ae90dec71' => array('media' => array('value' => '018f2ee96ab97e6d830aae33047c093e', 'source' => 'static'), 'category' => array('value' => '018cc50e335a71709d0fc88d14d401b7', 'source' => 'static'), 'linkType' => array('value' => 'custom', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('value' => '/medienkanal', 'source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('value' => 'Medienkanal', 'source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53ae9ea508e' => array('media' => array('value' => '019368ddace57db9a849feb880962677', 'source' => 'static'), 'category' => array('value' => '019363d71fc6795083916a54f2d62d07', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '630px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53aea5e1466' => array('media' => array('value' => '018dc5d7cbd67d3e8f27ddcc25e4f341', 'source' => 'static'), 'category' => array('value' => '018d6045c9477399957c0140a65f3cea', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => 0, 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53aead7af0c' => array('media' => array('value' => '018dc5d7cbd77691973b79ce61df129a', 'source' => 'static'), 'category' => array('value' => '018d6046d10a70fdbe506c518b609da6', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => 0, 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53aeb57c761' => array('media' => array('value' => '0190269736ec7f93b72f15625ec7d3ec', 'source' => 'static'), 'category' => array('value' => '018d604d424d7ef5ae7117ecd03bd4ea', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => 0, 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53aebea5992' => array('media' => array('value' => '018dc64babf57e80abeb1df20b81683e', 'source' => 'static'), 'category' => array('value' => '018d63ffa4fc76ad887d0a377766cf27', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53aed50a7a5' => array('media' => array('value' => '018dcfe3ea4b76fcab1f870439587df6', 'source' => 'static'), 'category' => array('value' => '018d8922733075ebb439549c49aee6b8', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#376b24', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53aedb0346d' => array('url' => array('value' => '124c71d524604ccbad6042edce3ac799/navigation/018cc50c8c4d709fa63cf1d09af46b70#', 'source' => 'static'), 'media' => array('value' => '018dd129ae937f148978984b74920e5c', 'source' => 'static'), 'newTab' => array('value' => false, 'source' => 'static'), 'category' => array('value' => '018cc50c8c4d709fa63cf1d09af46b70', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'none', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'horizontalAlign' => array('source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#376b24', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7673a0a5e4a2f90fed8b94' => array('media' => array('value' => '018dd4b698f470f081e271530cee4607', 'source' => 'static'), 'category' => array('value' => '018d89221c437205b45b39f58f1ca5c0', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '630px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#376b24', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7673a0a5e4a2f910cde78e' => array('media' => array('value' => '018dd4bea9a379b8b2e0ffe97f09366f', 'source' => 'static'), 'category' => array('value' => '018d8922b58d78ccba9d69d51e08c2a4', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#467634', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7673a0a5e4a2f91185920e' => array('media' => array('value' => '018dd4c21411711697b86fa95834d1a0', 'source' => 'static'), 'category' => array('value' => '018d8921b9d27d9880db0c1bfc70aad3', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#376b24', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7673a0a5e4a2f9129dece8' => array('content' => array('value' => '<p class="h3"><b><span style="font-size: 36px"><span style="color: rgb(255, 255, 255);">Gute Gründe für werkbank</span><span><font color="#00a4e6">360</font></span></span></b></p><ul><li><span style="background-color:transparent;">Über 12.000 Artikel</span></li><li><span style="background-color:transparent;">Erweiterbare Systeme mit passendem Zubehör</span></li><li><span style="background-color:transparent;">Hochwertige Materialien &amp; herausragende Qualität</span></li><li><span style="background-color:transparent;">Für jede Anforderung die passende Lösung</span></li></ul>', 'source' => 'static'), 'verticalAlign' => array('source' => 'static')), '018e0ecc7a7673a0a5e4a2f9138399c9' => array('url' => array('source' => 'static'), 'media' => array('value' => '018cd9df0ab27bb287c1b4c561e0ee91', 'source' => 'static'), 'newTab' => array('value' => false, 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'displayMode' => array('value' => 'cover', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'horizontalAlign' => array('source' => 'static')), '018e0ecc7a7673a0a5e4a2f915109828' => array('title' => array('value' => '', 'source' => 'static'), 'border' => array('value' => false, 'source' => 'static'), 'rotate' => array('value' => false, 'source' => 'static'), 'products' => array('value' => '0193d451ff977279aef95721fc519b7a', 'source' => 'product_stream'), 'boxLayout' => array('value' => 'standard', 'source' => 'static'), 'elMinWidth' => array('value' => '320px', 'source' => 'static'), 'navigation' => array('value' => true, 'source' => 'static'), 'displayMode' => array('value' => 'standard', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'productStreamLimit' => array('value' => 10, 'source' => 'static'), 'maxiaListingVariants' => array('value' => array('maxia_listing_variants_cms_block_display_mode' => 'selected', 'maxia_listing_variants_cms_block_restricted_properties' => array('46d93244e5c245f98add4d3b853c37a2')), 'source' => 'static'), 'productStreamSorting' => array('value' => 'random', 'source' => 'static')), '018e0ecc7a7673a0a5e4a2f917bfe9cf' => array('content' => array('value' => '<p></p><p style="text-align: center;"><span style="color: rgb(255, 255, 255); font-size: 30px;"><b>Abonnieren Sie unseren Newsletter &amp; sichern Sie sich</b></span></p><span style="font-size: 30px;"><p style="text-align: center;"><b><font color="#ffffff" style="font-size: 30px;"></font><font color="#00a4e6" style="font-size: 30px;">5%-Rabatt*</font></b><font color="#ffffff" style="font-size: 30px;"><b> auf Ihren nächsten Einkau</b>f</font></p></span><p></p><ul>    <li><b>Monatliche Top-Angebote</b></li>    <li><b>Informationen &amp; News</b></li>    <li><b>Gewinnspiele &amp; News</b></li></ul>', 'source' => 'static'), 'verticalAlign' => array('source' => 'static')), '018e65de273172eb8c2b99b9c26c7fcb' => array('media' => array('value' => '018dcfe3ea4b76fcab1f870439587df6', 'source' => 'static'), 'category' => array('value' => '018d8922733075ebb439549c49aee6b8', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#376b24', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e65de273270c9afa3a43e646cdb95' => array('url' => array('value' => '124c71d524604ccbad6042edce3ac799/navigation/018cc50c8c4d709fa63cf1d09af46b70#', 'source' => 'static'), 'media' => array('value' => '018dd129ae937f148978984b74920e5c', 'source' => 'static'), 'newTab' => array('value' => false, 'source' => 'static'), 'category' => array('value' => '018cc50c8c4d709fa63cf1d09af46b70', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'none', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'horizontalAlign' => array('source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#376b24', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e65de273270c9afa3a43e64a972bb' => array('media' => array('value' => '018dd4b698f470f081e271530cee4607', 'source' => 'static'), 'category' => array('value' => '018d89221c437205b45b39f58f1ca5c0', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#376b24', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e65de273270c9afa3a43e6556eb8a' => array('media' => array('value' => '018dd4bea9a379b8b2e0ffe97f09366f', 'source' => 'static'), 'category' => array('value' => '018d8922b58d78ccba9d69d51e08c2a4', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#467634', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e65de273270c9afa3a43e6618249f' => array('media' => array('value' => '018dd4c21411711697b86fa95834d1a0', 'source' => 'static'), 'category' => array('value' => '018d8921b9d27d9880db0c1bfc70aad3', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#376b24', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e66102af27c5ca08a46ed7d0a6777' => array('title' => array('value' => '', 'source' => 'static'), 'border' => array('value' => false, 'source' => 'static'), 'rotate' => array('value' => true, 'source' => 'static'), 'products' => array('value' => '0193d451ff977279aef95721fc519b7a', 'source' => 'product_stream'), 'boxLayout' => array('value' => 'standard', 'source' => 'static'), 'elMinWidth' => array('value' => '300px', 'source' => 'static'), 'navigation' => array('value' => false, 'source' => 'static'), 'displayMode' => array('value' => 'standard', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'productStreamLimit' => array('value' => 4, 'source' => 'static'), 'maxiaListingVariants' => array('value' => array('maxia_listing_variants_cms_block_display_mode' => 'selected', 'maxia_listing_variants_cms_block_restricted_properties' => array('46d93244e5c245f98add4d3b853c37a2')), 'source' => 'static'), 'productStreamSorting' => array('value' => 'random', 'source' => 'static')), '0193cfca1cdc71b7a5637261c60ea0b2' => array('speed' => array('value' => 300, 'source' => 'static'), 'autoplay' => array('value' => true, 'source' => 'static'), 'animateIn' => array('source' => 'static'), 'autoSlide' => array('value' => true, 'source' => 'static'), 'minHeight' => array('value' => '300px', 'source' => 'static'), 'animateOut' => array('source' => 'static'), 'displayMode' => array('value' => 'contain', 'source' => 'static'), 'sliderItems' => array('value' => array(array('newTab' => false, 'mediaUrl' => 'https://werkbank360.de/media/50/39/a3/1742308317/Banner_Maschinenbau-Fertigungstechnik_Startseite_1054x564px.jpg?ts=1742308317')), 'source' => 'static'), 'enableFeature' => array('value' => true, 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'navigationDots' => array('source' => 'static'), 'autoplayTimeout' => array('value' => 5000, 'source' => 'static'), 'navigationArrows' => array('value' => 'inside', 'source' => 'static'), 'autoplayHoverPause' => array('value' => true, 'source' => 'static')), '0193cfca1cdc71b7a563726269b19ef0' => array('content' => array('value' => '<p class="h6" style="color: #00A4E6;">Branche</p><p class="h2" style="color: #FFFFFF;">    <b>Maschinenbau &amp; Fertigungstechnik</b></p><p style="color: #FFFFFF; line-height: 1.5;" class="h6"><br>    <b>Entdecken Sie unsere Produkte, die den AnforderungenIhrer Branche gerecht werden.</b></p><br><p style="text-align: center;" class="h6">    <a style="background-color: #00A4E6; color: #FFFFFF; padding: 20px 20px; text-decoration: none; border-radius: 0px; display: block; width: 85%; box-sizing: border-box; margin: 0 auto; margin-left: 0;" href="/branchen/maschinenbau-fertigungstechnik">        Jetzt entdecken!    </a></p>', 'source' => 'static'), 'verticalAlign' => array('value' => 'center', 'source' => 'static')), '0194459437ad791e817279889f420836' => array('url' => array('source' => 'static'), 'media' => array('value' => '0194459761097f948bab929467e71429', 'source' => 'static'), 'newTab' => array('value' => false, 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'horizontalAlign' => array('source' => 'static')), '0194459437ad791e81727989c2659472' => array('url' => array('source' => 'static'), 'media' => array('value' => '0194459761087bd3a6e9f900266c93e6', 'source' => 'static'), 'newTab' => array('value' => false, 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'horizontalAlign' => array('source' => 'static')), '0194459437ad791e8172798a6ea2934f' => array('media' => array('value' => '01944597dd0b703dae12996074db9c35', 'source' => 'static'), 'category' => array('value' => '018d603f70f27317ba5c1bb9e8dfb066', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static'))), object(EntityResolverContext))
     (vendor/shopware/core/Content/Category/SalesChannel/CategoryRoute.php:86)
  at Shopware\Core\Content\Category\SalesChannel\CategoryRoute->load('018c8692d6ae70329a394e831e195fb6', object(Request), object(SalesChannelContext))
     (vendor/shopware/core/Content/Category/SalesChannel/CachedCategoryRoute.php:73)
  at Shopware\Core\Content\Category\SalesChannel\CachedCategoryRoute->Shopware\Core\Content\Category\SalesChannel\{closure}()
     (vendor/shopware/core/Profiling/Profiler.php:67)
  at Shopware\Core\Profiling\Profiler::trace('category-route', object(Closure))
     (vendor/shopware/core/Content/Category/SalesChannel/CachedCategoryRoute.php:65)
  at Shopware\Core\Content\Category\SalesChannel\CachedCategoryRoute->load('018c8692d6ae70329a394e831e195fb6', object(Request), object(SalesChannelContext))
     (vendor/store.shopware.com/swagpaypal/src/Checkout/ExpressCheckout/SalesChannel/ExpressCategoryRoute.php:48)
  at Swag\PayPal\Checkout\ExpressCheckout\SalesChannel\ExpressCategoryRoute->load('018c8692d6ae70329a394e831e195fb6', object(Request), object(SalesChannelContext))
     (vendor/shopware/storefront/Page/Navigation/NavigationPageLoader.php:41)
  at Shopware\Storefront\Page\Navigation\NavigationPageLoader->load(object(Request), object(SalesChannelContext))
     (vendor/shopware/storefront/Controller/NavigationController.php:35)
  at Shopware\Storefront\Controller\NavigationController->home(object(Request), object(SalesChannelContext))
     (vendor/symfony/http-kernel/HttpKernel.php:183)
  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/shopware/core/Framework/Adapter/Kernel/HttpKernel.php:58)
  at Shopware\Core\Framework\Adapter\Kernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php:86)
  at Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle(object(HttpKernel), object(Request), 1, true)
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:461)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->forward(object(Request), true)
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:438)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->fetch(object(Request), true)
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:336)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->lookup(object(Request), true)
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:214)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->handle(object(Request), 1, true)
     (vendor/shopware/core/Framework/Adapter/Kernel/HttpCacheKernel.php:65)
  at Shopware\Core\Framework\Adapter\Kernel\HttpCacheKernel->handle(object(Request), 1, true)
     (vendor/shopware/core/Kernel.php:117)
  at Shopware\Core\Kernel->handle(object(Request))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/var/www/share/prelive.rau.dev.intocommerce.de/releases/20250512174806/vendor/autoload_runtime.php')
     (public/index.php:11)