TALKING ABOUT SOME COMMON SYMPTOMS

Behind the scenes view of Ryan Reynolds with his mother during an interview.

When my dad was diagnosed with Parkinson's, I thought I knew what to expect with the physical symptoms, but no one warned us about the hallucinations and delusions which are often part of the disease. My dad was pretty stubborn but also strong. He didn't want to acknowledge he might be struggling to hold his grip on reality. I wish I knew then what I know now. I want this work to encourage conversations and destigmatize one of the toughest parts of Parkinson's.”

—Ryan Reynolds, actor and advocate

DISCUSSING PARKINSON’S HALLUCINATIONS AND DELUSIONS

It's essential to embrace open dialogue about Parkinson's-related hallucinations and delusions, especially during medical visits. These challenging symptoms may affect about 50% of people with Parkinson's over the course of their disease. Explore why they might go unmentioned, and learn how you can discuss them with your family.

Raise Awareness and Understanding

Educate yourself and your loved ones that hallucinations and delusions can be part of living with Parkinson's. This knowledge fosters a more compassionate and effective approach to managing these symptoms together.

Confront Stigma and Embarrassment

Open discussions can reduce the discomfort associated with these symptoms. Normalizing these conversations helps you and your loved ones speak honestly and more frequently.

Speak Up in Every Appointment

Always mention any hallucinations or delusions during doctor’s visits. Be sure to let your doctor know how these symptoms are impacting your daily life and relationships. These details may be overlooked during busy appointments unless specifically mentioned.

HOW DO I TALK TO MY LOVED ONES ABOUT PARKINSON’S-RELATED HALLUCINATIONS AND DELUSIONS

Learn from Ryan and his mother, Tammy, as they share the lessons they have learned on discussing Parkinson’s-related hallucinations and delusions with loved ones. Discover why these conversations are crucial for providing support and understanding.

Click to play "How do I talk to my loved ones?" video
En Español

BUILDING A SUPPORTIVE PARKINSON’S CARE PLAN

Supporting a loved one with Parkinson's disease (PD) is profoundly meaningful, though it can sometimes be overwhelming. Planning together and clearly understanding each person's role allows you to develop a care plan that readies you for the unexpected, strengthening your bond as a family. Use these tips to enable your family in creating a more effective and compassionate care plan.

Develop a Care Plan:

  • Work with your healthcare professionals to create a comprehensive care plan that includes strategies for dealing with hallucinations and delusions. This plan might include specific changes you can make in your home or options for treatment. Remember, only your doctor can determine if a treatment option is right for you.

Define Roles Clearly:

  • Ensure that everyone in the family understands their role in the care plan. Whether it's administering medication, attending doctor’s appointments, or providing emotional support, clear roles help improve the effectiveness of care.

Educate Everyone:

  • Make sure all loved ones are informed about Parkinson's symptoms, treatments, and what to expect. Education is crucial for effective management and reduces uncertainty and fear.

A guide for families living with Parkinson's

From care partners to adult children, everyone is crucial in easing the emotional and physical challenges of PD. This guide offers supportive tips and practical advice to involve the whole family and includes strategies for managing hallucinations and delusions, smoothing the daily ups and downs of Parkinson’s.

Guide for care partners

En Español

Warning: file_put_contents(compress.zlib:///home/site/wwwroot/var/cache/dev/profiler/9f/a5/82a59f): failed to open stream: operation failed (500 Internal Server Error)

Symfony Exception

ErrorException

HTTP 500 Internal Server Error

Warning: file_put_contents(compress.zlib:///home/site/wwwroot/var/cache/dev/profiler/9f/a5/82a59f): failed to open stream: operation failed

Exception

ErrorException

  1.         if (\function_exists('gzcompress')) {
  2.             $file 'compress.zlib://'.$file;
  3.             stream_context_set_option($context'zlib''level'3);
  4.         }
  5.         if (false === file_put_contents($fileserialize($data), 0$context)) {
  6.             return false;
  7.         }
  8.         if (!$profileIndexed) {
  9.             // Add to index
  1.             if ($collector instanceof LateDataCollectorInterface) {
  2.                 $collector->lateCollect();
  3.             }
  4.         }
  5.         if (!($ret $this->storage->write($profile)) && null !== $this->logger) {
  6.             $this->logger->warning('Unable to store the profiler information.', ['configured_storage' => \get_class($this->storage)]);
  7.         }
  8.         return $ret;
  9.     }
  1.             }
  2.         }
  3.         // save profiles
  4.         foreach ($this->profiles as $request) {
  5.             $this->profiler->saveProfile($this->profiles[$request]);
  6.         }
  7.         $this->profiles = new \SplObjectStorage();
  8.         $this->parents = new \SplObjectStorage();
  9.     }
  1.         $this->called true;
  2.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  3.         $e $this->stopwatch->start($this->name'event_listener');
  4.         ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         if ($e->isStarted()) {
  6.             $e->stop();
  7.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function terminate(Request $requestResponse $response)
  5.     {
  6.         $this->dispatcher->dispatch(new TerminateEvent($this$request$response), KernelEvents::TERMINATE);
  7.     }
  8.     /**
  9.      * @internal
  10.      */
in vendor/symfony/http-kernel/Kernel.php -> terminate (line 161)
  1.         if (false === $this->booted) {
  2.             return;
  3.         }
  4.         if ($this->getHttpKernel() instanceof TerminableInterface) {
  5.             $this->getHttpKernel()->terminate($request$response);
  6.         }
  7.     }
  8.     /**
  9.      * {@inheritdoc}
Kernel->terminate(object(Request), object(Response)) in public/index.php (line 35)
  1.     $kernel = new CacheKernel($kernel);
  2. }
  3. $request Request::createFromGlobals();
  4. $response $kernel->handle($request);
  5. $response->send();
  6. $kernel->terminate($request$response);

Logs 1

Level Channel Message
INFO 21:23:00 request Matched route "app_catchall_index".
{
    "route": "app_catchall_index",
    "route_parameters": {
        "_route": "app_catchall_index",
        "slug": "talking-about-symptoms",
        "_controller": "App\\Controller\\CatchAllController::index"
    },
    "request_uri": "http://moretoparkinsons-uat.azurewebsites.net/talking-about-symptoms",
    "method": "GET"
}
DEBUG 21:23:00 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 21:23:00 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 21:23:00 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 21:23:00 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 21:23:00 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 21:23:00 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 21:23:00 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 21:23:00 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 21:23:00 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 21:23:00 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 21:23:00 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 21:23:00 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 21:23:00 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 21:23:00 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 21:23:00 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 21:23:00 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 21:23:00 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 21:23:00 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 21:23:00 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
INFO 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/Z7giC8jD2UFUmQwSWQOM6?locale=en-US (0.059s)
DEBUG 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/Z7giC8jD2UFUmQwSWQOM6?locale=en-US (0.059s)
{
    "api": "DELIVERY",
    "duration": 0.05883598327636719,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/Z7giC8jD2UFUmQwSWQOM6?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/entries/:id\r\nETag: W/\"16142830664595370692\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 720280\r\nDate: Tue, 07 Jul 2026 21:23:00 GMT\r\nX-Served-By: cache-ewr-kewr1740070-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 0, 0\r\nX-Timer: S1783459381.656657,VS0,VE1\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: d9b4d316-b0aa-4780-86f2-0f535bce26bc\r\nx-encoded-content-encoding: gzip\r\nx-encoded-content-length: 1298\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"Z7giC8jD2UFUmQwSWQOM6\",\"type\":\"Entry\",\"createdAt\":\"2025-01-30T18:43:58.785Z\",\"updatedAt\":\"2025-02-25T16:38:13.872Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":13,\"revision\":6,\"contentType\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"ContentType\",\"id\":\"consumerPageSeoMetadata\"}},\"locale\":\"en-US\"},\"fields\":{\"homepageTitleTag\":\"Parkinson's-related Hallucinations and Delusions | More to Parkinson's\",\"homepageDescriptionTag\":\"Parkinson's-related Hallucinations and Delusions, Hallucinations and Delusions\",\"homepageOgTitle\":\"Parkinson's-related Hallucinations and Delusions | More to Parkinson's\",\"homepageOgDescription\":\"Parkinson's-related Hallucinations and Delusions\",\"homepageTwitterTitle\":\"Parkinson's-related Hallucinations and Delusions | More to Parkinson's\",\"homepageTwitterDescription\":\"Parkinson's-related Hallucinations and Delusions\",\"whoIsRiskTitleTag\":\"Who Is At Risk? | More to Parkinson's\",\"whoIsRiskDescriptionTag\":\"Learn about the 2 major types of Parkinson's disease symptoms, motor symptoms and nonmotor symptoms and who might be at risk.\",\"whoIsRiskOgTitle\":\"Who Is At Risk? | More to Parkinson's\",\"whoIsRiskOgDescription\":\"Learn about the 2 major types of Parkinson's disease symptoms, motor symptoms and nonmotor symptoms and who might be at risk.\",\"whoIsRiskTwitterTitle\":\"Who Is At Risk? | More to Parkinson's\",\"whoIsRiskTwitterDescription\":\"Learn about the 2 major types of Parkinson's disease symptoms, motor symptoms and nonmotor symptoms and who might be at risk.\",\"whatAreSignsTitleTag\":\"What Are the Signs? | More to Parkinson's\",\"whatAreSignsDescriptionTag\":\"Discover the warning signs of Parkinson's disease–related hallucinations and delusions, and watch a video about their personal impact.\",\"whatAreSignsOgTitle\":\"What Are the Signs? | More to Parkinson's\",\"whatAreSignsOgDescription\":\"Discover the warning signs of Parkinson's disease–related hallucinations and delusions, and watch a video about their personal impact.\",\"whatAreSignsTwitterTitle\":\"What Are the Signs? | More to Parkinson's\",\"whatAreSignsTwitterDescription\":\"Discover the warning signs of Parkinson's disease–related hallucinations and delusions, and watch a video about their personal impact.\",\"personalStoriesTitleTag\":\"Personal Stories | More to Parkinson's\",\"personalStoriesDescriptionTag\":\"Watch personal stories of Ryan Reynolds and others who have been affected by Parkinson's-related hallucinations and delusions.\",\"personalStoriesOgTitle\":\"Personal Stories | More to Parkinson's\",\"personalStoriesOgDescription\":\"Watch personal stories of people who have been affected by Parkinson's disease–related hallucinations and delusions, as they speak with a neurologist.\",\"personalStoriesTwitterTitle\":\"Personal Stories | More to Parkinson's\",\"personalStoriesTwitterDescription\":\"Watch personal stories of people who have been affected by Parkinson's disease–related hallucinations and delusions, as they speak with a neurologist.\",\"talkingAboutTitleTag\":\"Talking About Symptoms | More to Parkinson's\",\"talkingAboutDescriptionTag\":\"Ryan Reynolds and his mother, Tammy, share the lessons they've learned about talking to a loved one about PD-related hallucinations and delusions.\",\"talkingAboutOgTitle\":\"Talking About Symptoms | More to Parkinson's\",\"talkingAboutOgDescription\":\"Ryan Reynolds and his mother, Tammy, share the lessons they've learned about talking to a loved one about PD-related hallucinations and delusions.\",\"talkingAboutTwitterTitle\":\"Talking About Symptoms | More to Parkinson's\",\"talkingAboutTwitterDescription\":\"Ryan Reynolds and his mother, Tammy, share the lessons they've learned about talking to a loved one about PD-related hallucinations and delusions.\",\"nextStepsTitleTag\":\"Next Steps | More to Parkinson's\",\"nextStepsDescriptionTag\":\"Find resources for Parkinson's disease, including a four-question symptom screener, a specialist locator, and support groups. Additionally, register for upcoming PD events.\",\"nextStepsOgTitle\":\"Next Steps | More to Parkinson's\",\"nextStepsOgDescription\":\"Find resources for Parkinson's disease, including a four-question symptom screener, a specialist locator, and support groups. Additionally, register for upcoming PD events.\",\"nextStepsTwitterTitle\":\"Next Steps | More to Parkinson's\",\"nextStepsTwitterDescription\":\"Find resources for Parkinson's disease, including a four-question symptom screener, a specialist locator, and support groups. Additionally, register for upcoming PD events.\",\"unsubscribeTitleTag\":\"Unsubscribe | More to Parkinson's\",\"unsubscribeDescriptionTag\":\"Unsubscribe from MoreToParkinsons.com news and updates.\",\"unsubscribeOgTitle\":\"Unsubscribe | More to Parkinson's\",\"unsubscribeOgDescription\":\"Unsubscribe from MoreToParkinsons.com news and updates.\",\"unsubscribeTwitterTitle\":\"Unsubscribe | More to Parkinson's\",\"unsubscribeTwitterDescription\":\"Unsubscribe from MoreToParkinsons.com news and updates.\",\"notFound404TitleTag\":\"Page Not Found | More to Parkinson's\",\"notFound404DescriptionTag\":\"MoreToParkinsons.com page not found.\",\"notFound404OgTitle\":\"Page Not Found | More to Parkinson's\",\"notFound404OgDescription\":\"MoreToParkinsons.com page not found.\",\"notFound404TwitterTitle\":\"Page Not Found | More to Parkinson's\",\"notFound404TwitterDescription\":\"MoreToParkinsons.com page not found.\",\"allConsumerOgImage\":\"https://images.ctfassets.net/hac178phwz3f/2twKLwlm5zsOUjmTcpMpFB/3afd86a9958817049a3fe06ea4a75f76/ryan-with-mom-on-couch.jpg\",\"allConsumerTwitterImage\":\"https://images.ctfassets.net/hac178phwz3f/2twKLwlm5zsOUjmTcpMpFB/3afd86a9958817049a3fe06ea4a75f76/ryan-with-mom-on-couch.jpg\"}}\n",
    "exception": "N;"
}
INFO 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x (0.017s)
DEBUG 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x (0.017s)
{
    "api": "DELIVERY",
    "duration": 0.017225980758666992,
    "request": "GET /spaces/xbztif0ye43x HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Length: 165\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: master\r\nCF-Environment-Uuid: 87c69dcc-837f-4927-86c5-8b2aed0fc253\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:id\r\nETag: \"17126695029986494933\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 524796\r\nDate: Tue, 07 Jul 2026 21:23:00 GMT\r\nX-Served-By: cache-ewr-kewr1740073-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 3, 0\r\nX-Timer: S1783459381.675003,VS0,VE2\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: 1241e8a7-d277-4d87-89c7-55cf539cf119\r\n\r\n{\"sys\":{\"type\":\"Space\",\"id\":\"xbztif0ye43x\"},\"name\":\"New MTP space\",\"locales\":[{\"code\":\"en-US\",\"default\":true,\"name\":\"English (United States)\",\"fallbackCode\":null}]}\n",
    "exception": "N;"
}
INFO 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/locales (0.016s)
DEBUG 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/locales (0.016s)
{
    "api": "DELIVERY",
    "duration": 0.015697002410888672,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/locales HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Length: 218\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/locales\r\nETag: \"7144313416658342140\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 1016828\r\nDate: Tue, 07 Jul 2026 21:23:00 GMT\r\nX-Served-By: cache-ewr-kewr1740080-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 0, 0\r\nX-Timer: S1783459381.696266,VS0,VE1\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: 360de599-f871-42d3-bbff-eef25e0b1bc8\r\n\r\n{\"sys\":{\"type\":\"Array\"},\"total\":1,\"skip\":0,\"limit\":1000,\"items\":[{\"code\":\"en-US\",\"name\":\"English (United States)\",\"default\":true,\"fallbackCode\":null,\"sys\":{\"id\":\"1Bp62fVNj2pvIqlkUhfIQh\",\"type\":\"Locale\",\"version\":1}}]}\n",
    "exception": "N;"
}
INFO 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/consumerPageSeoMetadata (0.016s)
DEBUG 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/consumerPageSeoMetadata (0.016s)
{
    "api": "DELIVERY",
    "duration": 0.01579880714416504,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/consumerPageSeoMetadata HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/content_types/:id\r\nETag: W/\"16184383556608829241\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 806531\r\nDate: Tue, 07 Jul 2026 21:23:00 GMT\r\nX-Served-By: cache-ewr-kewr1740043-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 1, 0\r\nX-Timer: S1783459381.713706,VS0,VE1\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: 689421ef-60f9-45d5-b229-c15e23db2b7e\r\nx-encoded-content-encoding: gzip\r\nx-encoded-content-length: 882\r\n\r\n{\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"consumerPageSeoMetadata\",\"type\":\"ContentType\",\"createdAt\":\"2025-01-30T18:26:13.263Z\",\"updatedAt\":\"2025-01-30T18:26:13.263Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"revision\":1},\"displayField\":\"homepageTitleTag\",\"name\":\"Consumer - Page SEO Metadata\",\"description\":\"\",\"fields\":[{\"id\":\"homepageTitleTag\",\"name\":\"Homepage - Title Tag\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"homepageDescriptionTag\",\"name\":\"Homepage - Description Tag\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"homepageOgTitle\",\"name\":\"Homepage - OG Title\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"homepageOgDescription\",\"name\":\"Homepage - OG Description\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"homepageTwitterTitle\",\"name\":\"Homepage - Twitter Title\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"homepageTwitterDescription\",\"name\":\"Homepage - Twitter Description\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"whoIsRiskTitleTag\",\"name\":\"Who Is Risk - Title Tag\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"whoIsRiskDescriptionTag\",\"name\":\"Who Is Risk - Description Tag\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"whoIsRiskOgTitle\",\"name\":\"Who Is Risk - OG Title\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"whoIsRiskOgDescription\",\"name\":\"Who Is Risk - OG Description\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"whoIsRiskTwitterTitle\",\"name\":\"Who Is Risk - Twitter Title\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"whoIsRiskTwitterDescription\",\"name\":\"Who Is Risk - Twitter Description\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"whatAreSignsTitleTag\",\"name\":\"What are Signs - Title Tag\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"whatAreSignsDescriptionTag\",\"name\":\"What are Signs - Description Tag\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"whatAreSignsOgTitle\",\"name\":\"What are Signs - OG Title\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"whatAreSignsOgDescription\",\"name\":\"What are Signs - OG Description\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"whatAreSignsTwitterTitle\",\"name\":\"What are Signs - Twitter Title\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"whatAreSignsTwitterDescription\",\"name\":\"What are Signs - Twitter Description\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"personalStoriesTitleTag\",\"name\":\"Personal Stories - Title Tag\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"personalStoriesDescriptionTag\",\"name\":\"Personal Stories - Description Tag\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"personalStoriesOgTitle\",\"name\":\"Personal Stories - OG Title\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"personalStoriesOgDescription\",\"name\":\"Personal Stories - OG Description\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"personalStoriesTwitterTitle\",\"name\":\"Personal Stories - Twitter Title\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"personalStoriesTwitterDescription\",\"name\":\"Personal Stories - Twitter Description\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"talkingAboutTitleTag\",\"name\":\"Talking About - Title Tag\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"talkingAboutDescriptionTag\",\"name\":\"Talking About - Description Tag\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"talkingAboutOgTitle\",\"name\":\"Talking About - OG Title\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"talkingAboutOgDescription\",\"name\":\"Talking About - OG Description\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"talkingAboutTwitterTitle\",\"name\":\"Talking About - Twitter Title\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"talkingAboutTwitterDescription\",\"name\":\"Talking About - Twitter Description\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"nextStepsTitleTag\",\"name\":\"Next Steps - Title Tag\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"nextStepsDescriptionTag\",\"name\":\"Next Steps - Description Tag\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"nextStepsOgTitle\",\"name\":\"Next Steps - OG Title\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"nextStepsOgDescription\",\"name\":\"Next Steps - OG Description\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"nextStepsTwitterTitle\",\"name\":\"Next Steps - Twitter Title\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"nextStepsTwitterDescription\",\"name\":\"Next Steps - Twitter Description\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"unsubscribeTitleTag\",\"name\":\"Unsubscribe - Title Tag\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"unsubscribeDescriptionTag\",\"name\":\"Unsubscribe - Description Tag\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"unsubscribeOgTitle\",\"name\":\"Unsubscribe - OG Title\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"unsubscribeOgDescription\",\"name\":\"Unsubscribe - OG Description\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"unsubscribeTwitterTitle\",\"name\":\"Unsubscribe - Twitter Title\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"unsubscribeTwitterDescription\",\"name\":\"Unsubscribe - Twitter Description\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"notFound404TitleTag\",\"name\":\"Not Found 404 - Title Tag\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"notFound404DescriptionTag\",\"name\":\"Not Found 404 - Description Tag\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"notFound404OgTitle\",\"name\":\"Not Found 404 - OG Title\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"notFound404OgDescription\",\"name\":\"Not Found 404 - OG Description\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"notFound404TwitterTitle\",\"name\":\"Not Found 404 - Twitter Title\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"notFound404TwitterDescription\",\"name\":\"Not Found 404 - Twitter Description\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"allConsumerOgImage\",\"name\":\"ALL Consumer - OG Image\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"allConsumerTwitterImage\",\"name\":\"All Consumer - Twitter Image\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false}]}\n",
    "exception": "N;"
}
INFO 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/0Ic2bm2aeLUg2fJAYDtAg?locale=en-US (0.016s)
DEBUG 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/0Ic2bm2aeLUg2fJAYDtAg?locale=en-US (0.016s)
{
    "api": "DELIVERY",
    "duration": 0.015848875045776367,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/0Ic2bm2aeLUg2fJAYDtAg?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/entries/:id\r\nETag: W/\"2586922128623154496\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 6745\r\nDate: Tue, 07 Jul 2026 21:23:00 GMT\r\nX-Served-By: cache-ewr-kewr1740077-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 0, 0\r\nX-Timer: S1783459381.730346,VS0,VE1\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: 2dac08e7-ac60-40c9-9319-b78d17a24bd2\r\nx-encoded-content-encoding: gzip\r\nx-encoded-content-length: 443\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"0Ic2bm2aeLUg2fJAYDtAg\",\"type\":\"Entry\",\"createdAt\":\"2025-01-30T18:43:59.664Z\",\"updatedAt\":\"2025-01-30T18:43:59.664Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":1,\"revision\":1,\"contentType\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"ContentType\",\"id\":\"consumerPageSeoMetadata2\"}},\"locale\":\"en-US\"},\"fields\":{\"homepageCanonicalUrl\":\"https://www.moretoparkinsons.com/\",\"whoIsRiskCanonicalUrl\":\"https://www.moretoparkinsons.com/who-is-at-risk\",\"whatAreSignsCanonicalUrl\":\"https://www.moretoparkinsons.com/what-are-the-signs\",\"talkingAboutCanonicalUrl\":\"https://www.moretoparkinsons.com/talking-about-symptoms\",\"personalStoriesCanonicalUrl\":\"https://www.moretoparkinsons.com/personal-stories\",\"nextStepsCanonicalUrl\":\"https://www.moretoparkinsons.com/next-steps\",\"unsubscribeCanonicalUrl\":\"https://www.moretoparkinsons.com/unsubscribe/\"}}\n",
    "exception": "N;"
}
INFO 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/consumerPageSeoMetadata2 (0.016s)
DEBUG 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/consumerPageSeoMetadata2 (0.016s)
{
    "api": "DELIVERY",
    "duration": 0.015604972839355469,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/consumerPageSeoMetadata2 HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/content_types/:id\r\nETag: W/\"11095011028167899766\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 1096710\r\nDate: Tue, 07 Jul 2026 21:23:00 GMT\r\nX-Served-By: cache-ewr-kewr1740089-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 0, 0\r\nX-Timer: S1783459381.750087,VS0,VE1\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: 4516f828-857e-4eba-b373-a71995d06486\r\nx-encoded-content-encoding: gzip\r\nx-encoded-content-length: 458\r\n\r\n{\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"consumerPageSeoMetadata2\",\"type\":\"ContentType\",\"createdAt\":\"2025-01-30T18:26:14.124Z\",\"updatedAt\":\"2025-01-30T18:26:14.124Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"revision\":1},\"displayField\":\"homepageCanonicalUrl\",\"name\":\"Consumer - Page SEO Metadata 2\",\"description\":\"\",\"fields\":[{\"id\":\"homepageCanonicalUrl\",\"name\":\"Homepage - Canonical url\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"whoIsRiskCanonicalUrl\",\"name\":\"Who Is Risk - Canonical url\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"whatAreSignsCanonicalUrl\",\"name\":\"What are Signs - Canonical url\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"talkingAboutCanonicalUrl\",\"name\":\"Talking About - Canonical url\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"personalStoriesCanonicalUrl\",\"name\":\"Personal Stories - Canonical url\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"nextStepsCanonicalUrl\",\"name\":\"Next Steps - Canonical url\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"unsubscribeCanonicalUrl\",\"name\":\"Unsubscribe - Canonical url\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"page404CanonicalUrl\",\"name\":\"Page 404 - Canonical url\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false}]}\n",
    "exception": "N;"
}
INFO 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/3Ni50NIqoexGpa70nIxMJU?locale=en-US (0.017s)
DEBUG 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/3Ni50NIqoexGpa70nIxMJU?locale=en-US (0.017s)
{
    "api": "DELIVERY",
    "duration": 0.016746044158935547,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/3Ni50NIqoexGpa70nIxMJU?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/entries/:id\r\nETag: W/\"2929884055035375432\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 361380\r\nDate: Tue, 07 Jul 2026 21:23:00 GMT\r\nX-Served-By: cache-ewr-kewr1740088-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 1, 0\r\nX-Timer: S1783459381.791372,VS0,VE2\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: f7cbefac-0292-4179-9f23-2fe0bf77718d\r\nx-encoded-content-encoding: gzip\r\nx-encoded-content-length: 1069\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"3Ni50NIqoexGpa70nIxMJU\",\"type\":\"Entry\",\"createdAt\":\"2025-01-30T18:43:43.461Z\",\"updatedAt\":\"2025-01-30T18:43:43.461Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":1,\"revision\":1,\"contentType\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"ContentType\",\"id\":\"consumerInterstitials\"}},\"locale\":\"en-US\"},\"fields\":{\"title\":\"YOU’RE ABOUT TO LEAVE MORETOPARKINSONS.COM\",\"redirectTextTreatmentOption\":\"You will be redirected to a product website with information on a potential treatment option.\",\"redirectTextThirdParty\":\"You will be redirected to a third-party website that will give you more information on a PD event and how you can register.\",\"redirectTextEventRegister\":\"You will be redirected to a third-party website that will give you more information on a PD event and how you can register.\",\"redirectTextHcpSrearch\":\"You are now leaving MoreToParkinsons.com to visit a website that is not owned or operated by Acadia Pharmaceuticals Inc. Links to all outside sites are provided as resources only. Acadia Pharmaceuticals Inc. does not accept responsibility or liability for the content or services of other websites.\",\"wantToContinue\":\"Do you want to continue?\",\"buttonStay\":\"Stay\",\"buttonContinue\":\"Continue\",\"closeIconWhite\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Asset\",\"id\":\"13KHLMIxGifpqLrgV3isoe\"}},\"closeIconAlt\":\"Click to close pop-up\",\"termsAndConditions\":\"Terms and Conditions\",\"healthcareProviderLocatorService\":\"Acadia Pharmaceuticals Inc. is providing this healthcare provider locator service to assist patients and caregivers find a healthcare provider in their area. No fees have been received by or paid to any healthcare providers for inclusion in this specialist locator directory. Inclusion of a healthcare provider in this directory does not represent an endorsement by or a recommendation from Acadia Pharmaceuticals Inc., nor does it imply that the healthcare provider on the list will determine that Nuplazid is right for you. You are ultimately responsible for the selection of a healthcare professional. This locator tool is just one resource of information available to you.\",\"buttonClose\":\"Close\"}}\n",
    "exception": "N;"
}
INFO 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/consumerInterstitials (0.016s)
DEBUG 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/consumerInterstitials (0.016s)
{
    "api": "DELIVERY",
    "duration": 0.015696048736572266,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/consumerInterstitials HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/content_types/:id\r\nETag: W/\"5353247031469068411\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 720252\r\nDate: Tue, 07 Jul 2026 21:23:00 GMT\r\nX-Served-By: cache-ewr-kewr1740030-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 1, 0\r\nX-Timer: S1783459381.814324,VS0,VE1\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: 7d64ac2a-2cc8-4519-b27b-b7117146bc4d\r\nx-encoded-content-encoding: gzip\r\nx-encoded-content-length: 572\r\n\r\n{\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"consumerInterstitials\",\"type\":\"ContentType\",\"createdAt\":\"2025-01-30T18:25:58.168Z\",\"updatedAt\":\"2025-01-30T18:25:58.168Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"revision\":1},\"displayField\":\"title\",\"name\":\"Consumer - Interstitials\",\"description\":\"\",\"fields\":[{\"id\":\"title\",\"name\":\"Title\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"redirectTextTreatmentOption\",\"name\":\"Redirect Text - Treatment Option\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"redirectTextThirdParty\",\"name\":\"Redirect Text - Third Party\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"redirectTextEventRegister\",\"name\":\"Redirect Text - Event Register\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"redirectTextHcpSrearch\",\"name\":\"Redirect Text - HCP Srearch\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"wantToContinue\",\"name\":\"Want to Continue\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"buttonStay\",\"name\":\"Button - Stay\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"buttonContinue\",\"name\":\"Button - Continue\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"closeIconWhite\",\"name\":\"Close Icon - White\",\"type\":\"Link\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false,\"linkType\":\"Asset\"},{\"id\":\"closeIconAlt\",\"name\":\"Close Icon Alt\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"termsAndConditions\",\"name\":\"Terms and Conditions\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"healthcareProviderLocatorService\",\"name\":\"Healthcare Provider Locator Service\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"buttonClose\",\"name\":\"Button - Close\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false}]}\n",
    "exception": "N;"
}
INFO 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/13KHLMIxGifpqLrgV3isoe?locale=en-US (0.016s)
DEBUG 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/13KHLMIxGifpqLrgV3isoe?locale=en-US (0.016s)
{
    "api": "DELIVERY",
    "duration": 0.0156710147857666,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/13KHLMIxGifpqLrgV3isoe?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Length: 677\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/assets/:id\r\nETag: \"16288215569457028501\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 524796\r\nDate: Tue, 07 Jul 2026 21:23:00 GMT\r\nX-Served-By: cache-ewr-kewr1740053-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 0, 0\r\nX-Timer: S1783459381.830566,VS0,VE1\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: f476b212-b2b7-4fde-b74c-71d7cac3bbfa\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"13KHLMIxGifpqLrgV3isoe\",\"type\":\"Asset\",\"createdAt\":\"2025-01-30T18:35:56.618Z\",\"updatedAt\":\"2025-01-30T18:35:56.618Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":2,\"revision\":1,\"locale\":\"en-US\"},\"fields\":{\"title\":\"close-white\",\"file\":{\"url\":\"//images.ctfassets.net/xbztif0ye43x/13KHLMIxGifpqLrgV3isoe/15990732916e3d5a467750da9918ae32/Close-Window-White-Icon.svg\",\"details\":{\"size\":266,\"image\":{\"width\":36,\"height\":36}},\"fileName\":\"Close-Window-White-Icon.svg\",\"contentType\":\"image/svg+xml\"}}}\n",
    "exception": "N;"
}
INFO 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/IcooN9zM3YwZ0Uegsn0bW?locale=en-US (0.017s)
DEBUG 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/IcooN9zM3YwZ0Uegsn0bW?locale=en-US (0.017s)
{
    "api": "DELIVERY",
    "duration": 0.016530990600585938,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/IcooN9zM3YwZ0Uegsn0bW?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/entries/:id\r\nETag: W/\"17459805204411913900\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 524795\r\nDate: Tue, 07 Jul 2026 21:23:00 GMT\r\nX-Served-By: cache-ewr-kewr1740053-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 0, 0\r\nX-Timer: S1783459381.846555,VS0,VE2\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: b7102a66-a2dd-417a-8348-f0bab28515d7\r\nx-encoded-content-encoding: gzip\r\nx-encoded-content-length: 811\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"IcooN9zM3YwZ0Uegsn0bW\",\"type\":\"Entry\",\"createdAt\":\"2025-01-30T18:43:49.245Z\",\"updatedAt\":\"2025-01-30T18:43:49.245Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":1,\"revision\":1,\"contentType\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"ContentType\",\"id\":\"hcpInterstitials\"}},\"locale\":\"en-US\"},\"fields\":{\"title\":\"YOU’RE ABOUT TO LEAVE MORETOPARKINSONS.COM/HCP\",\"redirectTextTreatmentOption\":\"You will be redirected to a product website with information on <br> a potential treatment option.\",\"wantToContinue\":\"Do you want to continue?\",\"buttonStay\":\"Stay\",\"buttonContinue\":\"Continue\",\"buttonContinueHref\":\"https://www.NuplazidHCP.com/\",\"hrefNuplazidExpertPerspectives\":\"https://nuplazidhcp.com/expert-perspectives\",\"closeIconWhite\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Asset\",\"id\":\"13KHLMIxGifpqLrgV3isoe\"}},\"closeIconTurquoise\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Asset\",\"id\":\"34Awa0CbMJqm99fLc8OEhw\"}},\"closeIconAlt\":\"Click to close pop-up\",\"titleAreYouHcp\":\"Are you a healthcare professional? \",\"mainTextAreYouHcp\":\"This information is intended for US healthcare professionals only.\",\"buttonHealthcareProvider\":\"I am a healthcare provider\",\"buttonPatient\":\"I am a patient/care partner\",\"buttonHrefPatient\":\"/\",\"saspapText\":\"You will be redirected to a third-party website that will give you more information on the SASPAP validated screener.\",\"socialIconsText\":\"You will be redirected to a third-party social media website.\"}}\n",
    "exception": "N;"
}
INFO 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/hcpInterstitials (0.017s)
DEBUG 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/hcpInterstitials (0.017s)
{
    "api": "DELIVERY",
    "duration": 0.01656794548034668,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/hcpInterstitials HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/content_types/:id\r\nETag: W/\"14846288832792757459\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 438532\r\nDate: Tue, 07 Jul 2026 21:23:00 GMT\r\nX-Served-By: cache-ewr-kewr1740080-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 1, 0\r\nX-Timer: S1783459381.864192,VS0,VE2\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: 3b9c1958-f0d0-473b-889f-4eaa68beb577\r\nx-encoded-content-encoding: gzip\r\nx-encoded-content-length: 625\r\n\r\n{\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"hcpInterstitials\",\"type\":\"ContentType\",\"createdAt\":\"2025-01-30T18:26:04.853Z\",\"updatedAt\":\"2025-01-30T18:26:04.853Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"revision\":1},\"displayField\":\"title\",\"name\":\"HCP - Interstitials\",\"description\":\"\",\"fields\":[{\"id\":\"title\",\"name\":\"Title\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"redirectTextTreatmentOption\",\"name\":\"Redirect Text - Treatment Option\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"wantToContinue\",\"name\":\"Want to Continue\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"buttonStay\",\"name\":\"Button - Stay\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"buttonContinue\",\"name\":\"Button - Continue\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"buttonContinueHref\",\"name\":\"Button - Continue Href\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"hrefNuplazidExpertPerspectives\",\"name\":\"Href - Nuplazid Expert Perspectives\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"closeIconWhite\",\"name\":\"Close Icon - White\",\"type\":\"Link\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false,\"linkType\":\"Asset\"},{\"id\":\"closeIconTurquoise\",\"name\":\"Close Icon - Turquoise\",\"type\":\"Link\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false,\"linkType\":\"Asset\"},{\"id\":\"closeIconAlt\",\"name\":\"Close Icon Alt\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"titleAreYouHcp\",\"name\":\"Title - Are You HCP\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"mainTextAreYouHcp\",\"name\":\"Main Text - Are You HCP\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"buttonHealthcareProvider\",\"name\":\"Button - HealthcareProvider\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"buttonPatient\",\"name\":\"Button - Patient\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"buttonHrefPatient\",\"name\":\"Button href - Patient\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"saspapText\",\"name\":\"saspapText\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"socialIconsText\",\"name\":\"socialIconsText\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false}]}\n",
    "exception": "N;"
}
INFO 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/34Awa0CbMJqm99fLc8OEhw?locale=en-US (0.016s)
DEBUG 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/34Awa0CbMJqm99fLc8OEhw?locale=en-US (0.016s)
{
    "api": "DELIVERY",
    "duration": 0.01602792739868164,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/34Awa0CbMJqm99fLc8OEhw?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Length: 679\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/assets/:id\r\nETag: \"18334266292582083561\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 498125\r\nDate: Tue, 07 Jul 2026 21:23:00 GMT\r\nX-Served-By: cache-ewr-kewr1740053-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 1, 0\r\nX-Timer: S1783459381.881353,VS0,VE1\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: 55eba6be-64dc-4344-8c7f-dca24c3e33a9\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"34Awa0CbMJqm99fLc8OEhw\",\"type\":\"Asset\",\"createdAt\":\"2025-01-30T18:35:57.617Z\",\"updatedAt\":\"2025-01-30T18:35:57.617Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":2,\"revision\":1,\"locale\":\"en-US\"},\"fields\":{\"title\":\"close-turquoise\",\"file\":{\"url\":\"//images.ctfassets.net/xbztif0ye43x/34Awa0CbMJqm99fLc8OEhw/6d5b5f642ccd9293a3aa0c9629351e1f/Close-Window-Blue-Icon.svg\",\"details\":{\"size\":270,\"image\":{\"width\":36,\"height\":36}},\"fileName\":\"Close-Window-Blue-Icon.svg\",\"contentType\":\"image/svg+xml\"}}}\n",
    "exception": "N;"
}
INFO 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/2obgsdxvB5LdXJ9VbHEnZ4?locale=en-US (0.016s)
DEBUG 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/2obgsdxvB5LdXJ9VbHEnZ4?locale=en-US (0.016s)
{
    "api": "DELIVERY",
    "duration": 0.015877962112426758,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/2obgsdxvB5LdXJ9VbHEnZ4?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/entries/:id\r\nETag: W/\"7067986913219091767\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 964145\r\nDate: Tue, 07 Jul 2026 21:23:00 GMT\r\nX-Served-By: cache-ewr-kewr1740053-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 0, 0\r\nX-Timer: S1783459381.909818,VS0,VE1\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: c1bad4eb-44dd-4c6e-a624-82f08f9b4759\r\nx-encoded-content-encoding: gzip\r\nx-encoded-content-length: 915\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"2obgsdxvB5LdXJ9VbHEnZ4\",\"type\":\"Entry\",\"createdAt\":\"2025-01-30T18:43:43.117Z\",\"updatedAt\":\"2025-01-30T18:43:43.117Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":1,\"revision\":1,\"contentType\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"ContentType\",\"id\":\"consumerHeader\"}},\"locale\":\"en-US\"},\"fields\":{\"logo\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Asset\",\"id\":\"3GBsrGylkOUE28AB0DYhFh\"}},\"logoAlt\":\"Click to visit the More To Parkinson's homepage\",\"logoHref\":\"/\",\"linkTextForHealthcareProviders\":\"For Healthcare Providers\",\"linkHrefForHealthcareProviders\":\"/hcp\",\"linkTextSignUp\":\"Sign up for information\",\"linkHrefSignUp\":\"/next-steps#sign-up\",\"linkTextLearn\":\"Learn about a treatment option\",\"linkHrefLearn\":\"https://www.nuplazid.com/\",\"navLinkTextWhoIsAtRisk\":\"Who Is at Risk?\",\"navLinkHrefWhoIsAtRisk\":\"/who-is-at-risk\",\"navLinkTextWhatAreTheSigns\":\"What Are the Signs?\",\"navLinkHrefWhatAreTheSigns\":\"/what-are-the-signs\",\"navLinkTextTalkingAboutSymptoms\":\"Talking About Symptoms\",\"navLinkHrefTalkingAboutSymptoms\":\"/talking-about-symptoms\",\"navLinkTextPersonalStories\":\"Personal Stories\",\"navLinkHrefPersonalStories\":\"/personal-stories\",\"navLinkTextNextSteps\":\"Next Steps\",\"navLinkHrefNextSteps\":\"/next-steps\",\"navDropdownTextDirectSupportLinks\":\"Quick Links\",\"downIcon\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Asset\",\"id\":\"0b1Dt2Jxwu6po1BtKz2LE\"}},\"navLinkTextTalkToMyLovedOnes\":\"How do I talk to my loved ones?\",\"navLinkHrefTalkToMyLovedOnes\":\"/next-steps#download-the-guide\",\"navLinkTextTalkToMyDoctor\":\"How do I talk to my doctor?\",\"navLinkHrefTalkToMyDoctor\":\"/next-steps#start-a-conversation\",\"navLinkTextFindASpecialist\":\"How do I find a specialist?\",\"navLinkHrefFindASpecialist\":\"/next-steps#locate-a-specialist\",\"hamburgerMenuIcon\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Asset\",\"id\":\"2uSxhtDALpfXRvMrL2MJMy\"}},\"hamburgerMenuIconAlt\":\"Menu\",\"closeIcon\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Asset\",\"id\":\"8hXzN51HmsLHnMvh0tR3l\"}},\"closeIconAlt\":\"Close\"}}\n",
    "exception": "N;"
}
INFO 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/consumerHeader (0.016s)
DEBUG 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/consumerHeader (0.016s)
{
    "api": "DELIVERY",
    "duration": 0.016338109970092773,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/consumerHeader HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/content_types/:id\r\nETag: W/\"17169934223389963485\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 6745\r\nDate: Tue, 07 Jul 2026 21:23:00 GMT\r\nX-Served-By: cache-ewr-kewr1740037-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 0, 0\r\nX-Timer: S1783459381.926868,VS0,VE1\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: 3a6d0acb-8124-48cf-9940-eaee6986431b\r\nx-encoded-content-encoding: gzip\r\nx-encoded-content-length: 813\r\n\r\n{\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"consumerHeader\",\"type\":\"ContentType\",\"createdAt\":\"2025-01-30T18:25:57.665Z\",\"updatedAt\":\"2025-01-30T18:25:57.665Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"revision\":1},\"displayField\":\"logoAlt\",\"name\":\"Consumer - Header\",\"description\":\"\",\"fields\":[{\"id\":\"logo\",\"name\":\"Logo\",\"type\":\"Link\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false,\"linkType\":\"Asset\"},{\"id\":\"logoAlt\",\"name\":\"Logo Alt\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"logoHref\",\"name\":\"Logo Href\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"linkTextForHealthcareProviders\",\"name\":\"Link Text - For Healthcare Providers\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"linkHrefForHealthcareProviders\",\"name\":\"Link href - For Healthcare Providers\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"linkTextSignUp\",\"name\":\"Link Text - Sign Up\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"linkHrefSignUp\",\"name\":\"Link href - Sign Up\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"linkTextLearn\",\"name\":\"Link Text - Learn\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"linkHrefLearn\",\"name\":\"Link Href - Learn\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"navLinkTextWhoIsAtRisk\",\"name\":\"Nav Link Text - Who is at Risk\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"navLinkHrefWhoIsAtRisk\",\"name\":\"Nav Link href - Who is at Risk\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"navLinkTextWhatAreTheSigns\",\"name\":\"Nav Link Text - What are the Signs\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"navLinkHrefWhatAreTheSigns\",\"name\":\"Nav Link href - What are the Signs\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"navLinkTextTalkingAboutSymptoms\",\"name\":\"Nav Link Text - Talking About Symptoms\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"navLinkHrefTalkingAboutSymptoms\",\"name\":\"Nav Link href - Talking About Symptoms\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"navLinkTextPersonalStories\",\"name\":\"Nav Link Text - Personal Stories\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"navLinkHrefPersonalStories\",\"name\":\"Nav Link href - Personal Stories\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"navLinkTextNextSteps\",\"name\":\"Nav Link Text - Next Steps\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"navLinkHrefNextSteps\",\"name\":\"Nav Link href - Next Steps\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"navDropdownTextDirectSupportLinks\",\"name\":\"Nav Dropdown Text - Direct Support Links\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"downIcon\",\"name\":\"Down Icon\",\"type\":\"Link\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false,\"linkType\":\"Asset\"},{\"id\":\"navLinkTextTalkToMyLovedOnes\",\"name\":\"Nav Link Text - talk to my loved ones\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"navLinkHrefTalkToMyLovedOnes\",\"name\":\"Nav Link href - talk to my loved ones\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"navLinkTextTalkToMyDoctor\",\"name\":\"Nav Link Text - talk to my doctor\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"navLinkHrefTalkToMyDoctor\",\"name\":\"Nav Link href - talk to my doctor\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"navLinkTextFindASpecialist\",\"name\":\"Nav Link Text - find a specialist\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"navLinkHrefFindASpecialist\",\"name\":\"Nav Link href - find a specialist\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"hamburgerMenuIcon\",\"name\":\"Hamburger Menu Icon\",\"type\":\"Link\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false,\"linkType\":\"Asset\"},{\"id\":\"hamburgerMenuIconAlt\",\"name\":\"Hamburger Menu Icon Alt\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"closeIcon\",\"name\":\"Close Icon\",\"type\":\"Link\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false,\"linkType\":\"Asset\"},{\"id\":\"closeIconAlt\",\"name\":\"Close Icon Alt\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false}]}\n",
    "exception": "N;"
}
INFO 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/3GBsrGylkOUE28AB0DYhFh?locale=en-US (0.017s)
DEBUG 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/3GBsrGylkOUE28AB0DYhFh?locale=en-US (0.017s)
{
    "api": "DELIVERY",
    "duration": 0.016728878021240234,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/3GBsrGylkOUE28AB0DYhFh?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Length: 685\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/assets/:id\r\nETag: \"10509642602804976143\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 806530\r\nDate: Tue, 07 Jul 2026 21:23:00 GMT\r\nX-Served-By: cache-ewr-kewr1740089-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 0, 0\r\nX-Timer: S1783459381.943722,VS0,VE2\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: 3fe265f1-42f0-45c1-971f-da461ed767ce\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"3GBsrGylkOUE28AB0DYhFh\",\"type\":\"Asset\",\"createdAt\":\"2025-01-30T18:36:14.119Z\",\"updatedAt\":\"2025-01-30T18:36:14.119Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":2,\"revision\":1,\"locale\":\"en-US\"},\"fields\":{\"title\":\"MTP Logo R V RGB\",\"file\":{\"url\":\"//images.ctfassets.net/xbztif0ye43x/3GBsrGylkOUE28AB0DYhFh/41b40cb46173775a179c3a1ccf1ff450/More-to-Parkinsons-Logo.svg\",\"details\":{\"size\":16085,\"image\":{\"width\":251,\"height\":54}},\"fileName\":\"More-to-Parkinsons-Logo.svg\",\"contentType\":\"image/svg+xml\"}}}\n",
    "exception": "N;"
}
INFO 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/0b1Dt2Jxwu6po1BtKz2LE?locale=en-US (0.019s)
DEBUG 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/0b1Dt2Jxwu6po1BtKz2LE?locale=en-US (0.019s)
{
    "api": "DELIVERY",
    "duration": 0.01873302459716797,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/0b1Dt2Jxwu6po1BtKz2LE?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Length: 653\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/assets/:id\r\nETag: \"17072570391852364320\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 16640\r\nDate: Tue, 07 Jul 2026 21:23:00 GMT\r\nX-Served-By: cache-ewr-kewr1740074-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 0, 0\r\nX-Timer: S1783459381.960738,VS0,VE2\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: 85b23ea3-29be-469f-bb4b-05a7e315454d\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"0b1Dt2Jxwu6po1BtKz2LE\",\"type\":\"Asset\",\"createdAt\":\"2025-01-30T18:35:55.823Z\",\"updatedAt\":\"2025-01-30T18:35:55.823Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":2,\"revision\":1,\"locale\":\"en-US\"},\"fields\":{\"title\":\"chevron-down\",\"file\":{\"url\":\"//images.ctfassets.net/xbztif0ye43x/0b1Dt2Jxwu6po1BtKz2LE/c07628a7d15e49df7070c16edb78af63/chevron-down.svg\",\"details\":{\"size\":208,\"image\":{\"width\":14,\"height\":8}},\"fileName\":\"chevron-down.svg\",\"contentType\":\"image/svg+xml\"}}}\n",
    "exception": "N;"
}
INFO 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/2uSxhtDALpfXRvMrL2MJMy?locale=en-US (0.017s)
DEBUG 21:23:00 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/2uSxhtDALpfXRvMrL2MJMy?locale=en-US (0.017s)
{
    "api": "DELIVERY",
    "duration": 0.016891002655029297,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/2uSxhtDALpfXRvMrL2MJMy?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Length: 662\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/assets/:id\r\nETag: \"16211101896138527493\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 806503\r\nDate: Tue, 07 Jul 2026 21:23:00 GMT\r\nX-Served-By: cache-ewr-kewr1740035-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 0, 0\r\nX-Timer: S1783459381.979830,VS0,VE2\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: 264c39a3-3d7f-42bd-9fe0-ab23357d3756\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"2uSxhtDALpfXRvMrL2MJMy\",\"type\":\"Asset\",\"createdAt\":\"2025-01-30T18:35:56.363Z\",\"updatedAt\":\"2025-01-30T18:35:56.363Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":2,\"revision\":1,\"locale\":\"en-US\"},\"fields\":{\"title\":\"hamburger-menu\",\"file\":{\"url\":\"//images.ctfassets.net/xbztif0ye43x/2uSxhtDALpfXRvMrL2MJMy/47bc7c6e84fc9492171aead47e69de11/hamburger-menu.svg\",\"details\":{\"size\":280,\"image\":{\"width\":36,\"height\":20}},\"fileName\":\"hamburger-menu.svg\",\"contentType\":\"image/svg+xml\"}}}\n",
    "exception": "N;"
}
INFO 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/8hXzN51HmsLHnMvh0tR3l?locale=en-US (0.017s)
DEBUG 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/8hXzN51HmsLHnMvh0tR3l?locale=en-US (0.017s)
{
    "api": "DELIVERY",
    "duration": 0.0165560245513916,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/8hXzN51HmsLHnMvh0tR3l?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Length: 633\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/assets/:id\r\nETag: \"12603615007128218081\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 16640\r\nDate: Tue, 07 Jul 2026 21:23:00 GMT\r\nX-Served-By: cache-ewr-kewr1740079-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 1, 0\r\nX-Timer: S1783459381.997188,VS0,VE2\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: ffe5911a-9fb6-4d25-9f69-b2b357d16d0e\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"8hXzN51HmsLHnMvh0tR3l\",\"type\":\"Asset\",\"createdAt\":\"2025-01-30T18:35:56.086Z\",\"updatedAt\":\"2025-01-30T18:35:56.086Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":2,\"revision\":1,\"locale\":\"en-US\"},\"fields\":{\"title\":\"close\",\"file\":{\"url\":\"//images.ctfassets.net/xbztif0ye43x/8hXzN51HmsLHnMvh0tR3l/7b28602d2c1bf641bd97c6e66e564d7c/close.svg\",\"details\":{\"size\":261,\"image\":{\"width\":36,\"height\":29}},\"fileName\":\"close.svg\",\"contentType\":\"image/svg+xml\"}}}\n",
    "exception": "N;"
}
INFO 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/3cH9zVj41TVV6TzOezRk8x?locale=en-US (0.056s)
DEBUG 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/3cH9zVj41TVV6TzOezRk8x?locale=en-US (0.056s)
{
    "api": "DELIVERY",
    "duration": 0.05602312088012695,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/3cH9zVj41TVV6TzOezRk8x?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/entries/:id\r\nETag: W/\"13490387116300387234\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 3531\r\nDate: Tue, 07 Jul 2026 21:23:01 GMT\r\nX-Served-By: cache-ewr-kewr1740023-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 1, 0\r\nX-Timer: S1783459381.053489,VS0,VE41\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: 3a423dc3-dc6a-478f-a06c-63c48b317026\r\nx-encoded-content-encoding: gzip\r\nx-encoded-content-length: 804\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"3cH9zVj41TVV6TzOezRk8x\",\"type\":\"Entry\",\"createdAt\":\"2025-01-30T18:43:46.970Z\",\"updatedAt\":\"2025-01-30T18:43:46.970Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":1,\"revision\":1,\"contentType\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"ContentType\",\"id\":\"talkingAboutSymptomsHero\"}},\"locale\":\"en-US\"},\"fields\":{\"titlePart1\":\"<span class=\\\"turquoise-primary\\\">TALKING ABOUT </span>SOME COMMON SYMPTOMS\",\"heroImage\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Asset\",\"id\":\"7aKNyJMLUg9eFEqAJATrW7\"}},\"heroImageAlt\":\"Behind the scenes view of Ryan Reynolds with his mother during an interview.\",\"quoteText\":\"When my dad was diagnosed with Parkinson's, I thought I knew what to expect with the physical symptoms, but no one warned us about the hallucinations and delusions which are often part of the disease. My dad was pretty stubborn but also strong. He didn't want to acknowledge he might be struggling to hold his grip on reality. I wish I knew then what I know now. I want this work to encourage conversations and destigmatize one of the toughest parts of Parkinson's.”\",\"quoteImage\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Asset\",\"id\":\"2v7KOVwy1tnXI5ZARJxDq6\"}},\"quoteImageAlt\":\"Quote\",\"quoteAttribution\":\"Ryan Reynolds, actor and advocate\"}}\n",
    "exception": "N;"
}
INFO 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/talkingAboutSymptomsHero (0.035s)
DEBUG 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/talkingAboutSymptomsHero (0.035s)
{
    "api": "DELIVERY",
    "duration": 0.03512883186340332,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/talkingAboutSymptomsHero HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/content_types/:id\r\nETag: W/\"837957865558437758\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 3531\r\nDate: Tue, 07 Jul 2026 21:23:01 GMT\r\nX-Served-By: cache-ewr-kewr1740056-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 1, 0\r\nX-Timer: S1783459381.111305,VS0,VE20\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: aac8f7ea-6a81-49b3-bc82-50007f216451\r\nx-encoded-content-encoding: gzip\r\nx-encoded-content-length: 480\r\n\r\n{\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"talkingAboutSymptomsHero\",\"type\":\"ContentType\",\"createdAt\":\"2025-01-30T18:26:02.677Z\",\"updatedAt\":\"2025-01-30T18:26:02.677Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"revision\":1},\"displayField\":\"titlePart1\",\"name\":\"Consumer Talking About Symptoms - hero\",\"description\":\"\",\"fields\":[{\"id\":\"titlePart1\",\"name\":\"Title Part 1\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"advocatingFromExperience\",\"name\":\"Advocating From Experience\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"heroImage\",\"name\":\"Hero Image\",\"type\":\"Link\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false,\"linkType\":\"Asset\"},{\"id\":\"heroImageAlt\",\"name\":\"Hero Image Alt\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"learnTheSigns\",\"name\":\"Learn the Signs\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"quoteText\",\"name\":\"Quote Text\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"quoteImage\",\"name\":\"Quote Image\",\"type\":\"Link\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false,\"linkType\":\"Asset\"},{\"id\":\"quoteImageAlt\",\"name\":\"Quote Image Alt\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"quoteAttribution\",\"name\":\"Quote Attribution\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false}]}\n",
    "exception": "N;"
}
INFO 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/7aKNyJMLUg9eFEqAJATrW7?locale=en-US (0.036s)
DEBUG 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/7aKNyJMLUg9eFEqAJATrW7?locale=en-US (0.036s)
{
    "api": "DELIVERY",
    "duration": 0.03622698783874512,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/7aKNyJMLUg9eFEqAJATrW7?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Length: 734\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/assets/:id\r\nETag: \"7003701591101765758\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 3531\r\nDate: Tue, 07 Jul 2026 21:23:01 GMT\r\nX-Served-By: cache-ewr-kewr1740074-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 1, 0\r\nX-Timer: S1783459381.146889,VS0,VE21\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: 1e4d3d59-4ecc-4f37-9eba-9db8782747d5\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"7aKNyJMLUg9eFEqAJATrW7\",\"type\":\"Asset\",\"createdAt\":\"2025-01-30T18:36:04.415Z\",\"updatedAt\":\"2025-01-30T18:36:04.415Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":2,\"revision\":1,\"locale\":\"en-US\"},\"fields\":{\"title\":\"ryan-sitting-with-his-mother\",\"description\":\"\",\"file\":{\"url\":\"//images.ctfassets.net/xbztif0ye43x/7aKNyJMLUg9eFEqAJATrW7/c60ac2358b5113a8bdc92afd4adea736/Talking-About-Symptoms_Hero-Image.jpg\",\"details\":{\"size\":248800,\"image\":{\"width\":1522,\"height\":500}},\"fileName\":\"Talking-About-Symptoms_Hero-Image.jpg\",\"contentType\":\"image/jpeg\"}}}\n",
    "exception": "N;"
}
INFO 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/2v7KOVwy1tnXI5ZARJxDq6?locale=en-US (0.016s)
DEBUG 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/2v7KOVwy1tnXI5ZARJxDq6?locale=en-US (0.016s)
{
    "api": "DELIVERY",
    "duration": 0.015775203704833984,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/2v7KOVwy1tnXI5ZARJxDq6?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Length: 654\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/assets/:id\r\nETag: \"11937453457815176702\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 533481\r\nDate: Tue, 07 Jul 2026 21:23:01 GMT\r\nX-Served-By: cache-ewr-kewr1740085-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 1, 0\r\nX-Timer: S1783459381.183576,VS0,VE1\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: 75e9a0fe-5bfe-415a-a7c4-4bdf617bf858\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"2v7KOVwy1tnXI5ZARJxDq6\",\"type\":\"Asset\",\"createdAt\":\"2025-01-30T18:36:04.171Z\",\"updatedAt\":\"2025-01-30T18:36:04.171Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":2,\"revision\":1,\"locale\":\"en-US\"},\"fields\":{\"title\":\"quote-purple\",\"file\":{\"url\":\"//images.ctfassets.net/xbztif0ye43x/2v7KOVwy1tnXI5ZARJxDq6/81996088b6bbfe89b02133141e0b814f/Quotes-Icon.svg\",\"details\":{\"size\":552,\"image\":{\"width\":36,\"height\":29}},\"fileName\":\"Quotes-Icon.svg\",\"contentType\":\"image/svg+xml\"}}}\n",
    "exception": "N;"
}
INFO 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/15CHTNHa2moRvpbusxfzFg?locale=en-US (0.034s)
DEBUG 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/15CHTNHa2moRvpbusxfzFg?locale=en-US (0.034s)
{
    "api": "DELIVERY",
    "duration": 0.03429293632507324,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/15CHTNHa2moRvpbusxfzFg?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/entries/:id\r\nETag: W/\"12355037080174207532\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 3531\r\nDate: Tue, 07 Jul 2026 21:23:01 GMT\r\nX-Served-By: cache-ewr-kewr1740090-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 1, 0\r\nX-Timer: S1783459381.228446,VS0,VE19\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: 6db58fa5-6cda-4949-bffb-840f66207693\r\nx-encoded-content-encoding: gzip\r\nx-encoded-content-length: 1160\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"15CHTNHa2moRvpbusxfzFg\",\"type\":\"Entry\",\"createdAt\":\"2025-01-30T18:43:49.557Z\",\"updatedAt\":\"2025-01-30T18:43:49.557Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":1,\"revision\":1,\"contentType\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"ContentType\",\"id\":\"consumerTalkingAboutSymptomsImportance\"}},\"locale\":\"en-US\"},\"fields\":{\"notesIcon\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Asset\",\"id\":\"66xR5s6HsLKg0kGb9Rrazh\"}},\"notesIconAlt\":\"alt image\",\"titlePart1\":\"DISCUSSING PARKINSON’S\",\"titlePart2\":\"HALLUCINATIONS AND DELUSIONS\",\"introParagraph\":\" It's essential to embrace open dialogue about Parkinson's-related hallucinations and delusions, especially during medical visits. These challenging symptoms may affect about 50% of people with Parkinson's over the course of their disease. Explore why they might go unmentioned, and learn how you can discuss them with your family.\",\"stigmaIcon\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Asset\",\"id\":\"hKvAhMOIIu7gys4qm3PZB\"}},\"stigmaIconAlt\":\"stigma or embarrasment icon\",\"stigmaTitlePart1\":\"Raise Awareness \",\"stigmaTitlePart2\":\"and Understanding\",\"stigmaParagraph\":\"Educate yourself and your loved ones that hallucinations and delusions can be part of living with Parkinson's. This knowledge fosters a more compassionate and effective approach to managing these symptoms together.\",\"awarenessIcon\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Asset\",\"id\":\"4q8a49x4AJx97d5egtWgGY\"}},\"awarenessIconAlt\":\"lack of awareness icon\",\"awarenessTitlePart1\":\"Confront Stigma \",\"awarenessTitlePart2\":\"and Embarrassment\",\"awarenessParagraph\":\"Open discussions can reduce the discomfort associated with these symptoms. Normalizing these conversations helps you and your loved ones speak honestly and more frequently.\",\"speakIcon\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Asset\",\"id\":\"3vW6Rdp0Hq765scHJVkawA\"}},\"speakIconAlt\":\"busy oversigh icon\",\"speakTitlePart1\":\"Speak Up \",\"speakTitlePart2\":\"in Every Appointment\",\"speakParagraph\":\"Always mention any hallucinations or delusions during doctor’s visits. Be sure to let your doctor know how these symptoms are impacting your daily life and relationships. These details may be overlooked during busy appointments unless specifically mentioned.\"}}\n",
    "exception": "N;"
}
INFO 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/consumerTalkingAboutSymptomsImportance (0.036s)
DEBUG 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/consumerTalkingAboutSymptomsImportance (0.036s)
{
    "api": "DELIVERY",
    "duration": 0.035653114318847656,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/consumerTalkingAboutSymptomsImportance HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/content_types/:id\r\nETag: W/\"13343822263517320631\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 3531\r\nDate: Tue, 07 Jul 2026 21:23:01 GMT\r\nX-Served-By: cache-ewr-kewr1740034-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 1, 0\r\nX-Timer: S1783459381.265496,VS0,VE21\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: d76f4921-e6ec-4870-9c8f-46b3d8be1f65\r\nx-encoded-content-encoding: gzip\r\nx-encoded-content-length: 570\r\n\r\n{\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"consumerTalkingAboutSymptomsImportance\",\"type\":\"ContentType\",\"createdAt\":\"2025-01-30T18:26:05.237Z\",\"updatedAt\":\"2025-01-30T18:26:05.237Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"revision\":1},\"displayField\":\"titlePart1\",\"name\":\"Consumer Talking About Symptoms - Importance\",\"description\":\"\",\"fields\":[{\"id\":\"notesIcon\",\"name\":\"notesIcon\",\"type\":\"Link\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false,\"linkType\":\"Asset\"},{\"id\":\"notesIconAlt\",\"name\":\"Notes Icon Alt\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"titlePart1\",\"name\":\"Title Part 1\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"titlePart2\",\"name\":\"Title Part 2\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"introParagraph\",\"name\":\"Intro Paragraph\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"stigmaIcon\",\"name\":\"Stigma Icon\",\"type\":\"Link\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false,\"linkType\":\"Asset\"},{\"id\":\"stigmaIconAlt\",\"name\":\"Stigma Icon Alt\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"stigmaTitlePart1\",\"name\":\"Stigma Title Part 1\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"stigmaTitlePart2\",\"name\":\"Stigma Title Part 2\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"stigmaParagraph\",\"name\":\"Stigma Paragraph\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"awarenessIcon\",\"name\":\"Awareness Icon\",\"type\":\"Link\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false,\"linkType\":\"Asset\"},{\"id\":\"awarenessIconAlt\",\"name\":\"Awareness Icon Alt\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"awarenessTitlePart1\",\"name\":\"Awareness Title Part 1\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"awarenessTitlePart2\",\"name\":\"Awareness Title Part 2\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"awarenessParagraph\",\"name\":\"Awareness Paragraph\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"speakIcon\",\"name\":\"Speak Icon\",\"type\":\"Link\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false,\"linkType\":\"Asset\"},{\"id\":\"speakIconAlt\",\"name\":\"Speak Icon Alt\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"speakTitlePart1\",\"name\":\"Speak Title Part 1\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"speakTitlePart2\",\"name\":\"Speak Title Part 2\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"speakParagraph\",\"name\":\"Speak Paragraph\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false}]}\n",
    "exception": "N;"
}
INFO 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/66xR5s6HsLKg0kGb9Rrazh?locale=en-US (0.016s)
DEBUG 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/66xR5s6HsLKg0kGb9Rrazh?locale=en-US (0.016s)
{
    "api": "DELIVERY",
    "duration": 0.01605510711669922,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/66xR5s6HsLKg0kGb9Rrazh?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Length: 704\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/assets/:id\r\nETag: \"596535106544001245\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 628341\r\nDate: Tue, 07 Jul 2026 21:23:01 GMT\r\nX-Served-By: cache-ewr-kewr1740053-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 1, 0\r\nX-Timer: S1783459381.301693,VS0,VE1\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: 79d5256b-1bce-41ca-96e3-2271131c0212\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"66xR5s6HsLKg0kGb9Rrazh\",\"type\":\"Asset\",\"createdAt\":\"2025-01-30T18:35:50.379Z\",\"updatedAt\":\"2025-02-25T16:46:57.324Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":6,\"revision\":2,\"locale\":\"en-US\"},\"fields\":{\"title\":\"checklist\",\"description\":\"sss\",\"file\":{\"url\":\"//images.ctfassets.net/xbztif0ye43x/66xR5s6HsLKg0kGb9Rrazh/ea6ad3a077ceb625baba58edcf59b12b/Four-Question-Screener-Icon.svg\",\"details\":{\"size\":1414,\"image\":{\"width\":75,\"height\":78}},\"fileName\":\"Four-Question-Screener-Icon.svg\",\"contentType\":\"image/svg+xml\"}}}\n",
    "exception": "N;"
}
INFO 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/hKvAhMOIIu7gys4qm3PZB?locale=en-US (0.036s)
DEBUG 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/hKvAhMOIIu7gys4qm3PZB?locale=en-US (0.036s)
{
    "api": "DELIVERY",
    "duration": 0.03551602363586426,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/hKvAhMOIIu7gys4qm3PZB?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Length: 715\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/assets/:id\r\nETag: \"7138309517772281749\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 3531\r\nDate: Tue, 07 Jul 2026 21:23:01 GMT\r\nX-Served-By: cache-ewr-kewr1740051-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 1, 0\r\nX-Timer: S1783459381.318155,VS0,VE20\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: ec013333-773a-40f7-8cfa-ef3eede80f79\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"hKvAhMOIIu7gys4qm3PZB\",\"type\":\"Asset\",\"createdAt\":\"2025-01-30T18:35:58.732Z\",\"updatedAt\":\"2025-01-30T18:35:58.732Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":2,\"revision\":1,\"locale\":\"en-US\"},\"fields\":{\"title\":\"lack-of-awareness\",\"description\":\"lack of awareness icon\",\"file\":{\"url\":\"//images.ctfassets.net/xbztif0ye43x/hKvAhMOIIu7gys4qm3PZB/43cfb6b44adb9246f46c263aacfbb7c6/Raise-Awareness-Icon.svg\",\"details\":{\"size\":2084,\"image\":{\"width\":61,\"height\":60}},\"fileName\":\"Raise-Awareness-Icon.svg\",\"contentType\":\"image/svg+xml\"}}}\n",
    "exception": "N;"
}
INFO 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/4q8a49x4AJx97d5egtWgGY?locale=en-US (0.040s)
DEBUG 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/4q8a49x4AJx97d5egtWgGY?locale=en-US (0.040s)
{
    "api": "DELIVERY",
    "duration": 0.039830923080444336,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/4q8a49x4AJx97d5egtWgGY?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Length: 727\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/assets/:id\r\nETag: \"9795658802946598441\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 3531\r\nDate: Tue, 07 Jul 2026 21:23:01 GMT\r\nX-Served-By: cache-ewr-kewr1740050-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 1, 0\r\nX-Timer: S1783459381.357792,VS0,VE20\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: bce5e5b6-0122-4f82-859f-8262ea61894a\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"4q8a49x4AJx97d5egtWgGY\",\"type\":\"Asset\",\"createdAt\":\"2025-01-30T18:35:58.106Z\",\"updatedAt\":\"2025-01-30T18:35:58.106Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":2,\"revision\":1,\"locale\":\"en-US\"},\"fields\":{\"title\":\"stigma-or-embarrasment\",\"description\":\"stigma or embarrasment icon\",\"file\":{\"url\":\"//images.ctfassets.net/xbztif0ye43x/4q8a49x4AJx97d5egtWgGY/74c372e80ff9b4b51458f4602a0a1255/Confront-Stigma-Icon.svg\",\"details\":{\"size\":3008,\"image\":{\"width\":60,\"height\":60}},\"fileName\":\"Confront-Stigma-Icon.svg\",\"contentType\":\"image/svg+xml\"}}}\n",
    "exception": "N;"
}
INFO 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/3vW6Rdp0Hq765scHJVkawA?locale=en-US (0.036s)
DEBUG 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/3vW6Rdp0Hq765scHJVkawA?locale=en-US (0.036s)
{
    "api": "DELIVERY",
    "duration": 0.03554701805114746,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/3vW6Rdp0Hq765scHJVkawA?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Length: 697\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/assets/:id\r\nETag: \"16789276862071448170\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 3531\r\nDate: Tue, 07 Jul 2026 21:23:01 GMT\r\nX-Served-By: cache-ewr-kewr1740035-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 1, 0\r\nX-Timer: S1783459381.394203,VS0,VE21\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: 32b937ad-f944-4269-b6a6-04e65b31443a\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"3vW6Rdp0Hq765scHJVkawA\",\"type\":\"Asset\",\"createdAt\":\"2025-01-30T18:35:58.494Z\",\"updatedAt\":\"2025-01-30T18:35:58.494Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":2,\"revision\":1,\"locale\":\"en-US\"},\"fields\":{\"title\":\"busy-oversight\",\"description\":\"busy oversight icon\",\"file\":{\"url\":\"//images.ctfassets.net/xbztif0ye43x/3vW6Rdp0Hq765scHJVkawA/c20c7057820759f3af55c43151c5acfc/Speak-Up-Icon.svg\",\"details\":{\"size\":3092,\"image\":{\"width\":61,\"height\":60}},\"fileName\":\"Speak-Up-Icon.svg\",\"contentType\":\"image/svg+xml\"}}}\n",
    "exception": "N;"
}
INFO 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/1xc9f0YGh3kfEJXuNHbN9D?locale=en-US (0.035s)
DEBUG 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/1xc9f0YGh3kfEJXuNHbN9D?locale=en-US (0.035s)
{
    "api": "DELIVERY",
    "duration": 0.035063982009887695,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/1xc9f0YGh3kfEJXuNHbN9D?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/entries/:id\r\nETag: W/\"11259191808629867640\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 3531\r\nDate: Tue, 07 Jul 2026 21:23:01 GMT\r\nX-Served-By: cache-ewr-kewr1740078-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 1, 0\r\nX-Timer: S1783459381.442084,VS0,VE20\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: fc95ebd9-23c3-4d5d-8e07-9e4fdd4316e3\r\nx-encoded-content-encoding: gzip\r\nx-encoded-content-length: 705\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"1xc9f0YGh3kfEJXuNHbN9D\",\"type\":\"Entry\",\"createdAt\":\"2025-01-30T18:43:47.655Z\",\"updatedAt\":\"2025-05-22T18:53:18.736Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":3,\"revision\":2,\"contentType\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"ContentType\",\"id\":\"consumerSignsYvettesReality\"}},\"locale\":\"en-US\"},\"fields\":{\"videoThumbnail\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Asset\",\"id\":\"9uQf41aZuMQs21fllJ7ml\"}},\"videoThumbnailAlt\":\"Click to play \\\"How do I talk to my loved ones?\\\" video\",\"videoSrc\":\"//player.vimeo.com/video/991774995\",\"titlePart1\":\"HOW DO I TALK TO MY LOVED ONES\",\"titlePart2\":\"ABOUT PARKINSON’S-RELATED\",\"titlePart3\":\"HALLUCINATIONS AND DELUSIONS\",\"introParagraph\":\"Learn from Ryan and his mother, Tammy, as they share the lessons they have learned on discussing Parkinson’s-related hallucinations and delusions with loved ones. Discover why these conversations are crucial for providing support and understanding.\",\"enEspanol\":\"En Español \"}}\n",
    "exception": "N;"
}
INFO 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/consumerSignsYvettesReality (0.019s)
DEBUG 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/consumerSignsYvettesReality (0.019s)
{
    "api": "DELIVERY",
    "duration": 0.019154071807861328,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/consumerSignsYvettesReality HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/content_types/:id\r\nETag: W/\"3254403953384758602\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 3531\r\nDate: Tue, 07 Jul 2026 21:23:01 GMT\r\nX-Served-By: cache-ewr-kewr1740074-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 1, 0\r\nX-Timer: S1783459381.489447,VS0,VE3\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: 95c22c5d-778f-4752-a81e-f42efaa88e63\r\nx-encoded-content-encoding: gzip\r\nx-encoded-content-length: 432\r\n\r\n{\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"consumerSignsYvettesReality\",\"type\":\"ContentType\",\"createdAt\":\"2025-01-30T18:25:51.829Z\",\"updatedAt\":\"2025-01-30T18:25:51.829Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"revision\":1},\"displayField\":\"titlePart1\",\"name\":\"Consumer Signs - Yvettes Reality\",\"description\":\"\",\"fields\":[{\"id\":\"videoThumbnail\",\"name\":\"Video Thumbnail\",\"type\":\"Link\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false,\"linkType\":\"Asset\"},{\"id\":\"videoThumbnailAlt\",\"name\":\"Video Thumbnail Alt\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"videoSrc\",\"name\":\"Video Src\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"titlePart1\",\"name\":\"Title Part 1\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"titlePart2\",\"name\":\"Title Part 2\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"titlePart3\",\"name\":\"Title Part 3\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"introParagraph\",\"name\":\"Intro Paragraph\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"enEspanol\",\"name\":\"enEspanol\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false}]}\n",
    "exception": "N;"
}
INFO 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/9uQf41aZuMQs21fllJ7ml?locale=en-US (0.035s)
DEBUG 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/9uQf41aZuMQs21fllJ7ml?locale=en-US (0.035s)
{
    "api": "DELIVERY",
    "duration": 0.03544497489929199,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/9uQf41aZuMQs21fllJ7ml?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Length: 777\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/assets/:id\r\nETag: \"14312513535821142407\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 3531\r\nDate: Tue, 07 Jul 2026 21:23:01 GMT\r\nX-Served-By: cache-ewr-kewr1740076-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 1, 0\r\nX-Timer: S1783459382.510352,VS0,VE19\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: 977f196e-34e2-416b-a22b-adc9071e0d19\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"9uQf41aZuMQs21fllJ7ml\",\"type\":\"Asset\",\"createdAt\":\"2025-01-30T18:36:20.736Z\",\"updatedAt\":\"2025-01-30T18:36:20.736Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":2,\"revision\":1,\"locale\":\"en-US\"},\"fields\":{\"title\":\"HOW DO I TALK TO MY LOVED ONES ABOUT PARKINSON’S-RELATED HALLUCINATIONS AND DELUSIONS\",\"file\":{\"url\":\"//images.ctfassets.net/xbztif0ye43x/9uQf41aZuMQs21fllJ7ml/967f0bd3bf2a750c22d584dd6b086744/How-To-Talk-To-Loved-Ones-Thumbnail.jpg\",\"details\":{\"size\":137036,\"image\":{\"width\":597,\"height\":366}},\"fileName\":\"How-To-Talk-To-Loved-Ones-Thumbnail.jpg\",\"contentType\":\"image/jpeg\"}}}\n",
    "exception": "N;"
}
INFO 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/6eKeH3hy8Gl4oQQqgCoRs6?locale=en-US (0.036s)
DEBUG 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/6eKeH3hy8Gl4oQQqgCoRs6?locale=en-US (0.036s)
{
    "api": "DELIVERY",
    "duration": 0.0358428955078125,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/6eKeH3hy8Gl4oQQqgCoRs6?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/entries/:id\r\nETag: W/\"17722422736157948936\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 3531\r\nDate: Tue, 07 Jul 2026 21:23:01 GMT\r\nX-Served-By: cache-ewr-kewr1740085-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 1, 0\r\nX-Timer: S1783459382.584608,VS0,VE20\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: 75964c20-e73f-447d-8f5e-ab94c25fb982\r\nx-encoded-content-encoding: gzip\r\nx-encoded-content-length: 1081\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"6eKeH3hy8Gl4oQQqgCoRs6\",\"type\":\"Entry\",\"createdAt\":\"2025-01-30T18:43:48.579Z\",\"updatedAt\":\"2025-01-30T18:43:48.579Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":1,\"revision\":1,\"contentType\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"ContentType\",\"id\":\"consumerTalkingAboutSymptomsCarePlan\"}},\"locale\":\"en-US\"},\"fields\":{\"titleIcon\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Asset\",\"id\":\"6GMzGt5rJhH7edLDRZqiHg\"}},\"titleIconAlt\":\"Hand\",\"titlePartOne\":\"BUILDING A SUPPORTIVE \",\"titlePartTwo\":\"PARKINSON’S CARE PLAN\",\"mainContent\":\"Supporting a loved one with Parkinson's disease (PD) is profoundly meaningful, though it can sometimes be overwhelming. Planning together and clearly understanding each person's role allows you to develop a care plan that readies you for the unexpected, strengthening your bond as a family. Use these tips to enable your family in creating a more effective and compassionate care plan.\",\"developListTitle\":\"Develop a Care Plan:\",\"developListItem1\":\"Work with your healthcare professionals to create a comprehensive care plan that includes strategies for dealing with hallucinations and delusions. This plan might include specific changes you can make in your home or options for treatment. Remember, only your doctor can determine if a treatment option is right for you.\",\"rolesListTitle\":\"Define Roles Clearly:\",\"rolesListItems\":[\"Ensure that everyone in the family understands their role in the care plan. Whether it's administering medication, attending doctor’s appointments, or providing emotional support, clear roles help improve the effectiveness of care.\"],\"educateListTitle\":\"Educate Everyone:\",\"educateListItems\":[\"Make sure all loved ones are informed about Parkinson's symptoms, treatments, and what to expect. Education is crucial for effective management and reduces uncertainty and fear.\"]}}\n",
    "exception": "N;"
}
INFO 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/consumerTalkingAboutSymptomsCarePlan (0.034s)
DEBUG 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/consumerTalkingAboutSymptomsCarePlan (0.034s)
{
    "api": "DELIVERY",
    "duration": 0.03374004364013672,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/consumerTalkingAboutSymptomsCarePlan HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/content_types/:id\r\nETag: W/\"3368268508259585511\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 3530\r\nDate: Tue, 07 Jul 2026 21:23:01 GMT\r\nX-Served-By: cache-ewr-kewr1740061-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 1, 0\r\nX-Timer: S1783459382.622684,VS0,VE19\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: 60496764-f344-420b-8990-eb016850dc11\r\nx-encoded-content-encoding: gzip\r\nx-encoded-content-length: 526\r\n\r\n{\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"consumerTalkingAboutSymptomsCarePlan\",\"type\":\"ContentType\",\"createdAt\":\"2025-01-30T18:26:04.039Z\",\"updatedAt\":\"2025-01-30T18:26:04.039Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"revision\":1},\"displayField\":\"titlePartOne\",\"name\":\"Consumer Talking About Symptoms - Care Plan\",\"description\":\"\",\"fields\":[{\"id\":\"titleIcon\",\"name\":\"Title Icon\",\"type\":\"Link\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false,\"linkType\":\"Asset\"},{\"id\":\"titleIconAlt\",\"name\":\"Title Icon Alt\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"titlePartOne\",\"name\":\"Title Part One\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"titlePartTwo\",\"name\":\"Title Part Two\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"mainContent\",\"name\":\"Main Content\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"developListTitle\",\"name\":\"Develop List Title \",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"developListItem1\",\"name\":\"Develop List Item - 1\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"rolesListTitle\",\"name\":\"Roles List Title\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"rolesListItems\",\"name\":\"Roles List Items\",\"type\":\"Array\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false,\"items\":{\"type\":\"Symbol\",\"validations\":[]}},{\"id\":\"educateListTitle\",\"name\":\"Educate List Title\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"educateListItems\",\"name\":\"Educate List Items\",\"type\":\"Array\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false,\"items\":{\"type\":\"Symbol\",\"validations\":[]}}]}\n",
    "exception": "N;"
}
INFO 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/6GMzGt5rJhH7edLDRZqiHg?locale=en-US (0.038s)
DEBUG 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/6GMzGt5rJhH7edLDRZqiHg?locale=en-US (0.038s)
{
    "api": "DELIVERY",
    "duration": 0.037867069244384766,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/6GMzGt5rJhH7edLDRZqiHg?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Length: 714\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/assets/:id\r\nETag: \"14625019544468420103\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 3530\r\nDate: Tue, 07 Jul 2026 21:23:01 GMT\r\nX-Served-By: cache-ewr-kewr1740077-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 1, 0\r\nX-Timer: S1783459382.656793,VS0,VE23\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: 274b8ac6-17e1-40b9-8443-d8e3723a7758\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"6GMzGt5rJhH7edLDRZqiHg\",\"type\":\"Asset\",\"createdAt\":\"2025-01-30T18:36:01.639Z\",\"updatedAt\":\"2025-01-30T18:36:01.639Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":2,\"revision\":1,\"locale\":\"en-US\"},\"fields\":{\"title\":\"hand-icon-white\",\"description\":\"hand icon\",\"file\":{\"url\":\"//images.ctfassets.net/xbztif0ye43x/6GMzGt5rJhH7edLDRZqiHg/8ca813b1aad79973c62bdbe84b284dde/Building-Support-Plan-Icon.svg\",\"details\":{\"size\":2131,\"image\":{\"width\":75,\"height\":67}},\"fileName\":\"Building-Support-Plan-Icon.svg\",\"contentType\":\"image/svg+xml\"}}}\n",
    "exception": "N;"
}
INFO 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/5ka7dIIyvhAf2PJiX0LYlp?locale=en-US (0.039s)
DEBUG 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/5ka7dIIyvhAf2PJiX0LYlp?locale=en-US (0.039s)
{
    "api": "DELIVERY",
    "duration": 0.03948092460632324,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/5ka7dIIyvhAf2PJiX0LYlp?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/entries/:id\r\nETag: W/\"13030362901103661175\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 3530\r\nDate: Tue, 07 Jul 2026 21:23:01 GMT\r\nX-Served-By: cache-ewr-kewr1740043-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 1, 0\r\nX-Timer: S1783459382.700867,VS0,VE20\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: 5eb6d280-745d-464a-9a69-708317c40c3d\r\nx-encoded-content-encoding: gzip\r\nx-encoded-content-length: 652\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"5ka7dIIyvhAf2PJiX0LYlp\",\"type\":\"Entry\",\"createdAt\":\"2025-01-30T18:43:48.294Z\",\"updatedAt\":\"2025-01-30T18:43:48.294Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":1,\"revision\":1,\"contentType\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"ContentType\",\"id\":\"consumerDownloadTheGuide\"}},\"locale\":\"en-US\"},\"fields\":{\"page\":\"talking-about-symptoms\",\"backgroundColor\":\"bg-turquoise\",\"titlePartOne\":\"A guide for families living with Parkinson's\",\"mainContent\":\"From care partners to adult children, everyone is crucial in easing the emotional and physical challenges of PD. This guide offers supportive tips and practical advice to involve the whole family and includes strategies for managing hallucinations and delusions, smoothing the daily ups and downs of Parkinson’s.\",\"ctaLink\":\"/pdf/PD-Family-Conversation-Guide.pdf\",\"ctaDescription\":\"Guide for care partners\",\"enEspanol\":\"En Español\",\"enEspanolCtaLink\":\"/pdf/PD-Family-Conversation-Guide-Spanish.pdf\"}}\n",
    "exception": "N;"
}
INFO 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/consumerDownloadTheGuide (0.035s)
DEBUG 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/consumerDownloadTheGuide (0.035s)
{
    "api": "DELIVERY",
    "duration": 0.03533506393432617,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/consumerDownloadTheGuide HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/content_types/:id\r\nETag: W/\"14984373886210274045\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 3530\r\nDate: Tue, 07 Jul 2026 21:23:01 GMT\r\nX-Served-By: cache-ewr-kewr1740057-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 1, 0\r\nX-Timer: S1783459382.776054,VS0,VE20\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: 10930770-9e3c-40b9-83b6-f8f675a5c8ac\r\nx-encoded-content-encoding: gzip\r\nx-encoded-content-length: 452\r\n\r\n{\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"consumerDownloadTheGuide\",\"type\":\"ContentType\",\"createdAt\":\"2025-01-30T18:26:00.397Z\",\"updatedAt\":\"2025-01-30T18:26:00.397Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"revision\":1},\"displayField\":\"titlePartOne\",\"name\":\"Consumer - Download the guide\",\"description\":\"\",\"fields\":[{\"id\":\"page\",\"name\":\"Page\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"backgroundColor\",\"name\":\"Background Color\",\"type\":\"Symbol\",\"localized\":false,\"required\":true,\"disabled\":false,\"omitted\":false},{\"id\":\"titlePartOne\",\"name\":\"Title Part One\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"titlePartTwo\",\"name\":\"Title Part Two\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"mainContent\",\"name\":\"Main Content\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"ctaLink\",\"name\":\"CTA Link\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"ctaDescription\",\"name\":\"CTA Description\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"enEspanol\",\"name\":\"enEspanol\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"enEspanolCtaLink\",\"name\":\"En Espanol CTA Link\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false}]}\n",
    "exception": "N;"
}
INFO 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/6MlTp8yXyONlLhOG5rKQ2v?locale=en-US (0.016s)
DEBUG 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/6MlTp8yXyONlLhOG5rKQ2v?locale=en-US (0.016s)
{
    "api": "DELIVERY",
    "duration": 0.016314983367919922,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/6MlTp8yXyONlLhOG5rKQ2v?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/entries/:id\r\nETag: W/\"7943865606803973256\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 682915\r\nDate: Tue, 07 Jul 2026 21:23:01 GMT\r\nX-Served-By: cache-ewr-kewr1740026-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 0, 0\r\nX-Timer: S1783459382.816923,VS0,VE2\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: 5512d276-b124-4789-93e6-acd917e7c54c\r\nx-encoded-content-encoding: gzip\r\nx-encoded-content-length: 511\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"6MlTp8yXyONlLhOG5rKQ2v\",\"type\":\"Entry\",\"createdAt\":\"2025-01-30T18:43:51.350Z\",\"updatedAt\":\"2025-01-30T18:43:51.350Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":1,\"revision\":1,\"contentType\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"ContentType\",\"id\":\"sharedVideoPlayerModal\"}},\"locale\":\"en-US\"},\"fields\":{\"closeIcon\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Asset\",\"id\":\"3rQh11Gdv2wh8jbhzLU24g\"}},\"closeIconAlt\":\"Close\",\"shareIcon\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Asset\",\"id\":\"1uWBSoKYzomdEWGeLQgYIf\"}},\"shareIconAlt\":\"Share\",\"shareIconImage\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Asset\",\"id\":\"1uWBSoKYzomdEWGeLQgYIf\"}},\"closeIconBlue\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Asset\",\"id\":\"74cg14GfIVrNNYx5bbxoSz\"}},\"shareText\":\"SHARE THE VIDEO\",\"copyText\":\"The video link has been copied.<br>You can place it into an email, social media post, etc. to share.\"}}\n",
    "exception": "N;"
}
INFO 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/sharedVideoPlayerModal (0.019s)
DEBUG 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/sharedVideoPlayerModal (0.019s)
{
    "api": "DELIVERY",
    "duration": 0.01926898956298828,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/sharedVideoPlayerModal HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/content_types/:id\r\nETag: W/\"12490608241644671390\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 720253\r\nDate: Tue, 07 Jul 2026 21:23:01 GMT\r\nX-Served-By: cache-ewr-kewr1740082-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 0, 0\r\nX-Timer: S1783459382.840220,VS0,VE2\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: 1ac75db5-4a94-4403-9245-80431d908be9\r\nx-encoded-content-encoding: gzip\r\nx-encoded-content-length: 416\r\n\r\n{\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"sharedVideoPlayerModal\",\"type\":\"ContentType\",\"createdAt\":\"2025-01-30T18:26:08.152Z\",\"updatedAt\":\"2025-01-30T18:26:08.152Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"revision\":1},\"displayField\":\"closeIconAlt\",\"name\":\"Shared - Video Player Modal\",\"description\":\"\",\"fields\":[{\"id\":\"closeIcon\",\"name\":\"Close Icon\",\"type\":\"Link\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false,\"linkType\":\"Asset\"},{\"id\":\"closeIconAlt\",\"name\":\"Close Icon Alt\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"shareIcon\",\"name\":\"Share Icon\",\"type\":\"Link\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false,\"linkType\":\"Asset\"},{\"id\":\"shareIconAlt\",\"name\":\"Share Icon Alt\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"shareIconImage\",\"name\":\"Share Icon Image\",\"type\":\"Link\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false,\"linkType\":\"Asset\"},{\"id\":\"closeIconBlue\",\"name\":\"Close Icon Blue\",\"type\":\"Link\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false,\"linkType\":\"Asset\"},{\"id\":\"shareText\",\"name\":\"shareText\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"copyText\",\"name\":\"copyText\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false}]}\n",
    "exception": "N;"
}
INFO 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/3rQh11Gdv2wh8jbhzLU24g?locale=en-US (0.030s)
DEBUG 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/3rQh11Gdv2wh8jbhzLU24g?locale=en-US (0.030s)
{
    "api": "DELIVERY",
    "duration": 0.030016183853149414,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/3rQh11Gdv2wh8jbhzLU24g?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Length: 677\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/assets/:id\r\nETag: \"11542353771401745377\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 121654\r\nDate: Tue, 07 Jul 2026 21:23:01 GMT\r\nX-Served-By: cache-ewr-kewr1740080-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 0, 0\r\nX-Timer: S1783459382.864790,VS0,VE10\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: f1a8c367-eddb-46e4-9d61-22d871f8f0f1\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"3rQh11Gdv2wh8jbhzLU24g\",\"type\":\"Asset\",\"createdAt\":\"2025-01-30T18:36:05.060Z\",\"updatedAt\":\"2025-01-30T18:36:05.060Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":2,\"revision\":1,\"locale\":\"en-US\"},\"fields\":{\"title\":\"close-white\",\"file\":{\"url\":\"//images.ctfassets.net/xbztif0ye43x/3rQh11Gdv2wh8jbhzLU24g/a01e34ab070e606a92ec79955960f453/Close-Window-White-Icon.svg\",\"details\":{\"size\":261,\"image\":{\"width\":36,\"height\":36}},\"fileName\":\"Close-Window-White-Icon.svg\",\"contentType\":\"image/svg+xml\"}}}\n",
    "exception": "N;"
}
INFO 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/1uWBSoKYzomdEWGeLQgYIf?locale=en-US (0.017s)
DEBUG 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/1uWBSoKYzomdEWGeLQgYIf?locale=en-US (0.017s)
{
    "api": "DELIVERY",
    "duration": 0.017117023468017578,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/1uWBSoKYzomdEWGeLQgYIf?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Length: 659\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/assets/:id\r\nETag: \"7267277417760293618\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 6745\r\nDate: Tue, 07 Jul 2026 21:23:01 GMT\r\nX-Served-By: cache-ewr-kewr1740050-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 1, 0\r\nX-Timer: S1783459382.890284,VS0,VE2\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: f50188d0-36f1-4fcf-8ea6-4450dd09259e\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"1uWBSoKYzomdEWGeLQgYIf\",\"type\":\"Asset\",\"createdAt\":\"2025-01-30T18:36:22.575Z\",\"updatedAt\":\"2025-01-30T18:36:22.575Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":2,\"revision\":1,\"locale\":\"en-US\"},\"fields\":{\"title\":\"Share Icon\",\"description\":\"\",\"file\":{\"url\":\"//images.ctfassets.net/xbztif0ye43x/1uWBSoKYzomdEWGeLQgYIf/2fa9b5ac6efbc434bc35be904908ae64/share-07.png\",\"details\":{\"size\":809,\"image\":{\"width\":64,\"height\":68}},\"fileName\":\"share-07.png\",\"contentType\":\"image/png\"}}}\n",
    "exception": "N;"
}
INFO 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/74cg14GfIVrNNYx5bbxoSz?locale=en-US (0.017s)
DEBUG 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/74cg14GfIVrNNYx5bbxoSz?locale=en-US (0.017s)
{
    "api": "DELIVERY",
    "duration": 0.017108917236328125,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/74cg14GfIVrNNYx5bbxoSz?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Length: 653\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/assets/:id\r\nETag: \"7296400154665111\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 403190\r\nDate: Tue, 07 Jul 2026 21:23:01 GMT\r\nX-Served-By: cache-ewr-kewr1740079-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 0, 0\r\nX-Timer: S1783459382.907672,VS0,VE2\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: 7432bfb8-0bdf-492c-a907-6615a4730b43\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"74cg14GfIVrNNYx5bbxoSz\",\"type\":\"Asset\",\"createdAt\":\"2025-01-30T18:36:22.836Z\",\"updatedAt\":\"2025-01-30T18:36:22.836Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":2,\"revision\":1,\"locale\":\"en-US\"},\"fields\":{\"title\":\"Close Blue\",\"description\":\"\",\"file\":{\"url\":\"//images.ctfassets.net/xbztif0ye43x/74cg14GfIVrNNYx5bbxoSz/865f15e445bbe552df44b11524c71a06/Close.png\",\"details\":{\"size\":866,\"image\":{\"width\":69,\"height\":70}},\"fileName\":\"Close.png\",\"contentType\":\"image/png\"}}}\n",
    "exception": "N;"
}
INFO 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/4TujrtKesf25DbsDvcN6hY?locale=en-US (0.017s)
DEBUG 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/4TujrtKesf25DbsDvcN6hY?locale=en-US (0.017s)
{
    "api": "DELIVERY",
    "duration": 0.016952991485595703,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/entries/4TujrtKesf25DbsDvcN6hY?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/entries/:id\r\nETag: W/\"9540773640250334639\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 446693\r\nDate: Tue, 07 Jul 2026 21:23:01 GMT\r\nX-Served-By: cache-ewr-kewr1740066-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 0, 0\r\nX-Timer: S1783459382.966894,VS0,VE2\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: 655d2643-0747-4fbf-b4d4-90f4b319954a\r\nx-encoded-content-encoding: gzip\r\nx-encoded-content-length: 1445\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"4TujrtKesf25DbsDvcN6hY\",\"type\":\"Entry\",\"createdAt\":\"2025-01-30T18:43:42.830Z\",\"updatedAt\":\"2025-04-08T00:05:21.029Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":26,\"revision\":7,\"contentType\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"ContentType\",\"id\":\"consumerFooter\"}},\"locale\":\"en-US\"},\"fields\":{\"disclaimerConsumer\":\"This website is intended for use by US residents.\",\"disclaimerHcp\":\"This website is intended for US healthcare professionals only.\",\"linkTextPrivacyPolicy\":\"Privacy Policy\",\"linkHrefPrivacyPolicy\":\"https://acadia.com/en-us/legal-policies/privacy\",\"linkTextTermsOfUse\":\"Terms of Use\",\"linkHrefTermsOfUse\":\"https://acadia.com/en-us/legal-policies/terms\",\"linkTextCookiesPolicy\":\"Cookies Policy\",\"linkHrefCookiesPolicy\":\"https://acadia.com/en-us/legal-policies/cookies-policy\",\"linkTextYourPrivacyChoices\":\"Your Privacy Choices\",\"linkTextDataPrivacyFramework\":\"Data Privacy Framework\",\"linkHrefDataPrivacyFramework\":\"https://acadia.com/en-us/legal-policies/data-privacy-framework-notice\",\"linkTextConsumerHealthDataPrivacyPolicy\":\"Consumer Health Data Privacy Policy\",\"linkHrefConsumerHealthDataPrivacyPolicy\":\"https://acadia.com/en-us/legal-policies/privacy#19\",\"linkTextDoNotSellMyPersonalInformation\":\"Do Not Sell My Personal Information\",\"linkHrefDoNotSellMyPersonalInformation\":\"https://privacyportal.onetrust.com/webform/58abd532-6642-4b42-af60-56437ed36fea/7517f722-b221-4d7b-92ce-787b22108fed\",\"sponsored\":\"Sponsored by Acadia&nbsp;Pharmaceuticals&nbsp;Inc.\",\"spokesperson\":\"Ryan Reynolds is a spokesperson for Acadia.\",\"spokespersonLine2\":\"Dr. Yasar Torres-Yaghi is a paid consultant for Acadia.\",\"educationalPurposes\":\"Acadia does not provide medical advice or diagnoses&mdash;information is provided for educational purposes only. Talk to your doctor if you have any questions about your medical condition.\",\"copyright\":\"©2025 Acadia&nbsp;Pharmaceuticals&nbsp;Inc. Acadia is a registered trademark of Acadia&nbsp;Pharmaceuticals&nbsp;Inc.<br/>All rights reserved. \",\"jobCodeConsumer\":\"PDP-0531-v17 04/25\",\"jobCodeHcp\":\"PDP-US-0007-v3 04/25\",\"jobCodeHcpHiddenLandingPage\":\"PDP-US-0224-v2 04/25\",\"hashTag\":\"#MoreToParkinsons\",\"hashTagHref\":\"#\",\"socialInstagramIcon\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Asset\",\"id\":\"3uydTEiexytobq7ztFYYB7\"}},\"socialInstagramIconAlt\":\"Click to visit our More To Parkinson's Instagram\",\"instagramHref\":\" https://www.instagram.com/MoreToParkinsons\",\"socialMetaIcon\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Asset\",\"id\":\"6l60CsJB0vDIcwzDephLUr\"}},\"socialMetaIconAlt\":\"Click to visit our More To Parkinson's Facebook\",\"metaHref\":\"https://www.facebook.com/people/More-to-Parkinsons/61561211216709/\",\"socialYouTubeIcon\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Asset\",\"id\":\"3X0drAJCmuMmodCF2yYPZ4\"}},\"socialYouTubeIconAlt\":\"Click to visit our More to Parkinson's YouTube channel\",\"youTubeHref\":\"  https://www.youtube.com/@MoreToParkinsons\",\"logo\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Asset\",\"id\":\"4N0s4aByJhzbZwg6fnpMPF\"}},\"logoAlt\":\"Acadia Pharmaceuticals logo. Click to visit corporate website\",\"logoHref\":\"https://acadia.com\",\"addressPart1\":\"Acadia Pharmaceuticals Inc.\",\"addressPart2\":\"12830 El Camino Real, Suite 400\",\"addressPart3\":\"San Diego, CA 92130\"}}\n",
    "exception": "N;"
}
INFO 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/consumerFooter (0.016s)
DEBUG 21:23:01 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/consumerFooter (0.016s)
{
    "api": "DELIVERY",
    "duration": 0.016025066375732422,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/content_types/consumerFooter HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/content_types/:id\r\nETag: W/\"7072001387050057654\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 870787\r\nDate: Tue, 07 Jul 2026 21:23:01 GMT\r\nX-Served-By: cache-ewr-kewr1740075-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 1, 0\r\nX-Timer: S1783459382.984681,VS0,VE1\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: b0bc95cb-22c1-4b80-b34c-25e7079866f7\r\nx-encoded-content-encoding: gzip\r\nx-encoded-content-length: 948\r\n\r\n{\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"consumerFooter\",\"type\":\"ContentType\",\"createdAt\":\"2025-01-30T18:25:57.171Z\",\"updatedAt\":\"2025-04-04T20:40:06.597Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"revision\":5},\"displayField\":\"disclaimerConsumer\",\"name\":\"Shared - Footer\",\"description\":\"\",\"fields\":[{\"id\":\"disclaimerConsumer\",\"name\":\"Disclaimer - Consumer\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"disclaimerHcp\",\"name\":\"Disclaimer - HCP\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"linkTextPrivacyPolicy\",\"name\":\"Link Text - Privacy Policy\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"linkHrefPrivacyPolicy\",\"name\":\"Link Href - Privacy Policy\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"linkTextTermsOfUse\",\"name\":\"Link Text - Terms of Use\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"linkHrefTermsOfUse\",\"name\":\"Link Href - Terms of Use\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"linkTextCookiesPolicy\",\"name\":\"Link Text - Cookies Policy\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"linkHrefCookiesPolicy\",\"name\":\"Link Href - Cookies Policy\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"linkTextYourPrivacyChoices\",\"name\":\"Link Text - Your Privacy Choices\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"linkTextDataPrivacyFramework\",\"name\":\"Link Text - Data Privacy Framework\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"linkHrefDataPrivacyFramework\",\"name\":\"Link Href - Data Privacy Framework\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"linkTextConsumerHealthDataPrivacyPolicy\",\"name\":\"Link Text - Consumer Health Data Privacy Policy\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"linkHrefConsumerHealthDataPrivacyPolicy\",\"name\":\"Link Href - Consumer Health Data Privacy Policy\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"linkTextDoNotSellMyPersonalInformation\",\"name\":\"Link Text - Do Not Sell My Personal Information\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"linkHrefDoNotSellMyPersonalInformation\",\"name\":\"Link Href - Do Not Sell My Personal Information\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"sponsored\",\"name\":\"Sponsored\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"spokesperson\",\"name\":\"Spokesperson\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"spokespersonLine2\",\"name\":\"Spokesperson Line 2\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"educationalPurposes\",\"name\":\"Educational Purposes\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"copyright\",\"name\":\"Copyright\",\"type\":\"Text\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"jobCodeConsumer\",\"name\":\"Job Code - Consumer\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"jobCodeHcp\",\"name\":\"Job Code - HCP\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"jobCodeHcpHiddenLandingPage\",\"name\":\"Job Code - HCP Hidden Landing Page\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"hashTag\",\"name\":\"Hash Tag\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"hashTagHref\",\"name\":\"Hash Tag - Href\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"socialInstagramIcon\",\"name\":\"Social Instagram Icon\",\"type\":\"Link\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false,\"linkType\":\"Asset\"},{\"id\":\"socialInstagramIconAlt\",\"name\":\"Social Instagram Icon Alt\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"instagramHref\",\"name\":\"Instagram - Href\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"socialMetaIcon\",\"name\":\"Social Meta Icon\",\"type\":\"Link\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false,\"linkType\":\"Asset\"},{\"id\":\"socialMetaIconAlt\",\"name\":\"Social Meta Icon Alt\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"metaHref\",\"name\":\"Meta - Href\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"socialYouTubeIcon\",\"name\":\"Social YouTube Icon\",\"type\":\"Link\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false,\"linkType\":\"Asset\"},{\"id\":\"socialYouTubeIconAlt\",\"name\":\"Social YouTube Icon Alt\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"youTubeHref\",\"name\":\"YouTube - Href\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"logo\",\"name\":\"Logo\",\"type\":\"Link\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false,\"linkType\":\"Asset\"},{\"id\":\"logoAlt\",\"name\":\"Logo Alt\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"logoHref\",\"name\":\"Logo Href\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"addressPart1\",\"name\":\"Address - Part 1\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"addressPart2\",\"name\":\"Address - Part 2\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false},{\"id\":\"addressPart3\",\"name\":\"Address - Part 3\",\"type\":\"Symbol\",\"localized\":false,\"required\":false,\"disabled\":false,\"omitted\":false}]}\n",
    "exception": "N;"
}
INFO 21:23:02 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/4N0s4aByJhzbZwg6fnpMPF?locale=en-US (0.016s)
DEBUG 21:23:02 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/4N0s4aByJhzbZwg6fnpMPF?locale=en-US (0.016s)
{
    "api": "DELIVERY",
    "duration": 0.015599966049194336,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/4N0s4aByJhzbZwg6fnpMPF?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Length: 711\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/assets/:id\r\nETag: \"8460445537155951484\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 870786\r\nDate: Tue, 07 Jul 2026 21:23:02 GMT\r\nX-Served-By: cache-ewr-kewr1740087-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 4, 0\r\nX-Timer: S1783459382.001366,VS0,VE1\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: e3c766ea-639d-412a-a4da-a5dcf000ea41\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"4N0s4aByJhzbZwg6fnpMPF\",\"type\":\"Asset\",\"createdAt\":\"2025-01-30T18:35:55.098Z\",\"updatedAt\":\"2025-01-30T18:35:55.098Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":2,\"revision\":1,\"locale\":\"en-US\"},\"fields\":{\"title\":\"Global Acadia-Pharmaceuticals-Logo\",\"file\":{\"url\":\"//images.ctfassets.net/xbztif0ye43x/4N0s4aByJhzbZwg6fnpMPF/695f7da23f19660bce247a015926c048/Acadia-Pharmaceuticals-Logo.svg\",\"details\":{\"size\":11221,\"image\":{\"width\":229,\"height\":48}},\"fileName\":\"Acadia-Pharmaceuticals-Logo.svg\",\"contentType\":\"image/svg+xml\"}}}\n",
    "exception": "N;"
}
INFO 21:23:02 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/3uydTEiexytobq7ztFYYB7?locale=en-US (0.016s)
DEBUG 21:23:02 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/3uydTEiexytobq7ztFYYB7?locale=en-US (0.016s)
{
    "api": "DELIVERY",
    "duration": 0.016173839569091797,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/3uydTEiexytobq7ztFYYB7?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Length: 665\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/assets/:id\r\nETag: \"9130382547785126175\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 720252\r\nDate: Tue, 07 Jul 2026 21:23:02 GMT\r\nX-Served-By: cache-ewr-kewr1740041-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 4, 0\r\nX-Timer: S1783459382.017317,VS0,VE1\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: 258ee002-1885-4f7d-8d31-e2605a1f573f\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"3uydTEiexytobq7ztFYYB7\",\"type\":\"Asset\",\"createdAt\":\"2025-01-30T18:36:00.333Z\",\"updatedAt\":\"2025-01-30T18:36:00.333Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":2,\"revision\":1,\"locale\":\"en-US\"},\"fields\":{\"title\":\"social-instagram\",\"file\":{\"url\":\"//images.ctfassets.net/xbztif0ye43x/3uydTEiexytobq7ztFYYB7/db4fb45e7cf9d3b422871b66db925cfe/Instagram-Icon.svg\",\"details\":{\"size\":1910,\"image\":{\"width\":24,\"height\":25}},\"fileName\":\"Instagram-Icon.svg\",\"contentType\":\"image/svg+xml\"}}}\n",
    "exception": "N;"
}
INFO 21:23:02 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/6l60CsJB0vDIcwzDephLUr?locale=en-US (0.016s)
DEBUG 21:23:02 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/6l60CsJB0vDIcwzDephLUr?locale=en-US (0.016s)
{
    "api": "DELIVERY",
    "duration": 0.015547037124633789,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/6l60CsJB0vDIcwzDephLUr?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Length: 666\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/assets/:id\r\nETag: \"3944935889071267850\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 806530\r\nDate: Tue, 07 Jul 2026 21:23:02 GMT\r\nX-Served-By: cache-ewr-kewr1740035-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 2, 0\r\nX-Timer: S1783459382.033602,VS0,VE1\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: f2e65559-d2bb-4a0b-b1ef-7ef0a4420a76\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"6l60CsJB0vDIcwzDephLUr\",\"type\":\"Asset\",\"createdAt\":\"2025-01-30T18:36:00.589Z\",\"updatedAt\":\"2025-01-30T18:36:00.589Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":2,\"revision\":1,\"locale\":\"en-US\"},\"fields\":{\"title\":\"social-meta-facebook\",\"file\":{\"url\":\"//images.ctfassets.net/xbztif0ye43x/6l60CsJB0vDIcwzDephLUr/b78c86f11cb2d39489f6356ba116118b/Facebook-Icon.svg\",\"details\":{\"size\":448,\"image\":{\"width\":15,\"height\":25}},\"fileName\":\"Facebook-Icon.svg\",\"contentType\":\"image/svg+xml\"}}}\n",
    "exception": "N;"
}
INFO 21:23:02 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/3X0drAJCmuMmodCF2yYPZ4?locale=en-US (0.017s)
DEBUG 21:23:02 app GET https://cdn.contentful.com/spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/3X0drAJCmuMmodCF2yYPZ4?locale=en-US (0.017s)
{
    "api": "DELIVERY",
    "duration": 0.016512155532836914,
    "request": "GET /spaces/xbztif0ye43x/environments/3.1.3_spanish-pdf/assets/3X0drAJCmuMmodCF2yYPZ4?locale=en-US HTTP/1.1\r\nHost: cdn.contentful.com\r\nX-Contentful-User-Agent: integration contentful.symfony/6.2.0; sdk contentful.php/6.4.0; platform PHP/7.4.30; os Linux;\r\nAccept: application/vnd.contentful.delivery.v1+json\r\nAccept-Encoding: gzip\r\nAuthorization: Bearer l0cevDYG7n5-1jFJHiQYcpTnqJFc3m8bkZXtz8IBa4s\r\n\r\n",
    "response": "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Length: 658\r\nContent-Type: application/vnd.contentful.delivery.v1+json\r\nX-Contentful-RateLimit-Second-Limit: 150\r\nCF-Space-Id: xbztif0ye43x\r\nCF-Environment-Id: 3.1.3_spanish-pdf\r\nCF-Environment-Uuid: 3caea0f7-7547-4794-a58e-ec6940cf6fa0\r\nCF-Organization-Id: 6AK7JXzYfDGtxR8WVj1mwu\r\nX-Contentful-Route: /spaces/:space/environments/:environment/assets/:id\r\nETag: \"6786448103624465190\"\r\nX-Content-Type-Options: nosniff\r\nServer: Contentful\r\nX-Contentful-Region: us-east-1\r\nContentful-Api: cda\r\nVia: 1.1 varnish, 1.1 varnish\r\nAccept-Ranges: bytes\r\nAge: 121654\r\nDate: Tue, 07 Jul 2026 21:23:02 GMT\r\nX-Served-By: cache-ewr-kewr1740075-EWR, cache-chi-kmdw8640068-CHI\r\nX-Cache-Hits: 0, 0\r\nX-Timer: S1783459382.049351,VS0,VE2\r\naccess-control-allow-headers: accept,accept-language,authorization,cache-control,content-length,content-range,content-type,dnt,destination,expires,if-match,if-modified-since,if-none-match,keep-alive,last-modified,origin,pragma,range,user-agent,x-http-method-override,x-mx-reqtoken,x-requested-with,x-contentful-content-type,x-contentful-enable-alpha-feature,x-contentful-locale-based-publishing,x-contentful-organization,x-contentful-resource-resolution,x-contentful-skip-transformation,x-contentful-user-agent,x-contentful-version\r\naccess-control-allow-methods: GET,HEAD,OPTIONS\r\naccess-control-allow-origin: *\r\naccess-control-max-age: 86400\r\naccess-control-expose-headers: x-contentful-ratelimit-second-limit,x-contentful-ratelimit-reset,etag\r\nstrict-transport-security: max-age=15768000\r\nX-Cache: HIT\r\nx-contentful-request-id: 899ebd84-1d00-46e7-87aa-3354dc31e6fa\r\n\r\n{\"metadata\":{\"tags\":[],\"concepts\":[]},\"sys\":{\"space\":{\"sys\":{\"type\":\"Link\",\"linkType\":\"Space\",\"id\":\"xbztif0ye43x\"}},\"id\":\"3X0drAJCmuMmodCF2yYPZ4\",\"type\":\"Asset\",\"createdAt\":\"2025-01-30T18:36:03.130Z\",\"updatedAt\":\"2025-01-30T18:36:03.130Z\",\"environment\":{\"sys\":{\"id\":\"3.1.3_spanish-pdf\",\"type\":\"Link\",\"linkType\":\"Environment\"}},\"publishedVersion\":2,\"revision\":1,\"locale\":\"en-US\"},\"fields\":{\"title\":\"youtube-social\",\"file\":{\"url\":\"//images.ctfassets.net/xbztif0ye43x/3X0drAJCmuMmodCF2yYPZ4/4363d1e8bb99c8902cdecd3a8a6c9a8b/YouTube-Icon.svg\",\"details\":{\"size\":782,\"image\":{\"width\":35,\"height\":25}},\"fileName\":\"YouTube-Icon.svg\",\"contentType\":\"image/svg+xml\"}}}\n",
    "exception": "N;"
}
INFO 21:23:02 security Populated the TokenStorage with an anonymous Token.
DEBUG 21:23:02 event Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse"
}
DEBUG 21:23:02 event Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse"
}
DEBUG 21:23:02 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 21:23:02 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 21:23:02 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 21:23:02 event Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 21:23:02 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
DEBUG 21:23:02 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 21:23:02 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 21:23:02 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 21:23:02 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 21:23:02 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 21:23:02 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest"
}
DEBUG 21:23:02 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 21:23:02 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
DEBUG 21:23:02 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 21:23:02 event Notified event "kernel.terminate" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelTerminate".
{
    "event": "kernel.terminate",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelTerminate"
}
WARNING 21:23:02 php Uncaught Warning: file_put_contents(compress.zlib:///home/site/wwwroot/var/cache/dev/profiler/9f/a5/82a59f): failed to open stream: operation failed
{
    "exception": {}
}
CRITICAL 21:23:02 request Uncaught PHP Exception ErrorException: "Warning: file_put_contents(compress.zlib:///home/site/wwwroot/var/cache/dev/profiler/9f/a5/82a59f): failed to open stream: operation failed" at /home/site/wwwroot/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php line 175
{
    "exception": {}
}
DEBUG 21:23:02 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 21:23:02 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 21:23:02 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 21:23:02 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 21:23:02 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 21:23:02 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 21:23:02 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 21:23:02 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 21:23:02 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 21:23:02 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 21:23:02 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 21:23:02 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 21:23:02 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 21:23:02 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 21:23:02 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 21:23:02 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 21:23:02 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 21:23:02 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 21:23:02 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}

Stack Trace

ErrorException

ErrorException:
Warning: file_put_contents(compress.zlib:///home/site/wwwroot/var/cache/dev/profiler/9f/a5/82a59f): failed to open stream: operation failed

  at vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php:175
  at Symfony\Component\HttpKernel\Profiler\FileProfilerStorage->write(object(Profile))
     (vendor/symfony/http-kernel/Profiler/Profiler.php:101)
  at Symfony\Component\HttpKernel\Profiler\Profiler->saveProfile(object(Profile))
     (vendor/symfony/http-kernel/EventListener/ProfilerListener.php:112)
  at Symfony\Component\HttpKernel\EventListener\ProfilerListener->onKernelTerminate(object(TerminateEvent), 'kernel.terminate', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:117)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(TerminateEvent), 'kernel.terminate', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener)), 'kernel.terminate', object(TerminateEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(TerminateEvent), 'kernel.terminate')
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:151)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(TerminateEvent), 'kernel.terminate')
     (vendor/symfony/http-kernel/HttpKernel.php:99)
  at Symfony\Component\HttpKernel\HttpKernel->terminate(object(Request), object(Response))
     (vendor/symfony/http-kernel/Kernel.php:161)
  at Symfony\Component\HttpKernel\Kernel->terminate(object(Request), object(Response))
     (public/index.php:35)                
Warning: file_put_contents(compress.zlib:///home/site/wwwroot/var/cache/dev/profiler/0c/3e/cb3e0c): failed to open stream: operation failed (500 Internal Server Error)

Symfony Exception

ErrorException

HTTP 500 Internal Server Error

Warning: file_put_contents(compress.zlib:///home/site/wwwroot/var/cache/dev/profiler/0c/3e/cb3e0c): failed to open stream: operation failed

Exception

ErrorException

  1.         if (\function_exists('gzcompress')) {
  2.             $file 'compress.zlib://'.$file;
  3.             stream_context_set_option($context'zlib''level'3);
  4.         }
  5.         if (false === file_put_contents($fileserialize($data), 0$context)) {
  6.             return false;
  7.         }
  8.         if (!$profileIndexed) {
  9.             // Add to index
  1.             if ($collector instanceof LateDataCollectorInterface) {
  2.                 $collector->lateCollect();
  3.             }
  4.         }
  5.         if (!($ret $this->storage->write($profile)) && null !== $this->logger) {
  6.             $this->logger->warning('Unable to store the profiler information.', ['configured_storage' => \get_class($this->storage)]);
  7.         }
  8.         return $ret;
  9.     }
  1.             }
  2.         }
  3.         // save profiles
  4.         foreach ($this->profiles as $request) {
  5.             $this->profiler->saveProfile($this->profiles[$request]);
  6.         }
  7.         $this->profiles = new \SplObjectStorage();
  8.         $this->parents = new \SplObjectStorage();
  9.     }
  1.         $this->called true;
  2.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  3.         $e $this->stopwatch->start($this->name'event_listener');
  4.         ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         if ($e->isStarted()) {
  6.             $e->stop();
  7.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function terminate(Request $requestResponse $response)
  5.     {
  6.         $this->dispatcher->dispatch(new TerminateEvent($this$request$response), KernelEvents::TERMINATE);
  7.     }
  8.     /**
  9.      * @internal
  10.      */
  1.         $response $this->handleThrowable($exception$requestself::MASTER_REQUEST);
  2.         $response->sendHeaders();
  3.         $response->sendContent();
  4.         $this->terminate($request$response);
  5.     }
  6.     /**
  7.      * Handles a request to convert it to a response.
  8.      *
  1.                         if ($hasRun) {
  2.                             throw $e;
  3.                         }
  4.                         $hasRun true;
  5.                         $kernel->terminateWithException($e$request);
  6.                     };
  7.                 }
  8.             } elseif ($event instanceof ConsoleEvent && $app $event->getCommand()->getApplication()) {
  9.                 $output $event->getOutput();
  10.                 if ($output instanceof ConsoleOutputInterface) {
in /home/site/wwwroot/vendor/symfony/error-handler/ErrorHandler.php :: Symfony\Component\HttpKernel\EventListener\{closure} (line 594)
  1.             $this->exceptionHandler null;
  2.         }
  3.         try {
  4.             if (null !== $exceptionHandler) {
  5.                 return $exceptionHandler($exception);
  6.             }
  7.             $handlerException $handlerException ?: $exception;
  8.         } catch (\Throwable $handlerException) {
  9.         }
  10.         if ($exception === $handlerException && null === $this->exceptionHandler) {
ErrorHandler->handleException(object(ErrorException))

Stack Trace

ErrorException

ErrorException:
Warning: file_put_contents(compress.zlib:///home/site/wwwroot/var/cache/dev/profiler/0c/3e/cb3e0c): failed to open stream: operation failed

  at /home/site/wwwroot/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php:175
  at Symfony\Component\HttpKernel\Profiler\FileProfilerStorage->write(object(Profile))
     (/home/site/wwwroot/vendor/symfony/http-kernel/Profiler/Profiler.php:101)
  at Symfony\Component\HttpKernel\Profiler\Profiler->saveProfile(object(Profile))
     (/home/site/wwwroot/vendor/symfony/http-kernel/EventListener/ProfilerListener.php:112)
  at Symfony\Component\HttpKernel\EventListener\ProfilerListener->onKernelTerminate(object(TerminateEvent), 'kernel.terminate', object(TraceableEventDispatcher))
     (/home/site/wwwroot/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:117)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(TerminateEvent), 'kernel.terminate', object(TraceableEventDispatcher))
     (/home/site/wwwroot/vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener)), 'kernel.terminate', object(TerminateEvent))
     (/home/site/wwwroot/vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(TerminateEvent), 'kernel.terminate')
     (/home/site/wwwroot/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:151)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(TerminateEvent), 'kernel.terminate')
     (/home/site/wwwroot/vendor/symfony/http-kernel/HttpKernel.php:99)
  at Symfony\Component\HttpKernel\HttpKernel->terminate(object(Request), object(Response))
     (/home/site/wwwroot/vendor/symfony/http-kernel/HttpKernel.php:116)
  at Symfony\Component\HttpKernel\HttpKernel->terminateWithException(object(ErrorException), object(Request))
     (/home/site/wwwroot/vendor/symfony/http-kernel/EventListener/DebugHandlersListener.php:127)
  at Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::Symfony\Component\HttpKernel\EventListener\{closure}(object(ErrorException))
     (/home/site/wwwroot/vendor/symfony/error-handler/ErrorHandler.php:594)
  at Symfony\Component\ErrorHandler\ErrorHandler->handleException(object(ErrorException))