Symfony Exception

ErrorException ViewException

HTTP 500 Internal Server Error

Undefined index: yes_count (View: /var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/resources/views/front/site/pdf-graphs.blade.php)

Exceptions 2

Illuminate\View\ ViewException

  1.                                 <?php if(count($category['question_list']) > 0): ?>
  2.                                     <?php $__currentLoopData $category['question_list']; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $question): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
  3.                                         <tr>
  4.                                             <td class="fw-bold"><?php echo e($question['question']->label); ?></td>
  5.                                             <td><?php echo e(@($question['yes_count'] > 0)?( number_format((($question['yes_count']/$question['total_count']) * 100), 1) ):0.0); ?>%</td>
  6.                                             <td><?php echo e($question['yes_count']."/".$question['total_count']); ?></td>
  7.                                         </tr>
  8.                                         <?php if(count($question['hpo_array']) > 0): ?> 
  9.                                             <?php $__currentLoopData $question['hpo_array']; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $hpo): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
  10.                                                 <tr>
  11.                                                     <td style="padding-left: 2rem;"><?php echo e($hpo['hpo_name']); ?></td>
  1.         // flush out any stray output that might get out before an error occurs or
  2.         // an exception is thrown. This prevents any partial views from leaking.
  3.         try {
  4.             $this->files->getRequire($path$data);
  5.         } catch (Throwable $e) {
  6.             $this->handleViewException($e$obLevel);
  7.         }
  8.         return ltrim(ob_get_clean());
  9.     }
  1.         }
  2.         // Once we have the path to the compiled file, we will evaluate the paths with
  3.         // typical PHP just like any other templates. We also keep a stack of views
  4.         // which have been rendered for right exception messages to be generated.
  5.         $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         array_pop($this->lastCompiled);
  7.         return $results;
  8.     }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each sections get flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.         // If this content implements the "Renderable" interface then we will call the
  2.         // render method on the object so we will avoid any "__toString" exceptions
  3.         // that might be thrown and have their errors obscured by PHP's handling.
  4.         elseif ($content instanceof Renderable) {
  5.             $content $content->render();
  6.         }
  7.         parent::setContent($content);
  8.         return $this;
  1.      */
  2.     public function __construct($content ''$status 200, array $headers = [])
  3.     {
  4.         $this->headers = new ResponseHeaderBag($headers);
  5.         $this->setContent($content);
  6.         $this->setStatusCode($status);
  7.         $this->setProtocolVersion('1.0');
  8.     }
  9.     /**
  1.                     $response instanceof JsonSerializable ||
  2.                     $response instanceof \stdClass ||
  3.                     is_array($response))) {
  4.             $response = new JsonResponse($response);
  5.         } elseif (! $response instanceof SymfonyResponse) {
  6.             $response = new Response($response200, ['Content-Type' => 'text/html']);
  7.         }
  8.         if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) {
  9.             $response->setNotModified();
  10.         }
  1.      * @param  mixed  $response
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function prepareResponse($request$response)
  5.     {
  6.         return static::toResponse($request$response);
  7.     }
  8.     /**
  9.      * Static version of prepareResponse.
  10.      *
  1.         return (new Pipeline($this->container))
  2.                         ->send($request)
  3.                         ->through($middleware)
  4.                         ->then(function ($request) use ($route) {
  5.                             return $this->prepareResponse(
  6.                                 $request$route->run()
  7.                             );
  8.                         });
  9.     }
  10.     /**
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1. class CookieConsentMiddleware
  2. {
  3.     public function handle($requestClosure $next)
  4.     {
  5.         $response $next($request);
  6.         if (! $response instanceof Response) {
  7.             return $response;
  8.         }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             }
  2.             throw $exception;
  3.         }
  4.         return $next($request);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             $this->isReading($request) ||
  2.             $this->runningUnitTests() ||
  3.             $this->inExceptArray($request) ||
  4.             $this->tokensMatch($request)
  5.         ) {
  6.             return tap($next($request), function ($response) use ($request) {
  7.                 if ($this->shouldAddXsrfTokenCookie()) {
  8.                     $this->addCookieToResponse($request$response);
  9.                 }
  10.             });
  11.         }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         // Putting the errors in the view for every view allows the developer to just
  2.         // assume that some errors are always available, which is convenient since
  3.         // they don't have to continually run checks for the presence of errors.
  4.         return $next($request);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             $this->startSession($request$session)
  2.         );
  3.         $this->collectGarbage($session);
  4.         $response $next($request);
  5.         $this->storeCurrentUrl($request$session);
  6.         $this->addCookieToResponse($response$session);
  1.         if ($this->manager->shouldBlock() ||
  2.             ($request->route() instanceof Route && $request->route()->locksFor())) {
  3.             return $this->handleRequestWhileBlocking($request$session$next);
  4.         }
  5.         return $this->handleStatefulRequest($request$session$next);
  6.     }
  7.     /**
  8.      * Handle the given request within session state.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @param  \Closure  $next
  2.      * @return mixed
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         $response $next($request);
  7.         foreach ($this->cookies->getQueuedCookies() as $cookie) {
  8.             $response->headers->setCookie($cookie);
  9.         }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @param  \Closure  $next
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         return $this->encrypt($next($this->decrypt($request)));
  7.     }
  8.     /**
  9.      * Decrypt the cookies on the request.
  10.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.                         ->through($middleware)
  2.                         ->then(function ($request) use ($route) {
  3.                             return $this->prepareResponse(
  4.                                 $request$route->run()
  5.                             );
  6.                         });
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  10.      *
  1.         });
  2.         $this->events->dispatch(new RouteMatched($route$request));
  3.         return $this->prepareResponse($request,
  4.             $this->runRouteWithinStack($route$request)
  5.         );
  6.     }
  7.     /**
  8.      * Run the given route within a Stack "onion" instance.
  1.      * @param  \Illuminate\Http\Request  $request
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function dispatchToRoute(Request $request)
  5.     {
  6.         return $this->runRoute($request$this->findRoute($request));
  7.     }
  8.     /**
  9.      * Find the route matching a given request.
  10.      *
  1.      */
  2.     public function dispatch(Request $request)
  3.     {
  4.         $this->currentRequest $request;
  5.         return $this->dispatchToRoute($request);
  6.     }
  7.     /**
  8.      * Dispatch the request to a route and return the response.
  9.      *
  1.     protected function dispatchToRouter()
  2.     {
  3.         return function ($request) {
  4.             $this->app->instance('request'$request);
  5.             return $this->router->dispatch($request);
  6.         };
  7.     }
  8.     /**
  9.      * Call the terminate method on any terminable middleware.
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.      * @return mixed
  2.      */
  3.     public function handle($requestClosure $next)
  4.     {
  5.         if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) {
  6.             return $next($request);
  7.         }
  8.         $this->debugbar->boot();
  9.         try {
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.             if ($callback($request)) {
  2.                 return $next($request);
  3.             }
  4.         }
  5.         return parent::handle($request$next);
  6.     }
  7.     /**
  8.      * Transform the given value.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.             if ($callback($request)) {
  2.                 return $next($request);
  3.             }
  4.         }
  5.         return parent::handle($request$next);
  6.     }
  7.     /**
  8.      * Transform the given value.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         if ($max && $request->server('CONTENT_LENGTH') > $max) {
  2.             throw new PostTooLargeException;
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine the server 'post_max_size' as bytes.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.                 null,
  2.                 $this->getHeaders($data)
  3.             );
  4.         }
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Determine if the incoming request has a maintenance mode bypass cookie.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         // Check if we're dealing with CORS and if we should handle it
  5.         if (! $this->shouldRun($request)) {
  6.             return $next($request);
  7.         }
  8.         // For Preflight, return the Preflight response
  9.         if ($this->cors->isPreflightRequest($request)) {
  10.             $response $this->cors->handlePreflightRequest($request);
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     public function handle(Request $requestClosure $next)
  2.     {
  3.         $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests
  4.         $this->setTrustedProxyIpAddresses($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Sets the trusted proxies on the request to the value of trustedproxy.proxies
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $this->bootstrap();
  2.         return (new Pipeline($this->app))
  3.                     ->send($request)
  4.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5.                     ->then($this->dispatchToRouter());
  6.     }
  7.     /**
  8.      * Bootstrap the application for HTTP requests.
  9.      *
  1.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
  1. $app = require_once __DIR__.'/../bootstrap/app.php';
  2. $kernel $app->make(Kernel::class);
  3. $response tap($kernel->handle(
  4.     $request Request::capture()
  5. ))->send();
  6. $kernel->terminate($request$response);
require_once('/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/public/index.php') in /var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/index.php (line 19)
  1. // built-in PHP web server. This provides a convenient way to test a Laravel
  2. // application without having installed a "real" web server software here.
  3. if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
  4.     return false;
  5. }
  6. require_once __DIR__.'/public/index.php';

ErrorException

Undefined index: yes_count

  1.                                 <?php if(count($category['question_list']) > 0): ?>
  2.                                     <?php $__currentLoopData $category['question_list']; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $question): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
  3.                                         <tr>
  4.                                             <td class="fw-bold"><?php echo e($question['question']->label); ?></td>
  5.                                             <td><?php echo e(@($question['yes_count'] > 0)?( number_format((($question['yes_count']/$question['total_count']) * 100), 1) ):0.0); ?>%</td>
  6.                                             <td><?php echo e($question['yes_count']."/".$question['total_count']); ?></td>
  7.                                         </tr>
  8.                                         <?php if(count($question['hpo_array']) > 0): ?> 
  9.                                             <?php $__currentLoopData $question['hpo_array']; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $hpo): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
  10.                                                 <tr>
  11.                                                     <td style="padding-left: 2rem;"><?php echo e($hpo['hpo_name']); ?></td>
HandleExceptions->handleError(8, 'Undefined index: yes_count', '/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/storage/framework/views/0562706b6e74f059c1849b020fb1edc9d46a7de4.php', 70, array('__path' => '/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/storage/framework/views/0562706b6e74f059c1849b020fb1edc9d46a7de4.php', '__data' => array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), 'setting' => object(Setting), 'site' => object(Site), 'site_moderators' => object(Collection), 'total_patient' => 37, 'region_data' => array(array('country_count' => 3, 'country_name' => 'Belgium'), array('country_count' => 6, 'country_name' => 'China'), array('country_count' => 11, 'country_name' => 'Netherlands'), array('country_count' => 17, 'country_name' => 'United Kingdom')), 'regionMaxValue' => 17, 'chartData' => array(array(array('category_name' => 'General', 'get_chart_questions' => array(array('question_id' => 3510, 'label' => 'Severity of intellectual disability', 'chart_kind' => 3, 'answer_kind' => 4, 'answer' => array(array('answer' => 'Moderate', 'answer_count' => 3, 'answer_percentage' => 14.0), array('answer' => 'Severe', 'answer_count' => 10, 'answer_percentage' => 45.0), array('answer' => 'Unknown', 'answer_count' => 9, 'answer_percentage' => 41.0))))))), 'majorChartData' => array(array('question' => object(Question), 'yes_count' => 32, 'no_count' => 0, 'unknown_count' => 2, 'total_count' => 34), array('question' => object(Question), 'yes_count' => 27, 'no_count' => 0, 'unknown_count' => 6, 'total_count' => 33), array('question' => object(Question), 'yes_count' => 34, 'no_count' => 2, 'unknown_count' => 0, 'total_count' => 36), array('question' => object(Question), 'yes_count' => 34, 'no_count' => 2, 'unknown_count' => 1, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 15, 'no_count' => 4, 'unknown_count' => 18, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 20, 'no_count' => 5, 'unknown_count' => 12, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 12, 'no_count' => 4, 'unknown_count' => 21, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 11, 'no_count' => 3, 'unknown_count' => 23, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 19, 'no_count' => 4, 'unknown_count' => 14, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 9, 'no_count' => 4, 'unknown_count' => 24, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 3, 'unknown_count' => 34, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 3, 'no_count' => 1, 'unknown_count' => 33, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 7, 'no_count' => 7, 'unknown_count' => 23, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 30, 'no_count' => 1, 'unknown_count' => 6, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 8, 'no_count' => 7, 'unknown_count' => 22, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 11, 'no_count' => 3, 'unknown_count' => 23, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 3, 'unknown_count' => 32, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 3, 'no_count' => 3, 'unknown_count' => 31, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 8, 'unknown_count' => 27, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 24, 'no_count' => 3, 'unknown_count' => 10, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 8, 'unknown_count' => 29, 'total_count' => 37)), 'male_count' => 36, 'female_count' => 1, 'frequency_data' => array(array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'total_count' => 20, 'hpo_count' => 1, 'hpo_array' => array('HP:0003561' => array('hpo_id' => 3332, 'hpo_name' => '< P3 : Birth length less than 3rd percentile', 'count' => 1))), array('question' => object(Question), 'total_count' => 24, 'hpo_count' => 3, 'hpo_array' => array('HP:0001518' => array('hpo_id' => 1467, 'hpo_name' => '< P3 : Small for gestational age', 'count' => 3))), array('question' => object(Question), 'total_count' => 22, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 20, 'hpo_count' => 10, 'hpo_array' => array('HP:0004322' => array('hpo_id' => 4041, 'hpo_name' => '< P3 : Short stature', 'count' => 9), 'HP:0000098' => array('hpo_id' => 114, 'hpo_name' => '> P98 : Tall stature', 'count' => 1))), array('question' => object(Question), 'total_count' => 19, 'hpo_count' => 7, 'hpo_array' => array('HP:0004325' => array('hpo_id' => 4045, 'hpo_name' => '< P3 : Decreased body weight', 'count' => 7))), array('question' => object(Question), 'total_count' => 26, 'hpo_count' => 8, 'hpo_array' => array('HP:0000252' => array('hpo_id' => 274, 'hpo_name' => '< P3 : Microcephaly', 'count' => 6), 'HP:0000256' => array('hpo_id' => 279, 'hpo_name' => '> P98 : Macrocephaly', 'count' => 2))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 34, 'total_count' => 36, 'hpo_array' => array(array('hpo_id' => 1280, 'hpo_name' => 'Generalized hypotonia', 'count' => 23), '0818322811161220' => array('hpo_id' => 1237, 'hpo_name' => 'Seizures', 'count' => 8), '0730322332192540' => array('hpo_id' => 1987, 'hpo_name' => 'Generalized tonic-clonic seizures', 'count' => 7), '0536173613284965' => array('hpo_id' => 1238, 'hpo_name' => 'Ataxia', 'count' => 5), '0530362817102424' => array('hpo_id' => 1983, 'hpo_name' => 'Gait ataxia', 'count' => 5), '0530322332193980' => array('hpo_id' => 2038, 'hpo_name' => 'Generalized myoclonic seizures', 'count' => 5), '0436172223286278' => array('hpo_id' => 10830, 'hpo_name' => 'Atonic seizures', 'count' => 4), '0328233136236977' => array('hpo_id' => 7473, 'hpo_name' => 'Infantile axial hypotonia', 'count' => 3), '0325221432197530' => array('hpo_id' => 1979, 'hpo_name' => 'Lower limb spasticity', 'count' => 3), '0318213618172683' => array('hpo_id' => 1244, 'hpo_name' => 'Spasticity', 'count' => 3), '0236352322196865' => array('hpo_id' => 6134, 'hpo_name' => 'Abnormal pyramidal signs', 'count' => 2), '0234322317197647' => array('hpo_id' => 11462, 'hpo_name' => 'Central hypotonia', 'count' => 2), '0233121817222264' => array('hpo_id' => 1313, 'hpo_name' => 'Dystonia', 'count' => 2), '0231223436255777' => array('hpo_id' => 11220, 'hpo_name' => 'Focal myoclonic seizures', 'count' => 2), '0225282435105444' => array('hpo_id' => 2373, 'hpo_name' => 'Limb hypertonia', 'count' => 2), '0224162517286611' => array('hpo_id' => 10851, 'hpo_name' => 'Multifocal epileptiform discharges', 'count' => 2), '0224122234253821' => array('hpo_id' => 1316, 'hpo_name' => 'Myoclonus', 'count' => 2), '0223322223363967' => array('hpo_id' => 1301, 'hpo_name' => 'Neonatal hypotonia', 'count' => 2), '0221192230194642' => array('hpo_id' => 2104, 'hpo_name' => 'Progressive spasticity', 'count' => 2), '0136353322249959' => array('hpo_id' => 3090, 'hpo_name' => 'Abdominal distention', 'count' => 1), '0136351832234122' => array('hpo_id' => 2036, 'hpo_name' => 'Absence seizures', 'count' => 1), '0135363528237021' => array('hpo_id' => 3277, 'hpo_name' => 'Babinski sign', 'count' => 1), '0134321932356935' => array('hpo_id' => 14353, 'hpo_name' => 'Cerebral palsy', 'count' => 1), '0131363428363319' => array('hpo_id' => 315, 'hpo_name' => 'Facial hypotonia', 'count' => 1), '0131223436258825' => array('hpo_id' => 2289, 'hpo_name' => 'Focal seizures with impairment of consciousness or awareness', 'count' => 1), '0130322332192380' => array('hpo_id' => 10829, 'hpo_name' => 'Generalized tonic seizures', 'count' => 1), '0130322332192149' => array('hpo_id' => 2110, 'hpo_name' => 'Generalized seizures', 'count' => 1), '0129282110347639' => array('hpo_id' => 3093, 'hpo_name' => 'Hip contracture', 'count' => 1), '0129122132194014' => array('hpo_id' => 5877, 'hpo_name' => 'Hyperactive deep tendon reflexes', 'count' => 1), '0126233232108761' => array('hpo_id' => 5500, 'hpo_name' => 'Knee flexion contracture', 'count' => 1), '0125221818106680' => array('hpo_id' => 5874, 'hpo_name' => 'Loss of ability to walk in first decade', 'count' => 1), '0125221432194321' => array('hpo_id' => 5926, 'hpo_name' => 'Lower limb hypertonia', 'count' => 1), '0121222219102391' => array('hpo_id' => 2276, 'hpo_name' => 'Poor coordination', 'count' => 1), '0121192230193660' => array('hpo_id' => 6122, 'hpo_name' => 'Progressive truncal ataxia', 'count' => 1), '0118173219323821' => array('hpo_id' => 12297, 'hpo_name' => 'Stereotypical hand wringing', 'count' => 1), '0117191623341197' => array('hpo_id' => 1996, 'hpo_name' => 'Truncal ataxia', 'count' => 1), '0116231817329348' => array('hpo_id' => 2228, 'hpo_name' => 'Unsteady gait', 'count' => 1))), array('question' => object(Question), 'yes_count' => 15, 'total_count' => 19, 'hpo_array' => array('0736161728181611' => array('hpo_id' => 740, 'hpo_name' => 'Autistic behavior', 'count' => 7), '0618173219327575' => array('hpo_id' => 742, 'hpo_name' => 'Stereotypic behavior', 'count' => 6), '0528242136283302' => array('hpo_id' => 12956, 'hpo_name' => 'Impaired social reciprocity', 'count' => 5), '0521222219101922' => array('hpo_id' => 822, 'hpo_name' => 'Poor eye contact', 'count' => 5), '0428242136285181' => array('hpo_id' => 744, 'hpo_name' => 'Impaired social interactions', 'count' => 4), '0229122132197801' => array('hpo_id' => 764, 'hpo_name' => 'Hyperactivity', 'count' => 2), '0219323416191022' => array('hpo_id' => 14356, 'hpo_name' => 'Recurrent hand flapping', 'count' => 2), '0218173219326971' => array('hpo_id' => 12297, 'hpo_name' => 'Stereotypical hand wringing', 'count' => 2), '0136352322194718' => array('hpo_id' => 15709, 'hpo_name' => 'Abnormal emotion/affect behavior', 'count' => 1), '0136303019323519' => array('hpo_id' => 729, 'hpo_name' => 'Aggressive behavior', 'count' => 1), '0133192222257916' => array('hpo_id' => 2217, 'hpo_name' => 'Drooling', 'count' => 1), '0123221018223408' => array('hpo_id' => 7275, 'hpo_name' => 'No social interaction', 'count' => 1))), array('question' => object(Question), 'yes_count' => 20, 'total_count' => 25, 'hpo_array' => array('0536352322193347' => array('hpo_id' => 2382, 'hpo_name' => 'Abnormality of the periventricular white matter', 'count' => 5), '0334321932359794' => array('hpo_id' => 1976, 'hpo_name' => 'Cerebral atrophy', 'count' => 3), '0334321932352309' => array('hpo_id' => 2035, 'hpo_name' => 'Cerebral cortical atrophy', 'count' => 3), '0332323010363757' => array('hpo_id' => 2259, 'hpo_name' => 'EEG abnormality', 'count' => 3), '0331223436254826' => array('hpo_id' => 6023, 'hpo_name' => 'Focal white matter lesions', 'count' => 3), '0321361917281835' => array('hpo_id' => 1318, 'hpo_name' => 'Partial agenesis of the corpus callosum', 'count' => 3), '0234321932352177' => array('hpo_id' => 5901, 'hpo_name' => 'Cerebellar vermis atrophy', 'count' => 2), '0233322536125543' => array('hpo_id' => 12609, 'hpo_name' => 'Delayed myelination', 'count' => 2), '0233282536179127' => array('hpo_id' => 5961, 'hpo_name' => 'Dilation of lateral ventricles', 'count' => 2), '0233282536178952' => array('hpo_id' => 6045, 'hpo_name' => 'Dilated third ventricle', 'count' => 2), '0233282536174266' => array('hpo_id' => 2111, 'hpo_name' => 'Dilated fourth ventricle', 'count' => 2), '0232323010145173' => array('hpo_id' => 11240, 'hpo_name' => 'EEG with focal epileptiform discharges', 'count' => 2), '0232323010144031' => array('hpo_id' => 11253, 'hpo_name' => 'EEG with generalized epileptiform discharges', 'count' => 2), '0232323010143626' => array('hpo_id' => 11254, 'hpo_name' => 'EEG with generalized sharp slow waves', 'count' => 2), '0136352322198669' => array('hpo_id' => 14856, 'hpo_name' => 'Abnormality of the dentate nucleus', 'count' => 1), '0136212536183622' => array('hpo_id' => 5884, 'hpo_name' => 'Aplasia/Hypoplasia of the cerebellar vermis', 'count' => 1), '0134321932358132' => array('hpo_id' => 5881, 'hpo_name' => 'Cerebral hypomyelination', 'count' => 1), '0134231810295860' => array('hpo_id' => 3229, 'hpo_name' => 'CNS hypomyelination', 'count' => 1), '0133121821252530' => array('hpo_id' => 5984, 'hpo_name' => 'Dysplastic corpus callosum', 'count' => 1), '0132232536198373' => array('hpo_id' => 11495, 'hpo_name' => 'Enlarged fetal cisterna magna', 'count' => 1), '0132232536194658' => array('hpo_id' => 2194, 'hpo_name' => 'Enlarged cisterna magna', 'count' => 1), '0130322332197148' => array('hpo_id' => 6030, 'hpo_name' => 'Generalized cerebral atrophy/hypoplasia', 'count' => 1), '0129122122286929' => array('hpo_id' => 6058, 'hpo_name' => 'Hypointensity of cerebral white matter on MRI', 'count' => 1), '0129122122217346' => array('hpo_id' => 1997, 'hpo_name' => 'Hypoplasia of the corpus callosum', 'count' => 1), '0125321626227331' => array('hpo_id' => 2310, 'hpo_name' => 'Leukodystrophy', 'count' => 1), '0124221921295632' => array('hpo_id' => 1929, 'hpo_name' => 'Morphological abnormality of the central nervous system', 'count' => 1), '0121321928156322' => array('hpo_id' => 12687, 'hpo_name' => 'Perivascular spaces', 'count' => 1), '0121321928153238' => array('hpo_id' => 5974, 'hpo_name' => 'Periventricular leukomalacia', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 12, 'total_count' => 16, 'hpo_array' => array('0924363419229048' => array('hpo_id' => 396, 'hpo_name' => 'Macrotia', 'count' => 9), '0236352322193111' => array('hpo_id' => 366, 'hpo_name' => 'Abnormality of earlobe', 'count' => 2), '0225361930325608' => array('hpo_id' => 9027, 'hpo_name' => 'Large earlobe', 'count' => 2), '0225221410185702' => array('hpo_id' => 372, 'hpo_name' => 'Low-set ears', 'count' => 2))), array('question' => object(Question), 'yes_count' => 11, 'total_count' => 14, 'hpo_array' => array('0533221423186247' => array('hpo_id' => 486, 'hpo_name' => 'Downslanted palpebral fissures', 'count' => 5), '0233323221258670' => array('hpo_id' => 481, 'hpo_name' => 'Deeply set eye', 'count' => 2), '0232212834368697' => array('hpo_id' => 303, 'hpo_name' => 'Epicanthus', 'count' => 2), '0229122132197648' => array('hpo_id' => 330, 'hpo_name' => 'Hypertelorism', 'count' => 2), '0136352322194632' => array('hpo_id' => 529, 'hpo_name' => 'Abnormality of the eyebrow', 'count' => 1), '0118292219179744' => array('hpo_id' => 12940, 'hpo_name' => 'Short palpebral fissure', 'count' => 1), '0118213619188709' => array('hpo_id' => 532, 'hpo_name' => 'Sparse eyebrow', 'count' => 1))), array('question' => object(Question), 'yes_count' => 19, 'total_count' => 23, 'hpo_array' => array('0823361919226029' => array('hpo_id' => 445, 'hpo_name' => 'Narrow nose', 'count' => 8), '0414283332109279' => array('hpo_id' => 13015, 'hpo_name' => 'Wide nasal base', 'count' => 4), '0314283332103113' => array('hpo_id' => 432, 'hpo_name' => 'Wide nose', 'count' => 3), '0236231732156561' => array('hpo_id' => 446, 'hpo_name' => 'Anteverted nares', 'count' => 2), '0233322119327016' => array('hpo_id' => 4746, 'hpo_name' => 'Depressed nasal bridge', 'count' => 2), '0225222330107568' => array('hpo_id' => 3015, 'hpo_name' => 'Long nose', 'count' => 2), '0221192224288306' => array('hpo_id' => 420, 'hpo_name' => 'Prominent nasal bridge', 'count' => 2), '0214283332109876' => array('hpo_id' => 425, 'hpo_name' => 'Wide nasal bridge', 'count' => 2), '0123361919225738' => array('hpo_id' => 11928, 'hpo_name' => 'Narrow nasal tip', 'count' => 1), '0118292219177834' => array('hpo_id' => 3020, 'hpo_name' => 'Short nose', 'count' => 1), '0116233332198100' => array('hpo_id' => 422, 'hpo_name' => 'Underdeveloped nasal alae', 'count' => 1))), array('question' => object(Question), 'yes_count' => 9, 'total_count' => 13, 'hpo_array' => array('0323361919226310' => array('hpo_id' => 182, 'hpo_name' => 'Narrow mouth', 'count' => 3), '0233192222252686' => array('hpo_id' => 2217, 'hpo_name' => 'Drooling', 'count' => 2), '0232153219173720' => array('hpo_id' => 252, 'hpo_name' => 'Everted lower lip vermilion', 'count' => 2), '0224362536195834' => array('hpo_id' => 291, 'hpo_name' => 'Malar flattening', 'count' => 2), '0224283419224182' => array('hpo_id' => 703, 'hpo_name' => 'Microdontia', 'count' => 2), '0222213223105923' => array('hpo_id' => 213, 'hpo_name' => 'Open mouth', 'count' => 2), '0214283332256556' => array('hpo_id' => 699, 'hpo_name' => 'Widely spaced teeth', 'count' => 2), '0129283029104893' => array('hpo_id' => 235, 'hpo_name' => 'High palate', 'count' => 1), '0118292219179243' => array('hpo_id' => 336, 'hpo_name' => 'Short philtrum', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 3, 'total_count' => 4, 'hpo_array' => array('0136352322199706' => array('hpo_id' => 12523, 'hpo_name' => 'Abnormal eye physiology', 'count' => 1), '0136181728304582' => array('hpo_id' => 473, 'hpo_name' => 'Astigmatism', 'count' => 1), '0132132217191331' => array('hpo_id' => 578, 'hpo_name' => 'Exotropia', 'count' => 1), '0118171936359873' => array('hpo_id' => 477, 'hpo_name' => 'Strabismus', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 7, 'total_count' => 14, 'hpo_array' => array('0334222330324970' => array('hpo_id' => 1550, 'hpo_name' => 'Congestive heart failure', 'count' => 3), '0135283416189166' => array('hpo_id' => 1562, 'hpo_name' => 'Bicuspid aortic valve', 'count' => 1), '0135193633124063' => array('hpo_id' => 1574, 'hpo_name' => 'Bradycardia', 'count' => 1), '0124122234362189' => array('hpo_id' => 13025, 'hpo_name' => 'Myocarditis', 'count' => 1), '0121361732236485' => array('hpo_id' => 1569, 'hpo_name' => 'Patent foramen ovale', 'count' => 1), '0121361732234262' => array('hpo_id' => 1558, 'hpo_name' => 'Patent ductus arteriosus', 'count' => 1), '0119283029175801' => array('hpo_id' => 1620, 'hpo_name' => 'Right ventricular failure', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 30, 'total_count' => 31, 'hpo_array' => array(array('hpo_id' => 1937, 'hpo_name' => 'Constipation', 'count' => 17), '0830361817198392' => array('hpo_id' => 1938, 'hpo_name' => 'Gastroesophageal reflux', 'count' => 8), '0731323233283698' => array('hpo_id' => 12077, 'hpo_name' => 'Feeding difficulties', 'count' => 7), '0431323233286203' => array('hpo_id' => 7358, 'hpo_name' => 'Feeding difficulties in infancy', 'count' => 4), '0334291922238385' => array('hpo_id' => 12611, 'hpo_name' => 'Chronic constipation', 'count' => 3), '0333121821291786' => array('hpo_id' => 1933, 'hpo_name' => 'Dysphagia', 'count' => 3), '0236352322198390' => array('hpo_id' => 2172, 'hpo_name' => 'Abnormality of the large intestine', 'count' => 2), '0230361817198958' => array('hpo_id' => 11544, 'hpo_name' => 'Gastrostomy tube feeding in infancy', 'count' => 2), '0136353322249806' => array('hpo_id' => 3090, 'hpo_name' => 'Abdominal distention', 'count' => 1), '0136352322194099' => array('hpo_id' => 2165, 'hpo_name' => 'Abnormality of the small intestine', 'count' => 1), '0136352322193755' => array('hpo_id' => 14348, 'hpo_name' => 'Abnormality of the mesentery', 'count' => 1), '0136352322193066' => array('hpo_id' => 11058, 'hpo_name' => 'Abnormality of the gastrointestinal tract', 'count' => 1), '0135221432255420' => array('hpo_id' => 2468, 'hpo_name' => 'Bowel incontinence', 'count' => 1), '0134291922237306' => array('hpo_id' => 1946, 'hpo_name' => 'Chronic diarrhea', 'count' => 1), '0128231732189770' => array('hpo_id' => 2423, 'hpo_name' => 'Intestinal malrotation', 'count' => 1), '0128231732188833' => array('hpo_id' => 4674, 'hpo_name' => 'Intestinal obstruction', 'count' => 1), '0128231732182589' => array('hpo_id' => 4123, 'hpo_name' => 'Intestinal pseudo-obstruction', 'count' => 1), '0123322223365892' => array('hpo_id' => 4701, 'hpo_name' => 'Neonatal intestinal obstruction', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 8, 'total_count' => 15, 'hpo_array' => array('0433282536176492' => array('hpo_id' => 10982, 'hpo_name' => 'Dilatation of the bladder', 'count' => 4), '0233282536179755' => array('hpo_id' => 10970, 'hpo_name' => 'Dilatation of the renal pelvis', 'count' => 2), '0216192823366207' => array('hpo_id' => 21, 'hpo_name' => 'Urinary incontinence', 'count' => 2), '0136352322199286' => array('hpo_id' => 16, 'hpo_name' => 'Abnormality of the bladder', 'count' => 1), '0136352322199077' => array('hpo_id' => 97, 'hpo_name' => 'Abnormality of the genital system', 'count' => 1), '0136352322193181' => array('hpo_id' => 87, 'hpo_name' => 'Abnormality of the ureter', 'count' => 1), '0131321736253747' => array('hpo_id' => 10983, 'hpo_name' => 'Fetal megacystis', 'count' => 1), '0116232825361347' => array('hpo_id' => 12934, 'hpo_name' => 'Unilateral cryptorchidism', 'count' => 1), '0116192823364250' => array('hpo_id' => 18, 'hpo_name' => 'Urinary retention', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 11, 'total_count' => 14, 'hpo_array' => array('0236352322191252' => array('hpo_id' => 11356, 'hpo_name' => 'Abnormality of digit', 'count' => 2), '0234252823222350' => array('hpo_id' => 13208, 'hpo_name' => 'Clinodactyly', 'count' => 2), '0231193634172404' => array('hpo_id' => 2910, 'hpo_name' => 'Fractures of the long bones', 'count' => 2), '0218253223336681' => array('hpo_id' => 11368, 'hpo_name' => 'Slender toe', 'count' => 2), '0218253223332451' => array('hpo_id' => 1228, 'hpo_name' => 'Slender finger', 'count' => 2), '0136193634293843' => array('hpo_id' => 1173, 'hpo_name' => 'Arachnodactyly', 'count' => 1), '0135192236333941' => array('hpo_id' => 1675, 'hpo_name' => 'Broad foot', 'count' => 1), '0129282110186838' => array('hpo_id' => 13164, 'hpo_name' => 'Hip Subluxation', 'count' => 1), '0127222823178842' => array('hpo_id' => 1352, 'hpo_name' => 'Joint hypermobility', 'count' => 1), '0127222823173920' => array('hpo_id' => 1360, 'hpo_name' => 'Joint laxity', 'count' => 1), '0125222330109267' => array('hpo_id' => 15651, 'hpo_name' => 'Long fingers', 'count' => 1), '0125222330108310' => array('hpo_id' => 1742, 'hpo_name' => 'Long foot', 'count' => 1), '0121253630288588' => array('hpo_id' => 1333, 'hpo_name' => 'Plagiocephaly', 'count' => 1), '0118342225289402' => array('hpo_id' => 2512, 'hpo_name' => 'Scoliosis', 'count' => 1), '0118292219172798' => array('hpo_id' => 1681, 'hpo_name' => 'Short foot', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 2, 'total_count' => 5, 'hpo_array' => array('0217292823102915' => array('hpo_id' => 967, 'hpo_name' => 'Thin skin', 'count' => 2), '0121362525221422' => array('hpo_id' => 986, 'hpo_name' => 'Pallor', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 3, 'total_count' => 6, 'hpo_array' => array('0229122122174113' => array('hpo_id' => 827, 'hpo_name' => 'Hypothyroidism', 'count' => 2), '0121281716287288' => array('hpo_id' => 6922, 'hpo_name' => 'Pituitary hypothyroidism', 'count' => 1))), array('question' => object(Question), 'yes_count' => 2, 'total_count' => 10, 'hpo_array' => array('0131321532198746' => array('hpo_id' => 1857, 'hpo_name' => 'Fever', 'count' => 1), '0128233419325858' => array('hpo_id' => 2060, 'hpo_name' => 'Increased serum lactate', 'count' => 1))), array('question' => object(Question), 'yes_count' => 24, 'total_count' => 27, 'hpo_array' => array(array('hpo_id' => 2121, 'hpo_name' => 'Recurrent respiratory infections', 'count' => 13), '0521233216242818' => array('hpo_id' => 2009, 'hpo_name' => 'Pneumonia', 'count' => 5), '0519323416198543' => array('hpo_id' => 5656, 'hpo_name' => 'Recurrent pneumonia', 'count' => 5), '0519321821289209' => array('hpo_id' => 12053, 'hpo_name' => 'Respiratory tract infection', 'count' => 5), '0236252532199858' => array('hpo_id' => 3017, 'hpo_name' => 'Allergic rhinitis', 'count' => 2), '0234231810289313' => array('hpo_id' => 11522, 'hpo_name' => 'CNS infection', 'count' => 2), '0124322328233746' => array('hpo_id' => 1275, 'hpo_name' => 'Meningitis', 'count' => 1), '0119323416196170' => array('hpo_id' => 5661, 'hpo_name' => 'Recurrent bronchopulmonary infections', 'count' => 1), '0119323416196126' => array('hpo_id' => 2576, 'hpo_name' => 'Recurrent infections', 'count' => 1), '0119323416193741' => array('hpo_id' => 2020, 'hpo_name' => 'Recurrent aspiration pneumonia', 'count' => 1), '0118322118285275' => array('hpo_id' => 15650, 'hpo_name' => 'Sepsis', 'count' => 1)))))), 'lang' => 'front/site/index.'), '__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), 'setting' => object(Setting), 'site' => object(Site), 'site_moderators' => object(Collection), 'total_patient' => 37, 'region_data' => array(array('country_count' => 3, 'country_name' => 'Belgium'), array('country_count' => 6, 'country_name' => 'China'), array('country_count' => 11, 'country_name' => 'Netherlands'), array('country_count' => 17, 'country_name' => 'United Kingdom')), 'regionMaxValue' => 17, 'chartData' => array(array(array('category_name' => 'General', 'get_chart_questions' => array(array('question_id' => 3510, 'label' => 'Severity of intellectual disability', 'chart_kind' => 3, 'answer_kind' => 4, 'answer' => array(array('answer' => 'Moderate', 'answer_count' => 3, 'answer_percentage' => 14.0), array('answer' => 'Severe', 'answer_count' => 10, 'answer_percentage' => 45.0), array('answer' => 'Unknown', 'answer_count' => 9, 'answer_percentage' => 41.0))))))), 'majorChartData' => array(array('question' => object(Question), 'yes_count' => 32, 'no_count' => 0, 'unknown_count' => 2, 'total_count' => 34), array('question' => object(Question), 'yes_count' => 27, 'no_count' => 0, 'unknown_count' => 6, 'total_count' => 33), array('question' => object(Question), 'yes_count' => 34, 'no_count' => 2, 'unknown_count' => 0, 'total_count' => 36), array('question' => object(Question), 'yes_count' => 34, 'no_count' => 2, 'unknown_count' => 1, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 15, 'no_count' => 4, 'unknown_count' => 18, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 20, 'no_count' => 5, 'unknown_count' => 12, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 12, 'no_count' => 4, 'unknown_count' => 21, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 11, 'no_count' => 3, 'unknown_count' => 23, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 19, 'no_count' => 4, 'unknown_count' => 14, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 9, 'no_count' => 4, 'unknown_count' => 24, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 3, 'unknown_count' => 34, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 3, 'no_count' => 1, 'unknown_count' => 33, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 7, 'no_count' => 7, 'unknown_count' => 23, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 30, 'no_count' => 1, 'unknown_count' => 6, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 8, 'no_count' => 7, 'unknown_count' => 22, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 11, 'no_count' => 3, 'unknown_count' => 23, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 3, 'unknown_count' => 32, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 3, 'no_count' => 3, 'unknown_count' => 31, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 8, 'unknown_count' => 27, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 24, 'no_count' => 3, 'unknown_count' => 10, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 8, 'unknown_count' => 29, 'total_count' => 37)), 'male_count' => 36, 'female_count' => 1, 'frequency_data' => array(array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'total_count' => 20, 'hpo_count' => 1, 'hpo_array' => array('HP:0003561' => array('hpo_id' => 3332, 'hpo_name' => '< P3 : Birth length less than 3rd percentile', 'count' => 1))), array('question' => object(Question), 'total_count' => 24, 'hpo_count' => 3, 'hpo_array' => array('HP:0001518' => array('hpo_id' => 1467, 'hpo_name' => '< P3 : Small for gestational age', 'count' => 3))), array('question' => object(Question), 'total_count' => 22, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 20, 'hpo_count' => 10, 'hpo_array' => array('HP:0004322' => array('hpo_id' => 4041, 'hpo_name' => '< P3 : Short stature', 'count' => 9), 'HP:0000098' => array('hpo_id' => 114, 'hpo_name' => '> P98 : Tall stature', 'count' => 1))), array('question' => object(Question), 'total_count' => 19, 'hpo_count' => 7, 'hpo_array' => array('HP:0004325' => array('hpo_id' => 4045, 'hpo_name' => '< P3 : Decreased body weight', 'count' => 7))), array('question' => object(Question), 'total_count' => 26, 'hpo_count' => 8, 'hpo_array' => array('HP:0000252' => array('hpo_id' => 274, 'hpo_name' => '< P3 : Microcephaly', 'count' => 6), 'HP:0000256' => array('hpo_id' => 279, 'hpo_name' => '> P98 : Macrocephaly', 'count' => 2))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 34, 'total_count' => 36, 'hpo_array' => array(array('hpo_id' => 1280, 'hpo_name' => 'Generalized hypotonia', 'count' => 23), '0818322811161220' => array('hpo_id' => 1237, 'hpo_name' => 'Seizures', 'count' => 8), '0730322332192540' => array('hpo_id' => 1987, 'hpo_name' => 'Generalized tonic-clonic seizures', 'count' => 7), '0536173613284965' => array('hpo_id' => 1238, 'hpo_name' => 'Ataxia', 'count' => 5), '0530362817102424' => array('hpo_id' => 1983, 'hpo_name' => 'Gait ataxia', 'count' => 5), '0530322332193980' => array('hpo_id' => 2038, 'hpo_name' => 'Generalized myoclonic seizures', 'count' => 5), '0436172223286278' => array('hpo_id' => 10830, 'hpo_name' => 'Atonic seizures', 'count' => 4), '0328233136236977' => array('hpo_id' => 7473, 'hpo_name' => 'Infantile axial hypotonia', 'count' => 3), '0325221432197530' => array('hpo_id' => 1979, 'hpo_name' => 'Lower limb spasticity', 'count' => 3), '0318213618172683' => array('hpo_id' => 1244, 'hpo_name' => 'Spasticity', 'count' => 3), '0236352322196865' => array('hpo_id' => 6134, 'hpo_name' => 'Abnormal pyramidal signs', 'count' => 2), '0234322317197647' => array('hpo_id' => 11462, 'hpo_name' => 'Central hypotonia', 'count' => 2), '0233121817222264' => array('hpo_id' => 1313, 'hpo_name' => 'Dystonia', 'count' => 2), '0231223436255777' => array('hpo_id' => 11220, 'hpo_name' => 'Focal myoclonic seizures', 'count' => 2), '0225282435105444' => array('hpo_id' => 2373, 'hpo_name' => 'Limb hypertonia', 'count' => 2), '0224162517286611' => array('hpo_id' => 10851, 'hpo_name' => 'Multifocal epileptiform discharges', 'count' => 2), '0224122234253821' => array('hpo_id' => 1316, 'hpo_name' => 'Myoclonus', 'count' => 2), '0223322223363967' => array('hpo_id' => 1301, 'hpo_name' => 'Neonatal hypotonia', 'count' => 2), '0221192230194642' => array('hpo_id' => 2104, 'hpo_name' => 'Progressive spasticity', 'count' => 2), '0136353322249959' => array('hpo_id' => 3090, 'hpo_name' => 'Abdominal distention', 'count' => 1), '0136351832234122' => array('hpo_id' => 2036, 'hpo_name' => 'Absence seizures', 'count' => 1), '0135363528237021' => array('hpo_id' => 3277, 'hpo_name' => 'Babinski sign', 'count' => 1), '0134321932356935' => array('hpo_id' => 14353, 'hpo_name' => 'Cerebral palsy', 'count' => 1), '0131363428363319' => array('hpo_id' => 315, 'hpo_name' => 'Facial hypotonia', 'count' => 1), '0131223436258825' => array('hpo_id' => 2289, 'hpo_name' => 'Focal seizures with impairment of consciousness or awareness', 'count' => 1), '0130322332192380' => array('hpo_id' => 10829, 'hpo_name' => 'Generalized tonic seizures', 'count' => 1), '0130322332192149' => array('hpo_id' => 2110, 'hpo_name' => 'Generalized seizures', 'count' => 1), '0129282110347639' => array('hpo_id' => 3093, 'hpo_name' => 'Hip contracture', 'count' => 1), '0129122132194014' => array('hpo_id' => 5877, 'hpo_name' => 'Hyperactive deep tendon reflexes', 'count' => 1), '0126233232108761' => array('hpo_id' => 5500, 'hpo_name' => 'Knee flexion contracture', 'count' => 1), '0125221818106680' => array('hpo_id' => 5874, 'hpo_name' => 'Loss of ability to walk in first decade', 'count' => 1), '0125221432194321' => array('hpo_id' => 5926, 'hpo_name' => 'Lower limb hypertonia', 'count' => 1), '0121222219102391' => array('hpo_id' => 2276, 'hpo_name' => 'Poor coordination', 'count' => 1), '0121192230193660' => array('hpo_id' => 6122, 'hpo_name' => 'Progressive truncal ataxia', 'count' => 1), '0118173219323821' => array('hpo_id' => 12297, 'hpo_name' => 'Stereotypical hand wringing', 'count' => 1), '0117191623341197' => array('hpo_id' => 1996, 'hpo_name' => 'Truncal ataxia', 'count' => 1), '0116231817329348' => array('hpo_id' => 2228, 'hpo_name' => 'Unsteady gait', 'count' => 1))), array('question' => object(Question), 'yes_count' => 15, 'total_count' => 19, 'hpo_array' => array('0736161728181611' => array('hpo_id' => 740, 'hpo_name' => 'Autistic behavior', 'count' => 7), '0618173219327575' => array('hpo_id' => 742, 'hpo_name' => 'Stereotypic behavior', 'count' => 6), '0528242136283302' => array('hpo_id' => 12956, 'hpo_name' => 'Impaired social reciprocity', 'count' => 5), '0521222219101922' => array('hpo_id' => 822, 'hpo_name' => 'Poor eye contact', 'count' => 5), '0428242136285181' => array('hpo_id' => 744, 'hpo_name' => 'Impaired social interactions', 'count' => 4), '0229122132197801' => array('hpo_id' => 764, 'hpo_name' => 'Hyperactivity', 'count' => 2), '0219323416191022' => array('hpo_id' => 14356, 'hpo_name' => 'Recurrent hand flapping', 'count' => 2), '0218173219326971' => array('hpo_id' => 12297, 'hpo_name' => 'Stereotypical hand wringing', 'count' => 2), '0136352322194718' => array('hpo_id' => 15709, 'hpo_name' => 'Abnormal emotion/affect behavior', 'count' => 1), '0136303019323519' => array('hpo_id' => 729, 'hpo_name' => 'Aggressive behavior', 'count' => 1), '0133192222257916' => array('hpo_id' => 2217, 'hpo_name' => 'Drooling', 'count' => 1), '0123221018223408' => array('hpo_id' => 7275, 'hpo_name' => 'No social interaction', 'count' => 1))), array('question' => object(Question), 'yes_count' => 20, 'total_count' => 25, 'hpo_array' => array('0536352322193347' => array('hpo_id' => 2382, 'hpo_name' => 'Abnormality of the periventricular white matter', 'count' => 5), '0334321932359794' => array('hpo_id' => 1976, 'hpo_name' => 'Cerebral atrophy', 'count' => 3), '0334321932352309' => array('hpo_id' => 2035, 'hpo_name' => 'Cerebral cortical atrophy', 'count' => 3), '0332323010363757' => array('hpo_id' => 2259, 'hpo_name' => 'EEG abnormality', 'count' => 3), '0331223436254826' => array('hpo_id' => 6023, 'hpo_name' => 'Focal white matter lesions', 'count' => 3), '0321361917281835' => array('hpo_id' => 1318, 'hpo_name' => 'Partial agenesis of the corpus callosum', 'count' => 3), '0234321932352177' => array('hpo_id' => 5901, 'hpo_name' => 'Cerebellar vermis atrophy', 'count' => 2), '0233322536125543' => array('hpo_id' => 12609, 'hpo_name' => 'Delayed myelination', 'count' => 2), '0233282536179127' => array('hpo_id' => 5961, 'hpo_name' => 'Dilation of lateral ventricles', 'count' => 2), '0233282536178952' => array('hpo_id' => 6045, 'hpo_name' => 'Dilated third ventricle', 'count' => 2), '0233282536174266' => array('hpo_id' => 2111, 'hpo_name' => 'Dilated fourth ventricle', 'count' => 2), '0232323010145173' => array('hpo_id' => 11240, 'hpo_name' => 'EEG with focal epileptiform discharges', 'count' => 2), '0232323010144031' => array('hpo_id' => 11253, 'hpo_name' => 'EEG with generalized epileptiform discharges', 'count' => 2), '0232323010143626' => array('hpo_id' => 11254, 'hpo_name' => 'EEG with generalized sharp slow waves', 'count' => 2), '0136352322198669' => array('hpo_id' => 14856, 'hpo_name' => 'Abnormality of the dentate nucleus', 'count' => 1), '0136212536183622' => array('hpo_id' => 5884, 'hpo_name' => 'Aplasia/Hypoplasia of the cerebellar vermis', 'count' => 1), '0134321932358132' => array('hpo_id' => 5881, 'hpo_name' => 'Cerebral hypomyelination', 'count' => 1), '0134231810295860' => array('hpo_id' => 3229, 'hpo_name' => 'CNS hypomyelination', 'count' => 1), '0133121821252530' => array('hpo_id' => 5984, 'hpo_name' => 'Dysplastic corpus callosum', 'count' => 1), '0132232536198373' => array('hpo_id' => 11495, 'hpo_name' => 'Enlarged fetal cisterna magna', 'count' => 1), '0132232536194658' => array('hpo_id' => 2194, 'hpo_name' => 'Enlarged cisterna magna', 'count' => 1), '0130322332197148' => array('hpo_id' => 6030, 'hpo_name' => 'Generalized cerebral atrophy/hypoplasia', 'count' => 1), '0129122122286929' => array('hpo_id' => 6058, 'hpo_name' => 'Hypointensity of cerebral white matter on MRI', 'count' => 1), '0129122122217346' => array('hpo_id' => 1997, 'hpo_name' => 'Hypoplasia of the corpus callosum', 'count' => 1), '0125321626227331' => array('hpo_id' => 2310, 'hpo_name' => 'Leukodystrophy', 'count' => 1), '0124221921295632' => array('hpo_id' => 1929, 'hpo_name' => 'Morphological abnormality of the central nervous system', 'count' => 1), '0121321928156322' => array('hpo_id' => 12687, 'hpo_name' => 'Perivascular spaces', 'count' => 1), '0121321928153238' => array('hpo_id' => 5974, 'hpo_name' => 'Periventricular leukomalacia', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 12, 'total_count' => 16, 'hpo_array' => array('0924363419229048' => array('hpo_id' => 396, 'hpo_name' => 'Macrotia', 'count' => 9), '0236352322193111' => array('hpo_id' => 366, 'hpo_name' => 'Abnormality of earlobe', 'count' => 2), '0225361930325608' => array('hpo_id' => 9027, 'hpo_name' => 'Large earlobe', 'count' => 2), '0225221410185702' => array('hpo_id' => 372, 'hpo_name' => 'Low-set ears', 'count' => 2))), array('question' => object(Question), 'yes_count' => 11, 'total_count' => 14, 'hpo_array' => array('0533221423186247' => array('hpo_id' => 486, 'hpo_name' => 'Downslanted palpebral fissures', 'count' => 5), '0233323221258670' => array('hpo_id' => 481, 'hpo_name' => 'Deeply set eye', 'count' => 2), '0232212834368697' => array('hpo_id' => 303, 'hpo_name' => 'Epicanthus', 'count' => 2), '0229122132197648' => array('hpo_id' => 330, 'hpo_name' => 'Hypertelorism', 'count' => 2), '0136352322194632' => array('hpo_id' => 529, 'hpo_name' => 'Abnormality of the eyebrow', 'count' => 1), '0118292219179744' => array('hpo_id' => 12940, 'hpo_name' => 'Short palpebral fissure', 'count' => 1), '0118213619188709' => array('hpo_id' => 532, 'hpo_name' => 'Sparse eyebrow', 'count' => 1))), array('question' => object(Question), 'yes_count' => 19, 'total_count' => 23, 'hpo_array' => array('0823361919226029' => array('hpo_id' => 445, 'hpo_name' => 'Narrow nose', 'count' => 8), '0414283332109279' => array('hpo_id' => 13015, 'hpo_name' => 'Wide nasal base', 'count' => 4), '0314283332103113' => array('hpo_id' => 432, 'hpo_name' => 'Wide nose', 'count' => 3), '0236231732156561' => array('hpo_id' => 446, 'hpo_name' => 'Anteverted nares', 'count' => 2), '0233322119327016' => array('hpo_id' => 4746, 'hpo_name' => 'Depressed nasal bridge', 'count' => 2), '0225222330107568' => array('hpo_id' => 3015, 'hpo_name' => 'Long nose', 'count' => 2), '0221192224288306' => array('hpo_id' => 420, 'hpo_name' => 'Prominent nasal bridge', 'count' => 2), '0214283332109876' => array('hpo_id' => 425, 'hpo_name' => 'Wide nasal bridge', 'count' => 2), '0123361919225738' => array('hpo_id' => 11928, 'hpo_name' => 'Narrow nasal tip', 'count' => 1), '0118292219177834' => array('hpo_id' => 3020, 'hpo_name' => 'Short nose', 'count' => 1), '0116233332198100' => array('hpo_id' => 422, 'hpo_name' => 'Underdeveloped nasal alae', 'count' => 1))), array('question' => object(Question), 'yes_count' => 9, 'total_count' => 13, 'hpo_array' => array('0323361919226310' => array('hpo_id' => 182, 'hpo_name' => 'Narrow mouth', 'count' => 3), '0233192222252686' => array('hpo_id' => 2217, 'hpo_name' => 'Drooling', 'count' => 2), '0232153219173720' => array('hpo_id' => 252, 'hpo_name' => 'Everted lower lip vermilion', 'count' => 2), '0224362536195834' => array('hpo_id' => 291, 'hpo_name' => 'Malar flattening', 'count' => 2), '0224283419224182' => array('hpo_id' => 703, 'hpo_name' => 'Microdontia', 'count' => 2), '0222213223105923' => array('hpo_id' => 213, 'hpo_name' => 'Open mouth', 'count' => 2), '0214283332256556' => array('hpo_id' => 699, 'hpo_name' => 'Widely spaced teeth', 'count' => 2), '0129283029104893' => array('hpo_id' => 235, 'hpo_name' => 'High palate', 'count' => 1), '0118292219179243' => array('hpo_id' => 336, 'hpo_name' => 'Short philtrum', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 3, 'total_count' => 4, 'hpo_array' => array('0136352322199706' => array('hpo_id' => 12523, 'hpo_name' => 'Abnormal eye physiology', 'count' => 1), '0136181728304582' => array('hpo_id' => 473, 'hpo_name' => 'Astigmatism', 'count' => 1), '0132132217191331' => array('hpo_id' => 578, 'hpo_name' => 'Exotropia', 'count' => 1), '0118171936359873' => array('hpo_id' => 477, 'hpo_name' => 'Strabismus', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 7, 'total_count' => 14, 'hpo_array' => array('0334222330324970' => array('hpo_id' => 1550, 'hpo_name' => 'Congestive heart failure', 'count' => 3), '0135283416189166' => array('hpo_id' => 1562, 'hpo_name' => 'Bicuspid aortic valve', 'count' => 1), '0135193633124063' => array('hpo_id' => 1574, 'hpo_name' => 'Bradycardia', 'count' => 1), '0124122234362189' => array('hpo_id' => 13025, 'hpo_name' => 'Myocarditis', 'count' => 1), '0121361732236485' => array('hpo_id' => 1569, 'hpo_name' => 'Patent foramen ovale', 'count' => 1), '0121361732234262' => array('hpo_id' => 1558, 'hpo_name' => 'Patent ductus arteriosus', 'count' => 1), '0119283029175801' => array('hpo_id' => 1620, 'hpo_name' => 'Right ventricular failure', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 30, 'total_count' => 31, 'hpo_array' => array(array('hpo_id' => 1937, 'hpo_name' => 'Constipation', 'count' => 17), '0830361817198392' => array('hpo_id' => 1938, 'hpo_name' => 'Gastroesophageal reflux', 'count' => 8), '0731323233283698' => array('hpo_id' => 12077, 'hpo_name' => 'Feeding difficulties', 'count' => 7), '0431323233286203' => array('hpo_id' => 7358, 'hpo_name' => 'Feeding difficulties in infancy', 'count' => 4), '0334291922238385' => array('hpo_id' => 12611, 'hpo_name' => 'Chronic constipation', 'count' => 3), '0333121821291786' => array('hpo_id' => 1933, 'hpo_name' => 'Dysphagia', 'count' => 3), '0236352322198390' => array('hpo_id' => 2172, 'hpo_name' => 'Abnormality of the large intestine', 'count' => 2), '0230361817198958' => array('hpo_id' => 11544, 'hpo_name' => 'Gastrostomy tube feeding in infancy', 'count' => 2), '0136353322249806' => array('hpo_id' => 3090, 'hpo_name' => 'Abdominal distention', 'count' => 1), '0136352322194099' => array('hpo_id' => 2165, 'hpo_name' => 'Abnormality of the small intestine', 'count' => 1), '0136352322193755' => array('hpo_id' => 14348, 'hpo_name' => 'Abnormality of the mesentery', 'count' => 1), '0136352322193066' => array('hpo_id' => 11058, 'hpo_name' => 'Abnormality of the gastrointestinal tract', 'count' => 1), '0135221432255420' => array('hpo_id' => 2468, 'hpo_name' => 'Bowel incontinence', 'count' => 1), '0134291922237306' => array('hpo_id' => 1946, 'hpo_name' => 'Chronic diarrhea', 'count' => 1), '0128231732189770' => array('hpo_id' => 2423, 'hpo_name' => 'Intestinal malrotation', 'count' => 1), '0128231732188833' => array('hpo_id' => 4674, 'hpo_name' => 'Intestinal obstruction', 'count' => 1), '0128231732182589' => array('hpo_id' => 4123, 'hpo_name' => 'Intestinal pseudo-obstruction', 'count' => 1), '0123322223365892' => array('hpo_id' => 4701, 'hpo_name' => 'Neonatal intestinal obstruction', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 8, 'total_count' => 15, 'hpo_array' => array('0433282536176492' => array('hpo_id' => 10982, 'hpo_name' => 'Dilatation of the bladder', 'count' => 4), '0233282536179755' => array('hpo_id' => 10970, 'hpo_name' => 'Dilatation of the renal pelvis', 'count' => 2), '0216192823366207' => array('hpo_id' => 21, 'hpo_name' => 'Urinary incontinence', 'count' => 2), '0136352322199286' => array('hpo_id' => 16, 'hpo_name' => 'Abnormality of the bladder', 'count' => 1), '0136352322199077' => array('hpo_id' => 97, 'hpo_name' => 'Abnormality of the genital system', 'count' => 1), '0136352322193181' => array('hpo_id' => 87, 'hpo_name' => 'Abnormality of the ureter', 'count' => 1), '0131321736253747' => array('hpo_id' => 10983, 'hpo_name' => 'Fetal megacystis', 'count' => 1), '0116232825361347' => array('hpo_id' => 12934, 'hpo_name' => 'Unilateral cryptorchidism', 'count' => 1), '0116192823364250' => array('hpo_id' => 18, 'hpo_name' => 'Urinary retention', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 11, 'total_count' => 14, 'hpo_array' => array('0236352322191252' => array('hpo_id' => 11356, 'hpo_name' => 'Abnormality of digit', 'count' => 2), '0234252823222350' => array('hpo_id' => 13208, 'hpo_name' => 'Clinodactyly', 'count' => 2), '0231193634172404' => array('hpo_id' => 2910, 'hpo_name' => 'Fractures of the long bones', 'count' => 2), '0218253223336681' => array('hpo_id' => 11368, 'hpo_name' => 'Slender toe', 'count' => 2), '0218253223332451' => array('hpo_id' => 1228, 'hpo_name' => 'Slender finger', 'count' => 2), '0136193634293843' => array('hpo_id' => 1173, 'hpo_name' => 'Arachnodactyly', 'count' => 1), '0135192236333941' => array('hpo_id' => 1675, 'hpo_name' => 'Broad foot', 'count' => 1), '0129282110186838' => array('hpo_id' => 13164, 'hpo_name' => 'Hip Subluxation', 'count' => 1), '0127222823178842' => array('hpo_id' => 1352, 'hpo_name' => 'Joint hypermobility', 'count' => 1), '0127222823173920' => array('hpo_id' => 1360, 'hpo_name' => 'Joint laxity', 'count' => 1), '0125222330109267' => array('hpo_id' => 15651, 'hpo_name' => 'Long fingers', 'count' => 1), '0125222330108310' => array('hpo_id' => 1742, 'hpo_name' => 'Long foot', 'count' => 1), '0121253630288588' => array('hpo_id' => 1333, 'hpo_name' => 'Plagiocephaly', 'count' => 1), '0118342225289402' => array('hpo_id' => 2512, 'hpo_name' => 'Scoliosis', 'count' => 1), '0118292219172798' => array('hpo_id' => 1681, 'hpo_name' => 'Short foot', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 2, 'total_count' => 5, 'hpo_array' => array('0217292823102915' => array('hpo_id' => 967, 'hpo_name' => 'Thin skin', 'count' => 2), '0121362525221422' => array('hpo_id' => 986, 'hpo_name' => 'Pallor', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 3, 'total_count' => 6, 'hpo_array' => array('0229122122174113' => array('hpo_id' => 827, 'hpo_name' => 'Hypothyroidism', 'count' => 2), '0121281716287288' => array('hpo_id' => 6922, 'hpo_name' => 'Pituitary hypothyroidism', 'count' => 1))), array('question' => object(Question), 'yes_count' => 2, 'total_count' => 10, 'hpo_array' => array('0131321532198746' => array('hpo_id' => 1857, 'hpo_name' => 'Fever', 'count' => 1), '0128233419325858' => array('hpo_id' => 2060, 'hpo_name' => 'Increased serum lactate', 'count' => 1))), array('question' => object(Question), 'yes_count' => 24, 'total_count' => 27, 'hpo_array' => array(array('hpo_id' => 2121, 'hpo_name' => 'Recurrent respiratory infections', 'count' => 13), '0521233216242818' => array('hpo_id' => 2009, 'hpo_name' => 'Pneumonia', 'count' => 5), '0519323416198543' => array('hpo_id' => 5656, 'hpo_name' => 'Recurrent pneumonia', 'count' => 5), '0519321821289209' => array('hpo_id' => 12053, 'hpo_name' => 'Respiratory tract infection', 'count' => 5), '0236252532199858' => array('hpo_id' => 3017, 'hpo_name' => 'Allergic rhinitis', 'count' => 2), '0234231810289313' => array('hpo_id' => 11522, 'hpo_name' => 'CNS infection', 'count' => 2), '0124322328233746' => array('hpo_id' => 1275, 'hpo_name' => 'Meningitis', 'count' => 1), '0119323416196170' => array('hpo_id' => 5661, 'hpo_name' => 'Recurrent bronchopulmonary infections', 'count' => 1), '0119323416196126' => array('hpo_id' => 2576, 'hpo_name' => 'Recurrent infections', 'count' => 1), '0119323416193741' => array('hpo_id' => 2020, 'hpo_name' => 'Recurrent aspiration pneumonia', 'count' => 1), '0118322118285275' => array('hpo_id' => 15650, 'hpo_name' => 'Sepsis', 'count' => 1)))))), 'lang' => 'front/site/index.', '__currentLoopData' => array(array('question' => object(Question), 'total_count' => 20, 'hpo_count' => 1, 'hpo_array' => array('HP:0003561' => array('hpo_id' => 3332, 'hpo_name' => '< P3 : Birth length less than 3rd percentile', 'count' => 1))), array('question' => object(Question), 'total_count' => 24, 'hpo_count' => 3, 'hpo_array' => array('HP:0001518' => array('hpo_id' => 1467, 'hpo_name' => '< P3 : Small for gestational age', 'count' => 3))), array('question' => object(Question), 'total_count' => 22, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 20, 'hpo_count' => 10, 'hpo_array' => array('HP:0004322' => array('hpo_id' => 4041, 'hpo_name' => '< P3 : Short stature', 'count' => 9), 'HP:0000098' => array('hpo_id' => 114, 'hpo_name' => '> P98 : Tall stature', 'count' => 1))), array('question' => object(Question), 'total_count' => 19, 'hpo_count' => 7, 'hpo_array' => array('HP:0004325' => array('hpo_id' => 4045, 'hpo_name' => '< P3 : Decreased body weight', 'count' => 7))), array('question' => object(Question), 'total_count' => 26, 'hpo_count' => 8, 'hpo_array' => array('HP:0000252' => array('hpo_id' => 274, 'hpo_name' => '< P3 : Microcephaly', 'count' => 6), 'HP:0000256' => array('hpo_id' => 279, 'hpo_name' => '> P98 : Macrocephaly', 'count' => 2)))), 'que_cat' => array('category_name' => 'General', 'get_chart_questions' => array(array('question_id' => 3510, 'label' => 'Severity of intellectual disability', 'chart_kind' => 3, 'answer_kind' => 4, 'answer' => array(array('answer' => 'Moderate', 'answer_count' => 3, 'answer_percentage' => 14.0), array('answer' => 'Severe', 'answer_count' => 10, 'answer_percentage' => 45.0), array('answer' => 'Unknown', 'answer_count' => 9, 'answer_percentage' => 41.0))))), 'loop' => object(stdClass), 'que_details' => array('question_id' => 3510, 'label' => 'Severity of intellectual disability', 'chart_kind' => 3, 'answer_kind' => 4, 'answer' => array(array('answer' => 'Moderate', 'answer_count' => 3, 'answer_percentage' => 14.0), array('answer' => 'Severe', 'answer_count' => 10, 'answer_percentage' => 45.0), array('answer' => 'Unknown', 'answer_count' => 9, 'answer_percentage' => 41.0))), 'key' => 0, 'category' => array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'total_count' => 20, 'hpo_count' => 1, 'hpo_array' => array('HP:0003561' => array('hpo_id' => 3332, 'hpo_name' => '< P3 : Birth length less than 3rd percentile', 'count' => 1))), array('question' => object(Question), 'total_count' => 24, 'hpo_count' => 3, 'hpo_array' => array('HP:0001518' => array('hpo_id' => 1467, 'hpo_name' => '< P3 : Small for gestational age', 'count' => 3))), array('question' => object(Question), 'total_count' => 22, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 20, 'hpo_count' => 10, 'hpo_array' => array('HP:0004322' => array('hpo_id' => 4041, 'hpo_name' => '< P3 : Short stature', 'count' => 9), 'HP:0000098' => array('hpo_id' => 114, 'hpo_name' => '> P98 : Tall stature', 'count' => 1))), array('question' => object(Question), 'total_count' => 19, 'hpo_count' => 7, 'hpo_array' => array('HP:0004325' => array('hpo_id' => 4045, 'hpo_name' => '< P3 : Decreased body weight', 'count' => 7))), array('question' => object(Question), 'total_count' => 26, 'hpo_count' => 8, 'hpo_array' => array('HP:0000252' => array('hpo_id' => 274, 'hpo_name' => '< P3 : Microcephaly', 'count' => 6), 'HP:0000256' => array('hpo_id' => 279, 'hpo_name' => '> P98 : Macrocephaly', 'count' => 2))))), 'question' => array('question' => object(Question), 'total_count' => 20, 'hpo_count' => 1, 'hpo_array' => array('HP:0003561' => array('hpo_id' => 3332, 'hpo_name' => '< P3 : Birth length less than 3rd percentile', 'count' => 1))))) in /var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/storage/framework/views/0562706b6e74f059c1849b020fb1edc9d46a7de4.php (line 70)
  1.                                 <?php if(count($category['question_list']) > 0): ?>
  2.                                     <?php $__currentLoopData $category['question_list']; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $question): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
  3.                                         <tr>
  4.                                             <td class="fw-bold"><?php echo e($question['question']->label); ?></td>
  5.                                             <td><?php echo e(@($question['yes_count'] > 0)?( number_format((($question['yes_count']/$question['total_count']) * 100), 1) ):0.0); ?>%</td>
  6.                                             <td><?php echo e($question['yes_count']."/".$question['total_count']); ?></td>
  7.                                         </tr>
  8.                                         <?php if(count($question['hpo_array']) > 0): ?> 
  9.                                             <?php $__currentLoopData $question['hpo_array']; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $hpo): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
  10.                                                 <tr>
  11.                                                     <td style="padding-left: 2rem;"><?php echo e($hpo['hpo_name']); ?></td>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         }
  2.         // Once we have the path to the compiled file, we will evaluate the paths with
  3.         // typical PHP just like any other templates. We also keep a stack of views
  4.         // which have been rendered for right exception messages to be generated.
  5.         $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         array_pop($this->lastCompiled);
  7.         return $results;
  8.     }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each sections get flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.         // If this content implements the "Renderable" interface then we will call the
  2.         // render method on the object so we will avoid any "__toString" exceptions
  3.         // that might be thrown and have their errors obscured by PHP's handling.
  4.         elseif ($content instanceof Renderable) {
  5.             $content $content->render();
  6.         }
  7.         parent::setContent($content);
  8.         return $this;
  1.      */
  2.     public function __construct($content ''$status 200, array $headers = [])
  3.     {
  4.         $this->headers = new ResponseHeaderBag($headers);
  5.         $this->setContent($content);
  6.         $this->setStatusCode($status);
  7.         $this->setProtocolVersion('1.0');
  8.     }
  9.     /**
  1.                     $response instanceof JsonSerializable ||
  2.                     $response instanceof \stdClass ||
  3.                     is_array($response))) {
  4.             $response = new JsonResponse($response);
  5.         } elseif (! $response instanceof SymfonyResponse) {
  6.             $response = new Response($response200, ['Content-Type' => 'text/html']);
  7.         }
  8.         if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) {
  9.             $response->setNotModified();
  10.         }
  1.      * @param  mixed  $response
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function prepareResponse($request$response)
  5.     {
  6.         return static::toResponse($request$response);
  7.     }
  8.     /**
  9.      * Static version of prepareResponse.
  10.      *
  1.         return (new Pipeline($this->container))
  2.                         ->send($request)
  3.                         ->through($middleware)
  4.                         ->then(function ($request) use ($route) {
  5.                             return $this->prepareResponse(
  6.                                 $request$route->run()
  7.                             );
  8.                         });
  9.     }
  10.     /**
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1. class CookieConsentMiddleware
  2. {
  3.     public function handle($requestClosure $next)
  4.     {
  5.         $response $next($request);
  6.         if (! $response instanceof Response) {
  7.             return $response;
  8.         }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             }
  2.             throw $exception;
  3.         }
  4.         return $next($request);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             $this->isReading($request) ||
  2.             $this->runningUnitTests() ||
  3.             $this->inExceptArray($request) ||
  4.             $this->tokensMatch($request)
  5.         ) {
  6.             return tap($next($request), function ($response) use ($request) {
  7.                 if ($this->shouldAddXsrfTokenCookie()) {
  8.                     $this->addCookieToResponse($request$response);
  9.                 }
  10.             });
  11.         }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         // Putting the errors in the view for every view allows the developer to just
  2.         // assume that some errors are always available, which is convenient since
  3.         // they don't have to continually run checks for the presence of errors.
  4.         return $next($request);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             $this->startSession($request$session)
  2.         );
  3.         $this->collectGarbage($session);
  4.         $response $next($request);
  5.         $this->storeCurrentUrl($request$session);
  6.         $this->addCookieToResponse($response$session);
  1.         if ($this->manager->shouldBlock() ||
  2.             ($request->route() instanceof Route && $request->route()->locksFor())) {
  3.             return $this->handleRequestWhileBlocking($request$session$next);
  4.         }
  5.         return $this->handleStatefulRequest($request$session$next);
  6.     }
  7.     /**
  8.      * Handle the given request within session state.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @param  \Closure  $next
  2.      * @return mixed
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         $response $next($request);
  7.         foreach ($this->cookies->getQueuedCookies() as $cookie) {
  8.             $response->headers->setCookie($cookie);
  9.         }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @param  \Closure  $next
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         return $this->encrypt($next($this->decrypt($request)));
  7.     }
  8.     /**
  9.      * Decrypt the cookies on the request.
  10.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.                         ->through($middleware)
  2.                         ->then(function ($request) use ($route) {
  3.                             return $this->prepareResponse(
  4.                                 $request$route->run()
  5.                             );
  6.                         });
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  10.      *
  1.         });
  2.         $this->events->dispatch(new RouteMatched($route$request));
  3.         return $this->prepareResponse($request,
  4.             $this->runRouteWithinStack($route$request)
  5.         );
  6.     }
  7.     /**
  8.      * Run the given route within a Stack "onion" instance.
  1.      * @param  \Illuminate\Http\Request  $request
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function dispatchToRoute(Request $request)
  5.     {
  6.         return $this->runRoute($request$this->findRoute($request));
  7.     }
  8.     /**
  9.      * Find the route matching a given request.
  10.      *
  1.      */
  2.     public function dispatch(Request $request)
  3.     {
  4.         $this->currentRequest $request;
  5.         return $this->dispatchToRoute($request);
  6.     }
  7.     /**
  8.      * Dispatch the request to a route and return the response.
  9.      *
  1.     protected function dispatchToRouter()
  2.     {
  3.         return function ($request) {
  4.             $this->app->instance('request'$request);
  5.             return $this->router->dispatch($request);
  6.         };
  7.     }
  8.     /**
  9.      * Call the terminate method on any terminable middleware.
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.      * @return mixed
  2.      */
  3.     public function handle($requestClosure $next)
  4.     {
  5.         if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) {
  6.             return $next($request);
  7.         }
  8.         $this->debugbar->boot();
  9.         try {
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.             if ($callback($request)) {
  2.                 return $next($request);
  3.             }
  4.         }
  5.         return parent::handle($request$next);
  6.     }
  7.     /**
  8.      * Transform the given value.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.             if ($callback($request)) {
  2.                 return $next($request);
  3.             }
  4.         }
  5.         return parent::handle($request$next);
  6.     }
  7.     /**
  8.      * Transform the given value.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         if ($max && $request->server('CONTENT_LENGTH') > $max) {
  2.             throw new PostTooLargeException;
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine the server 'post_max_size' as bytes.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.                 null,
  2.                 $this->getHeaders($data)
  3.             );
  4.         }
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Determine if the incoming request has a maintenance mode bypass cookie.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         // Check if we're dealing with CORS and if we should handle it
  5.         if (! $this->shouldRun($request)) {
  6.             return $next($request);
  7.         }
  8.         // For Preflight, return the Preflight response
  9.         if ($this->cors->isPreflightRequest($request)) {
  10.             $response $this->cors->handlePreflightRequest($request);
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     public function handle(Request $requestClosure $next)
  2.     {
  3.         $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests
  4.         $this->setTrustedProxyIpAddresses($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Sets the trusted proxies on the request to the value of trustedproxy.proxies
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $this->bootstrap();
  2.         return (new Pipeline($this->app))
  3.                     ->send($request)
  4.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5.                     ->then($this->dispatchToRouter());
  6.     }
  7.     /**
  8.      * Bootstrap the application for HTTP requests.
  9.      *
  1.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
  1. $app = require_once __DIR__.'/../bootstrap/app.php';
  2. $kernel $app->make(Kernel::class);
  3. $response tap($kernel->handle(
  4.     $request Request::capture()
  5. ))->send();
  6. $kernel->terminate($request$response);
require_once('/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/public/index.php') in /var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/index.php (line 19)
  1. // built-in PHP web server. This provides a convenient way to test a Laravel
  2. // application without having installed a "real" web server software here.
  3. if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
  4.     return false;
  5. }
  6. require_once __DIR__.'/public/index.php';

Stack Traces 2

[2/2] ViewException
Illuminate\View\ViewException:
Undefined index: yes_count (View: /var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/resources/views/front/site/pdf-graphs.blade.php)

  at /var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/storage/framework/views/0562706b6e74f059c1849b020fb1edc9d46a7de4.php:70
  at Illuminate\View\Engines\CompilerEngine->handleViewException(object(ErrorException), 2)
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:60)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/storage/framework/views/0562706b6e74f059c1849b020fb1edc9d46a7de4.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), 'setting' => object(Setting), 'site' => object(Site), 'site_moderators' => object(Collection), 'total_patient' => 37, 'region_data' => array(array('country_count' => 3, 'country_name' => 'Belgium'), array('country_count' => 6, 'country_name' => 'China'), array('country_count' => 11, 'country_name' => 'Netherlands'), array('country_count' => 17, 'country_name' => 'United Kingdom')), 'regionMaxValue' => 17, 'chartData' => array(array(array('category_name' => 'General', 'get_chart_questions' => array(array('question_id' => 3510, 'label' => 'Severity of intellectual disability', 'chart_kind' => 3, 'answer_kind' => 4, 'answer' => array(array('answer' => 'Moderate', 'answer_count' => 3, 'answer_percentage' => 14.0), array('answer' => 'Severe', 'answer_count' => 10, 'answer_percentage' => 45.0), array('answer' => 'Unknown', 'answer_count' => 9, 'answer_percentage' => 41.0))))))), 'majorChartData' => array(array('question' => object(Question), 'yes_count' => 32, 'no_count' => 0, 'unknown_count' => 2, 'total_count' => 34), array('question' => object(Question), 'yes_count' => 27, 'no_count' => 0, 'unknown_count' => 6, 'total_count' => 33), array('question' => object(Question), 'yes_count' => 34, 'no_count' => 2, 'unknown_count' => 0, 'total_count' => 36), array('question' => object(Question), 'yes_count' => 34, 'no_count' => 2, 'unknown_count' => 1, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 15, 'no_count' => 4, 'unknown_count' => 18, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 20, 'no_count' => 5, 'unknown_count' => 12, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 12, 'no_count' => 4, 'unknown_count' => 21, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 11, 'no_count' => 3, 'unknown_count' => 23, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 19, 'no_count' => 4, 'unknown_count' => 14, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 9, 'no_count' => 4, 'unknown_count' => 24, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 3, 'unknown_count' => 34, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 3, 'no_count' => 1, 'unknown_count' => 33, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 7, 'no_count' => 7, 'unknown_count' => 23, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 30, 'no_count' => 1, 'unknown_count' => 6, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 8, 'no_count' => 7, 'unknown_count' => 22, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 11, 'no_count' => 3, 'unknown_count' => 23, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 3, 'unknown_count' => 32, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 3, 'no_count' => 3, 'unknown_count' => 31, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 8, 'unknown_count' => 27, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 24, 'no_count' => 3, 'unknown_count' => 10, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 8, 'unknown_count' => 29, 'total_count' => 37)), 'male_count' => 36, 'female_count' => 1, 'frequency_data' => array(array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'total_count' => 20, 'hpo_count' => 1, 'hpo_array' => array('HP:0003561' => array('hpo_id' => 3332, 'hpo_name' => '< P3 : Birth length less than 3rd percentile', 'count' => 1))), array('question' => object(Question), 'total_count' => 24, 'hpo_count' => 3, 'hpo_array' => array('HP:0001518' => array('hpo_id' => 1467, 'hpo_name' => '< P3 : Small for gestational age', 'count' => 3))), array('question' => object(Question), 'total_count' => 22, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 20, 'hpo_count' => 10, 'hpo_array' => array('HP:0004322' => array('hpo_id' => 4041, 'hpo_name' => '< P3 : Short stature', 'count' => 9), 'HP:0000098' => array('hpo_id' => 114, 'hpo_name' => '> P98 : Tall stature', 'count' => 1))), array('question' => object(Question), 'total_count' => 19, 'hpo_count' => 7, 'hpo_array' => array('HP:0004325' => array('hpo_id' => 4045, 'hpo_name' => '< P3 : Decreased body weight', 'count' => 7))), array('question' => object(Question), 'total_count' => 26, 'hpo_count' => 8, 'hpo_array' => array('HP:0000252' => array('hpo_id' => 274, 'hpo_name' => '< P3 : Microcephaly', 'count' => 6), 'HP:0000256' => array('hpo_id' => 279, 'hpo_name' => '> P98 : Macrocephaly', 'count' => 2))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 34, 'total_count' => 36, 'hpo_array' => array(array('hpo_id' => 1280, 'hpo_name' => 'Generalized hypotonia', 'count' => 23), '0818322811161220' => array('hpo_id' => 1237, 'hpo_name' => 'Seizures', 'count' => 8), '0730322332192540' => array('hpo_id' => 1987, 'hpo_name' => 'Generalized tonic-clonic seizures', 'count' => 7), '0536173613284965' => array('hpo_id' => 1238, 'hpo_name' => 'Ataxia', 'count' => 5), '0530362817102424' => array('hpo_id' => 1983, 'hpo_name' => 'Gait ataxia', 'count' => 5), '0530322332193980' => array('hpo_id' => 2038, 'hpo_name' => 'Generalized myoclonic seizures', 'count' => 5), '0436172223286278' => array('hpo_id' => 10830, 'hpo_name' => 'Atonic seizures', 'count' => 4), '0328233136236977' => array('hpo_id' => 7473, 'hpo_name' => 'Infantile axial hypotonia', 'count' => 3), '0325221432197530' => array('hpo_id' => 1979, 'hpo_name' => 'Lower limb spasticity', 'count' => 3), '0318213618172683' => array('hpo_id' => 1244, 'hpo_name' => 'Spasticity', 'count' => 3), '0236352322196865' => array('hpo_id' => 6134, 'hpo_name' => 'Abnormal pyramidal signs', 'count' => 2), '0234322317197647' => array('hpo_id' => 11462, 'hpo_name' => 'Central hypotonia', 'count' => 2), '0233121817222264' => array('hpo_id' => 1313, 'hpo_name' => 'Dystonia', 'count' => 2), '0231223436255777' => array('hpo_id' => 11220, 'hpo_name' => 'Focal myoclonic seizures', 'count' => 2), '0225282435105444' => array('hpo_id' => 2373, 'hpo_name' => 'Limb hypertonia', 'count' => 2), '0224162517286611' => array('hpo_id' => 10851, 'hpo_name' => 'Multifocal epileptiform discharges', 'count' => 2), '0224122234253821' => array('hpo_id' => 1316, 'hpo_name' => 'Myoclonus', 'count' => 2), '0223322223363967' => array('hpo_id' => 1301, 'hpo_name' => 'Neonatal hypotonia', 'count' => 2), '0221192230194642' => array('hpo_id' => 2104, 'hpo_name' => 'Progressive spasticity', 'count' => 2), '0136353322249959' => array('hpo_id' => 3090, 'hpo_name' => 'Abdominal distention', 'count' => 1), '0136351832234122' => array('hpo_id' => 2036, 'hpo_name' => 'Absence seizures', 'count' => 1), '0135363528237021' => array('hpo_id' => 3277, 'hpo_name' => 'Babinski sign', 'count' => 1), '0134321932356935' => array('hpo_id' => 14353, 'hpo_name' => 'Cerebral palsy', 'count' => 1), '0131363428363319' => array('hpo_id' => 315, 'hpo_name' => 'Facial hypotonia', 'count' => 1), '0131223436258825' => array('hpo_id' => 2289, 'hpo_name' => 'Focal seizures with impairment of consciousness or awareness', 'count' => 1), '0130322332192380' => array('hpo_id' => 10829, 'hpo_name' => 'Generalized tonic seizures', 'count' => 1), '0130322332192149' => array('hpo_id' => 2110, 'hpo_name' => 'Generalized seizures', 'count' => 1), '0129282110347639' => array('hpo_id' => 3093, 'hpo_name' => 'Hip contracture', 'count' => 1), '0129122132194014' => array('hpo_id' => 5877, 'hpo_name' => 'Hyperactive deep tendon reflexes', 'count' => 1), '0126233232108761' => array('hpo_id' => 5500, 'hpo_name' => 'Knee flexion contracture', 'count' => 1), '0125221818106680' => array('hpo_id' => 5874, 'hpo_name' => 'Loss of ability to walk in first decade', 'count' => 1), '0125221432194321' => array('hpo_id' => 5926, 'hpo_name' => 'Lower limb hypertonia', 'count' => 1), '0121222219102391' => array('hpo_id' => 2276, 'hpo_name' => 'Poor coordination', 'count' => 1), '0121192230193660' => array('hpo_id' => 6122, 'hpo_name' => 'Progressive truncal ataxia', 'count' => 1), '0118173219323821' => array('hpo_id' => 12297, 'hpo_name' => 'Stereotypical hand wringing', 'count' => 1), '0117191623341197' => array('hpo_id' => 1996, 'hpo_name' => 'Truncal ataxia', 'count' => 1), '0116231817329348' => array('hpo_id' => 2228, 'hpo_name' => 'Unsteady gait', 'count' => 1))), array('question' => object(Question), 'yes_count' => 15, 'total_count' => 19, 'hpo_array' => array('0736161728181611' => array('hpo_id' => 740, 'hpo_name' => 'Autistic behavior', 'count' => 7), '0618173219327575' => array('hpo_id' => 742, 'hpo_name' => 'Stereotypic behavior', 'count' => 6), '0528242136283302' => array('hpo_id' => 12956, 'hpo_name' => 'Impaired social reciprocity', 'count' => 5), '0521222219101922' => array('hpo_id' => 822, 'hpo_name' => 'Poor eye contact', 'count' => 5), '0428242136285181' => array('hpo_id' => 744, 'hpo_name' => 'Impaired social interactions', 'count' => 4), '0229122132197801' => array('hpo_id' => 764, 'hpo_name' => 'Hyperactivity', 'count' => 2), '0219323416191022' => array('hpo_id' => 14356, 'hpo_name' => 'Recurrent hand flapping', 'count' => 2), '0218173219326971' => array('hpo_id' => 12297, 'hpo_name' => 'Stereotypical hand wringing', 'count' => 2), '0136352322194718' => array('hpo_id' => 15709, 'hpo_name' => 'Abnormal emotion/affect behavior', 'count' => 1), '0136303019323519' => array('hpo_id' => 729, 'hpo_name' => 'Aggressive behavior', 'count' => 1), '0133192222257916' => array('hpo_id' => 2217, 'hpo_name' => 'Drooling', 'count' => 1), '0123221018223408' => array('hpo_id' => 7275, 'hpo_name' => 'No social interaction', 'count' => 1))), array('question' => object(Question), 'yes_count' => 20, 'total_count' => 25, 'hpo_array' => array('0536352322193347' => array('hpo_id' => 2382, 'hpo_name' => 'Abnormality of the periventricular white matter', 'count' => 5), '0334321932359794' => array('hpo_id' => 1976, 'hpo_name' => 'Cerebral atrophy', 'count' => 3), '0334321932352309' => array('hpo_id' => 2035, 'hpo_name' => 'Cerebral cortical atrophy', 'count' => 3), '0332323010363757' => array('hpo_id' => 2259, 'hpo_name' => 'EEG abnormality', 'count' => 3), '0331223436254826' => array('hpo_id' => 6023, 'hpo_name' => 'Focal white matter lesions', 'count' => 3), '0321361917281835' => array('hpo_id' => 1318, 'hpo_name' => 'Partial agenesis of the corpus callosum', 'count' => 3), '0234321932352177' => array('hpo_id' => 5901, 'hpo_name' => 'Cerebellar vermis atrophy', 'count' => 2), '0233322536125543' => array('hpo_id' => 12609, 'hpo_name' => 'Delayed myelination', 'count' => 2), '0233282536179127' => array('hpo_id' => 5961, 'hpo_name' => 'Dilation of lateral ventricles', 'count' => 2), '0233282536178952' => array('hpo_id' => 6045, 'hpo_name' => 'Dilated third ventricle', 'count' => 2), '0233282536174266' => array('hpo_id' => 2111, 'hpo_name' => 'Dilated fourth ventricle', 'count' => 2), '0232323010145173' => array('hpo_id' => 11240, 'hpo_name' => 'EEG with focal epileptiform discharges', 'count' => 2), '0232323010144031' => array('hpo_id' => 11253, 'hpo_name' => 'EEG with generalized epileptiform discharges', 'count' => 2), '0232323010143626' => array('hpo_id' => 11254, 'hpo_name' => 'EEG with generalized sharp slow waves', 'count' => 2), '0136352322198669' => array('hpo_id' => 14856, 'hpo_name' => 'Abnormality of the dentate nucleus', 'count' => 1), '0136212536183622' => array('hpo_id' => 5884, 'hpo_name' => 'Aplasia/Hypoplasia of the cerebellar vermis', 'count' => 1), '0134321932358132' => array('hpo_id' => 5881, 'hpo_name' => 'Cerebral hypomyelination', 'count' => 1), '0134231810295860' => array('hpo_id' => 3229, 'hpo_name' => 'CNS hypomyelination', 'count' => 1), '0133121821252530' => array('hpo_id' => 5984, 'hpo_name' => 'Dysplastic corpus callosum', 'count' => 1), '0132232536198373' => array('hpo_id' => 11495, 'hpo_name' => 'Enlarged fetal cisterna magna', 'count' => 1), '0132232536194658' => array('hpo_id' => 2194, 'hpo_name' => 'Enlarged cisterna magna', 'count' => 1), '0130322332197148' => array('hpo_id' => 6030, 'hpo_name' => 'Generalized cerebral atrophy/hypoplasia', 'count' => 1), '0129122122286929' => array('hpo_id' => 6058, 'hpo_name' => 'Hypointensity of cerebral white matter on MRI', 'count' => 1), '0129122122217346' => array('hpo_id' => 1997, 'hpo_name' => 'Hypoplasia of the corpus callosum', 'count' => 1), '0125321626227331' => array('hpo_id' => 2310, 'hpo_name' => 'Leukodystrophy', 'count' => 1), '0124221921295632' => array('hpo_id' => 1929, 'hpo_name' => 'Morphological abnormality of the central nervous system', 'count' => 1), '0121321928156322' => array('hpo_id' => 12687, 'hpo_name' => 'Perivascular spaces', 'count' => 1), '0121321928153238' => array('hpo_id' => 5974, 'hpo_name' => 'Periventricular leukomalacia', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 12, 'total_count' => 16, 'hpo_array' => array('0924363419229048' => array('hpo_id' => 396, 'hpo_name' => 'Macrotia', 'count' => 9), '0236352322193111' => array('hpo_id' => 366, 'hpo_name' => 'Abnormality of earlobe', 'count' => 2), '0225361930325608' => array('hpo_id' => 9027, 'hpo_name' => 'Large earlobe', 'count' => 2), '0225221410185702' => array('hpo_id' => 372, 'hpo_name' => 'Low-set ears', 'count' => 2))), array('question' => object(Question), 'yes_count' => 11, 'total_count' => 14, 'hpo_array' => array('0533221423186247' => array('hpo_id' => 486, 'hpo_name' => 'Downslanted palpebral fissures', 'count' => 5), '0233323221258670' => array('hpo_id' => 481, 'hpo_name' => 'Deeply set eye', 'count' => 2), '0232212834368697' => array('hpo_id' => 303, 'hpo_name' => 'Epicanthus', 'count' => 2), '0229122132197648' => array('hpo_id' => 330, 'hpo_name' => 'Hypertelorism', 'count' => 2), '0136352322194632' => array('hpo_id' => 529, 'hpo_name' => 'Abnormality of the eyebrow', 'count' => 1), '0118292219179744' => array('hpo_id' => 12940, 'hpo_name' => 'Short palpebral fissure', 'count' => 1), '0118213619188709' => array('hpo_id' => 532, 'hpo_name' => 'Sparse eyebrow', 'count' => 1))), array('question' => object(Question), 'yes_count' => 19, 'total_count' => 23, 'hpo_array' => array('0823361919226029' => array('hpo_id' => 445, 'hpo_name' => 'Narrow nose', 'count' => 8), '0414283332109279' => array('hpo_id' => 13015, 'hpo_name' => 'Wide nasal base', 'count' => 4), '0314283332103113' => array('hpo_id' => 432, 'hpo_name' => 'Wide nose', 'count' => 3), '0236231732156561' => array('hpo_id' => 446, 'hpo_name' => 'Anteverted nares', 'count' => 2), '0233322119327016' => array('hpo_id' => 4746, 'hpo_name' => 'Depressed nasal bridge', 'count' => 2), '0225222330107568' => array('hpo_id' => 3015, 'hpo_name' => 'Long nose', 'count' => 2), '0221192224288306' => array('hpo_id' => 420, 'hpo_name' => 'Prominent nasal bridge', 'count' => 2), '0214283332109876' => array('hpo_id' => 425, 'hpo_name' => 'Wide nasal bridge', 'count' => 2), '0123361919225738' => array('hpo_id' => 11928, 'hpo_name' => 'Narrow nasal tip', 'count' => 1), '0118292219177834' => array('hpo_id' => 3020, 'hpo_name' => 'Short nose', 'count' => 1), '0116233332198100' => array('hpo_id' => 422, 'hpo_name' => 'Underdeveloped nasal alae', 'count' => 1))), array('question' => object(Question), 'yes_count' => 9, 'total_count' => 13, 'hpo_array' => array('0323361919226310' => array('hpo_id' => 182, 'hpo_name' => 'Narrow mouth', 'count' => 3), '0233192222252686' => array('hpo_id' => 2217, 'hpo_name' => 'Drooling', 'count' => 2), '0232153219173720' => array('hpo_id' => 252, 'hpo_name' => 'Everted lower lip vermilion', 'count' => 2), '0224362536195834' => array('hpo_id' => 291, 'hpo_name' => 'Malar flattening', 'count' => 2), '0224283419224182' => array('hpo_id' => 703, 'hpo_name' => 'Microdontia', 'count' => 2), '0222213223105923' => array('hpo_id' => 213, 'hpo_name' => 'Open mouth', 'count' => 2), '0214283332256556' => array('hpo_id' => 699, 'hpo_name' => 'Widely spaced teeth', 'count' => 2), '0129283029104893' => array('hpo_id' => 235, 'hpo_name' => 'High palate', 'count' => 1), '0118292219179243' => array('hpo_id' => 336, 'hpo_name' => 'Short philtrum', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 3, 'total_count' => 4, 'hpo_array' => array('0136352322199706' => array('hpo_id' => 12523, 'hpo_name' => 'Abnormal eye physiology', 'count' => 1), '0136181728304582' => array('hpo_id' => 473, 'hpo_name' => 'Astigmatism', 'count' => 1), '0132132217191331' => array('hpo_id' => 578, 'hpo_name' => 'Exotropia', 'count' => 1), '0118171936359873' => array('hpo_id' => 477, 'hpo_name' => 'Strabismus', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 7, 'total_count' => 14, 'hpo_array' => array('0334222330324970' => array('hpo_id' => 1550, 'hpo_name' => 'Congestive heart failure', 'count' => 3), '0135283416189166' => array('hpo_id' => 1562, 'hpo_name' => 'Bicuspid aortic valve', 'count' => 1), '0135193633124063' => array('hpo_id' => 1574, 'hpo_name' => 'Bradycardia', 'count' => 1), '0124122234362189' => array('hpo_id' => 13025, 'hpo_name' => 'Myocarditis', 'count' => 1), '0121361732236485' => array('hpo_id' => 1569, 'hpo_name' => 'Patent foramen ovale', 'count' => 1), '0121361732234262' => array('hpo_id' => 1558, 'hpo_name' => 'Patent ductus arteriosus', 'count' => 1), '0119283029175801' => array('hpo_id' => 1620, 'hpo_name' => 'Right ventricular failure', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 30, 'total_count' => 31, 'hpo_array' => array(array('hpo_id' => 1937, 'hpo_name' => 'Constipation', 'count' => 17), '0830361817198392' => array('hpo_id' => 1938, 'hpo_name' => 'Gastroesophageal reflux', 'count' => 8), '0731323233283698' => array('hpo_id' => 12077, 'hpo_name' => 'Feeding difficulties', 'count' => 7), '0431323233286203' => array('hpo_id' => 7358, 'hpo_name' => 'Feeding difficulties in infancy', 'count' => 4), '0334291922238385' => array('hpo_id' => 12611, 'hpo_name' => 'Chronic constipation', 'count' => 3), '0333121821291786' => array('hpo_id' => 1933, 'hpo_name' => 'Dysphagia', 'count' => 3), '0236352322198390' => array('hpo_id' => 2172, 'hpo_name' => 'Abnormality of the large intestine', 'count' => 2), '0230361817198958' => array('hpo_id' => 11544, 'hpo_name' => 'Gastrostomy tube feeding in infancy', 'count' => 2), '0136353322249806' => array('hpo_id' => 3090, 'hpo_name' => 'Abdominal distention', 'count' => 1), '0136352322194099' => array('hpo_id' => 2165, 'hpo_name' => 'Abnormality of the small intestine', 'count' => 1), '0136352322193755' => array('hpo_id' => 14348, 'hpo_name' => 'Abnormality of the mesentery', 'count' => 1), '0136352322193066' => array('hpo_id' => 11058, 'hpo_name' => 'Abnormality of the gastrointestinal tract', 'count' => 1), '0135221432255420' => array('hpo_id' => 2468, 'hpo_name' => 'Bowel incontinence', 'count' => 1), '0134291922237306' => array('hpo_id' => 1946, 'hpo_name' => 'Chronic diarrhea', 'count' => 1), '0128231732189770' => array('hpo_id' => 2423, 'hpo_name' => 'Intestinal malrotation', 'count' => 1), '0128231732188833' => array('hpo_id' => 4674, 'hpo_name' => 'Intestinal obstruction', 'count' => 1), '0128231732182589' => array('hpo_id' => 4123, 'hpo_name' => 'Intestinal pseudo-obstruction', 'count' => 1), '0123322223365892' => array('hpo_id' => 4701, 'hpo_name' => 'Neonatal intestinal obstruction', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 8, 'total_count' => 15, 'hpo_array' => array('0433282536176492' => array('hpo_id' => 10982, 'hpo_name' => 'Dilatation of the bladder', 'count' => 4), '0233282536179755' => array('hpo_id' => 10970, 'hpo_name' => 'Dilatation of the renal pelvis', 'count' => 2), '0216192823366207' => array('hpo_id' => 21, 'hpo_name' => 'Urinary incontinence', 'count' => 2), '0136352322199286' => array('hpo_id' => 16, 'hpo_name' => 'Abnormality of the bladder', 'count' => 1), '0136352322199077' => array('hpo_id' => 97, 'hpo_name' => 'Abnormality of the genital system', 'count' => 1), '0136352322193181' => array('hpo_id' => 87, 'hpo_name' => 'Abnormality of the ureter', 'count' => 1), '0131321736253747' => array('hpo_id' => 10983, 'hpo_name' => 'Fetal megacystis', 'count' => 1), '0116232825361347' => array('hpo_id' => 12934, 'hpo_name' => 'Unilateral cryptorchidism', 'count' => 1), '0116192823364250' => array('hpo_id' => 18, 'hpo_name' => 'Urinary retention', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 11, 'total_count' => 14, 'hpo_array' => array('0236352322191252' => array('hpo_id' => 11356, 'hpo_name' => 'Abnormality of digit', 'count' => 2), '0234252823222350' => array('hpo_id' => 13208, 'hpo_name' => 'Clinodactyly', 'count' => 2), '0231193634172404' => array('hpo_id' => 2910, 'hpo_name' => 'Fractures of the long bones', 'count' => 2), '0218253223336681' => array('hpo_id' => 11368, 'hpo_name' => 'Slender toe', 'count' => 2), '0218253223332451' => array('hpo_id' => 1228, 'hpo_name' => 'Slender finger', 'count' => 2), '0136193634293843' => array('hpo_id' => 1173, 'hpo_name' => 'Arachnodactyly', 'count' => 1), '0135192236333941' => array('hpo_id' => 1675, 'hpo_name' => 'Broad foot', 'count' => 1), '0129282110186838' => array('hpo_id' => 13164, 'hpo_name' => 'Hip Subluxation', 'count' => 1), '0127222823178842' => array('hpo_id' => 1352, 'hpo_name' => 'Joint hypermobility', 'count' => 1), '0127222823173920' => array('hpo_id' => 1360, 'hpo_name' => 'Joint laxity', 'count' => 1), '0125222330109267' => array('hpo_id' => 15651, 'hpo_name' => 'Long fingers', 'count' => 1), '0125222330108310' => array('hpo_id' => 1742, 'hpo_name' => 'Long foot', 'count' => 1), '0121253630288588' => array('hpo_id' => 1333, 'hpo_name' => 'Plagiocephaly', 'count' => 1), '0118342225289402' => array('hpo_id' => 2512, 'hpo_name' => 'Scoliosis', 'count' => 1), '0118292219172798' => array('hpo_id' => 1681, 'hpo_name' => 'Short foot', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 2, 'total_count' => 5, 'hpo_array' => array('0217292823102915' => array('hpo_id' => 967, 'hpo_name' => 'Thin skin', 'count' => 2), '0121362525221422' => array('hpo_id' => 986, 'hpo_name' => 'Pallor', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 3, 'total_count' => 6, 'hpo_array' => array('0229122122174113' => array('hpo_id' => 827, 'hpo_name' => 'Hypothyroidism', 'count' => 2), '0121281716287288' => array('hpo_id' => 6922, 'hpo_name' => 'Pituitary hypothyroidism', 'count' => 1))), array('question' => object(Question), 'yes_count' => 2, 'total_count' => 10, 'hpo_array' => array('0131321532198746' => array('hpo_id' => 1857, 'hpo_name' => 'Fever', 'count' => 1), '0128233419325858' => array('hpo_id' => 2060, 'hpo_name' => 'Increased serum lactate', 'count' => 1))), array('question' => object(Question), 'yes_count' => 24, 'total_count' => 27, 'hpo_array' => array(array('hpo_id' => 2121, 'hpo_name' => 'Recurrent respiratory infections', 'count' => 13), '0521233216242818' => array('hpo_id' => 2009, 'hpo_name' => 'Pneumonia', 'count' => 5), '0519323416198543' => array('hpo_id' => 5656, 'hpo_name' => 'Recurrent pneumonia', 'count' => 5), '0519321821289209' => array('hpo_id' => 12053, 'hpo_name' => 'Respiratory tract infection', 'count' => 5), '0236252532199858' => array('hpo_id' => 3017, 'hpo_name' => 'Allergic rhinitis', 'count' => 2), '0234231810289313' => array('hpo_id' => 11522, 'hpo_name' => 'CNS infection', 'count' => 2), '0124322328233746' => array('hpo_id' => 1275, 'hpo_name' => 'Meningitis', 'count' => 1), '0119323416196170' => array('hpo_id' => 5661, 'hpo_name' => 'Recurrent bronchopulmonary infections', 'count' => 1), '0119323416196126' => array('hpo_id' => 2576, 'hpo_name' => 'Recurrent infections', 'count' => 1), '0119323416193741' => array('hpo_id' => 2020, 'hpo_name' => 'Recurrent aspiration pneumonia', 'count' => 1), '0118322118285275' => array('hpo_id' => 15650, 'hpo_name' => 'Sepsis', 'count' => 1)))))), 'lang' => 'front/site/index.'))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:61)
  at Illuminate\View\Engines\CompilerEngine->get('/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/resources/views/front/site/pdf-graphs.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), 'setting' => object(Setting), 'site' => object(Site), 'site_moderators' => object(Collection), 'total_patient' => 37, 'region_data' => array(array('country_count' => 3, 'country_name' => 'Belgium'), array('country_count' => 6, 'country_name' => 'China'), array('country_count' => 11, 'country_name' => 'Netherlands'), array('country_count' => 17, 'country_name' => 'United Kingdom')), 'regionMaxValue' => 17, 'chartData' => array(array(array('category_name' => 'General', 'get_chart_questions' => array(array('question_id' => 3510, 'label' => 'Severity of intellectual disability', 'chart_kind' => 3, 'answer_kind' => 4, 'answer' => array(array('answer' => 'Moderate', 'answer_count' => 3, 'answer_percentage' => 14.0), array('answer' => 'Severe', 'answer_count' => 10, 'answer_percentage' => 45.0), array('answer' => 'Unknown', 'answer_count' => 9, 'answer_percentage' => 41.0))))))), 'majorChartData' => array(array('question' => object(Question), 'yes_count' => 32, 'no_count' => 0, 'unknown_count' => 2, 'total_count' => 34), array('question' => object(Question), 'yes_count' => 27, 'no_count' => 0, 'unknown_count' => 6, 'total_count' => 33), array('question' => object(Question), 'yes_count' => 34, 'no_count' => 2, 'unknown_count' => 0, 'total_count' => 36), array('question' => object(Question), 'yes_count' => 34, 'no_count' => 2, 'unknown_count' => 1, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 15, 'no_count' => 4, 'unknown_count' => 18, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 20, 'no_count' => 5, 'unknown_count' => 12, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 12, 'no_count' => 4, 'unknown_count' => 21, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 11, 'no_count' => 3, 'unknown_count' => 23, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 19, 'no_count' => 4, 'unknown_count' => 14, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 9, 'no_count' => 4, 'unknown_count' => 24, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 3, 'unknown_count' => 34, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 3, 'no_count' => 1, 'unknown_count' => 33, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 7, 'no_count' => 7, 'unknown_count' => 23, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 30, 'no_count' => 1, 'unknown_count' => 6, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 8, 'no_count' => 7, 'unknown_count' => 22, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 11, 'no_count' => 3, 'unknown_count' => 23, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 3, 'unknown_count' => 32, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 3, 'no_count' => 3, 'unknown_count' => 31, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 8, 'unknown_count' => 27, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 24, 'no_count' => 3, 'unknown_count' => 10, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 8, 'unknown_count' => 29, 'total_count' => 37)), 'male_count' => 36, 'female_count' => 1, 'frequency_data' => array(array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'total_count' => 20, 'hpo_count' => 1, 'hpo_array' => array('HP:0003561' => array('hpo_id' => 3332, 'hpo_name' => '< P3 : Birth length less than 3rd percentile', 'count' => 1))), array('question' => object(Question), 'total_count' => 24, 'hpo_count' => 3, 'hpo_array' => array('HP:0001518' => array('hpo_id' => 1467, 'hpo_name' => '< P3 : Small for gestational age', 'count' => 3))), array('question' => object(Question), 'total_count' => 22, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 20, 'hpo_count' => 10, 'hpo_array' => array('HP:0004322' => array('hpo_id' => 4041, 'hpo_name' => '< P3 : Short stature', 'count' => 9), 'HP:0000098' => array('hpo_id' => 114, 'hpo_name' => '> P98 : Tall stature', 'count' => 1))), array('question' => object(Question), 'total_count' => 19, 'hpo_count' => 7, 'hpo_array' => array('HP:0004325' => array('hpo_id' => 4045, 'hpo_name' => '< P3 : Decreased body weight', 'count' => 7))), array('question' => object(Question), 'total_count' => 26, 'hpo_count' => 8, 'hpo_array' => array('HP:0000252' => array('hpo_id' => 274, 'hpo_name' => '< P3 : Microcephaly', 'count' => 6), 'HP:0000256' => array('hpo_id' => 279, 'hpo_name' => '> P98 : Macrocephaly', 'count' => 2))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 34, 'total_count' => 36, 'hpo_array' => array(array('hpo_id' => 1280, 'hpo_name' => 'Generalized hypotonia', 'count' => 23), '0818322811161220' => array('hpo_id' => 1237, 'hpo_name' => 'Seizures', 'count' => 8), '0730322332192540' => array('hpo_id' => 1987, 'hpo_name' => 'Generalized tonic-clonic seizures', 'count' => 7), '0536173613284965' => array('hpo_id' => 1238, 'hpo_name' => 'Ataxia', 'count' => 5), '0530362817102424' => array('hpo_id' => 1983, 'hpo_name' => 'Gait ataxia', 'count' => 5), '0530322332193980' => array('hpo_id' => 2038, 'hpo_name' => 'Generalized myoclonic seizures', 'count' => 5), '0436172223286278' => array('hpo_id' => 10830, 'hpo_name' => 'Atonic seizures', 'count' => 4), '0328233136236977' => array('hpo_id' => 7473, 'hpo_name' => 'Infantile axial hypotonia', 'count' => 3), '0325221432197530' => array('hpo_id' => 1979, 'hpo_name' => 'Lower limb spasticity', 'count' => 3), '0318213618172683' => array('hpo_id' => 1244, 'hpo_name' => 'Spasticity', 'count' => 3), '0236352322196865' => array('hpo_id' => 6134, 'hpo_name' => 'Abnormal pyramidal signs', 'count' => 2), '0234322317197647' => array('hpo_id' => 11462, 'hpo_name' => 'Central hypotonia', 'count' => 2), '0233121817222264' => array('hpo_id' => 1313, 'hpo_name' => 'Dystonia', 'count' => 2), '0231223436255777' => array('hpo_id' => 11220, 'hpo_name' => 'Focal myoclonic seizures', 'count' => 2), '0225282435105444' => array('hpo_id' => 2373, 'hpo_name' => 'Limb hypertonia', 'count' => 2), '0224162517286611' => array('hpo_id' => 10851, 'hpo_name' => 'Multifocal epileptiform discharges', 'count' => 2), '0224122234253821' => array('hpo_id' => 1316, 'hpo_name' => 'Myoclonus', 'count' => 2), '0223322223363967' => array('hpo_id' => 1301, 'hpo_name' => 'Neonatal hypotonia', 'count' => 2), '0221192230194642' => array('hpo_id' => 2104, 'hpo_name' => 'Progressive spasticity', 'count' => 2), '0136353322249959' => array('hpo_id' => 3090, 'hpo_name' => 'Abdominal distention', 'count' => 1), '0136351832234122' => array('hpo_id' => 2036, 'hpo_name' => 'Absence seizures', 'count' => 1), '0135363528237021' => array('hpo_id' => 3277, 'hpo_name' => 'Babinski sign', 'count' => 1), '0134321932356935' => array('hpo_id' => 14353, 'hpo_name' => 'Cerebral palsy', 'count' => 1), '0131363428363319' => array('hpo_id' => 315, 'hpo_name' => 'Facial hypotonia', 'count' => 1), '0131223436258825' => array('hpo_id' => 2289, 'hpo_name' => 'Focal seizures with impairment of consciousness or awareness', 'count' => 1), '0130322332192380' => array('hpo_id' => 10829, 'hpo_name' => 'Generalized tonic seizures', 'count' => 1), '0130322332192149' => array('hpo_id' => 2110, 'hpo_name' => 'Generalized seizures', 'count' => 1), '0129282110347639' => array('hpo_id' => 3093, 'hpo_name' => 'Hip contracture', 'count' => 1), '0129122132194014' => array('hpo_id' => 5877, 'hpo_name' => 'Hyperactive deep tendon reflexes', 'count' => 1), '0126233232108761' => array('hpo_id' => 5500, 'hpo_name' => 'Knee flexion contracture', 'count' => 1), '0125221818106680' => array('hpo_id' => 5874, 'hpo_name' => 'Loss of ability to walk in first decade', 'count' => 1), '0125221432194321' => array('hpo_id' => 5926, 'hpo_name' => 'Lower limb hypertonia', 'count' => 1), '0121222219102391' => array('hpo_id' => 2276, 'hpo_name' => 'Poor coordination', 'count' => 1), '0121192230193660' => array('hpo_id' => 6122, 'hpo_name' => 'Progressive truncal ataxia', 'count' => 1), '0118173219323821' => array('hpo_id' => 12297, 'hpo_name' => 'Stereotypical hand wringing', 'count' => 1), '0117191623341197' => array('hpo_id' => 1996, 'hpo_name' => 'Truncal ataxia', 'count' => 1), '0116231817329348' => array('hpo_id' => 2228, 'hpo_name' => 'Unsteady gait', 'count' => 1))), array('question' => object(Question), 'yes_count' => 15, 'total_count' => 19, 'hpo_array' => array('0736161728181611' => array('hpo_id' => 740, 'hpo_name' => 'Autistic behavior', 'count' => 7), '0618173219327575' => array('hpo_id' => 742, 'hpo_name' => 'Stereotypic behavior', 'count' => 6), '0528242136283302' => array('hpo_id' => 12956, 'hpo_name' => 'Impaired social reciprocity', 'count' => 5), '0521222219101922' => array('hpo_id' => 822, 'hpo_name' => 'Poor eye contact', 'count' => 5), '0428242136285181' => array('hpo_id' => 744, 'hpo_name' => 'Impaired social interactions', 'count' => 4), '0229122132197801' => array('hpo_id' => 764, 'hpo_name' => 'Hyperactivity', 'count' => 2), '0219323416191022' => array('hpo_id' => 14356, 'hpo_name' => 'Recurrent hand flapping', 'count' => 2), '0218173219326971' => array('hpo_id' => 12297, 'hpo_name' => 'Stereotypical hand wringing', 'count' => 2), '0136352322194718' => array('hpo_id' => 15709, 'hpo_name' => 'Abnormal emotion/affect behavior', 'count' => 1), '0136303019323519' => array('hpo_id' => 729, 'hpo_name' => 'Aggressive behavior', 'count' => 1), '0133192222257916' => array('hpo_id' => 2217, 'hpo_name' => 'Drooling', 'count' => 1), '0123221018223408' => array('hpo_id' => 7275, 'hpo_name' => 'No social interaction', 'count' => 1))), array('question' => object(Question), 'yes_count' => 20, 'total_count' => 25, 'hpo_array' => array('0536352322193347' => array('hpo_id' => 2382, 'hpo_name' => 'Abnormality of the periventricular white matter', 'count' => 5), '0334321932359794' => array('hpo_id' => 1976, 'hpo_name' => 'Cerebral atrophy', 'count' => 3), '0334321932352309' => array('hpo_id' => 2035, 'hpo_name' => 'Cerebral cortical atrophy', 'count' => 3), '0332323010363757' => array('hpo_id' => 2259, 'hpo_name' => 'EEG abnormality', 'count' => 3), '0331223436254826' => array('hpo_id' => 6023, 'hpo_name' => 'Focal white matter lesions', 'count' => 3), '0321361917281835' => array('hpo_id' => 1318, 'hpo_name' => 'Partial agenesis of the corpus callosum', 'count' => 3), '0234321932352177' => array('hpo_id' => 5901, 'hpo_name' => 'Cerebellar vermis atrophy', 'count' => 2), '0233322536125543' => array('hpo_id' => 12609, 'hpo_name' => 'Delayed myelination', 'count' => 2), '0233282536179127' => array('hpo_id' => 5961, 'hpo_name' => 'Dilation of lateral ventricles', 'count' => 2), '0233282536178952' => array('hpo_id' => 6045, 'hpo_name' => 'Dilated third ventricle', 'count' => 2), '0233282536174266' => array('hpo_id' => 2111, 'hpo_name' => 'Dilated fourth ventricle', 'count' => 2), '0232323010145173' => array('hpo_id' => 11240, 'hpo_name' => 'EEG with focal epileptiform discharges', 'count' => 2), '0232323010144031' => array('hpo_id' => 11253, 'hpo_name' => 'EEG with generalized epileptiform discharges', 'count' => 2), '0232323010143626' => array('hpo_id' => 11254, 'hpo_name' => 'EEG with generalized sharp slow waves', 'count' => 2), '0136352322198669' => array('hpo_id' => 14856, 'hpo_name' => 'Abnormality of the dentate nucleus', 'count' => 1), '0136212536183622' => array('hpo_id' => 5884, 'hpo_name' => 'Aplasia/Hypoplasia of the cerebellar vermis', 'count' => 1), '0134321932358132' => array('hpo_id' => 5881, 'hpo_name' => 'Cerebral hypomyelination', 'count' => 1), '0134231810295860' => array('hpo_id' => 3229, 'hpo_name' => 'CNS hypomyelination', 'count' => 1), '0133121821252530' => array('hpo_id' => 5984, 'hpo_name' => 'Dysplastic corpus callosum', 'count' => 1), '0132232536198373' => array('hpo_id' => 11495, 'hpo_name' => 'Enlarged fetal cisterna magna', 'count' => 1), '0132232536194658' => array('hpo_id' => 2194, 'hpo_name' => 'Enlarged cisterna magna', 'count' => 1), '0130322332197148' => array('hpo_id' => 6030, 'hpo_name' => 'Generalized cerebral atrophy/hypoplasia', 'count' => 1), '0129122122286929' => array('hpo_id' => 6058, 'hpo_name' => 'Hypointensity of cerebral white matter on MRI', 'count' => 1), '0129122122217346' => array('hpo_id' => 1997, 'hpo_name' => 'Hypoplasia of the corpus callosum', 'count' => 1), '0125321626227331' => array('hpo_id' => 2310, 'hpo_name' => 'Leukodystrophy', 'count' => 1), '0124221921295632' => array('hpo_id' => 1929, 'hpo_name' => 'Morphological abnormality of the central nervous system', 'count' => 1), '0121321928156322' => array('hpo_id' => 12687, 'hpo_name' => 'Perivascular spaces', 'count' => 1), '0121321928153238' => array('hpo_id' => 5974, 'hpo_name' => 'Periventricular leukomalacia', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 12, 'total_count' => 16, 'hpo_array' => array('0924363419229048' => array('hpo_id' => 396, 'hpo_name' => 'Macrotia', 'count' => 9), '0236352322193111' => array('hpo_id' => 366, 'hpo_name' => 'Abnormality of earlobe', 'count' => 2), '0225361930325608' => array('hpo_id' => 9027, 'hpo_name' => 'Large earlobe', 'count' => 2), '0225221410185702' => array('hpo_id' => 372, 'hpo_name' => 'Low-set ears', 'count' => 2))), array('question' => object(Question), 'yes_count' => 11, 'total_count' => 14, 'hpo_array' => array('0533221423186247' => array('hpo_id' => 486, 'hpo_name' => 'Downslanted palpebral fissures', 'count' => 5), '0233323221258670' => array('hpo_id' => 481, 'hpo_name' => 'Deeply set eye', 'count' => 2), '0232212834368697' => array('hpo_id' => 303, 'hpo_name' => 'Epicanthus', 'count' => 2), '0229122132197648' => array('hpo_id' => 330, 'hpo_name' => 'Hypertelorism', 'count' => 2), '0136352322194632' => array('hpo_id' => 529, 'hpo_name' => 'Abnormality of the eyebrow', 'count' => 1), '0118292219179744' => array('hpo_id' => 12940, 'hpo_name' => 'Short palpebral fissure', 'count' => 1), '0118213619188709' => array('hpo_id' => 532, 'hpo_name' => 'Sparse eyebrow', 'count' => 1))), array('question' => object(Question), 'yes_count' => 19, 'total_count' => 23, 'hpo_array' => array('0823361919226029' => array('hpo_id' => 445, 'hpo_name' => 'Narrow nose', 'count' => 8), '0414283332109279' => array('hpo_id' => 13015, 'hpo_name' => 'Wide nasal base', 'count' => 4), '0314283332103113' => array('hpo_id' => 432, 'hpo_name' => 'Wide nose', 'count' => 3), '0236231732156561' => array('hpo_id' => 446, 'hpo_name' => 'Anteverted nares', 'count' => 2), '0233322119327016' => array('hpo_id' => 4746, 'hpo_name' => 'Depressed nasal bridge', 'count' => 2), '0225222330107568' => array('hpo_id' => 3015, 'hpo_name' => 'Long nose', 'count' => 2), '0221192224288306' => array('hpo_id' => 420, 'hpo_name' => 'Prominent nasal bridge', 'count' => 2), '0214283332109876' => array('hpo_id' => 425, 'hpo_name' => 'Wide nasal bridge', 'count' => 2), '0123361919225738' => array('hpo_id' => 11928, 'hpo_name' => 'Narrow nasal tip', 'count' => 1), '0118292219177834' => array('hpo_id' => 3020, 'hpo_name' => 'Short nose', 'count' => 1), '0116233332198100' => array('hpo_id' => 422, 'hpo_name' => 'Underdeveloped nasal alae', 'count' => 1))), array('question' => object(Question), 'yes_count' => 9, 'total_count' => 13, 'hpo_array' => array('0323361919226310' => array('hpo_id' => 182, 'hpo_name' => 'Narrow mouth', 'count' => 3), '0233192222252686' => array('hpo_id' => 2217, 'hpo_name' => 'Drooling', 'count' => 2), '0232153219173720' => array('hpo_id' => 252, 'hpo_name' => 'Everted lower lip vermilion', 'count' => 2), '0224362536195834' => array('hpo_id' => 291, 'hpo_name' => 'Malar flattening', 'count' => 2), '0224283419224182' => array('hpo_id' => 703, 'hpo_name' => 'Microdontia', 'count' => 2), '0222213223105923' => array('hpo_id' => 213, 'hpo_name' => 'Open mouth', 'count' => 2), '0214283332256556' => array('hpo_id' => 699, 'hpo_name' => 'Widely spaced teeth', 'count' => 2), '0129283029104893' => array('hpo_id' => 235, 'hpo_name' => 'High palate', 'count' => 1), '0118292219179243' => array('hpo_id' => 336, 'hpo_name' => 'Short philtrum', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 3, 'total_count' => 4, 'hpo_array' => array('0136352322199706' => array('hpo_id' => 12523, 'hpo_name' => 'Abnormal eye physiology', 'count' => 1), '0136181728304582' => array('hpo_id' => 473, 'hpo_name' => 'Astigmatism', 'count' => 1), '0132132217191331' => array('hpo_id' => 578, 'hpo_name' => 'Exotropia', 'count' => 1), '0118171936359873' => array('hpo_id' => 477, 'hpo_name' => 'Strabismus', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 7, 'total_count' => 14, 'hpo_array' => array('0334222330324970' => array('hpo_id' => 1550, 'hpo_name' => 'Congestive heart failure', 'count' => 3), '0135283416189166' => array('hpo_id' => 1562, 'hpo_name' => 'Bicuspid aortic valve', 'count' => 1), '0135193633124063' => array('hpo_id' => 1574, 'hpo_name' => 'Bradycardia', 'count' => 1), '0124122234362189' => array('hpo_id' => 13025, 'hpo_name' => 'Myocarditis', 'count' => 1), '0121361732236485' => array('hpo_id' => 1569, 'hpo_name' => 'Patent foramen ovale', 'count' => 1), '0121361732234262' => array('hpo_id' => 1558, 'hpo_name' => 'Patent ductus arteriosus', 'count' => 1), '0119283029175801' => array('hpo_id' => 1620, 'hpo_name' => 'Right ventricular failure', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 30, 'total_count' => 31, 'hpo_array' => array(array('hpo_id' => 1937, 'hpo_name' => 'Constipation', 'count' => 17), '0830361817198392' => array('hpo_id' => 1938, 'hpo_name' => 'Gastroesophageal reflux', 'count' => 8), '0731323233283698' => array('hpo_id' => 12077, 'hpo_name' => 'Feeding difficulties', 'count' => 7), '0431323233286203' => array('hpo_id' => 7358, 'hpo_name' => 'Feeding difficulties in infancy', 'count' => 4), '0334291922238385' => array('hpo_id' => 12611, 'hpo_name' => 'Chronic constipation', 'count' => 3), '0333121821291786' => array('hpo_id' => 1933, 'hpo_name' => 'Dysphagia', 'count' => 3), '0236352322198390' => array('hpo_id' => 2172, 'hpo_name' => 'Abnormality of the large intestine', 'count' => 2), '0230361817198958' => array('hpo_id' => 11544, 'hpo_name' => 'Gastrostomy tube feeding in infancy', 'count' => 2), '0136353322249806' => array('hpo_id' => 3090, 'hpo_name' => 'Abdominal distention', 'count' => 1), '0136352322194099' => array('hpo_id' => 2165, 'hpo_name' => 'Abnormality of the small intestine', 'count' => 1), '0136352322193755' => array('hpo_id' => 14348, 'hpo_name' => 'Abnormality of the mesentery', 'count' => 1), '0136352322193066' => array('hpo_id' => 11058, 'hpo_name' => 'Abnormality of the gastrointestinal tract', 'count' => 1), '0135221432255420' => array('hpo_id' => 2468, 'hpo_name' => 'Bowel incontinence', 'count' => 1), '0134291922237306' => array('hpo_id' => 1946, 'hpo_name' => 'Chronic diarrhea', 'count' => 1), '0128231732189770' => array('hpo_id' => 2423, 'hpo_name' => 'Intestinal malrotation', 'count' => 1), '0128231732188833' => array('hpo_id' => 4674, 'hpo_name' => 'Intestinal obstruction', 'count' => 1), '0128231732182589' => array('hpo_id' => 4123, 'hpo_name' => 'Intestinal pseudo-obstruction', 'count' => 1), '0123322223365892' => array('hpo_id' => 4701, 'hpo_name' => 'Neonatal intestinal obstruction', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 8, 'total_count' => 15, 'hpo_array' => array('0433282536176492' => array('hpo_id' => 10982, 'hpo_name' => 'Dilatation of the bladder', 'count' => 4), '0233282536179755' => array('hpo_id' => 10970, 'hpo_name' => 'Dilatation of the renal pelvis', 'count' => 2), '0216192823366207' => array('hpo_id' => 21, 'hpo_name' => 'Urinary incontinence', 'count' => 2), '0136352322199286' => array('hpo_id' => 16, 'hpo_name' => 'Abnormality of the bladder', 'count' => 1), '0136352322199077' => array('hpo_id' => 97, 'hpo_name' => 'Abnormality of the genital system', 'count' => 1), '0136352322193181' => array('hpo_id' => 87, 'hpo_name' => 'Abnormality of the ureter', 'count' => 1), '0131321736253747' => array('hpo_id' => 10983, 'hpo_name' => 'Fetal megacystis', 'count' => 1), '0116232825361347' => array('hpo_id' => 12934, 'hpo_name' => 'Unilateral cryptorchidism', 'count' => 1), '0116192823364250' => array('hpo_id' => 18, 'hpo_name' => 'Urinary retention', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 11, 'total_count' => 14, 'hpo_array' => array('0236352322191252' => array('hpo_id' => 11356, 'hpo_name' => 'Abnormality of digit', 'count' => 2), '0234252823222350' => array('hpo_id' => 13208, 'hpo_name' => 'Clinodactyly', 'count' => 2), '0231193634172404' => array('hpo_id' => 2910, 'hpo_name' => 'Fractures of the long bones', 'count' => 2), '0218253223336681' => array('hpo_id' => 11368, 'hpo_name' => 'Slender toe', 'count' => 2), '0218253223332451' => array('hpo_id' => 1228, 'hpo_name' => 'Slender finger', 'count' => 2), '0136193634293843' => array('hpo_id' => 1173, 'hpo_name' => 'Arachnodactyly', 'count' => 1), '0135192236333941' => array('hpo_id' => 1675, 'hpo_name' => 'Broad foot', 'count' => 1), '0129282110186838' => array('hpo_id' => 13164, 'hpo_name' => 'Hip Subluxation', 'count' => 1), '0127222823178842' => array('hpo_id' => 1352, 'hpo_name' => 'Joint hypermobility', 'count' => 1), '0127222823173920' => array('hpo_id' => 1360, 'hpo_name' => 'Joint laxity', 'count' => 1), '0125222330109267' => array('hpo_id' => 15651, 'hpo_name' => 'Long fingers', 'count' => 1), '0125222330108310' => array('hpo_id' => 1742, 'hpo_name' => 'Long foot', 'count' => 1), '0121253630288588' => array('hpo_id' => 1333, 'hpo_name' => 'Plagiocephaly', 'count' => 1), '0118342225289402' => array('hpo_id' => 2512, 'hpo_name' => 'Scoliosis', 'count' => 1), '0118292219172798' => array('hpo_id' => 1681, 'hpo_name' => 'Short foot', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 2, 'total_count' => 5, 'hpo_array' => array('0217292823102915' => array('hpo_id' => 967, 'hpo_name' => 'Thin skin', 'count' => 2), '0121362525221422' => array('hpo_id' => 986, 'hpo_name' => 'Pallor', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 3, 'total_count' => 6, 'hpo_array' => array('0229122122174113' => array('hpo_id' => 827, 'hpo_name' => 'Hypothyroidism', 'count' => 2), '0121281716287288' => array('hpo_id' => 6922, 'hpo_name' => 'Pituitary hypothyroidism', 'count' => 1))), array('question' => object(Question), 'yes_count' => 2, 'total_count' => 10, 'hpo_array' => array('0131321532198746' => array('hpo_id' => 1857, 'hpo_name' => 'Fever', 'count' => 1), '0128233419325858' => array('hpo_id' => 2060, 'hpo_name' => 'Increased serum lactate', 'count' => 1))), array('question' => object(Question), 'yes_count' => 24, 'total_count' => 27, 'hpo_array' => array(array('hpo_id' => 2121, 'hpo_name' => 'Recurrent respiratory infections', 'count' => 13), '0521233216242818' => array('hpo_id' => 2009, 'hpo_name' => 'Pneumonia', 'count' => 5), '0519323416198543' => array('hpo_id' => 5656, 'hpo_name' => 'Recurrent pneumonia', 'count' => 5), '0519321821289209' => array('hpo_id' => 12053, 'hpo_name' => 'Respiratory tract infection', 'count' => 5), '0236252532199858' => array('hpo_id' => 3017, 'hpo_name' => 'Allergic rhinitis', 'count' => 2), '0234231810289313' => array('hpo_id' => 11522, 'hpo_name' => 'CNS infection', 'count' => 2), '0124322328233746' => array('hpo_id' => 1275, 'hpo_name' => 'Meningitis', 'count' => 1), '0119323416196170' => array('hpo_id' => 5661, 'hpo_name' => 'Recurrent bronchopulmonary infections', 'count' => 1), '0119323416196126' => array('hpo_id' => 2576, 'hpo_name' => 'Recurrent infections', 'count' => 1), '0119323416193741' => array('hpo_id' => 2020, 'hpo_name' => 'Recurrent aspiration pneumonia', 'count' => 1), '0118322118285275' => array('hpo_id' => 15650, 'hpo_name' => 'Sepsis', 'count' => 1)))))), 'lang' => 'front/site/index.'))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/View/View.php:139)
  at Illuminate\View\View->getContents()
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/View/View.php:122)
  at Illuminate\View\View->renderContents()
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/View/View.php:91)
  at Illuminate\View\View->render()
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Http/Response.php:69)
  at Illuminate\Http\Response->setContent(object(View))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Http/Response.php:35)
  at Illuminate\Http\Response->__construct(object(View), 200, array('Content-Type' => 'text/html'))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Routing/Router.php:820)
  at Illuminate\Routing\Router::toResponse(object(Request), object(View))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Routing/Router.php:789)
  at Illuminate\Routing\Router->prepareResponse(object(Request), object(View))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Routing/Router.php:721)
  at Illuminate\Routing\Router->Illuminate\Routing\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/statikbe/laravel-cookie-consent/src/CookieConsentMiddleware.php:13)
  at Statikbe\CookieConsent\CookieConsentMiddleware->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:50)
  at Illuminate\Routing\Middleware\SubstituteBindings->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:78)
  at Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49)
  at Illuminate\View\Middleware\ShareErrorsFromSession->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:121)
  at Illuminate\Session\Middleware\StartSession->handleStatefulRequest(object(Request), object(Store), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:64)
  at Illuminate\Session\Middleware\StartSession->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37)
  at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67)
  at Illuminate\Cookie\Middleware\EncryptCookies->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Routing/Router.php:723)
  at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Routing/Router.php:698)
  at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Routing/Router.php:662)
  at Illuminate\Routing\Router->dispatchToRoute(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Routing/Router.php:651)
  at Illuminate\Routing\Router->dispatch(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:167)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php:59)
  at Barryvdh\Debugbar\Middleware\InjectDebugbar->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31)
  at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
  at Illuminate\Foundation\Http\Middleware\TrimStrings->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:86)
  at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/fruitcake/laravel-cors/src/HandleCors.php:38)
  at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/fideloper/proxy/src/TrustProxies.php:57)
  at Fideloper\Proxy\TrustProxies->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:142)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:111)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/public/index.php:50)
  at require_once('/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/public/index.php')
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/index.php:19)                
[1/2] ErrorException
ErrorException:
Undefined index: yes_count

  at /var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/storage/framework/views/0562706b6e74f059c1849b020fb1edc9d46a7de4.php:70
  at Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(8, 'Undefined index: yes_count', '/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/storage/framework/views/0562706b6e74f059c1849b020fb1edc9d46a7de4.php', 70, array('__path' => '/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/storage/framework/views/0562706b6e74f059c1849b020fb1edc9d46a7de4.php', '__data' => array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), 'setting' => object(Setting), 'site' => object(Site), 'site_moderators' => object(Collection), 'total_patient' => 37, 'region_data' => array(array('country_count' => 3, 'country_name' => 'Belgium'), array('country_count' => 6, 'country_name' => 'China'), array('country_count' => 11, 'country_name' => 'Netherlands'), array('country_count' => 17, 'country_name' => 'United Kingdom')), 'regionMaxValue' => 17, 'chartData' => array(array(array('category_name' => 'General', 'get_chart_questions' => array(array('question_id' => 3510, 'label' => 'Severity of intellectual disability', 'chart_kind' => 3, 'answer_kind' => 4, 'answer' => array(array('answer' => 'Moderate', 'answer_count' => 3, 'answer_percentage' => 14.0), array('answer' => 'Severe', 'answer_count' => 10, 'answer_percentage' => 45.0), array('answer' => 'Unknown', 'answer_count' => 9, 'answer_percentage' => 41.0))))))), 'majorChartData' => array(array('question' => object(Question), 'yes_count' => 32, 'no_count' => 0, 'unknown_count' => 2, 'total_count' => 34), array('question' => object(Question), 'yes_count' => 27, 'no_count' => 0, 'unknown_count' => 6, 'total_count' => 33), array('question' => object(Question), 'yes_count' => 34, 'no_count' => 2, 'unknown_count' => 0, 'total_count' => 36), array('question' => object(Question), 'yes_count' => 34, 'no_count' => 2, 'unknown_count' => 1, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 15, 'no_count' => 4, 'unknown_count' => 18, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 20, 'no_count' => 5, 'unknown_count' => 12, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 12, 'no_count' => 4, 'unknown_count' => 21, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 11, 'no_count' => 3, 'unknown_count' => 23, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 19, 'no_count' => 4, 'unknown_count' => 14, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 9, 'no_count' => 4, 'unknown_count' => 24, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 3, 'unknown_count' => 34, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 3, 'no_count' => 1, 'unknown_count' => 33, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 7, 'no_count' => 7, 'unknown_count' => 23, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 30, 'no_count' => 1, 'unknown_count' => 6, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 8, 'no_count' => 7, 'unknown_count' => 22, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 11, 'no_count' => 3, 'unknown_count' => 23, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 3, 'unknown_count' => 32, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 3, 'no_count' => 3, 'unknown_count' => 31, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 8, 'unknown_count' => 27, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 24, 'no_count' => 3, 'unknown_count' => 10, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 8, 'unknown_count' => 29, 'total_count' => 37)), 'male_count' => 36, 'female_count' => 1, 'frequency_data' => array(array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'total_count' => 20, 'hpo_count' => 1, 'hpo_array' => array('HP:0003561' => array('hpo_id' => 3332, 'hpo_name' => '< P3 : Birth length less than 3rd percentile', 'count' => 1))), array('question' => object(Question), 'total_count' => 24, 'hpo_count' => 3, 'hpo_array' => array('HP:0001518' => array('hpo_id' => 1467, 'hpo_name' => '< P3 : Small for gestational age', 'count' => 3))), array('question' => object(Question), 'total_count' => 22, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 20, 'hpo_count' => 10, 'hpo_array' => array('HP:0004322' => array('hpo_id' => 4041, 'hpo_name' => '< P3 : Short stature', 'count' => 9), 'HP:0000098' => array('hpo_id' => 114, 'hpo_name' => '> P98 : Tall stature', 'count' => 1))), array('question' => object(Question), 'total_count' => 19, 'hpo_count' => 7, 'hpo_array' => array('HP:0004325' => array('hpo_id' => 4045, 'hpo_name' => '< P3 : Decreased body weight', 'count' => 7))), array('question' => object(Question), 'total_count' => 26, 'hpo_count' => 8, 'hpo_array' => array('HP:0000252' => array('hpo_id' => 274, 'hpo_name' => '< P3 : Microcephaly', 'count' => 6), 'HP:0000256' => array('hpo_id' => 279, 'hpo_name' => '> P98 : Macrocephaly', 'count' => 2))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 34, 'total_count' => 36, 'hpo_array' => array(array('hpo_id' => 1280, 'hpo_name' => 'Generalized hypotonia', 'count' => 23), '0818322811161220' => array('hpo_id' => 1237, 'hpo_name' => 'Seizures', 'count' => 8), '0730322332192540' => array('hpo_id' => 1987, 'hpo_name' => 'Generalized tonic-clonic seizures', 'count' => 7), '0536173613284965' => array('hpo_id' => 1238, 'hpo_name' => 'Ataxia', 'count' => 5), '0530362817102424' => array('hpo_id' => 1983, 'hpo_name' => 'Gait ataxia', 'count' => 5), '0530322332193980' => array('hpo_id' => 2038, 'hpo_name' => 'Generalized myoclonic seizures', 'count' => 5), '0436172223286278' => array('hpo_id' => 10830, 'hpo_name' => 'Atonic seizures', 'count' => 4), '0328233136236977' => array('hpo_id' => 7473, 'hpo_name' => 'Infantile axial hypotonia', 'count' => 3), '0325221432197530' => array('hpo_id' => 1979, 'hpo_name' => 'Lower limb spasticity', 'count' => 3), '0318213618172683' => array('hpo_id' => 1244, 'hpo_name' => 'Spasticity', 'count' => 3), '0236352322196865' => array('hpo_id' => 6134, 'hpo_name' => 'Abnormal pyramidal signs', 'count' => 2), '0234322317197647' => array('hpo_id' => 11462, 'hpo_name' => 'Central hypotonia', 'count' => 2), '0233121817222264' => array('hpo_id' => 1313, 'hpo_name' => 'Dystonia', 'count' => 2), '0231223436255777' => array('hpo_id' => 11220, 'hpo_name' => 'Focal myoclonic seizures', 'count' => 2), '0225282435105444' => array('hpo_id' => 2373, 'hpo_name' => 'Limb hypertonia', 'count' => 2), '0224162517286611' => array('hpo_id' => 10851, 'hpo_name' => 'Multifocal epileptiform discharges', 'count' => 2), '0224122234253821' => array('hpo_id' => 1316, 'hpo_name' => 'Myoclonus', 'count' => 2), '0223322223363967' => array('hpo_id' => 1301, 'hpo_name' => 'Neonatal hypotonia', 'count' => 2), '0221192230194642' => array('hpo_id' => 2104, 'hpo_name' => 'Progressive spasticity', 'count' => 2), '0136353322249959' => array('hpo_id' => 3090, 'hpo_name' => 'Abdominal distention', 'count' => 1), '0136351832234122' => array('hpo_id' => 2036, 'hpo_name' => 'Absence seizures', 'count' => 1), '0135363528237021' => array('hpo_id' => 3277, 'hpo_name' => 'Babinski sign', 'count' => 1), '0134321932356935' => array('hpo_id' => 14353, 'hpo_name' => 'Cerebral palsy', 'count' => 1), '0131363428363319' => array('hpo_id' => 315, 'hpo_name' => 'Facial hypotonia', 'count' => 1), '0131223436258825' => array('hpo_id' => 2289, 'hpo_name' => 'Focal seizures with impairment of consciousness or awareness', 'count' => 1), '0130322332192380' => array('hpo_id' => 10829, 'hpo_name' => 'Generalized tonic seizures', 'count' => 1), '0130322332192149' => array('hpo_id' => 2110, 'hpo_name' => 'Generalized seizures', 'count' => 1), '0129282110347639' => array('hpo_id' => 3093, 'hpo_name' => 'Hip contracture', 'count' => 1), '0129122132194014' => array('hpo_id' => 5877, 'hpo_name' => 'Hyperactive deep tendon reflexes', 'count' => 1), '0126233232108761' => array('hpo_id' => 5500, 'hpo_name' => 'Knee flexion contracture', 'count' => 1), '0125221818106680' => array('hpo_id' => 5874, 'hpo_name' => 'Loss of ability to walk in first decade', 'count' => 1), '0125221432194321' => array('hpo_id' => 5926, 'hpo_name' => 'Lower limb hypertonia', 'count' => 1), '0121222219102391' => array('hpo_id' => 2276, 'hpo_name' => 'Poor coordination', 'count' => 1), '0121192230193660' => array('hpo_id' => 6122, 'hpo_name' => 'Progressive truncal ataxia', 'count' => 1), '0118173219323821' => array('hpo_id' => 12297, 'hpo_name' => 'Stereotypical hand wringing', 'count' => 1), '0117191623341197' => array('hpo_id' => 1996, 'hpo_name' => 'Truncal ataxia', 'count' => 1), '0116231817329348' => array('hpo_id' => 2228, 'hpo_name' => 'Unsteady gait', 'count' => 1))), array('question' => object(Question), 'yes_count' => 15, 'total_count' => 19, 'hpo_array' => array('0736161728181611' => array('hpo_id' => 740, 'hpo_name' => 'Autistic behavior', 'count' => 7), '0618173219327575' => array('hpo_id' => 742, 'hpo_name' => 'Stereotypic behavior', 'count' => 6), '0528242136283302' => array('hpo_id' => 12956, 'hpo_name' => 'Impaired social reciprocity', 'count' => 5), '0521222219101922' => array('hpo_id' => 822, 'hpo_name' => 'Poor eye contact', 'count' => 5), '0428242136285181' => array('hpo_id' => 744, 'hpo_name' => 'Impaired social interactions', 'count' => 4), '0229122132197801' => array('hpo_id' => 764, 'hpo_name' => 'Hyperactivity', 'count' => 2), '0219323416191022' => array('hpo_id' => 14356, 'hpo_name' => 'Recurrent hand flapping', 'count' => 2), '0218173219326971' => array('hpo_id' => 12297, 'hpo_name' => 'Stereotypical hand wringing', 'count' => 2), '0136352322194718' => array('hpo_id' => 15709, 'hpo_name' => 'Abnormal emotion/affect behavior', 'count' => 1), '0136303019323519' => array('hpo_id' => 729, 'hpo_name' => 'Aggressive behavior', 'count' => 1), '0133192222257916' => array('hpo_id' => 2217, 'hpo_name' => 'Drooling', 'count' => 1), '0123221018223408' => array('hpo_id' => 7275, 'hpo_name' => 'No social interaction', 'count' => 1))), array('question' => object(Question), 'yes_count' => 20, 'total_count' => 25, 'hpo_array' => array('0536352322193347' => array('hpo_id' => 2382, 'hpo_name' => 'Abnormality of the periventricular white matter', 'count' => 5), '0334321932359794' => array('hpo_id' => 1976, 'hpo_name' => 'Cerebral atrophy', 'count' => 3), '0334321932352309' => array('hpo_id' => 2035, 'hpo_name' => 'Cerebral cortical atrophy', 'count' => 3), '0332323010363757' => array('hpo_id' => 2259, 'hpo_name' => 'EEG abnormality', 'count' => 3), '0331223436254826' => array('hpo_id' => 6023, 'hpo_name' => 'Focal white matter lesions', 'count' => 3), '0321361917281835' => array('hpo_id' => 1318, 'hpo_name' => 'Partial agenesis of the corpus callosum', 'count' => 3), '0234321932352177' => array('hpo_id' => 5901, 'hpo_name' => 'Cerebellar vermis atrophy', 'count' => 2), '0233322536125543' => array('hpo_id' => 12609, 'hpo_name' => 'Delayed myelination', 'count' => 2), '0233282536179127' => array('hpo_id' => 5961, 'hpo_name' => 'Dilation of lateral ventricles', 'count' => 2), '0233282536178952' => array('hpo_id' => 6045, 'hpo_name' => 'Dilated third ventricle', 'count' => 2), '0233282536174266' => array('hpo_id' => 2111, 'hpo_name' => 'Dilated fourth ventricle', 'count' => 2), '0232323010145173' => array('hpo_id' => 11240, 'hpo_name' => 'EEG with focal epileptiform discharges', 'count' => 2), '0232323010144031' => array('hpo_id' => 11253, 'hpo_name' => 'EEG with generalized epileptiform discharges', 'count' => 2), '0232323010143626' => array('hpo_id' => 11254, 'hpo_name' => 'EEG with generalized sharp slow waves', 'count' => 2), '0136352322198669' => array('hpo_id' => 14856, 'hpo_name' => 'Abnormality of the dentate nucleus', 'count' => 1), '0136212536183622' => array('hpo_id' => 5884, 'hpo_name' => 'Aplasia/Hypoplasia of the cerebellar vermis', 'count' => 1), '0134321932358132' => array('hpo_id' => 5881, 'hpo_name' => 'Cerebral hypomyelination', 'count' => 1), '0134231810295860' => array('hpo_id' => 3229, 'hpo_name' => 'CNS hypomyelination', 'count' => 1), '0133121821252530' => array('hpo_id' => 5984, 'hpo_name' => 'Dysplastic corpus callosum', 'count' => 1), '0132232536198373' => array('hpo_id' => 11495, 'hpo_name' => 'Enlarged fetal cisterna magna', 'count' => 1), '0132232536194658' => array('hpo_id' => 2194, 'hpo_name' => 'Enlarged cisterna magna', 'count' => 1), '0130322332197148' => array('hpo_id' => 6030, 'hpo_name' => 'Generalized cerebral atrophy/hypoplasia', 'count' => 1), '0129122122286929' => array('hpo_id' => 6058, 'hpo_name' => 'Hypointensity of cerebral white matter on MRI', 'count' => 1), '0129122122217346' => array('hpo_id' => 1997, 'hpo_name' => 'Hypoplasia of the corpus callosum', 'count' => 1), '0125321626227331' => array('hpo_id' => 2310, 'hpo_name' => 'Leukodystrophy', 'count' => 1), '0124221921295632' => array('hpo_id' => 1929, 'hpo_name' => 'Morphological abnormality of the central nervous system', 'count' => 1), '0121321928156322' => array('hpo_id' => 12687, 'hpo_name' => 'Perivascular spaces', 'count' => 1), '0121321928153238' => array('hpo_id' => 5974, 'hpo_name' => 'Periventricular leukomalacia', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 12, 'total_count' => 16, 'hpo_array' => array('0924363419229048' => array('hpo_id' => 396, 'hpo_name' => 'Macrotia', 'count' => 9), '0236352322193111' => array('hpo_id' => 366, 'hpo_name' => 'Abnormality of earlobe', 'count' => 2), '0225361930325608' => array('hpo_id' => 9027, 'hpo_name' => 'Large earlobe', 'count' => 2), '0225221410185702' => array('hpo_id' => 372, 'hpo_name' => 'Low-set ears', 'count' => 2))), array('question' => object(Question), 'yes_count' => 11, 'total_count' => 14, 'hpo_array' => array('0533221423186247' => array('hpo_id' => 486, 'hpo_name' => 'Downslanted palpebral fissures', 'count' => 5), '0233323221258670' => array('hpo_id' => 481, 'hpo_name' => 'Deeply set eye', 'count' => 2), '0232212834368697' => array('hpo_id' => 303, 'hpo_name' => 'Epicanthus', 'count' => 2), '0229122132197648' => array('hpo_id' => 330, 'hpo_name' => 'Hypertelorism', 'count' => 2), '0136352322194632' => array('hpo_id' => 529, 'hpo_name' => 'Abnormality of the eyebrow', 'count' => 1), '0118292219179744' => array('hpo_id' => 12940, 'hpo_name' => 'Short palpebral fissure', 'count' => 1), '0118213619188709' => array('hpo_id' => 532, 'hpo_name' => 'Sparse eyebrow', 'count' => 1))), array('question' => object(Question), 'yes_count' => 19, 'total_count' => 23, 'hpo_array' => array('0823361919226029' => array('hpo_id' => 445, 'hpo_name' => 'Narrow nose', 'count' => 8), '0414283332109279' => array('hpo_id' => 13015, 'hpo_name' => 'Wide nasal base', 'count' => 4), '0314283332103113' => array('hpo_id' => 432, 'hpo_name' => 'Wide nose', 'count' => 3), '0236231732156561' => array('hpo_id' => 446, 'hpo_name' => 'Anteverted nares', 'count' => 2), '0233322119327016' => array('hpo_id' => 4746, 'hpo_name' => 'Depressed nasal bridge', 'count' => 2), '0225222330107568' => array('hpo_id' => 3015, 'hpo_name' => 'Long nose', 'count' => 2), '0221192224288306' => array('hpo_id' => 420, 'hpo_name' => 'Prominent nasal bridge', 'count' => 2), '0214283332109876' => array('hpo_id' => 425, 'hpo_name' => 'Wide nasal bridge', 'count' => 2), '0123361919225738' => array('hpo_id' => 11928, 'hpo_name' => 'Narrow nasal tip', 'count' => 1), '0118292219177834' => array('hpo_id' => 3020, 'hpo_name' => 'Short nose', 'count' => 1), '0116233332198100' => array('hpo_id' => 422, 'hpo_name' => 'Underdeveloped nasal alae', 'count' => 1))), array('question' => object(Question), 'yes_count' => 9, 'total_count' => 13, 'hpo_array' => array('0323361919226310' => array('hpo_id' => 182, 'hpo_name' => 'Narrow mouth', 'count' => 3), '0233192222252686' => array('hpo_id' => 2217, 'hpo_name' => 'Drooling', 'count' => 2), '0232153219173720' => array('hpo_id' => 252, 'hpo_name' => 'Everted lower lip vermilion', 'count' => 2), '0224362536195834' => array('hpo_id' => 291, 'hpo_name' => 'Malar flattening', 'count' => 2), '0224283419224182' => array('hpo_id' => 703, 'hpo_name' => 'Microdontia', 'count' => 2), '0222213223105923' => array('hpo_id' => 213, 'hpo_name' => 'Open mouth', 'count' => 2), '0214283332256556' => array('hpo_id' => 699, 'hpo_name' => 'Widely spaced teeth', 'count' => 2), '0129283029104893' => array('hpo_id' => 235, 'hpo_name' => 'High palate', 'count' => 1), '0118292219179243' => array('hpo_id' => 336, 'hpo_name' => 'Short philtrum', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 3, 'total_count' => 4, 'hpo_array' => array('0136352322199706' => array('hpo_id' => 12523, 'hpo_name' => 'Abnormal eye physiology', 'count' => 1), '0136181728304582' => array('hpo_id' => 473, 'hpo_name' => 'Astigmatism', 'count' => 1), '0132132217191331' => array('hpo_id' => 578, 'hpo_name' => 'Exotropia', 'count' => 1), '0118171936359873' => array('hpo_id' => 477, 'hpo_name' => 'Strabismus', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 7, 'total_count' => 14, 'hpo_array' => array('0334222330324970' => array('hpo_id' => 1550, 'hpo_name' => 'Congestive heart failure', 'count' => 3), '0135283416189166' => array('hpo_id' => 1562, 'hpo_name' => 'Bicuspid aortic valve', 'count' => 1), '0135193633124063' => array('hpo_id' => 1574, 'hpo_name' => 'Bradycardia', 'count' => 1), '0124122234362189' => array('hpo_id' => 13025, 'hpo_name' => 'Myocarditis', 'count' => 1), '0121361732236485' => array('hpo_id' => 1569, 'hpo_name' => 'Patent foramen ovale', 'count' => 1), '0121361732234262' => array('hpo_id' => 1558, 'hpo_name' => 'Patent ductus arteriosus', 'count' => 1), '0119283029175801' => array('hpo_id' => 1620, 'hpo_name' => 'Right ventricular failure', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 30, 'total_count' => 31, 'hpo_array' => array(array('hpo_id' => 1937, 'hpo_name' => 'Constipation', 'count' => 17), '0830361817198392' => array('hpo_id' => 1938, 'hpo_name' => 'Gastroesophageal reflux', 'count' => 8), '0731323233283698' => array('hpo_id' => 12077, 'hpo_name' => 'Feeding difficulties', 'count' => 7), '0431323233286203' => array('hpo_id' => 7358, 'hpo_name' => 'Feeding difficulties in infancy', 'count' => 4), '0334291922238385' => array('hpo_id' => 12611, 'hpo_name' => 'Chronic constipation', 'count' => 3), '0333121821291786' => array('hpo_id' => 1933, 'hpo_name' => 'Dysphagia', 'count' => 3), '0236352322198390' => array('hpo_id' => 2172, 'hpo_name' => 'Abnormality of the large intestine', 'count' => 2), '0230361817198958' => array('hpo_id' => 11544, 'hpo_name' => 'Gastrostomy tube feeding in infancy', 'count' => 2), '0136353322249806' => array('hpo_id' => 3090, 'hpo_name' => 'Abdominal distention', 'count' => 1), '0136352322194099' => array('hpo_id' => 2165, 'hpo_name' => 'Abnormality of the small intestine', 'count' => 1), '0136352322193755' => array('hpo_id' => 14348, 'hpo_name' => 'Abnormality of the mesentery', 'count' => 1), '0136352322193066' => array('hpo_id' => 11058, 'hpo_name' => 'Abnormality of the gastrointestinal tract', 'count' => 1), '0135221432255420' => array('hpo_id' => 2468, 'hpo_name' => 'Bowel incontinence', 'count' => 1), '0134291922237306' => array('hpo_id' => 1946, 'hpo_name' => 'Chronic diarrhea', 'count' => 1), '0128231732189770' => array('hpo_id' => 2423, 'hpo_name' => 'Intestinal malrotation', 'count' => 1), '0128231732188833' => array('hpo_id' => 4674, 'hpo_name' => 'Intestinal obstruction', 'count' => 1), '0128231732182589' => array('hpo_id' => 4123, 'hpo_name' => 'Intestinal pseudo-obstruction', 'count' => 1), '0123322223365892' => array('hpo_id' => 4701, 'hpo_name' => 'Neonatal intestinal obstruction', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 8, 'total_count' => 15, 'hpo_array' => array('0433282536176492' => array('hpo_id' => 10982, 'hpo_name' => 'Dilatation of the bladder', 'count' => 4), '0233282536179755' => array('hpo_id' => 10970, 'hpo_name' => 'Dilatation of the renal pelvis', 'count' => 2), '0216192823366207' => array('hpo_id' => 21, 'hpo_name' => 'Urinary incontinence', 'count' => 2), '0136352322199286' => array('hpo_id' => 16, 'hpo_name' => 'Abnormality of the bladder', 'count' => 1), '0136352322199077' => array('hpo_id' => 97, 'hpo_name' => 'Abnormality of the genital system', 'count' => 1), '0136352322193181' => array('hpo_id' => 87, 'hpo_name' => 'Abnormality of the ureter', 'count' => 1), '0131321736253747' => array('hpo_id' => 10983, 'hpo_name' => 'Fetal megacystis', 'count' => 1), '0116232825361347' => array('hpo_id' => 12934, 'hpo_name' => 'Unilateral cryptorchidism', 'count' => 1), '0116192823364250' => array('hpo_id' => 18, 'hpo_name' => 'Urinary retention', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 11, 'total_count' => 14, 'hpo_array' => array('0236352322191252' => array('hpo_id' => 11356, 'hpo_name' => 'Abnormality of digit', 'count' => 2), '0234252823222350' => array('hpo_id' => 13208, 'hpo_name' => 'Clinodactyly', 'count' => 2), '0231193634172404' => array('hpo_id' => 2910, 'hpo_name' => 'Fractures of the long bones', 'count' => 2), '0218253223336681' => array('hpo_id' => 11368, 'hpo_name' => 'Slender toe', 'count' => 2), '0218253223332451' => array('hpo_id' => 1228, 'hpo_name' => 'Slender finger', 'count' => 2), '0136193634293843' => array('hpo_id' => 1173, 'hpo_name' => 'Arachnodactyly', 'count' => 1), '0135192236333941' => array('hpo_id' => 1675, 'hpo_name' => 'Broad foot', 'count' => 1), '0129282110186838' => array('hpo_id' => 13164, 'hpo_name' => 'Hip Subluxation', 'count' => 1), '0127222823178842' => array('hpo_id' => 1352, 'hpo_name' => 'Joint hypermobility', 'count' => 1), '0127222823173920' => array('hpo_id' => 1360, 'hpo_name' => 'Joint laxity', 'count' => 1), '0125222330109267' => array('hpo_id' => 15651, 'hpo_name' => 'Long fingers', 'count' => 1), '0125222330108310' => array('hpo_id' => 1742, 'hpo_name' => 'Long foot', 'count' => 1), '0121253630288588' => array('hpo_id' => 1333, 'hpo_name' => 'Plagiocephaly', 'count' => 1), '0118342225289402' => array('hpo_id' => 2512, 'hpo_name' => 'Scoliosis', 'count' => 1), '0118292219172798' => array('hpo_id' => 1681, 'hpo_name' => 'Short foot', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 2, 'total_count' => 5, 'hpo_array' => array('0217292823102915' => array('hpo_id' => 967, 'hpo_name' => 'Thin skin', 'count' => 2), '0121362525221422' => array('hpo_id' => 986, 'hpo_name' => 'Pallor', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 3, 'total_count' => 6, 'hpo_array' => array('0229122122174113' => array('hpo_id' => 827, 'hpo_name' => 'Hypothyroidism', 'count' => 2), '0121281716287288' => array('hpo_id' => 6922, 'hpo_name' => 'Pituitary hypothyroidism', 'count' => 1))), array('question' => object(Question), 'yes_count' => 2, 'total_count' => 10, 'hpo_array' => array('0131321532198746' => array('hpo_id' => 1857, 'hpo_name' => 'Fever', 'count' => 1), '0128233419325858' => array('hpo_id' => 2060, 'hpo_name' => 'Increased serum lactate', 'count' => 1))), array('question' => object(Question), 'yes_count' => 24, 'total_count' => 27, 'hpo_array' => array(array('hpo_id' => 2121, 'hpo_name' => 'Recurrent respiratory infections', 'count' => 13), '0521233216242818' => array('hpo_id' => 2009, 'hpo_name' => 'Pneumonia', 'count' => 5), '0519323416198543' => array('hpo_id' => 5656, 'hpo_name' => 'Recurrent pneumonia', 'count' => 5), '0519321821289209' => array('hpo_id' => 12053, 'hpo_name' => 'Respiratory tract infection', 'count' => 5), '0236252532199858' => array('hpo_id' => 3017, 'hpo_name' => 'Allergic rhinitis', 'count' => 2), '0234231810289313' => array('hpo_id' => 11522, 'hpo_name' => 'CNS infection', 'count' => 2), '0124322328233746' => array('hpo_id' => 1275, 'hpo_name' => 'Meningitis', 'count' => 1), '0119323416196170' => array('hpo_id' => 5661, 'hpo_name' => 'Recurrent bronchopulmonary infections', 'count' => 1), '0119323416196126' => array('hpo_id' => 2576, 'hpo_name' => 'Recurrent infections', 'count' => 1), '0119323416193741' => array('hpo_id' => 2020, 'hpo_name' => 'Recurrent aspiration pneumonia', 'count' => 1), '0118322118285275' => array('hpo_id' => 15650, 'hpo_name' => 'Sepsis', 'count' => 1)))))), 'lang' => 'front/site/index.'), '__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), 'setting' => object(Setting), 'site' => object(Site), 'site_moderators' => object(Collection), 'total_patient' => 37, 'region_data' => array(array('country_count' => 3, 'country_name' => 'Belgium'), array('country_count' => 6, 'country_name' => 'China'), array('country_count' => 11, 'country_name' => 'Netherlands'), array('country_count' => 17, 'country_name' => 'United Kingdom')), 'regionMaxValue' => 17, 'chartData' => array(array(array('category_name' => 'General', 'get_chart_questions' => array(array('question_id' => 3510, 'label' => 'Severity of intellectual disability', 'chart_kind' => 3, 'answer_kind' => 4, 'answer' => array(array('answer' => 'Moderate', 'answer_count' => 3, 'answer_percentage' => 14.0), array('answer' => 'Severe', 'answer_count' => 10, 'answer_percentage' => 45.0), array('answer' => 'Unknown', 'answer_count' => 9, 'answer_percentage' => 41.0))))))), 'majorChartData' => array(array('question' => object(Question), 'yes_count' => 32, 'no_count' => 0, 'unknown_count' => 2, 'total_count' => 34), array('question' => object(Question), 'yes_count' => 27, 'no_count' => 0, 'unknown_count' => 6, 'total_count' => 33), array('question' => object(Question), 'yes_count' => 34, 'no_count' => 2, 'unknown_count' => 0, 'total_count' => 36), array('question' => object(Question), 'yes_count' => 34, 'no_count' => 2, 'unknown_count' => 1, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 15, 'no_count' => 4, 'unknown_count' => 18, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 20, 'no_count' => 5, 'unknown_count' => 12, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 12, 'no_count' => 4, 'unknown_count' => 21, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 11, 'no_count' => 3, 'unknown_count' => 23, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 19, 'no_count' => 4, 'unknown_count' => 14, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 9, 'no_count' => 4, 'unknown_count' => 24, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 3, 'unknown_count' => 34, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 3, 'no_count' => 1, 'unknown_count' => 33, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 7, 'no_count' => 7, 'unknown_count' => 23, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 30, 'no_count' => 1, 'unknown_count' => 6, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 8, 'no_count' => 7, 'unknown_count' => 22, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 11, 'no_count' => 3, 'unknown_count' => 23, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 3, 'unknown_count' => 32, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 3, 'no_count' => 3, 'unknown_count' => 31, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 8, 'unknown_count' => 27, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 24, 'no_count' => 3, 'unknown_count' => 10, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 8, 'unknown_count' => 29, 'total_count' => 37)), 'male_count' => 36, 'female_count' => 1, 'frequency_data' => array(array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'total_count' => 20, 'hpo_count' => 1, 'hpo_array' => array('HP:0003561' => array('hpo_id' => 3332, 'hpo_name' => '< P3 : Birth length less than 3rd percentile', 'count' => 1))), array('question' => object(Question), 'total_count' => 24, 'hpo_count' => 3, 'hpo_array' => array('HP:0001518' => array('hpo_id' => 1467, 'hpo_name' => '< P3 : Small for gestational age', 'count' => 3))), array('question' => object(Question), 'total_count' => 22, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 20, 'hpo_count' => 10, 'hpo_array' => array('HP:0004322' => array('hpo_id' => 4041, 'hpo_name' => '< P3 : Short stature', 'count' => 9), 'HP:0000098' => array('hpo_id' => 114, 'hpo_name' => '> P98 : Tall stature', 'count' => 1))), array('question' => object(Question), 'total_count' => 19, 'hpo_count' => 7, 'hpo_array' => array('HP:0004325' => array('hpo_id' => 4045, 'hpo_name' => '< P3 : Decreased body weight', 'count' => 7))), array('question' => object(Question), 'total_count' => 26, 'hpo_count' => 8, 'hpo_array' => array('HP:0000252' => array('hpo_id' => 274, 'hpo_name' => '< P3 : Microcephaly', 'count' => 6), 'HP:0000256' => array('hpo_id' => 279, 'hpo_name' => '> P98 : Macrocephaly', 'count' => 2))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 34, 'total_count' => 36, 'hpo_array' => array(array('hpo_id' => 1280, 'hpo_name' => 'Generalized hypotonia', 'count' => 23), '0818322811161220' => array('hpo_id' => 1237, 'hpo_name' => 'Seizures', 'count' => 8), '0730322332192540' => array('hpo_id' => 1987, 'hpo_name' => 'Generalized tonic-clonic seizures', 'count' => 7), '0536173613284965' => array('hpo_id' => 1238, 'hpo_name' => 'Ataxia', 'count' => 5), '0530362817102424' => array('hpo_id' => 1983, 'hpo_name' => 'Gait ataxia', 'count' => 5), '0530322332193980' => array('hpo_id' => 2038, 'hpo_name' => 'Generalized myoclonic seizures', 'count' => 5), '0436172223286278' => array('hpo_id' => 10830, 'hpo_name' => 'Atonic seizures', 'count' => 4), '0328233136236977' => array('hpo_id' => 7473, 'hpo_name' => 'Infantile axial hypotonia', 'count' => 3), '0325221432197530' => array('hpo_id' => 1979, 'hpo_name' => 'Lower limb spasticity', 'count' => 3), '0318213618172683' => array('hpo_id' => 1244, 'hpo_name' => 'Spasticity', 'count' => 3), '0236352322196865' => array('hpo_id' => 6134, 'hpo_name' => 'Abnormal pyramidal signs', 'count' => 2), '0234322317197647' => array('hpo_id' => 11462, 'hpo_name' => 'Central hypotonia', 'count' => 2), '0233121817222264' => array('hpo_id' => 1313, 'hpo_name' => 'Dystonia', 'count' => 2), '0231223436255777' => array('hpo_id' => 11220, 'hpo_name' => 'Focal myoclonic seizures', 'count' => 2), '0225282435105444' => array('hpo_id' => 2373, 'hpo_name' => 'Limb hypertonia', 'count' => 2), '0224162517286611' => array('hpo_id' => 10851, 'hpo_name' => 'Multifocal epileptiform discharges', 'count' => 2), '0224122234253821' => array('hpo_id' => 1316, 'hpo_name' => 'Myoclonus', 'count' => 2), '0223322223363967' => array('hpo_id' => 1301, 'hpo_name' => 'Neonatal hypotonia', 'count' => 2), '0221192230194642' => array('hpo_id' => 2104, 'hpo_name' => 'Progressive spasticity', 'count' => 2), '0136353322249959' => array('hpo_id' => 3090, 'hpo_name' => 'Abdominal distention', 'count' => 1), '0136351832234122' => array('hpo_id' => 2036, 'hpo_name' => 'Absence seizures', 'count' => 1), '0135363528237021' => array('hpo_id' => 3277, 'hpo_name' => 'Babinski sign', 'count' => 1), '0134321932356935' => array('hpo_id' => 14353, 'hpo_name' => 'Cerebral palsy', 'count' => 1), '0131363428363319' => array('hpo_id' => 315, 'hpo_name' => 'Facial hypotonia', 'count' => 1), '0131223436258825' => array('hpo_id' => 2289, 'hpo_name' => 'Focal seizures with impairment of consciousness or awareness', 'count' => 1), '0130322332192380' => array('hpo_id' => 10829, 'hpo_name' => 'Generalized tonic seizures', 'count' => 1), '0130322332192149' => array('hpo_id' => 2110, 'hpo_name' => 'Generalized seizures', 'count' => 1), '0129282110347639' => array('hpo_id' => 3093, 'hpo_name' => 'Hip contracture', 'count' => 1), '0129122132194014' => array('hpo_id' => 5877, 'hpo_name' => 'Hyperactive deep tendon reflexes', 'count' => 1), '0126233232108761' => array('hpo_id' => 5500, 'hpo_name' => 'Knee flexion contracture', 'count' => 1), '0125221818106680' => array('hpo_id' => 5874, 'hpo_name' => 'Loss of ability to walk in first decade', 'count' => 1), '0125221432194321' => array('hpo_id' => 5926, 'hpo_name' => 'Lower limb hypertonia', 'count' => 1), '0121222219102391' => array('hpo_id' => 2276, 'hpo_name' => 'Poor coordination', 'count' => 1), '0121192230193660' => array('hpo_id' => 6122, 'hpo_name' => 'Progressive truncal ataxia', 'count' => 1), '0118173219323821' => array('hpo_id' => 12297, 'hpo_name' => 'Stereotypical hand wringing', 'count' => 1), '0117191623341197' => array('hpo_id' => 1996, 'hpo_name' => 'Truncal ataxia', 'count' => 1), '0116231817329348' => array('hpo_id' => 2228, 'hpo_name' => 'Unsteady gait', 'count' => 1))), array('question' => object(Question), 'yes_count' => 15, 'total_count' => 19, 'hpo_array' => array('0736161728181611' => array('hpo_id' => 740, 'hpo_name' => 'Autistic behavior', 'count' => 7), '0618173219327575' => array('hpo_id' => 742, 'hpo_name' => 'Stereotypic behavior', 'count' => 6), '0528242136283302' => array('hpo_id' => 12956, 'hpo_name' => 'Impaired social reciprocity', 'count' => 5), '0521222219101922' => array('hpo_id' => 822, 'hpo_name' => 'Poor eye contact', 'count' => 5), '0428242136285181' => array('hpo_id' => 744, 'hpo_name' => 'Impaired social interactions', 'count' => 4), '0229122132197801' => array('hpo_id' => 764, 'hpo_name' => 'Hyperactivity', 'count' => 2), '0219323416191022' => array('hpo_id' => 14356, 'hpo_name' => 'Recurrent hand flapping', 'count' => 2), '0218173219326971' => array('hpo_id' => 12297, 'hpo_name' => 'Stereotypical hand wringing', 'count' => 2), '0136352322194718' => array('hpo_id' => 15709, 'hpo_name' => 'Abnormal emotion/affect behavior', 'count' => 1), '0136303019323519' => array('hpo_id' => 729, 'hpo_name' => 'Aggressive behavior', 'count' => 1), '0133192222257916' => array('hpo_id' => 2217, 'hpo_name' => 'Drooling', 'count' => 1), '0123221018223408' => array('hpo_id' => 7275, 'hpo_name' => 'No social interaction', 'count' => 1))), array('question' => object(Question), 'yes_count' => 20, 'total_count' => 25, 'hpo_array' => array('0536352322193347' => array('hpo_id' => 2382, 'hpo_name' => 'Abnormality of the periventricular white matter', 'count' => 5), '0334321932359794' => array('hpo_id' => 1976, 'hpo_name' => 'Cerebral atrophy', 'count' => 3), '0334321932352309' => array('hpo_id' => 2035, 'hpo_name' => 'Cerebral cortical atrophy', 'count' => 3), '0332323010363757' => array('hpo_id' => 2259, 'hpo_name' => 'EEG abnormality', 'count' => 3), '0331223436254826' => array('hpo_id' => 6023, 'hpo_name' => 'Focal white matter lesions', 'count' => 3), '0321361917281835' => array('hpo_id' => 1318, 'hpo_name' => 'Partial agenesis of the corpus callosum', 'count' => 3), '0234321932352177' => array('hpo_id' => 5901, 'hpo_name' => 'Cerebellar vermis atrophy', 'count' => 2), '0233322536125543' => array('hpo_id' => 12609, 'hpo_name' => 'Delayed myelination', 'count' => 2), '0233282536179127' => array('hpo_id' => 5961, 'hpo_name' => 'Dilation of lateral ventricles', 'count' => 2), '0233282536178952' => array('hpo_id' => 6045, 'hpo_name' => 'Dilated third ventricle', 'count' => 2), '0233282536174266' => array('hpo_id' => 2111, 'hpo_name' => 'Dilated fourth ventricle', 'count' => 2), '0232323010145173' => array('hpo_id' => 11240, 'hpo_name' => 'EEG with focal epileptiform discharges', 'count' => 2), '0232323010144031' => array('hpo_id' => 11253, 'hpo_name' => 'EEG with generalized epileptiform discharges', 'count' => 2), '0232323010143626' => array('hpo_id' => 11254, 'hpo_name' => 'EEG with generalized sharp slow waves', 'count' => 2), '0136352322198669' => array('hpo_id' => 14856, 'hpo_name' => 'Abnormality of the dentate nucleus', 'count' => 1), '0136212536183622' => array('hpo_id' => 5884, 'hpo_name' => 'Aplasia/Hypoplasia of the cerebellar vermis', 'count' => 1), '0134321932358132' => array('hpo_id' => 5881, 'hpo_name' => 'Cerebral hypomyelination', 'count' => 1), '0134231810295860' => array('hpo_id' => 3229, 'hpo_name' => 'CNS hypomyelination', 'count' => 1), '0133121821252530' => array('hpo_id' => 5984, 'hpo_name' => 'Dysplastic corpus callosum', 'count' => 1), '0132232536198373' => array('hpo_id' => 11495, 'hpo_name' => 'Enlarged fetal cisterna magna', 'count' => 1), '0132232536194658' => array('hpo_id' => 2194, 'hpo_name' => 'Enlarged cisterna magna', 'count' => 1), '0130322332197148' => array('hpo_id' => 6030, 'hpo_name' => 'Generalized cerebral atrophy/hypoplasia', 'count' => 1), '0129122122286929' => array('hpo_id' => 6058, 'hpo_name' => 'Hypointensity of cerebral white matter on MRI', 'count' => 1), '0129122122217346' => array('hpo_id' => 1997, 'hpo_name' => 'Hypoplasia of the corpus callosum', 'count' => 1), '0125321626227331' => array('hpo_id' => 2310, 'hpo_name' => 'Leukodystrophy', 'count' => 1), '0124221921295632' => array('hpo_id' => 1929, 'hpo_name' => 'Morphological abnormality of the central nervous system', 'count' => 1), '0121321928156322' => array('hpo_id' => 12687, 'hpo_name' => 'Perivascular spaces', 'count' => 1), '0121321928153238' => array('hpo_id' => 5974, 'hpo_name' => 'Periventricular leukomalacia', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 12, 'total_count' => 16, 'hpo_array' => array('0924363419229048' => array('hpo_id' => 396, 'hpo_name' => 'Macrotia', 'count' => 9), '0236352322193111' => array('hpo_id' => 366, 'hpo_name' => 'Abnormality of earlobe', 'count' => 2), '0225361930325608' => array('hpo_id' => 9027, 'hpo_name' => 'Large earlobe', 'count' => 2), '0225221410185702' => array('hpo_id' => 372, 'hpo_name' => 'Low-set ears', 'count' => 2))), array('question' => object(Question), 'yes_count' => 11, 'total_count' => 14, 'hpo_array' => array('0533221423186247' => array('hpo_id' => 486, 'hpo_name' => 'Downslanted palpebral fissures', 'count' => 5), '0233323221258670' => array('hpo_id' => 481, 'hpo_name' => 'Deeply set eye', 'count' => 2), '0232212834368697' => array('hpo_id' => 303, 'hpo_name' => 'Epicanthus', 'count' => 2), '0229122132197648' => array('hpo_id' => 330, 'hpo_name' => 'Hypertelorism', 'count' => 2), '0136352322194632' => array('hpo_id' => 529, 'hpo_name' => 'Abnormality of the eyebrow', 'count' => 1), '0118292219179744' => array('hpo_id' => 12940, 'hpo_name' => 'Short palpebral fissure', 'count' => 1), '0118213619188709' => array('hpo_id' => 532, 'hpo_name' => 'Sparse eyebrow', 'count' => 1))), array('question' => object(Question), 'yes_count' => 19, 'total_count' => 23, 'hpo_array' => array('0823361919226029' => array('hpo_id' => 445, 'hpo_name' => 'Narrow nose', 'count' => 8), '0414283332109279' => array('hpo_id' => 13015, 'hpo_name' => 'Wide nasal base', 'count' => 4), '0314283332103113' => array('hpo_id' => 432, 'hpo_name' => 'Wide nose', 'count' => 3), '0236231732156561' => array('hpo_id' => 446, 'hpo_name' => 'Anteverted nares', 'count' => 2), '0233322119327016' => array('hpo_id' => 4746, 'hpo_name' => 'Depressed nasal bridge', 'count' => 2), '0225222330107568' => array('hpo_id' => 3015, 'hpo_name' => 'Long nose', 'count' => 2), '0221192224288306' => array('hpo_id' => 420, 'hpo_name' => 'Prominent nasal bridge', 'count' => 2), '0214283332109876' => array('hpo_id' => 425, 'hpo_name' => 'Wide nasal bridge', 'count' => 2), '0123361919225738' => array('hpo_id' => 11928, 'hpo_name' => 'Narrow nasal tip', 'count' => 1), '0118292219177834' => array('hpo_id' => 3020, 'hpo_name' => 'Short nose', 'count' => 1), '0116233332198100' => array('hpo_id' => 422, 'hpo_name' => 'Underdeveloped nasal alae', 'count' => 1))), array('question' => object(Question), 'yes_count' => 9, 'total_count' => 13, 'hpo_array' => array('0323361919226310' => array('hpo_id' => 182, 'hpo_name' => 'Narrow mouth', 'count' => 3), '0233192222252686' => array('hpo_id' => 2217, 'hpo_name' => 'Drooling', 'count' => 2), '0232153219173720' => array('hpo_id' => 252, 'hpo_name' => 'Everted lower lip vermilion', 'count' => 2), '0224362536195834' => array('hpo_id' => 291, 'hpo_name' => 'Malar flattening', 'count' => 2), '0224283419224182' => array('hpo_id' => 703, 'hpo_name' => 'Microdontia', 'count' => 2), '0222213223105923' => array('hpo_id' => 213, 'hpo_name' => 'Open mouth', 'count' => 2), '0214283332256556' => array('hpo_id' => 699, 'hpo_name' => 'Widely spaced teeth', 'count' => 2), '0129283029104893' => array('hpo_id' => 235, 'hpo_name' => 'High palate', 'count' => 1), '0118292219179243' => array('hpo_id' => 336, 'hpo_name' => 'Short philtrum', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 3, 'total_count' => 4, 'hpo_array' => array('0136352322199706' => array('hpo_id' => 12523, 'hpo_name' => 'Abnormal eye physiology', 'count' => 1), '0136181728304582' => array('hpo_id' => 473, 'hpo_name' => 'Astigmatism', 'count' => 1), '0132132217191331' => array('hpo_id' => 578, 'hpo_name' => 'Exotropia', 'count' => 1), '0118171936359873' => array('hpo_id' => 477, 'hpo_name' => 'Strabismus', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 7, 'total_count' => 14, 'hpo_array' => array('0334222330324970' => array('hpo_id' => 1550, 'hpo_name' => 'Congestive heart failure', 'count' => 3), '0135283416189166' => array('hpo_id' => 1562, 'hpo_name' => 'Bicuspid aortic valve', 'count' => 1), '0135193633124063' => array('hpo_id' => 1574, 'hpo_name' => 'Bradycardia', 'count' => 1), '0124122234362189' => array('hpo_id' => 13025, 'hpo_name' => 'Myocarditis', 'count' => 1), '0121361732236485' => array('hpo_id' => 1569, 'hpo_name' => 'Patent foramen ovale', 'count' => 1), '0121361732234262' => array('hpo_id' => 1558, 'hpo_name' => 'Patent ductus arteriosus', 'count' => 1), '0119283029175801' => array('hpo_id' => 1620, 'hpo_name' => 'Right ventricular failure', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 30, 'total_count' => 31, 'hpo_array' => array(array('hpo_id' => 1937, 'hpo_name' => 'Constipation', 'count' => 17), '0830361817198392' => array('hpo_id' => 1938, 'hpo_name' => 'Gastroesophageal reflux', 'count' => 8), '0731323233283698' => array('hpo_id' => 12077, 'hpo_name' => 'Feeding difficulties', 'count' => 7), '0431323233286203' => array('hpo_id' => 7358, 'hpo_name' => 'Feeding difficulties in infancy', 'count' => 4), '0334291922238385' => array('hpo_id' => 12611, 'hpo_name' => 'Chronic constipation', 'count' => 3), '0333121821291786' => array('hpo_id' => 1933, 'hpo_name' => 'Dysphagia', 'count' => 3), '0236352322198390' => array('hpo_id' => 2172, 'hpo_name' => 'Abnormality of the large intestine', 'count' => 2), '0230361817198958' => array('hpo_id' => 11544, 'hpo_name' => 'Gastrostomy tube feeding in infancy', 'count' => 2), '0136353322249806' => array('hpo_id' => 3090, 'hpo_name' => 'Abdominal distention', 'count' => 1), '0136352322194099' => array('hpo_id' => 2165, 'hpo_name' => 'Abnormality of the small intestine', 'count' => 1), '0136352322193755' => array('hpo_id' => 14348, 'hpo_name' => 'Abnormality of the mesentery', 'count' => 1), '0136352322193066' => array('hpo_id' => 11058, 'hpo_name' => 'Abnormality of the gastrointestinal tract', 'count' => 1), '0135221432255420' => array('hpo_id' => 2468, 'hpo_name' => 'Bowel incontinence', 'count' => 1), '0134291922237306' => array('hpo_id' => 1946, 'hpo_name' => 'Chronic diarrhea', 'count' => 1), '0128231732189770' => array('hpo_id' => 2423, 'hpo_name' => 'Intestinal malrotation', 'count' => 1), '0128231732188833' => array('hpo_id' => 4674, 'hpo_name' => 'Intestinal obstruction', 'count' => 1), '0128231732182589' => array('hpo_id' => 4123, 'hpo_name' => 'Intestinal pseudo-obstruction', 'count' => 1), '0123322223365892' => array('hpo_id' => 4701, 'hpo_name' => 'Neonatal intestinal obstruction', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 8, 'total_count' => 15, 'hpo_array' => array('0433282536176492' => array('hpo_id' => 10982, 'hpo_name' => 'Dilatation of the bladder', 'count' => 4), '0233282536179755' => array('hpo_id' => 10970, 'hpo_name' => 'Dilatation of the renal pelvis', 'count' => 2), '0216192823366207' => array('hpo_id' => 21, 'hpo_name' => 'Urinary incontinence', 'count' => 2), '0136352322199286' => array('hpo_id' => 16, 'hpo_name' => 'Abnormality of the bladder', 'count' => 1), '0136352322199077' => array('hpo_id' => 97, 'hpo_name' => 'Abnormality of the genital system', 'count' => 1), '0136352322193181' => array('hpo_id' => 87, 'hpo_name' => 'Abnormality of the ureter', 'count' => 1), '0131321736253747' => array('hpo_id' => 10983, 'hpo_name' => 'Fetal megacystis', 'count' => 1), '0116232825361347' => array('hpo_id' => 12934, 'hpo_name' => 'Unilateral cryptorchidism', 'count' => 1), '0116192823364250' => array('hpo_id' => 18, 'hpo_name' => 'Urinary retention', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 11, 'total_count' => 14, 'hpo_array' => array('0236352322191252' => array('hpo_id' => 11356, 'hpo_name' => 'Abnormality of digit', 'count' => 2), '0234252823222350' => array('hpo_id' => 13208, 'hpo_name' => 'Clinodactyly', 'count' => 2), '0231193634172404' => array('hpo_id' => 2910, 'hpo_name' => 'Fractures of the long bones', 'count' => 2), '0218253223336681' => array('hpo_id' => 11368, 'hpo_name' => 'Slender toe', 'count' => 2), '0218253223332451' => array('hpo_id' => 1228, 'hpo_name' => 'Slender finger', 'count' => 2), '0136193634293843' => array('hpo_id' => 1173, 'hpo_name' => 'Arachnodactyly', 'count' => 1), '0135192236333941' => array('hpo_id' => 1675, 'hpo_name' => 'Broad foot', 'count' => 1), '0129282110186838' => array('hpo_id' => 13164, 'hpo_name' => 'Hip Subluxation', 'count' => 1), '0127222823178842' => array('hpo_id' => 1352, 'hpo_name' => 'Joint hypermobility', 'count' => 1), '0127222823173920' => array('hpo_id' => 1360, 'hpo_name' => 'Joint laxity', 'count' => 1), '0125222330109267' => array('hpo_id' => 15651, 'hpo_name' => 'Long fingers', 'count' => 1), '0125222330108310' => array('hpo_id' => 1742, 'hpo_name' => 'Long foot', 'count' => 1), '0121253630288588' => array('hpo_id' => 1333, 'hpo_name' => 'Plagiocephaly', 'count' => 1), '0118342225289402' => array('hpo_id' => 2512, 'hpo_name' => 'Scoliosis', 'count' => 1), '0118292219172798' => array('hpo_id' => 1681, 'hpo_name' => 'Short foot', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 2, 'total_count' => 5, 'hpo_array' => array('0217292823102915' => array('hpo_id' => 967, 'hpo_name' => 'Thin skin', 'count' => 2), '0121362525221422' => array('hpo_id' => 986, 'hpo_name' => 'Pallor', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 3, 'total_count' => 6, 'hpo_array' => array('0229122122174113' => array('hpo_id' => 827, 'hpo_name' => 'Hypothyroidism', 'count' => 2), '0121281716287288' => array('hpo_id' => 6922, 'hpo_name' => 'Pituitary hypothyroidism', 'count' => 1))), array('question' => object(Question), 'yes_count' => 2, 'total_count' => 10, 'hpo_array' => array('0131321532198746' => array('hpo_id' => 1857, 'hpo_name' => 'Fever', 'count' => 1), '0128233419325858' => array('hpo_id' => 2060, 'hpo_name' => 'Increased serum lactate', 'count' => 1))), array('question' => object(Question), 'yes_count' => 24, 'total_count' => 27, 'hpo_array' => array(array('hpo_id' => 2121, 'hpo_name' => 'Recurrent respiratory infections', 'count' => 13), '0521233216242818' => array('hpo_id' => 2009, 'hpo_name' => 'Pneumonia', 'count' => 5), '0519323416198543' => array('hpo_id' => 5656, 'hpo_name' => 'Recurrent pneumonia', 'count' => 5), '0519321821289209' => array('hpo_id' => 12053, 'hpo_name' => 'Respiratory tract infection', 'count' => 5), '0236252532199858' => array('hpo_id' => 3017, 'hpo_name' => 'Allergic rhinitis', 'count' => 2), '0234231810289313' => array('hpo_id' => 11522, 'hpo_name' => 'CNS infection', 'count' => 2), '0124322328233746' => array('hpo_id' => 1275, 'hpo_name' => 'Meningitis', 'count' => 1), '0119323416196170' => array('hpo_id' => 5661, 'hpo_name' => 'Recurrent bronchopulmonary infections', 'count' => 1), '0119323416196126' => array('hpo_id' => 2576, 'hpo_name' => 'Recurrent infections', 'count' => 1), '0119323416193741' => array('hpo_id' => 2020, 'hpo_name' => 'Recurrent aspiration pneumonia', 'count' => 1), '0118322118285275' => array('hpo_id' => 15650, 'hpo_name' => 'Sepsis', 'count' => 1)))))), 'lang' => 'front/site/index.', '__currentLoopData' => array(array('question' => object(Question), 'total_count' => 20, 'hpo_count' => 1, 'hpo_array' => array('HP:0003561' => array('hpo_id' => 3332, 'hpo_name' => '< P3 : Birth length less than 3rd percentile', 'count' => 1))), array('question' => object(Question), 'total_count' => 24, 'hpo_count' => 3, 'hpo_array' => array('HP:0001518' => array('hpo_id' => 1467, 'hpo_name' => '< P3 : Small for gestational age', 'count' => 3))), array('question' => object(Question), 'total_count' => 22, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 20, 'hpo_count' => 10, 'hpo_array' => array('HP:0004322' => array('hpo_id' => 4041, 'hpo_name' => '< P3 : Short stature', 'count' => 9), 'HP:0000098' => array('hpo_id' => 114, 'hpo_name' => '> P98 : Tall stature', 'count' => 1))), array('question' => object(Question), 'total_count' => 19, 'hpo_count' => 7, 'hpo_array' => array('HP:0004325' => array('hpo_id' => 4045, 'hpo_name' => '< P3 : Decreased body weight', 'count' => 7))), array('question' => object(Question), 'total_count' => 26, 'hpo_count' => 8, 'hpo_array' => array('HP:0000252' => array('hpo_id' => 274, 'hpo_name' => '< P3 : Microcephaly', 'count' => 6), 'HP:0000256' => array('hpo_id' => 279, 'hpo_name' => '> P98 : Macrocephaly', 'count' => 2)))), 'que_cat' => array('category_name' => 'General', 'get_chart_questions' => array(array('question_id' => 3510, 'label' => 'Severity of intellectual disability', 'chart_kind' => 3, 'answer_kind' => 4, 'answer' => array(array('answer' => 'Moderate', 'answer_count' => 3, 'answer_percentage' => 14.0), array('answer' => 'Severe', 'answer_count' => 10, 'answer_percentage' => 45.0), array('answer' => 'Unknown', 'answer_count' => 9, 'answer_percentage' => 41.0))))), 'loop' => object(stdClass), 'que_details' => array('question_id' => 3510, 'label' => 'Severity of intellectual disability', 'chart_kind' => 3, 'answer_kind' => 4, 'answer' => array(array('answer' => 'Moderate', 'answer_count' => 3, 'answer_percentage' => 14.0), array('answer' => 'Severe', 'answer_count' => 10, 'answer_percentage' => 45.0), array('answer' => 'Unknown', 'answer_count' => 9, 'answer_percentage' => 41.0))), 'key' => 0, 'category' => array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'total_count' => 20, 'hpo_count' => 1, 'hpo_array' => array('HP:0003561' => array('hpo_id' => 3332, 'hpo_name' => '< P3 : Birth length less than 3rd percentile', 'count' => 1))), array('question' => object(Question), 'total_count' => 24, 'hpo_count' => 3, 'hpo_array' => array('HP:0001518' => array('hpo_id' => 1467, 'hpo_name' => '< P3 : Small for gestational age', 'count' => 3))), array('question' => object(Question), 'total_count' => 22, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 20, 'hpo_count' => 10, 'hpo_array' => array('HP:0004322' => array('hpo_id' => 4041, 'hpo_name' => '< P3 : Short stature', 'count' => 9), 'HP:0000098' => array('hpo_id' => 114, 'hpo_name' => '> P98 : Tall stature', 'count' => 1))), array('question' => object(Question), 'total_count' => 19, 'hpo_count' => 7, 'hpo_array' => array('HP:0004325' => array('hpo_id' => 4045, 'hpo_name' => '< P3 : Decreased body weight', 'count' => 7))), array('question' => object(Question), 'total_count' => 26, 'hpo_count' => 8, 'hpo_array' => array('HP:0000252' => array('hpo_id' => 274, 'hpo_name' => '< P3 : Microcephaly', 'count' => 6), 'HP:0000256' => array('hpo_id' => 279, 'hpo_name' => '> P98 : Macrocephaly', 'count' => 2))))), 'question' => array('question' => object(Question), 'total_count' => 20, 'hpo_count' => 1, 'hpo_array' => array('HP:0003561' => array('hpo_id' => 3332, 'hpo_name' => '< P3 : Birth length less than 3rd percentile', 'count' => 1)))))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/storage/framework/views/0562706b6e74f059c1849b020fb1edc9d46a7de4.php:70)
  at require('/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/storage/framework/views/0562706b6e74f059c1849b020fb1edc9d46a7de4.php')
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:107)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:108)
  at Illuminate\Filesystem\Filesystem->getRequire('/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/storage/framework/views/0562706b6e74f059c1849b020fb1edc9d46a7de4.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), 'setting' => object(Setting), 'site' => object(Site), 'site_moderators' => object(Collection), 'total_patient' => 37, 'region_data' => array(array('country_count' => 3, 'country_name' => 'Belgium'), array('country_count' => 6, 'country_name' => 'China'), array('country_count' => 11, 'country_name' => 'Netherlands'), array('country_count' => 17, 'country_name' => 'United Kingdom')), 'regionMaxValue' => 17, 'chartData' => array(array(array('category_name' => 'General', 'get_chart_questions' => array(array('question_id' => 3510, 'label' => 'Severity of intellectual disability', 'chart_kind' => 3, 'answer_kind' => 4, 'answer' => array(array('answer' => 'Moderate', 'answer_count' => 3, 'answer_percentage' => 14.0), array('answer' => 'Severe', 'answer_count' => 10, 'answer_percentage' => 45.0), array('answer' => 'Unknown', 'answer_count' => 9, 'answer_percentage' => 41.0))))))), 'majorChartData' => array(array('question' => object(Question), 'yes_count' => 32, 'no_count' => 0, 'unknown_count' => 2, 'total_count' => 34), array('question' => object(Question), 'yes_count' => 27, 'no_count' => 0, 'unknown_count' => 6, 'total_count' => 33), array('question' => object(Question), 'yes_count' => 34, 'no_count' => 2, 'unknown_count' => 0, 'total_count' => 36), array('question' => object(Question), 'yes_count' => 34, 'no_count' => 2, 'unknown_count' => 1, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 15, 'no_count' => 4, 'unknown_count' => 18, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 20, 'no_count' => 5, 'unknown_count' => 12, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 12, 'no_count' => 4, 'unknown_count' => 21, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 11, 'no_count' => 3, 'unknown_count' => 23, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 19, 'no_count' => 4, 'unknown_count' => 14, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 9, 'no_count' => 4, 'unknown_count' => 24, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 3, 'unknown_count' => 34, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 3, 'no_count' => 1, 'unknown_count' => 33, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 7, 'no_count' => 7, 'unknown_count' => 23, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 30, 'no_count' => 1, 'unknown_count' => 6, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 8, 'no_count' => 7, 'unknown_count' => 22, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 11, 'no_count' => 3, 'unknown_count' => 23, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 3, 'unknown_count' => 32, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 3, 'no_count' => 3, 'unknown_count' => 31, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 8, 'unknown_count' => 27, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 24, 'no_count' => 3, 'unknown_count' => 10, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 8, 'unknown_count' => 29, 'total_count' => 37)), 'male_count' => 36, 'female_count' => 1, 'frequency_data' => array(array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'total_count' => 20, 'hpo_count' => 1, 'hpo_array' => array('HP:0003561' => array('hpo_id' => 3332, 'hpo_name' => '< P3 : Birth length less than 3rd percentile', 'count' => 1))), array('question' => object(Question), 'total_count' => 24, 'hpo_count' => 3, 'hpo_array' => array('HP:0001518' => array('hpo_id' => 1467, 'hpo_name' => '< P3 : Small for gestational age', 'count' => 3))), array('question' => object(Question), 'total_count' => 22, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 20, 'hpo_count' => 10, 'hpo_array' => array('HP:0004322' => array('hpo_id' => 4041, 'hpo_name' => '< P3 : Short stature', 'count' => 9), 'HP:0000098' => array('hpo_id' => 114, 'hpo_name' => '> P98 : Tall stature', 'count' => 1))), array('question' => object(Question), 'total_count' => 19, 'hpo_count' => 7, 'hpo_array' => array('HP:0004325' => array('hpo_id' => 4045, 'hpo_name' => '< P3 : Decreased body weight', 'count' => 7))), array('question' => object(Question), 'total_count' => 26, 'hpo_count' => 8, 'hpo_array' => array('HP:0000252' => array('hpo_id' => 274, 'hpo_name' => '< P3 : Microcephaly', 'count' => 6), 'HP:0000256' => array('hpo_id' => 279, 'hpo_name' => '> P98 : Macrocephaly', 'count' => 2))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 34, 'total_count' => 36, 'hpo_array' => array(array('hpo_id' => 1280, 'hpo_name' => 'Generalized hypotonia', 'count' => 23), '0818322811161220' => array('hpo_id' => 1237, 'hpo_name' => 'Seizures', 'count' => 8), '0730322332192540' => array('hpo_id' => 1987, 'hpo_name' => 'Generalized tonic-clonic seizures', 'count' => 7), '0536173613284965' => array('hpo_id' => 1238, 'hpo_name' => 'Ataxia', 'count' => 5), '0530362817102424' => array('hpo_id' => 1983, 'hpo_name' => 'Gait ataxia', 'count' => 5), '0530322332193980' => array('hpo_id' => 2038, 'hpo_name' => 'Generalized myoclonic seizures', 'count' => 5), '0436172223286278' => array('hpo_id' => 10830, 'hpo_name' => 'Atonic seizures', 'count' => 4), '0328233136236977' => array('hpo_id' => 7473, 'hpo_name' => 'Infantile axial hypotonia', 'count' => 3), '0325221432197530' => array('hpo_id' => 1979, 'hpo_name' => 'Lower limb spasticity', 'count' => 3), '0318213618172683' => array('hpo_id' => 1244, 'hpo_name' => 'Spasticity', 'count' => 3), '0236352322196865' => array('hpo_id' => 6134, 'hpo_name' => 'Abnormal pyramidal signs', 'count' => 2), '0234322317197647' => array('hpo_id' => 11462, 'hpo_name' => 'Central hypotonia', 'count' => 2), '0233121817222264' => array('hpo_id' => 1313, 'hpo_name' => 'Dystonia', 'count' => 2), '0231223436255777' => array('hpo_id' => 11220, 'hpo_name' => 'Focal myoclonic seizures', 'count' => 2), '0225282435105444' => array('hpo_id' => 2373, 'hpo_name' => 'Limb hypertonia', 'count' => 2), '0224162517286611' => array('hpo_id' => 10851, 'hpo_name' => 'Multifocal epileptiform discharges', 'count' => 2), '0224122234253821' => array('hpo_id' => 1316, 'hpo_name' => 'Myoclonus', 'count' => 2), '0223322223363967' => array('hpo_id' => 1301, 'hpo_name' => 'Neonatal hypotonia', 'count' => 2), '0221192230194642' => array('hpo_id' => 2104, 'hpo_name' => 'Progressive spasticity', 'count' => 2), '0136353322249959' => array('hpo_id' => 3090, 'hpo_name' => 'Abdominal distention', 'count' => 1), '0136351832234122' => array('hpo_id' => 2036, 'hpo_name' => 'Absence seizures', 'count' => 1), '0135363528237021' => array('hpo_id' => 3277, 'hpo_name' => 'Babinski sign', 'count' => 1), '0134321932356935' => array('hpo_id' => 14353, 'hpo_name' => 'Cerebral palsy', 'count' => 1), '0131363428363319' => array('hpo_id' => 315, 'hpo_name' => 'Facial hypotonia', 'count' => 1), '0131223436258825' => array('hpo_id' => 2289, 'hpo_name' => 'Focal seizures with impairment of consciousness or awareness', 'count' => 1), '0130322332192380' => array('hpo_id' => 10829, 'hpo_name' => 'Generalized tonic seizures', 'count' => 1), '0130322332192149' => array('hpo_id' => 2110, 'hpo_name' => 'Generalized seizures', 'count' => 1), '0129282110347639' => array('hpo_id' => 3093, 'hpo_name' => 'Hip contracture', 'count' => 1), '0129122132194014' => array('hpo_id' => 5877, 'hpo_name' => 'Hyperactive deep tendon reflexes', 'count' => 1), '0126233232108761' => array('hpo_id' => 5500, 'hpo_name' => 'Knee flexion contracture', 'count' => 1), '0125221818106680' => array('hpo_id' => 5874, 'hpo_name' => 'Loss of ability to walk in first decade', 'count' => 1), '0125221432194321' => array('hpo_id' => 5926, 'hpo_name' => 'Lower limb hypertonia', 'count' => 1), '0121222219102391' => array('hpo_id' => 2276, 'hpo_name' => 'Poor coordination', 'count' => 1), '0121192230193660' => array('hpo_id' => 6122, 'hpo_name' => 'Progressive truncal ataxia', 'count' => 1), '0118173219323821' => array('hpo_id' => 12297, 'hpo_name' => 'Stereotypical hand wringing', 'count' => 1), '0117191623341197' => array('hpo_id' => 1996, 'hpo_name' => 'Truncal ataxia', 'count' => 1), '0116231817329348' => array('hpo_id' => 2228, 'hpo_name' => 'Unsteady gait', 'count' => 1))), array('question' => object(Question), 'yes_count' => 15, 'total_count' => 19, 'hpo_array' => array('0736161728181611' => array('hpo_id' => 740, 'hpo_name' => 'Autistic behavior', 'count' => 7), '0618173219327575' => array('hpo_id' => 742, 'hpo_name' => 'Stereotypic behavior', 'count' => 6), '0528242136283302' => array('hpo_id' => 12956, 'hpo_name' => 'Impaired social reciprocity', 'count' => 5), '0521222219101922' => array('hpo_id' => 822, 'hpo_name' => 'Poor eye contact', 'count' => 5), '0428242136285181' => array('hpo_id' => 744, 'hpo_name' => 'Impaired social interactions', 'count' => 4), '0229122132197801' => array('hpo_id' => 764, 'hpo_name' => 'Hyperactivity', 'count' => 2), '0219323416191022' => array('hpo_id' => 14356, 'hpo_name' => 'Recurrent hand flapping', 'count' => 2), '0218173219326971' => array('hpo_id' => 12297, 'hpo_name' => 'Stereotypical hand wringing', 'count' => 2), '0136352322194718' => array('hpo_id' => 15709, 'hpo_name' => 'Abnormal emotion/affect behavior', 'count' => 1), '0136303019323519' => array('hpo_id' => 729, 'hpo_name' => 'Aggressive behavior', 'count' => 1), '0133192222257916' => array('hpo_id' => 2217, 'hpo_name' => 'Drooling', 'count' => 1), '0123221018223408' => array('hpo_id' => 7275, 'hpo_name' => 'No social interaction', 'count' => 1))), array('question' => object(Question), 'yes_count' => 20, 'total_count' => 25, 'hpo_array' => array('0536352322193347' => array('hpo_id' => 2382, 'hpo_name' => 'Abnormality of the periventricular white matter', 'count' => 5), '0334321932359794' => array('hpo_id' => 1976, 'hpo_name' => 'Cerebral atrophy', 'count' => 3), '0334321932352309' => array('hpo_id' => 2035, 'hpo_name' => 'Cerebral cortical atrophy', 'count' => 3), '0332323010363757' => array('hpo_id' => 2259, 'hpo_name' => 'EEG abnormality', 'count' => 3), '0331223436254826' => array('hpo_id' => 6023, 'hpo_name' => 'Focal white matter lesions', 'count' => 3), '0321361917281835' => array('hpo_id' => 1318, 'hpo_name' => 'Partial agenesis of the corpus callosum', 'count' => 3), '0234321932352177' => array('hpo_id' => 5901, 'hpo_name' => 'Cerebellar vermis atrophy', 'count' => 2), '0233322536125543' => array('hpo_id' => 12609, 'hpo_name' => 'Delayed myelination', 'count' => 2), '0233282536179127' => array('hpo_id' => 5961, 'hpo_name' => 'Dilation of lateral ventricles', 'count' => 2), '0233282536178952' => array('hpo_id' => 6045, 'hpo_name' => 'Dilated third ventricle', 'count' => 2), '0233282536174266' => array('hpo_id' => 2111, 'hpo_name' => 'Dilated fourth ventricle', 'count' => 2), '0232323010145173' => array('hpo_id' => 11240, 'hpo_name' => 'EEG with focal epileptiform discharges', 'count' => 2), '0232323010144031' => array('hpo_id' => 11253, 'hpo_name' => 'EEG with generalized epileptiform discharges', 'count' => 2), '0232323010143626' => array('hpo_id' => 11254, 'hpo_name' => 'EEG with generalized sharp slow waves', 'count' => 2), '0136352322198669' => array('hpo_id' => 14856, 'hpo_name' => 'Abnormality of the dentate nucleus', 'count' => 1), '0136212536183622' => array('hpo_id' => 5884, 'hpo_name' => 'Aplasia/Hypoplasia of the cerebellar vermis', 'count' => 1), '0134321932358132' => array('hpo_id' => 5881, 'hpo_name' => 'Cerebral hypomyelination', 'count' => 1), '0134231810295860' => array('hpo_id' => 3229, 'hpo_name' => 'CNS hypomyelination', 'count' => 1), '0133121821252530' => array('hpo_id' => 5984, 'hpo_name' => 'Dysplastic corpus callosum', 'count' => 1), '0132232536198373' => array('hpo_id' => 11495, 'hpo_name' => 'Enlarged fetal cisterna magna', 'count' => 1), '0132232536194658' => array('hpo_id' => 2194, 'hpo_name' => 'Enlarged cisterna magna', 'count' => 1), '0130322332197148' => array('hpo_id' => 6030, 'hpo_name' => 'Generalized cerebral atrophy/hypoplasia', 'count' => 1), '0129122122286929' => array('hpo_id' => 6058, 'hpo_name' => 'Hypointensity of cerebral white matter on MRI', 'count' => 1), '0129122122217346' => array('hpo_id' => 1997, 'hpo_name' => 'Hypoplasia of the corpus callosum', 'count' => 1), '0125321626227331' => array('hpo_id' => 2310, 'hpo_name' => 'Leukodystrophy', 'count' => 1), '0124221921295632' => array('hpo_id' => 1929, 'hpo_name' => 'Morphological abnormality of the central nervous system', 'count' => 1), '0121321928156322' => array('hpo_id' => 12687, 'hpo_name' => 'Perivascular spaces', 'count' => 1), '0121321928153238' => array('hpo_id' => 5974, 'hpo_name' => 'Periventricular leukomalacia', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 12, 'total_count' => 16, 'hpo_array' => array('0924363419229048' => array('hpo_id' => 396, 'hpo_name' => 'Macrotia', 'count' => 9), '0236352322193111' => array('hpo_id' => 366, 'hpo_name' => 'Abnormality of earlobe', 'count' => 2), '0225361930325608' => array('hpo_id' => 9027, 'hpo_name' => 'Large earlobe', 'count' => 2), '0225221410185702' => array('hpo_id' => 372, 'hpo_name' => 'Low-set ears', 'count' => 2))), array('question' => object(Question), 'yes_count' => 11, 'total_count' => 14, 'hpo_array' => array('0533221423186247' => array('hpo_id' => 486, 'hpo_name' => 'Downslanted palpebral fissures', 'count' => 5), '0233323221258670' => array('hpo_id' => 481, 'hpo_name' => 'Deeply set eye', 'count' => 2), '0232212834368697' => array('hpo_id' => 303, 'hpo_name' => 'Epicanthus', 'count' => 2), '0229122132197648' => array('hpo_id' => 330, 'hpo_name' => 'Hypertelorism', 'count' => 2), '0136352322194632' => array('hpo_id' => 529, 'hpo_name' => 'Abnormality of the eyebrow', 'count' => 1), '0118292219179744' => array('hpo_id' => 12940, 'hpo_name' => 'Short palpebral fissure', 'count' => 1), '0118213619188709' => array('hpo_id' => 532, 'hpo_name' => 'Sparse eyebrow', 'count' => 1))), array('question' => object(Question), 'yes_count' => 19, 'total_count' => 23, 'hpo_array' => array('0823361919226029' => array('hpo_id' => 445, 'hpo_name' => 'Narrow nose', 'count' => 8), '0414283332109279' => array('hpo_id' => 13015, 'hpo_name' => 'Wide nasal base', 'count' => 4), '0314283332103113' => array('hpo_id' => 432, 'hpo_name' => 'Wide nose', 'count' => 3), '0236231732156561' => array('hpo_id' => 446, 'hpo_name' => 'Anteverted nares', 'count' => 2), '0233322119327016' => array('hpo_id' => 4746, 'hpo_name' => 'Depressed nasal bridge', 'count' => 2), '0225222330107568' => array('hpo_id' => 3015, 'hpo_name' => 'Long nose', 'count' => 2), '0221192224288306' => array('hpo_id' => 420, 'hpo_name' => 'Prominent nasal bridge', 'count' => 2), '0214283332109876' => array('hpo_id' => 425, 'hpo_name' => 'Wide nasal bridge', 'count' => 2), '0123361919225738' => array('hpo_id' => 11928, 'hpo_name' => 'Narrow nasal tip', 'count' => 1), '0118292219177834' => array('hpo_id' => 3020, 'hpo_name' => 'Short nose', 'count' => 1), '0116233332198100' => array('hpo_id' => 422, 'hpo_name' => 'Underdeveloped nasal alae', 'count' => 1))), array('question' => object(Question), 'yes_count' => 9, 'total_count' => 13, 'hpo_array' => array('0323361919226310' => array('hpo_id' => 182, 'hpo_name' => 'Narrow mouth', 'count' => 3), '0233192222252686' => array('hpo_id' => 2217, 'hpo_name' => 'Drooling', 'count' => 2), '0232153219173720' => array('hpo_id' => 252, 'hpo_name' => 'Everted lower lip vermilion', 'count' => 2), '0224362536195834' => array('hpo_id' => 291, 'hpo_name' => 'Malar flattening', 'count' => 2), '0224283419224182' => array('hpo_id' => 703, 'hpo_name' => 'Microdontia', 'count' => 2), '0222213223105923' => array('hpo_id' => 213, 'hpo_name' => 'Open mouth', 'count' => 2), '0214283332256556' => array('hpo_id' => 699, 'hpo_name' => 'Widely spaced teeth', 'count' => 2), '0129283029104893' => array('hpo_id' => 235, 'hpo_name' => 'High palate', 'count' => 1), '0118292219179243' => array('hpo_id' => 336, 'hpo_name' => 'Short philtrum', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 3, 'total_count' => 4, 'hpo_array' => array('0136352322199706' => array('hpo_id' => 12523, 'hpo_name' => 'Abnormal eye physiology', 'count' => 1), '0136181728304582' => array('hpo_id' => 473, 'hpo_name' => 'Astigmatism', 'count' => 1), '0132132217191331' => array('hpo_id' => 578, 'hpo_name' => 'Exotropia', 'count' => 1), '0118171936359873' => array('hpo_id' => 477, 'hpo_name' => 'Strabismus', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 7, 'total_count' => 14, 'hpo_array' => array('0334222330324970' => array('hpo_id' => 1550, 'hpo_name' => 'Congestive heart failure', 'count' => 3), '0135283416189166' => array('hpo_id' => 1562, 'hpo_name' => 'Bicuspid aortic valve', 'count' => 1), '0135193633124063' => array('hpo_id' => 1574, 'hpo_name' => 'Bradycardia', 'count' => 1), '0124122234362189' => array('hpo_id' => 13025, 'hpo_name' => 'Myocarditis', 'count' => 1), '0121361732236485' => array('hpo_id' => 1569, 'hpo_name' => 'Patent foramen ovale', 'count' => 1), '0121361732234262' => array('hpo_id' => 1558, 'hpo_name' => 'Patent ductus arteriosus', 'count' => 1), '0119283029175801' => array('hpo_id' => 1620, 'hpo_name' => 'Right ventricular failure', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 30, 'total_count' => 31, 'hpo_array' => array(array('hpo_id' => 1937, 'hpo_name' => 'Constipation', 'count' => 17), '0830361817198392' => array('hpo_id' => 1938, 'hpo_name' => 'Gastroesophageal reflux', 'count' => 8), '0731323233283698' => array('hpo_id' => 12077, 'hpo_name' => 'Feeding difficulties', 'count' => 7), '0431323233286203' => array('hpo_id' => 7358, 'hpo_name' => 'Feeding difficulties in infancy', 'count' => 4), '0334291922238385' => array('hpo_id' => 12611, 'hpo_name' => 'Chronic constipation', 'count' => 3), '0333121821291786' => array('hpo_id' => 1933, 'hpo_name' => 'Dysphagia', 'count' => 3), '0236352322198390' => array('hpo_id' => 2172, 'hpo_name' => 'Abnormality of the large intestine', 'count' => 2), '0230361817198958' => array('hpo_id' => 11544, 'hpo_name' => 'Gastrostomy tube feeding in infancy', 'count' => 2), '0136353322249806' => array('hpo_id' => 3090, 'hpo_name' => 'Abdominal distention', 'count' => 1), '0136352322194099' => array('hpo_id' => 2165, 'hpo_name' => 'Abnormality of the small intestine', 'count' => 1), '0136352322193755' => array('hpo_id' => 14348, 'hpo_name' => 'Abnormality of the mesentery', 'count' => 1), '0136352322193066' => array('hpo_id' => 11058, 'hpo_name' => 'Abnormality of the gastrointestinal tract', 'count' => 1), '0135221432255420' => array('hpo_id' => 2468, 'hpo_name' => 'Bowel incontinence', 'count' => 1), '0134291922237306' => array('hpo_id' => 1946, 'hpo_name' => 'Chronic diarrhea', 'count' => 1), '0128231732189770' => array('hpo_id' => 2423, 'hpo_name' => 'Intestinal malrotation', 'count' => 1), '0128231732188833' => array('hpo_id' => 4674, 'hpo_name' => 'Intestinal obstruction', 'count' => 1), '0128231732182589' => array('hpo_id' => 4123, 'hpo_name' => 'Intestinal pseudo-obstruction', 'count' => 1), '0123322223365892' => array('hpo_id' => 4701, 'hpo_name' => 'Neonatal intestinal obstruction', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 8, 'total_count' => 15, 'hpo_array' => array('0433282536176492' => array('hpo_id' => 10982, 'hpo_name' => 'Dilatation of the bladder', 'count' => 4), '0233282536179755' => array('hpo_id' => 10970, 'hpo_name' => 'Dilatation of the renal pelvis', 'count' => 2), '0216192823366207' => array('hpo_id' => 21, 'hpo_name' => 'Urinary incontinence', 'count' => 2), '0136352322199286' => array('hpo_id' => 16, 'hpo_name' => 'Abnormality of the bladder', 'count' => 1), '0136352322199077' => array('hpo_id' => 97, 'hpo_name' => 'Abnormality of the genital system', 'count' => 1), '0136352322193181' => array('hpo_id' => 87, 'hpo_name' => 'Abnormality of the ureter', 'count' => 1), '0131321736253747' => array('hpo_id' => 10983, 'hpo_name' => 'Fetal megacystis', 'count' => 1), '0116232825361347' => array('hpo_id' => 12934, 'hpo_name' => 'Unilateral cryptorchidism', 'count' => 1), '0116192823364250' => array('hpo_id' => 18, 'hpo_name' => 'Urinary retention', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 11, 'total_count' => 14, 'hpo_array' => array('0236352322191252' => array('hpo_id' => 11356, 'hpo_name' => 'Abnormality of digit', 'count' => 2), '0234252823222350' => array('hpo_id' => 13208, 'hpo_name' => 'Clinodactyly', 'count' => 2), '0231193634172404' => array('hpo_id' => 2910, 'hpo_name' => 'Fractures of the long bones', 'count' => 2), '0218253223336681' => array('hpo_id' => 11368, 'hpo_name' => 'Slender toe', 'count' => 2), '0218253223332451' => array('hpo_id' => 1228, 'hpo_name' => 'Slender finger', 'count' => 2), '0136193634293843' => array('hpo_id' => 1173, 'hpo_name' => 'Arachnodactyly', 'count' => 1), '0135192236333941' => array('hpo_id' => 1675, 'hpo_name' => 'Broad foot', 'count' => 1), '0129282110186838' => array('hpo_id' => 13164, 'hpo_name' => 'Hip Subluxation', 'count' => 1), '0127222823178842' => array('hpo_id' => 1352, 'hpo_name' => 'Joint hypermobility', 'count' => 1), '0127222823173920' => array('hpo_id' => 1360, 'hpo_name' => 'Joint laxity', 'count' => 1), '0125222330109267' => array('hpo_id' => 15651, 'hpo_name' => 'Long fingers', 'count' => 1), '0125222330108310' => array('hpo_id' => 1742, 'hpo_name' => 'Long foot', 'count' => 1), '0121253630288588' => array('hpo_id' => 1333, 'hpo_name' => 'Plagiocephaly', 'count' => 1), '0118342225289402' => array('hpo_id' => 2512, 'hpo_name' => 'Scoliosis', 'count' => 1), '0118292219172798' => array('hpo_id' => 1681, 'hpo_name' => 'Short foot', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 2, 'total_count' => 5, 'hpo_array' => array('0217292823102915' => array('hpo_id' => 967, 'hpo_name' => 'Thin skin', 'count' => 2), '0121362525221422' => array('hpo_id' => 986, 'hpo_name' => 'Pallor', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 3, 'total_count' => 6, 'hpo_array' => array('0229122122174113' => array('hpo_id' => 827, 'hpo_name' => 'Hypothyroidism', 'count' => 2), '0121281716287288' => array('hpo_id' => 6922, 'hpo_name' => 'Pituitary hypothyroidism', 'count' => 1))), array('question' => object(Question), 'yes_count' => 2, 'total_count' => 10, 'hpo_array' => array('0131321532198746' => array('hpo_id' => 1857, 'hpo_name' => 'Fever', 'count' => 1), '0128233419325858' => array('hpo_id' => 2060, 'hpo_name' => 'Increased serum lactate', 'count' => 1))), array('question' => object(Question), 'yes_count' => 24, 'total_count' => 27, 'hpo_array' => array(array('hpo_id' => 2121, 'hpo_name' => 'Recurrent respiratory infections', 'count' => 13), '0521233216242818' => array('hpo_id' => 2009, 'hpo_name' => 'Pneumonia', 'count' => 5), '0519323416198543' => array('hpo_id' => 5656, 'hpo_name' => 'Recurrent pneumonia', 'count' => 5), '0519321821289209' => array('hpo_id' => 12053, 'hpo_name' => 'Respiratory tract infection', 'count' => 5), '0236252532199858' => array('hpo_id' => 3017, 'hpo_name' => 'Allergic rhinitis', 'count' => 2), '0234231810289313' => array('hpo_id' => 11522, 'hpo_name' => 'CNS infection', 'count' => 2), '0124322328233746' => array('hpo_id' => 1275, 'hpo_name' => 'Meningitis', 'count' => 1), '0119323416196170' => array('hpo_id' => 5661, 'hpo_name' => 'Recurrent bronchopulmonary infections', 'count' => 1), '0119323416196126' => array('hpo_id' => 2576, 'hpo_name' => 'Recurrent infections', 'count' => 1), '0119323416193741' => array('hpo_id' => 2020, 'hpo_name' => 'Recurrent aspiration pneumonia', 'count' => 1), '0118322118285275' => array('hpo_id' => 15650, 'hpo_name' => 'Sepsis', 'count' => 1)))))), 'lang' => 'front/site/index.'))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/storage/framework/views/0562706b6e74f059c1849b020fb1edc9d46a7de4.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), 'setting' => object(Setting), 'site' => object(Site), 'site_moderators' => object(Collection), 'total_patient' => 37, 'region_data' => array(array('country_count' => 3, 'country_name' => 'Belgium'), array('country_count' => 6, 'country_name' => 'China'), array('country_count' => 11, 'country_name' => 'Netherlands'), array('country_count' => 17, 'country_name' => 'United Kingdom')), 'regionMaxValue' => 17, 'chartData' => array(array(array('category_name' => 'General', 'get_chart_questions' => array(array('question_id' => 3510, 'label' => 'Severity of intellectual disability', 'chart_kind' => 3, 'answer_kind' => 4, 'answer' => array(array('answer' => 'Moderate', 'answer_count' => 3, 'answer_percentage' => 14.0), array('answer' => 'Severe', 'answer_count' => 10, 'answer_percentage' => 45.0), array('answer' => 'Unknown', 'answer_count' => 9, 'answer_percentage' => 41.0))))))), 'majorChartData' => array(array('question' => object(Question), 'yes_count' => 32, 'no_count' => 0, 'unknown_count' => 2, 'total_count' => 34), array('question' => object(Question), 'yes_count' => 27, 'no_count' => 0, 'unknown_count' => 6, 'total_count' => 33), array('question' => object(Question), 'yes_count' => 34, 'no_count' => 2, 'unknown_count' => 0, 'total_count' => 36), array('question' => object(Question), 'yes_count' => 34, 'no_count' => 2, 'unknown_count' => 1, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 15, 'no_count' => 4, 'unknown_count' => 18, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 20, 'no_count' => 5, 'unknown_count' => 12, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 12, 'no_count' => 4, 'unknown_count' => 21, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 11, 'no_count' => 3, 'unknown_count' => 23, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 19, 'no_count' => 4, 'unknown_count' => 14, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 9, 'no_count' => 4, 'unknown_count' => 24, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 3, 'unknown_count' => 34, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 3, 'no_count' => 1, 'unknown_count' => 33, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 7, 'no_count' => 7, 'unknown_count' => 23, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 30, 'no_count' => 1, 'unknown_count' => 6, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 8, 'no_count' => 7, 'unknown_count' => 22, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 11, 'no_count' => 3, 'unknown_count' => 23, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 3, 'unknown_count' => 32, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 3, 'no_count' => 3, 'unknown_count' => 31, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 8, 'unknown_count' => 27, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 24, 'no_count' => 3, 'unknown_count' => 10, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 8, 'unknown_count' => 29, 'total_count' => 37)), 'male_count' => 36, 'female_count' => 1, 'frequency_data' => array(array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'total_count' => 20, 'hpo_count' => 1, 'hpo_array' => array('HP:0003561' => array('hpo_id' => 3332, 'hpo_name' => '< P3 : Birth length less than 3rd percentile', 'count' => 1))), array('question' => object(Question), 'total_count' => 24, 'hpo_count' => 3, 'hpo_array' => array('HP:0001518' => array('hpo_id' => 1467, 'hpo_name' => '< P3 : Small for gestational age', 'count' => 3))), array('question' => object(Question), 'total_count' => 22, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 20, 'hpo_count' => 10, 'hpo_array' => array('HP:0004322' => array('hpo_id' => 4041, 'hpo_name' => '< P3 : Short stature', 'count' => 9), 'HP:0000098' => array('hpo_id' => 114, 'hpo_name' => '> P98 : Tall stature', 'count' => 1))), array('question' => object(Question), 'total_count' => 19, 'hpo_count' => 7, 'hpo_array' => array('HP:0004325' => array('hpo_id' => 4045, 'hpo_name' => '< P3 : Decreased body weight', 'count' => 7))), array('question' => object(Question), 'total_count' => 26, 'hpo_count' => 8, 'hpo_array' => array('HP:0000252' => array('hpo_id' => 274, 'hpo_name' => '< P3 : Microcephaly', 'count' => 6), 'HP:0000256' => array('hpo_id' => 279, 'hpo_name' => '> P98 : Macrocephaly', 'count' => 2))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 34, 'total_count' => 36, 'hpo_array' => array(array('hpo_id' => 1280, 'hpo_name' => 'Generalized hypotonia', 'count' => 23), '0818322811161220' => array('hpo_id' => 1237, 'hpo_name' => 'Seizures', 'count' => 8), '0730322332192540' => array('hpo_id' => 1987, 'hpo_name' => 'Generalized tonic-clonic seizures', 'count' => 7), '0536173613284965' => array('hpo_id' => 1238, 'hpo_name' => 'Ataxia', 'count' => 5), '0530362817102424' => array('hpo_id' => 1983, 'hpo_name' => 'Gait ataxia', 'count' => 5), '0530322332193980' => array('hpo_id' => 2038, 'hpo_name' => 'Generalized myoclonic seizures', 'count' => 5), '0436172223286278' => array('hpo_id' => 10830, 'hpo_name' => 'Atonic seizures', 'count' => 4), '0328233136236977' => array('hpo_id' => 7473, 'hpo_name' => 'Infantile axial hypotonia', 'count' => 3), '0325221432197530' => array('hpo_id' => 1979, 'hpo_name' => 'Lower limb spasticity', 'count' => 3), '0318213618172683' => array('hpo_id' => 1244, 'hpo_name' => 'Spasticity', 'count' => 3), '0236352322196865' => array('hpo_id' => 6134, 'hpo_name' => 'Abnormal pyramidal signs', 'count' => 2), '0234322317197647' => array('hpo_id' => 11462, 'hpo_name' => 'Central hypotonia', 'count' => 2), '0233121817222264' => array('hpo_id' => 1313, 'hpo_name' => 'Dystonia', 'count' => 2), '0231223436255777' => array('hpo_id' => 11220, 'hpo_name' => 'Focal myoclonic seizures', 'count' => 2), '0225282435105444' => array('hpo_id' => 2373, 'hpo_name' => 'Limb hypertonia', 'count' => 2), '0224162517286611' => array('hpo_id' => 10851, 'hpo_name' => 'Multifocal epileptiform discharges', 'count' => 2), '0224122234253821' => array('hpo_id' => 1316, 'hpo_name' => 'Myoclonus', 'count' => 2), '0223322223363967' => array('hpo_id' => 1301, 'hpo_name' => 'Neonatal hypotonia', 'count' => 2), '0221192230194642' => array('hpo_id' => 2104, 'hpo_name' => 'Progressive spasticity', 'count' => 2), '0136353322249959' => array('hpo_id' => 3090, 'hpo_name' => 'Abdominal distention', 'count' => 1), '0136351832234122' => array('hpo_id' => 2036, 'hpo_name' => 'Absence seizures', 'count' => 1), '0135363528237021' => array('hpo_id' => 3277, 'hpo_name' => 'Babinski sign', 'count' => 1), '0134321932356935' => array('hpo_id' => 14353, 'hpo_name' => 'Cerebral palsy', 'count' => 1), '0131363428363319' => array('hpo_id' => 315, 'hpo_name' => 'Facial hypotonia', 'count' => 1), '0131223436258825' => array('hpo_id' => 2289, 'hpo_name' => 'Focal seizures with impairment of consciousness or awareness', 'count' => 1), '0130322332192380' => array('hpo_id' => 10829, 'hpo_name' => 'Generalized tonic seizures', 'count' => 1), '0130322332192149' => array('hpo_id' => 2110, 'hpo_name' => 'Generalized seizures', 'count' => 1), '0129282110347639' => array('hpo_id' => 3093, 'hpo_name' => 'Hip contracture', 'count' => 1), '0129122132194014' => array('hpo_id' => 5877, 'hpo_name' => 'Hyperactive deep tendon reflexes', 'count' => 1), '0126233232108761' => array('hpo_id' => 5500, 'hpo_name' => 'Knee flexion contracture', 'count' => 1), '0125221818106680' => array('hpo_id' => 5874, 'hpo_name' => 'Loss of ability to walk in first decade', 'count' => 1), '0125221432194321' => array('hpo_id' => 5926, 'hpo_name' => 'Lower limb hypertonia', 'count' => 1), '0121222219102391' => array('hpo_id' => 2276, 'hpo_name' => 'Poor coordination', 'count' => 1), '0121192230193660' => array('hpo_id' => 6122, 'hpo_name' => 'Progressive truncal ataxia', 'count' => 1), '0118173219323821' => array('hpo_id' => 12297, 'hpo_name' => 'Stereotypical hand wringing', 'count' => 1), '0117191623341197' => array('hpo_id' => 1996, 'hpo_name' => 'Truncal ataxia', 'count' => 1), '0116231817329348' => array('hpo_id' => 2228, 'hpo_name' => 'Unsteady gait', 'count' => 1))), array('question' => object(Question), 'yes_count' => 15, 'total_count' => 19, 'hpo_array' => array('0736161728181611' => array('hpo_id' => 740, 'hpo_name' => 'Autistic behavior', 'count' => 7), '0618173219327575' => array('hpo_id' => 742, 'hpo_name' => 'Stereotypic behavior', 'count' => 6), '0528242136283302' => array('hpo_id' => 12956, 'hpo_name' => 'Impaired social reciprocity', 'count' => 5), '0521222219101922' => array('hpo_id' => 822, 'hpo_name' => 'Poor eye contact', 'count' => 5), '0428242136285181' => array('hpo_id' => 744, 'hpo_name' => 'Impaired social interactions', 'count' => 4), '0229122132197801' => array('hpo_id' => 764, 'hpo_name' => 'Hyperactivity', 'count' => 2), '0219323416191022' => array('hpo_id' => 14356, 'hpo_name' => 'Recurrent hand flapping', 'count' => 2), '0218173219326971' => array('hpo_id' => 12297, 'hpo_name' => 'Stereotypical hand wringing', 'count' => 2), '0136352322194718' => array('hpo_id' => 15709, 'hpo_name' => 'Abnormal emotion/affect behavior', 'count' => 1), '0136303019323519' => array('hpo_id' => 729, 'hpo_name' => 'Aggressive behavior', 'count' => 1), '0133192222257916' => array('hpo_id' => 2217, 'hpo_name' => 'Drooling', 'count' => 1), '0123221018223408' => array('hpo_id' => 7275, 'hpo_name' => 'No social interaction', 'count' => 1))), array('question' => object(Question), 'yes_count' => 20, 'total_count' => 25, 'hpo_array' => array('0536352322193347' => array('hpo_id' => 2382, 'hpo_name' => 'Abnormality of the periventricular white matter', 'count' => 5), '0334321932359794' => array('hpo_id' => 1976, 'hpo_name' => 'Cerebral atrophy', 'count' => 3), '0334321932352309' => array('hpo_id' => 2035, 'hpo_name' => 'Cerebral cortical atrophy', 'count' => 3), '0332323010363757' => array('hpo_id' => 2259, 'hpo_name' => 'EEG abnormality', 'count' => 3), '0331223436254826' => array('hpo_id' => 6023, 'hpo_name' => 'Focal white matter lesions', 'count' => 3), '0321361917281835' => array('hpo_id' => 1318, 'hpo_name' => 'Partial agenesis of the corpus callosum', 'count' => 3), '0234321932352177' => array('hpo_id' => 5901, 'hpo_name' => 'Cerebellar vermis atrophy', 'count' => 2), '0233322536125543' => array('hpo_id' => 12609, 'hpo_name' => 'Delayed myelination', 'count' => 2), '0233282536179127' => array('hpo_id' => 5961, 'hpo_name' => 'Dilation of lateral ventricles', 'count' => 2), '0233282536178952' => array('hpo_id' => 6045, 'hpo_name' => 'Dilated third ventricle', 'count' => 2), '0233282536174266' => array('hpo_id' => 2111, 'hpo_name' => 'Dilated fourth ventricle', 'count' => 2), '0232323010145173' => array('hpo_id' => 11240, 'hpo_name' => 'EEG with focal epileptiform discharges', 'count' => 2), '0232323010144031' => array('hpo_id' => 11253, 'hpo_name' => 'EEG with generalized epileptiform discharges', 'count' => 2), '0232323010143626' => array('hpo_id' => 11254, 'hpo_name' => 'EEG with generalized sharp slow waves', 'count' => 2), '0136352322198669' => array('hpo_id' => 14856, 'hpo_name' => 'Abnormality of the dentate nucleus', 'count' => 1), '0136212536183622' => array('hpo_id' => 5884, 'hpo_name' => 'Aplasia/Hypoplasia of the cerebellar vermis', 'count' => 1), '0134321932358132' => array('hpo_id' => 5881, 'hpo_name' => 'Cerebral hypomyelination', 'count' => 1), '0134231810295860' => array('hpo_id' => 3229, 'hpo_name' => 'CNS hypomyelination', 'count' => 1), '0133121821252530' => array('hpo_id' => 5984, 'hpo_name' => 'Dysplastic corpus callosum', 'count' => 1), '0132232536198373' => array('hpo_id' => 11495, 'hpo_name' => 'Enlarged fetal cisterna magna', 'count' => 1), '0132232536194658' => array('hpo_id' => 2194, 'hpo_name' => 'Enlarged cisterna magna', 'count' => 1), '0130322332197148' => array('hpo_id' => 6030, 'hpo_name' => 'Generalized cerebral atrophy/hypoplasia', 'count' => 1), '0129122122286929' => array('hpo_id' => 6058, 'hpo_name' => 'Hypointensity of cerebral white matter on MRI', 'count' => 1), '0129122122217346' => array('hpo_id' => 1997, 'hpo_name' => 'Hypoplasia of the corpus callosum', 'count' => 1), '0125321626227331' => array('hpo_id' => 2310, 'hpo_name' => 'Leukodystrophy', 'count' => 1), '0124221921295632' => array('hpo_id' => 1929, 'hpo_name' => 'Morphological abnormality of the central nervous system', 'count' => 1), '0121321928156322' => array('hpo_id' => 12687, 'hpo_name' => 'Perivascular spaces', 'count' => 1), '0121321928153238' => array('hpo_id' => 5974, 'hpo_name' => 'Periventricular leukomalacia', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 12, 'total_count' => 16, 'hpo_array' => array('0924363419229048' => array('hpo_id' => 396, 'hpo_name' => 'Macrotia', 'count' => 9), '0236352322193111' => array('hpo_id' => 366, 'hpo_name' => 'Abnormality of earlobe', 'count' => 2), '0225361930325608' => array('hpo_id' => 9027, 'hpo_name' => 'Large earlobe', 'count' => 2), '0225221410185702' => array('hpo_id' => 372, 'hpo_name' => 'Low-set ears', 'count' => 2))), array('question' => object(Question), 'yes_count' => 11, 'total_count' => 14, 'hpo_array' => array('0533221423186247' => array('hpo_id' => 486, 'hpo_name' => 'Downslanted palpebral fissures', 'count' => 5), '0233323221258670' => array('hpo_id' => 481, 'hpo_name' => 'Deeply set eye', 'count' => 2), '0232212834368697' => array('hpo_id' => 303, 'hpo_name' => 'Epicanthus', 'count' => 2), '0229122132197648' => array('hpo_id' => 330, 'hpo_name' => 'Hypertelorism', 'count' => 2), '0136352322194632' => array('hpo_id' => 529, 'hpo_name' => 'Abnormality of the eyebrow', 'count' => 1), '0118292219179744' => array('hpo_id' => 12940, 'hpo_name' => 'Short palpebral fissure', 'count' => 1), '0118213619188709' => array('hpo_id' => 532, 'hpo_name' => 'Sparse eyebrow', 'count' => 1))), array('question' => object(Question), 'yes_count' => 19, 'total_count' => 23, 'hpo_array' => array('0823361919226029' => array('hpo_id' => 445, 'hpo_name' => 'Narrow nose', 'count' => 8), '0414283332109279' => array('hpo_id' => 13015, 'hpo_name' => 'Wide nasal base', 'count' => 4), '0314283332103113' => array('hpo_id' => 432, 'hpo_name' => 'Wide nose', 'count' => 3), '0236231732156561' => array('hpo_id' => 446, 'hpo_name' => 'Anteverted nares', 'count' => 2), '0233322119327016' => array('hpo_id' => 4746, 'hpo_name' => 'Depressed nasal bridge', 'count' => 2), '0225222330107568' => array('hpo_id' => 3015, 'hpo_name' => 'Long nose', 'count' => 2), '0221192224288306' => array('hpo_id' => 420, 'hpo_name' => 'Prominent nasal bridge', 'count' => 2), '0214283332109876' => array('hpo_id' => 425, 'hpo_name' => 'Wide nasal bridge', 'count' => 2), '0123361919225738' => array('hpo_id' => 11928, 'hpo_name' => 'Narrow nasal tip', 'count' => 1), '0118292219177834' => array('hpo_id' => 3020, 'hpo_name' => 'Short nose', 'count' => 1), '0116233332198100' => array('hpo_id' => 422, 'hpo_name' => 'Underdeveloped nasal alae', 'count' => 1))), array('question' => object(Question), 'yes_count' => 9, 'total_count' => 13, 'hpo_array' => array('0323361919226310' => array('hpo_id' => 182, 'hpo_name' => 'Narrow mouth', 'count' => 3), '0233192222252686' => array('hpo_id' => 2217, 'hpo_name' => 'Drooling', 'count' => 2), '0232153219173720' => array('hpo_id' => 252, 'hpo_name' => 'Everted lower lip vermilion', 'count' => 2), '0224362536195834' => array('hpo_id' => 291, 'hpo_name' => 'Malar flattening', 'count' => 2), '0224283419224182' => array('hpo_id' => 703, 'hpo_name' => 'Microdontia', 'count' => 2), '0222213223105923' => array('hpo_id' => 213, 'hpo_name' => 'Open mouth', 'count' => 2), '0214283332256556' => array('hpo_id' => 699, 'hpo_name' => 'Widely spaced teeth', 'count' => 2), '0129283029104893' => array('hpo_id' => 235, 'hpo_name' => 'High palate', 'count' => 1), '0118292219179243' => array('hpo_id' => 336, 'hpo_name' => 'Short philtrum', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 3, 'total_count' => 4, 'hpo_array' => array('0136352322199706' => array('hpo_id' => 12523, 'hpo_name' => 'Abnormal eye physiology', 'count' => 1), '0136181728304582' => array('hpo_id' => 473, 'hpo_name' => 'Astigmatism', 'count' => 1), '0132132217191331' => array('hpo_id' => 578, 'hpo_name' => 'Exotropia', 'count' => 1), '0118171936359873' => array('hpo_id' => 477, 'hpo_name' => 'Strabismus', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 7, 'total_count' => 14, 'hpo_array' => array('0334222330324970' => array('hpo_id' => 1550, 'hpo_name' => 'Congestive heart failure', 'count' => 3), '0135283416189166' => array('hpo_id' => 1562, 'hpo_name' => 'Bicuspid aortic valve', 'count' => 1), '0135193633124063' => array('hpo_id' => 1574, 'hpo_name' => 'Bradycardia', 'count' => 1), '0124122234362189' => array('hpo_id' => 13025, 'hpo_name' => 'Myocarditis', 'count' => 1), '0121361732236485' => array('hpo_id' => 1569, 'hpo_name' => 'Patent foramen ovale', 'count' => 1), '0121361732234262' => array('hpo_id' => 1558, 'hpo_name' => 'Patent ductus arteriosus', 'count' => 1), '0119283029175801' => array('hpo_id' => 1620, 'hpo_name' => 'Right ventricular failure', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 30, 'total_count' => 31, 'hpo_array' => array(array('hpo_id' => 1937, 'hpo_name' => 'Constipation', 'count' => 17), '0830361817198392' => array('hpo_id' => 1938, 'hpo_name' => 'Gastroesophageal reflux', 'count' => 8), '0731323233283698' => array('hpo_id' => 12077, 'hpo_name' => 'Feeding difficulties', 'count' => 7), '0431323233286203' => array('hpo_id' => 7358, 'hpo_name' => 'Feeding difficulties in infancy', 'count' => 4), '0334291922238385' => array('hpo_id' => 12611, 'hpo_name' => 'Chronic constipation', 'count' => 3), '0333121821291786' => array('hpo_id' => 1933, 'hpo_name' => 'Dysphagia', 'count' => 3), '0236352322198390' => array('hpo_id' => 2172, 'hpo_name' => 'Abnormality of the large intestine', 'count' => 2), '0230361817198958' => array('hpo_id' => 11544, 'hpo_name' => 'Gastrostomy tube feeding in infancy', 'count' => 2), '0136353322249806' => array('hpo_id' => 3090, 'hpo_name' => 'Abdominal distention', 'count' => 1), '0136352322194099' => array('hpo_id' => 2165, 'hpo_name' => 'Abnormality of the small intestine', 'count' => 1), '0136352322193755' => array('hpo_id' => 14348, 'hpo_name' => 'Abnormality of the mesentery', 'count' => 1), '0136352322193066' => array('hpo_id' => 11058, 'hpo_name' => 'Abnormality of the gastrointestinal tract', 'count' => 1), '0135221432255420' => array('hpo_id' => 2468, 'hpo_name' => 'Bowel incontinence', 'count' => 1), '0134291922237306' => array('hpo_id' => 1946, 'hpo_name' => 'Chronic diarrhea', 'count' => 1), '0128231732189770' => array('hpo_id' => 2423, 'hpo_name' => 'Intestinal malrotation', 'count' => 1), '0128231732188833' => array('hpo_id' => 4674, 'hpo_name' => 'Intestinal obstruction', 'count' => 1), '0128231732182589' => array('hpo_id' => 4123, 'hpo_name' => 'Intestinal pseudo-obstruction', 'count' => 1), '0123322223365892' => array('hpo_id' => 4701, 'hpo_name' => 'Neonatal intestinal obstruction', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 8, 'total_count' => 15, 'hpo_array' => array('0433282536176492' => array('hpo_id' => 10982, 'hpo_name' => 'Dilatation of the bladder', 'count' => 4), '0233282536179755' => array('hpo_id' => 10970, 'hpo_name' => 'Dilatation of the renal pelvis', 'count' => 2), '0216192823366207' => array('hpo_id' => 21, 'hpo_name' => 'Urinary incontinence', 'count' => 2), '0136352322199286' => array('hpo_id' => 16, 'hpo_name' => 'Abnormality of the bladder', 'count' => 1), '0136352322199077' => array('hpo_id' => 97, 'hpo_name' => 'Abnormality of the genital system', 'count' => 1), '0136352322193181' => array('hpo_id' => 87, 'hpo_name' => 'Abnormality of the ureter', 'count' => 1), '0131321736253747' => array('hpo_id' => 10983, 'hpo_name' => 'Fetal megacystis', 'count' => 1), '0116232825361347' => array('hpo_id' => 12934, 'hpo_name' => 'Unilateral cryptorchidism', 'count' => 1), '0116192823364250' => array('hpo_id' => 18, 'hpo_name' => 'Urinary retention', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 11, 'total_count' => 14, 'hpo_array' => array('0236352322191252' => array('hpo_id' => 11356, 'hpo_name' => 'Abnormality of digit', 'count' => 2), '0234252823222350' => array('hpo_id' => 13208, 'hpo_name' => 'Clinodactyly', 'count' => 2), '0231193634172404' => array('hpo_id' => 2910, 'hpo_name' => 'Fractures of the long bones', 'count' => 2), '0218253223336681' => array('hpo_id' => 11368, 'hpo_name' => 'Slender toe', 'count' => 2), '0218253223332451' => array('hpo_id' => 1228, 'hpo_name' => 'Slender finger', 'count' => 2), '0136193634293843' => array('hpo_id' => 1173, 'hpo_name' => 'Arachnodactyly', 'count' => 1), '0135192236333941' => array('hpo_id' => 1675, 'hpo_name' => 'Broad foot', 'count' => 1), '0129282110186838' => array('hpo_id' => 13164, 'hpo_name' => 'Hip Subluxation', 'count' => 1), '0127222823178842' => array('hpo_id' => 1352, 'hpo_name' => 'Joint hypermobility', 'count' => 1), '0127222823173920' => array('hpo_id' => 1360, 'hpo_name' => 'Joint laxity', 'count' => 1), '0125222330109267' => array('hpo_id' => 15651, 'hpo_name' => 'Long fingers', 'count' => 1), '0125222330108310' => array('hpo_id' => 1742, 'hpo_name' => 'Long foot', 'count' => 1), '0121253630288588' => array('hpo_id' => 1333, 'hpo_name' => 'Plagiocephaly', 'count' => 1), '0118342225289402' => array('hpo_id' => 2512, 'hpo_name' => 'Scoliosis', 'count' => 1), '0118292219172798' => array('hpo_id' => 1681, 'hpo_name' => 'Short foot', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 2, 'total_count' => 5, 'hpo_array' => array('0217292823102915' => array('hpo_id' => 967, 'hpo_name' => 'Thin skin', 'count' => 2), '0121362525221422' => array('hpo_id' => 986, 'hpo_name' => 'Pallor', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 3, 'total_count' => 6, 'hpo_array' => array('0229122122174113' => array('hpo_id' => 827, 'hpo_name' => 'Hypothyroidism', 'count' => 2), '0121281716287288' => array('hpo_id' => 6922, 'hpo_name' => 'Pituitary hypothyroidism', 'count' => 1))), array('question' => object(Question), 'yes_count' => 2, 'total_count' => 10, 'hpo_array' => array('0131321532198746' => array('hpo_id' => 1857, 'hpo_name' => 'Fever', 'count' => 1), '0128233419325858' => array('hpo_id' => 2060, 'hpo_name' => 'Increased serum lactate', 'count' => 1))), array('question' => object(Question), 'yes_count' => 24, 'total_count' => 27, 'hpo_array' => array(array('hpo_id' => 2121, 'hpo_name' => 'Recurrent respiratory infections', 'count' => 13), '0521233216242818' => array('hpo_id' => 2009, 'hpo_name' => 'Pneumonia', 'count' => 5), '0519323416198543' => array('hpo_id' => 5656, 'hpo_name' => 'Recurrent pneumonia', 'count' => 5), '0519321821289209' => array('hpo_id' => 12053, 'hpo_name' => 'Respiratory tract infection', 'count' => 5), '0236252532199858' => array('hpo_id' => 3017, 'hpo_name' => 'Allergic rhinitis', 'count' => 2), '0234231810289313' => array('hpo_id' => 11522, 'hpo_name' => 'CNS infection', 'count' => 2), '0124322328233746' => array('hpo_id' => 1275, 'hpo_name' => 'Meningitis', 'count' => 1), '0119323416196170' => array('hpo_id' => 5661, 'hpo_name' => 'Recurrent bronchopulmonary infections', 'count' => 1), '0119323416196126' => array('hpo_id' => 2576, 'hpo_name' => 'Recurrent infections', 'count' => 1), '0119323416193741' => array('hpo_id' => 2020, 'hpo_name' => 'Recurrent aspiration pneumonia', 'count' => 1), '0118322118285275' => array('hpo_id' => 15650, 'hpo_name' => 'Sepsis', 'count' => 1)))))), 'lang' => 'front/site/index.'))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:61)
  at Illuminate\View\Engines\CompilerEngine->get('/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/resources/views/front/site/pdf-graphs.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), 'setting' => object(Setting), 'site' => object(Site), 'site_moderators' => object(Collection), 'total_patient' => 37, 'region_data' => array(array('country_count' => 3, 'country_name' => 'Belgium'), array('country_count' => 6, 'country_name' => 'China'), array('country_count' => 11, 'country_name' => 'Netherlands'), array('country_count' => 17, 'country_name' => 'United Kingdom')), 'regionMaxValue' => 17, 'chartData' => array(array(array('category_name' => 'General', 'get_chart_questions' => array(array('question_id' => 3510, 'label' => 'Severity of intellectual disability', 'chart_kind' => 3, 'answer_kind' => 4, 'answer' => array(array('answer' => 'Moderate', 'answer_count' => 3, 'answer_percentage' => 14.0), array('answer' => 'Severe', 'answer_count' => 10, 'answer_percentage' => 45.0), array('answer' => 'Unknown', 'answer_count' => 9, 'answer_percentage' => 41.0))))))), 'majorChartData' => array(array('question' => object(Question), 'yes_count' => 32, 'no_count' => 0, 'unknown_count' => 2, 'total_count' => 34), array('question' => object(Question), 'yes_count' => 27, 'no_count' => 0, 'unknown_count' => 6, 'total_count' => 33), array('question' => object(Question), 'yes_count' => 34, 'no_count' => 2, 'unknown_count' => 0, 'total_count' => 36), array('question' => object(Question), 'yes_count' => 34, 'no_count' => 2, 'unknown_count' => 1, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 15, 'no_count' => 4, 'unknown_count' => 18, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 20, 'no_count' => 5, 'unknown_count' => 12, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 12, 'no_count' => 4, 'unknown_count' => 21, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 11, 'no_count' => 3, 'unknown_count' => 23, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 19, 'no_count' => 4, 'unknown_count' => 14, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 9, 'no_count' => 4, 'unknown_count' => 24, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 3, 'unknown_count' => 34, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 3, 'no_count' => 1, 'unknown_count' => 33, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 7, 'no_count' => 7, 'unknown_count' => 23, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 30, 'no_count' => 1, 'unknown_count' => 6, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 8, 'no_count' => 7, 'unknown_count' => 22, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 11, 'no_count' => 3, 'unknown_count' => 23, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 3, 'unknown_count' => 32, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 3, 'no_count' => 3, 'unknown_count' => 31, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 2, 'no_count' => 8, 'unknown_count' => 27, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 24, 'no_count' => 3, 'unknown_count' => 10, 'total_count' => 37), array('question' => object(Question), 'yes_count' => 0, 'no_count' => 8, 'unknown_count' => 29, 'total_count' => 37)), 'male_count' => 36, 'female_count' => 1, 'frequency_data' => array(array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'total_count' => 20, 'hpo_count' => 1, 'hpo_array' => array('HP:0003561' => array('hpo_id' => 3332, 'hpo_name' => '< P3 : Birth length less than 3rd percentile', 'count' => 1))), array('question' => object(Question), 'total_count' => 24, 'hpo_count' => 3, 'hpo_array' => array('HP:0001518' => array('hpo_id' => 1467, 'hpo_name' => '< P3 : Small for gestational age', 'count' => 3))), array('question' => object(Question), 'total_count' => 22, 'hpo_count' => 0, 'hpo_array' => array()), array('question' => object(Question), 'total_count' => 20, 'hpo_count' => 10, 'hpo_array' => array('HP:0004322' => array('hpo_id' => 4041, 'hpo_name' => '< P3 : Short stature', 'count' => 9), 'HP:0000098' => array('hpo_id' => 114, 'hpo_name' => '> P98 : Tall stature', 'count' => 1))), array('question' => object(Question), 'total_count' => 19, 'hpo_count' => 7, 'hpo_array' => array('HP:0004325' => array('hpo_id' => 4045, 'hpo_name' => '< P3 : Decreased body weight', 'count' => 7))), array('question' => object(Question), 'total_count' => 26, 'hpo_count' => 8, 'hpo_array' => array('HP:0000252' => array('hpo_id' => 274, 'hpo_name' => '< P3 : Microcephaly', 'count' => 6), 'HP:0000256' => array('hpo_id' => 279, 'hpo_name' => '> P98 : Macrocephaly', 'count' => 2))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 34, 'total_count' => 36, 'hpo_array' => array(array('hpo_id' => 1280, 'hpo_name' => 'Generalized hypotonia', 'count' => 23), '0818322811161220' => array('hpo_id' => 1237, 'hpo_name' => 'Seizures', 'count' => 8), '0730322332192540' => array('hpo_id' => 1987, 'hpo_name' => 'Generalized tonic-clonic seizures', 'count' => 7), '0536173613284965' => array('hpo_id' => 1238, 'hpo_name' => 'Ataxia', 'count' => 5), '0530362817102424' => array('hpo_id' => 1983, 'hpo_name' => 'Gait ataxia', 'count' => 5), '0530322332193980' => array('hpo_id' => 2038, 'hpo_name' => 'Generalized myoclonic seizures', 'count' => 5), '0436172223286278' => array('hpo_id' => 10830, 'hpo_name' => 'Atonic seizures', 'count' => 4), '0328233136236977' => array('hpo_id' => 7473, 'hpo_name' => 'Infantile axial hypotonia', 'count' => 3), '0325221432197530' => array('hpo_id' => 1979, 'hpo_name' => 'Lower limb spasticity', 'count' => 3), '0318213618172683' => array('hpo_id' => 1244, 'hpo_name' => 'Spasticity', 'count' => 3), '0236352322196865' => array('hpo_id' => 6134, 'hpo_name' => 'Abnormal pyramidal signs', 'count' => 2), '0234322317197647' => array('hpo_id' => 11462, 'hpo_name' => 'Central hypotonia', 'count' => 2), '0233121817222264' => array('hpo_id' => 1313, 'hpo_name' => 'Dystonia', 'count' => 2), '0231223436255777' => array('hpo_id' => 11220, 'hpo_name' => 'Focal myoclonic seizures', 'count' => 2), '0225282435105444' => array('hpo_id' => 2373, 'hpo_name' => 'Limb hypertonia', 'count' => 2), '0224162517286611' => array('hpo_id' => 10851, 'hpo_name' => 'Multifocal epileptiform discharges', 'count' => 2), '0224122234253821' => array('hpo_id' => 1316, 'hpo_name' => 'Myoclonus', 'count' => 2), '0223322223363967' => array('hpo_id' => 1301, 'hpo_name' => 'Neonatal hypotonia', 'count' => 2), '0221192230194642' => array('hpo_id' => 2104, 'hpo_name' => 'Progressive spasticity', 'count' => 2), '0136353322249959' => array('hpo_id' => 3090, 'hpo_name' => 'Abdominal distention', 'count' => 1), '0136351832234122' => array('hpo_id' => 2036, 'hpo_name' => 'Absence seizures', 'count' => 1), '0135363528237021' => array('hpo_id' => 3277, 'hpo_name' => 'Babinski sign', 'count' => 1), '0134321932356935' => array('hpo_id' => 14353, 'hpo_name' => 'Cerebral palsy', 'count' => 1), '0131363428363319' => array('hpo_id' => 315, 'hpo_name' => 'Facial hypotonia', 'count' => 1), '0131223436258825' => array('hpo_id' => 2289, 'hpo_name' => 'Focal seizures with impairment of consciousness or awareness', 'count' => 1), '0130322332192380' => array('hpo_id' => 10829, 'hpo_name' => 'Generalized tonic seizures', 'count' => 1), '0130322332192149' => array('hpo_id' => 2110, 'hpo_name' => 'Generalized seizures', 'count' => 1), '0129282110347639' => array('hpo_id' => 3093, 'hpo_name' => 'Hip contracture', 'count' => 1), '0129122132194014' => array('hpo_id' => 5877, 'hpo_name' => 'Hyperactive deep tendon reflexes', 'count' => 1), '0126233232108761' => array('hpo_id' => 5500, 'hpo_name' => 'Knee flexion contracture', 'count' => 1), '0125221818106680' => array('hpo_id' => 5874, 'hpo_name' => 'Loss of ability to walk in first decade', 'count' => 1), '0125221432194321' => array('hpo_id' => 5926, 'hpo_name' => 'Lower limb hypertonia', 'count' => 1), '0121222219102391' => array('hpo_id' => 2276, 'hpo_name' => 'Poor coordination', 'count' => 1), '0121192230193660' => array('hpo_id' => 6122, 'hpo_name' => 'Progressive truncal ataxia', 'count' => 1), '0118173219323821' => array('hpo_id' => 12297, 'hpo_name' => 'Stereotypical hand wringing', 'count' => 1), '0117191623341197' => array('hpo_id' => 1996, 'hpo_name' => 'Truncal ataxia', 'count' => 1), '0116231817329348' => array('hpo_id' => 2228, 'hpo_name' => 'Unsteady gait', 'count' => 1))), array('question' => object(Question), 'yes_count' => 15, 'total_count' => 19, 'hpo_array' => array('0736161728181611' => array('hpo_id' => 740, 'hpo_name' => 'Autistic behavior', 'count' => 7), '0618173219327575' => array('hpo_id' => 742, 'hpo_name' => 'Stereotypic behavior', 'count' => 6), '0528242136283302' => array('hpo_id' => 12956, 'hpo_name' => 'Impaired social reciprocity', 'count' => 5), '0521222219101922' => array('hpo_id' => 822, 'hpo_name' => 'Poor eye contact', 'count' => 5), '0428242136285181' => array('hpo_id' => 744, 'hpo_name' => 'Impaired social interactions', 'count' => 4), '0229122132197801' => array('hpo_id' => 764, 'hpo_name' => 'Hyperactivity', 'count' => 2), '0219323416191022' => array('hpo_id' => 14356, 'hpo_name' => 'Recurrent hand flapping', 'count' => 2), '0218173219326971' => array('hpo_id' => 12297, 'hpo_name' => 'Stereotypical hand wringing', 'count' => 2), '0136352322194718' => array('hpo_id' => 15709, 'hpo_name' => 'Abnormal emotion/affect behavior', 'count' => 1), '0136303019323519' => array('hpo_id' => 729, 'hpo_name' => 'Aggressive behavior', 'count' => 1), '0133192222257916' => array('hpo_id' => 2217, 'hpo_name' => 'Drooling', 'count' => 1), '0123221018223408' => array('hpo_id' => 7275, 'hpo_name' => 'No social interaction', 'count' => 1))), array('question' => object(Question), 'yes_count' => 20, 'total_count' => 25, 'hpo_array' => array('0536352322193347' => array('hpo_id' => 2382, 'hpo_name' => 'Abnormality of the periventricular white matter', 'count' => 5), '0334321932359794' => array('hpo_id' => 1976, 'hpo_name' => 'Cerebral atrophy', 'count' => 3), '0334321932352309' => array('hpo_id' => 2035, 'hpo_name' => 'Cerebral cortical atrophy', 'count' => 3), '0332323010363757' => array('hpo_id' => 2259, 'hpo_name' => 'EEG abnormality', 'count' => 3), '0331223436254826' => array('hpo_id' => 6023, 'hpo_name' => 'Focal white matter lesions', 'count' => 3), '0321361917281835' => array('hpo_id' => 1318, 'hpo_name' => 'Partial agenesis of the corpus callosum', 'count' => 3), '0234321932352177' => array('hpo_id' => 5901, 'hpo_name' => 'Cerebellar vermis atrophy', 'count' => 2), '0233322536125543' => array('hpo_id' => 12609, 'hpo_name' => 'Delayed myelination', 'count' => 2), '0233282536179127' => array('hpo_id' => 5961, 'hpo_name' => 'Dilation of lateral ventricles', 'count' => 2), '0233282536178952' => array('hpo_id' => 6045, 'hpo_name' => 'Dilated third ventricle', 'count' => 2), '0233282536174266' => array('hpo_id' => 2111, 'hpo_name' => 'Dilated fourth ventricle', 'count' => 2), '0232323010145173' => array('hpo_id' => 11240, 'hpo_name' => 'EEG with focal epileptiform discharges', 'count' => 2), '0232323010144031' => array('hpo_id' => 11253, 'hpo_name' => 'EEG with generalized epileptiform discharges', 'count' => 2), '0232323010143626' => array('hpo_id' => 11254, 'hpo_name' => 'EEG with generalized sharp slow waves', 'count' => 2), '0136352322198669' => array('hpo_id' => 14856, 'hpo_name' => 'Abnormality of the dentate nucleus', 'count' => 1), '0136212536183622' => array('hpo_id' => 5884, 'hpo_name' => 'Aplasia/Hypoplasia of the cerebellar vermis', 'count' => 1), '0134321932358132' => array('hpo_id' => 5881, 'hpo_name' => 'Cerebral hypomyelination', 'count' => 1), '0134231810295860' => array('hpo_id' => 3229, 'hpo_name' => 'CNS hypomyelination', 'count' => 1), '0133121821252530' => array('hpo_id' => 5984, 'hpo_name' => 'Dysplastic corpus callosum', 'count' => 1), '0132232536198373' => array('hpo_id' => 11495, 'hpo_name' => 'Enlarged fetal cisterna magna', 'count' => 1), '0132232536194658' => array('hpo_id' => 2194, 'hpo_name' => 'Enlarged cisterna magna', 'count' => 1), '0130322332197148' => array('hpo_id' => 6030, 'hpo_name' => 'Generalized cerebral atrophy/hypoplasia', 'count' => 1), '0129122122286929' => array('hpo_id' => 6058, 'hpo_name' => 'Hypointensity of cerebral white matter on MRI', 'count' => 1), '0129122122217346' => array('hpo_id' => 1997, 'hpo_name' => 'Hypoplasia of the corpus callosum', 'count' => 1), '0125321626227331' => array('hpo_id' => 2310, 'hpo_name' => 'Leukodystrophy', 'count' => 1), '0124221921295632' => array('hpo_id' => 1929, 'hpo_name' => 'Morphological abnormality of the central nervous system', 'count' => 1), '0121321928156322' => array('hpo_id' => 12687, 'hpo_name' => 'Perivascular spaces', 'count' => 1), '0121321928153238' => array('hpo_id' => 5974, 'hpo_name' => 'Periventricular leukomalacia', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 12, 'total_count' => 16, 'hpo_array' => array('0924363419229048' => array('hpo_id' => 396, 'hpo_name' => 'Macrotia', 'count' => 9), '0236352322193111' => array('hpo_id' => 366, 'hpo_name' => 'Abnormality of earlobe', 'count' => 2), '0225361930325608' => array('hpo_id' => 9027, 'hpo_name' => 'Large earlobe', 'count' => 2), '0225221410185702' => array('hpo_id' => 372, 'hpo_name' => 'Low-set ears', 'count' => 2))), array('question' => object(Question), 'yes_count' => 11, 'total_count' => 14, 'hpo_array' => array('0533221423186247' => array('hpo_id' => 486, 'hpo_name' => 'Downslanted palpebral fissures', 'count' => 5), '0233323221258670' => array('hpo_id' => 481, 'hpo_name' => 'Deeply set eye', 'count' => 2), '0232212834368697' => array('hpo_id' => 303, 'hpo_name' => 'Epicanthus', 'count' => 2), '0229122132197648' => array('hpo_id' => 330, 'hpo_name' => 'Hypertelorism', 'count' => 2), '0136352322194632' => array('hpo_id' => 529, 'hpo_name' => 'Abnormality of the eyebrow', 'count' => 1), '0118292219179744' => array('hpo_id' => 12940, 'hpo_name' => 'Short palpebral fissure', 'count' => 1), '0118213619188709' => array('hpo_id' => 532, 'hpo_name' => 'Sparse eyebrow', 'count' => 1))), array('question' => object(Question), 'yes_count' => 19, 'total_count' => 23, 'hpo_array' => array('0823361919226029' => array('hpo_id' => 445, 'hpo_name' => 'Narrow nose', 'count' => 8), '0414283332109279' => array('hpo_id' => 13015, 'hpo_name' => 'Wide nasal base', 'count' => 4), '0314283332103113' => array('hpo_id' => 432, 'hpo_name' => 'Wide nose', 'count' => 3), '0236231732156561' => array('hpo_id' => 446, 'hpo_name' => 'Anteverted nares', 'count' => 2), '0233322119327016' => array('hpo_id' => 4746, 'hpo_name' => 'Depressed nasal bridge', 'count' => 2), '0225222330107568' => array('hpo_id' => 3015, 'hpo_name' => 'Long nose', 'count' => 2), '0221192224288306' => array('hpo_id' => 420, 'hpo_name' => 'Prominent nasal bridge', 'count' => 2), '0214283332109876' => array('hpo_id' => 425, 'hpo_name' => 'Wide nasal bridge', 'count' => 2), '0123361919225738' => array('hpo_id' => 11928, 'hpo_name' => 'Narrow nasal tip', 'count' => 1), '0118292219177834' => array('hpo_id' => 3020, 'hpo_name' => 'Short nose', 'count' => 1), '0116233332198100' => array('hpo_id' => 422, 'hpo_name' => 'Underdeveloped nasal alae', 'count' => 1))), array('question' => object(Question), 'yes_count' => 9, 'total_count' => 13, 'hpo_array' => array('0323361919226310' => array('hpo_id' => 182, 'hpo_name' => 'Narrow mouth', 'count' => 3), '0233192222252686' => array('hpo_id' => 2217, 'hpo_name' => 'Drooling', 'count' => 2), '0232153219173720' => array('hpo_id' => 252, 'hpo_name' => 'Everted lower lip vermilion', 'count' => 2), '0224362536195834' => array('hpo_id' => 291, 'hpo_name' => 'Malar flattening', 'count' => 2), '0224283419224182' => array('hpo_id' => 703, 'hpo_name' => 'Microdontia', 'count' => 2), '0222213223105923' => array('hpo_id' => 213, 'hpo_name' => 'Open mouth', 'count' => 2), '0214283332256556' => array('hpo_id' => 699, 'hpo_name' => 'Widely spaced teeth', 'count' => 2), '0129283029104893' => array('hpo_id' => 235, 'hpo_name' => 'High palate', 'count' => 1), '0118292219179243' => array('hpo_id' => 336, 'hpo_name' => 'Short philtrum', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 3, 'total_count' => 4, 'hpo_array' => array('0136352322199706' => array('hpo_id' => 12523, 'hpo_name' => 'Abnormal eye physiology', 'count' => 1), '0136181728304582' => array('hpo_id' => 473, 'hpo_name' => 'Astigmatism', 'count' => 1), '0132132217191331' => array('hpo_id' => 578, 'hpo_name' => 'Exotropia', 'count' => 1), '0118171936359873' => array('hpo_id' => 477, 'hpo_name' => 'Strabismus', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 7, 'total_count' => 14, 'hpo_array' => array('0334222330324970' => array('hpo_id' => 1550, 'hpo_name' => 'Congestive heart failure', 'count' => 3), '0135283416189166' => array('hpo_id' => 1562, 'hpo_name' => 'Bicuspid aortic valve', 'count' => 1), '0135193633124063' => array('hpo_id' => 1574, 'hpo_name' => 'Bradycardia', 'count' => 1), '0124122234362189' => array('hpo_id' => 13025, 'hpo_name' => 'Myocarditis', 'count' => 1), '0121361732236485' => array('hpo_id' => 1569, 'hpo_name' => 'Patent foramen ovale', 'count' => 1), '0121361732234262' => array('hpo_id' => 1558, 'hpo_name' => 'Patent ductus arteriosus', 'count' => 1), '0119283029175801' => array('hpo_id' => 1620, 'hpo_name' => 'Right ventricular failure', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 30, 'total_count' => 31, 'hpo_array' => array(array('hpo_id' => 1937, 'hpo_name' => 'Constipation', 'count' => 17), '0830361817198392' => array('hpo_id' => 1938, 'hpo_name' => 'Gastroesophageal reflux', 'count' => 8), '0731323233283698' => array('hpo_id' => 12077, 'hpo_name' => 'Feeding difficulties', 'count' => 7), '0431323233286203' => array('hpo_id' => 7358, 'hpo_name' => 'Feeding difficulties in infancy', 'count' => 4), '0334291922238385' => array('hpo_id' => 12611, 'hpo_name' => 'Chronic constipation', 'count' => 3), '0333121821291786' => array('hpo_id' => 1933, 'hpo_name' => 'Dysphagia', 'count' => 3), '0236352322198390' => array('hpo_id' => 2172, 'hpo_name' => 'Abnormality of the large intestine', 'count' => 2), '0230361817198958' => array('hpo_id' => 11544, 'hpo_name' => 'Gastrostomy tube feeding in infancy', 'count' => 2), '0136353322249806' => array('hpo_id' => 3090, 'hpo_name' => 'Abdominal distention', 'count' => 1), '0136352322194099' => array('hpo_id' => 2165, 'hpo_name' => 'Abnormality of the small intestine', 'count' => 1), '0136352322193755' => array('hpo_id' => 14348, 'hpo_name' => 'Abnormality of the mesentery', 'count' => 1), '0136352322193066' => array('hpo_id' => 11058, 'hpo_name' => 'Abnormality of the gastrointestinal tract', 'count' => 1), '0135221432255420' => array('hpo_id' => 2468, 'hpo_name' => 'Bowel incontinence', 'count' => 1), '0134291922237306' => array('hpo_id' => 1946, 'hpo_name' => 'Chronic diarrhea', 'count' => 1), '0128231732189770' => array('hpo_id' => 2423, 'hpo_name' => 'Intestinal malrotation', 'count' => 1), '0128231732188833' => array('hpo_id' => 4674, 'hpo_name' => 'Intestinal obstruction', 'count' => 1), '0128231732182589' => array('hpo_id' => 4123, 'hpo_name' => 'Intestinal pseudo-obstruction', 'count' => 1), '0123322223365892' => array('hpo_id' => 4701, 'hpo_name' => 'Neonatal intestinal obstruction', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 8, 'total_count' => 15, 'hpo_array' => array('0433282536176492' => array('hpo_id' => 10982, 'hpo_name' => 'Dilatation of the bladder', 'count' => 4), '0233282536179755' => array('hpo_id' => 10970, 'hpo_name' => 'Dilatation of the renal pelvis', 'count' => 2), '0216192823366207' => array('hpo_id' => 21, 'hpo_name' => 'Urinary incontinence', 'count' => 2), '0136352322199286' => array('hpo_id' => 16, 'hpo_name' => 'Abnormality of the bladder', 'count' => 1), '0136352322199077' => array('hpo_id' => 97, 'hpo_name' => 'Abnormality of the genital system', 'count' => 1), '0136352322193181' => array('hpo_id' => 87, 'hpo_name' => 'Abnormality of the ureter', 'count' => 1), '0131321736253747' => array('hpo_id' => 10983, 'hpo_name' => 'Fetal megacystis', 'count' => 1), '0116232825361347' => array('hpo_id' => 12934, 'hpo_name' => 'Unilateral cryptorchidism', 'count' => 1), '0116192823364250' => array('hpo_id' => 18, 'hpo_name' => 'Urinary retention', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 11, 'total_count' => 14, 'hpo_array' => array('0236352322191252' => array('hpo_id' => 11356, 'hpo_name' => 'Abnormality of digit', 'count' => 2), '0234252823222350' => array('hpo_id' => 13208, 'hpo_name' => 'Clinodactyly', 'count' => 2), '0231193634172404' => array('hpo_id' => 2910, 'hpo_name' => 'Fractures of the long bones', 'count' => 2), '0218253223336681' => array('hpo_id' => 11368, 'hpo_name' => 'Slender toe', 'count' => 2), '0218253223332451' => array('hpo_id' => 1228, 'hpo_name' => 'Slender finger', 'count' => 2), '0136193634293843' => array('hpo_id' => 1173, 'hpo_name' => 'Arachnodactyly', 'count' => 1), '0135192236333941' => array('hpo_id' => 1675, 'hpo_name' => 'Broad foot', 'count' => 1), '0129282110186838' => array('hpo_id' => 13164, 'hpo_name' => 'Hip Subluxation', 'count' => 1), '0127222823178842' => array('hpo_id' => 1352, 'hpo_name' => 'Joint hypermobility', 'count' => 1), '0127222823173920' => array('hpo_id' => 1360, 'hpo_name' => 'Joint laxity', 'count' => 1), '0125222330109267' => array('hpo_id' => 15651, 'hpo_name' => 'Long fingers', 'count' => 1), '0125222330108310' => array('hpo_id' => 1742, 'hpo_name' => 'Long foot', 'count' => 1), '0121253630288588' => array('hpo_id' => 1333, 'hpo_name' => 'Plagiocephaly', 'count' => 1), '0118342225289402' => array('hpo_id' => 2512, 'hpo_name' => 'Scoliosis', 'count' => 1), '0118292219172798' => array('hpo_id' => 1681, 'hpo_name' => 'Short foot', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 2, 'total_count' => 5, 'hpo_array' => array('0217292823102915' => array('hpo_id' => 967, 'hpo_name' => 'Thin skin', 'count' => 2), '0121362525221422' => array('hpo_id' => 986, 'hpo_name' => 'Pallor', 'count' => 1))))), array('category' => object(QuestionCategory), 'question_list' => array(array('question' => object(Question), 'yes_count' => 3, 'total_count' => 6, 'hpo_array' => array('0229122122174113' => array('hpo_id' => 827, 'hpo_name' => 'Hypothyroidism', 'count' => 2), '0121281716287288' => array('hpo_id' => 6922, 'hpo_name' => 'Pituitary hypothyroidism', 'count' => 1))), array('question' => object(Question), 'yes_count' => 2, 'total_count' => 10, 'hpo_array' => array('0131321532198746' => array('hpo_id' => 1857, 'hpo_name' => 'Fever', 'count' => 1), '0128233419325858' => array('hpo_id' => 2060, 'hpo_name' => 'Increased serum lactate', 'count' => 1))), array('question' => object(Question), 'yes_count' => 24, 'total_count' => 27, 'hpo_array' => array(array('hpo_id' => 2121, 'hpo_name' => 'Recurrent respiratory infections', 'count' => 13), '0521233216242818' => array('hpo_id' => 2009, 'hpo_name' => 'Pneumonia', 'count' => 5), '0519323416198543' => array('hpo_id' => 5656, 'hpo_name' => 'Recurrent pneumonia', 'count' => 5), '0519321821289209' => array('hpo_id' => 12053, 'hpo_name' => 'Respiratory tract infection', 'count' => 5), '0236252532199858' => array('hpo_id' => 3017, 'hpo_name' => 'Allergic rhinitis', 'count' => 2), '0234231810289313' => array('hpo_id' => 11522, 'hpo_name' => 'CNS infection', 'count' => 2), '0124322328233746' => array('hpo_id' => 1275, 'hpo_name' => 'Meningitis', 'count' => 1), '0119323416196170' => array('hpo_id' => 5661, 'hpo_name' => 'Recurrent bronchopulmonary infections', 'count' => 1), '0119323416196126' => array('hpo_id' => 2576, 'hpo_name' => 'Recurrent infections', 'count' => 1), '0119323416193741' => array('hpo_id' => 2020, 'hpo_name' => 'Recurrent aspiration pneumonia', 'count' => 1), '0118322118285275' => array('hpo_id' => 15650, 'hpo_name' => 'Sepsis', 'count' => 1)))))), 'lang' => 'front/site/index.'))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/View/View.php:139)
  at Illuminate\View\View->getContents()
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/View/View.php:122)
  at Illuminate\View\View->renderContents()
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/View/View.php:91)
  at Illuminate\View\View->render()
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Http/Response.php:69)
  at Illuminate\Http\Response->setContent(object(View))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Http/Response.php:35)
  at Illuminate\Http\Response->__construct(object(View), 200, array('Content-Type' => 'text/html'))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Routing/Router.php:820)
  at Illuminate\Routing\Router::toResponse(object(Request), object(View))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Routing/Router.php:789)
  at Illuminate\Routing\Router->prepareResponse(object(Request), object(View))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Routing/Router.php:721)
  at Illuminate\Routing\Router->Illuminate\Routing\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/statikbe/laravel-cookie-consent/src/CookieConsentMiddleware.php:13)
  at Statikbe\CookieConsent\CookieConsentMiddleware->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:50)
  at Illuminate\Routing\Middleware\SubstituteBindings->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:78)
  at Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49)
  at Illuminate\View\Middleware\ShareErrorsFromSession->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:121)
  at Illuminate\Session\Middleware\StartSession->handleStatefulRequest(object(Request), object(Store), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:64)
  at Illuminate\Session\Middleware\StartSession->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37)
  at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67)
  at Illuminate\Cookie\Middleware\EncryptCookies->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Routing/Router.php:723)
  at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Routing/Router.php:698)
  at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Routing/Router.php:662)
  at Illuminate\Routing\Router->dispatchToRoute(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Routing/Router.php:651)
  at Illuminate\Routing\Router->dispatch(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:167)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php:59)
  at Barryvdh\Debugbar\Middleware\InjectDebugbar->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31)
  at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
  at Illuminate\Foundation\Http\Middleware\TrimStrings->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:86)
  at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/fruitcake/laravel-cors/src/HandleCors.php:38)
  at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/fideloper/proxy/src/TrustProxies.php:57)
  at Fideloper\Proxy\TrustProxies->handle(object(Request), object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:142)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:111)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/public/index.php:50)
  at require_once('/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/public/index.php')
     (/var/www/vhosts/vps-279906-5300.hosted.at.hostnet.nl/humandisease/index.php:19)