Whoops, looks like something went wrong.

(1/2) Doctrine\DBAL\Exception\InvalidFieldNameException

An exception occurred while executing 'SELECT `url_segment` FROM `tx_t3blog_post` WHERE (`uid` = de) AND ((`tx_t3blog_post`.`deleted` = 0) AND (`tx_t3blog_post`.`hidden` = 0) AND (`tx_t3blog_post`.`starttime` <= 1711635420) AND ((`tx_t3blog_post`.`endtime` = 0) OR (`tx_t3blog_post`.`endtime` > 1711635420)))': Unknown column 'de' in 'where clause'

in /html/xfab.com/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php line 64

            case '1054':
            case '1166':
            case '1611':
                return new Exception\InvalidFieldNameException($message, $exception);

            case '1052':
            case '1060':
            case '1110':
at Doctrine\DBAL\Driver\AbstractMySQLDriver->convertException('An exception occurred while executing \'SELECT `url_segment` FROM `tx_t3blog_post` WHERE (`uid` = de) AND ((`tx_t3blog_post`.`deleted` = 0) AND (`tx_t3blog_post`.`hidden` = 0) AND (`tx_t3blog_post`.`starttime` <= 1711635420) AND ((`tx_t3blog_post`.`endtime` = 0) OR (`tx_t3blog_post`.`endtime` > 1711635420)))\':Unknown column \'de\' in \'where clause\'', object(Doctrine\DBAL\Driver\Mysqli\MysqliException))
in /html/xfab.com/vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php line 172
            return $driverEx;
        }

        if ($driver instanceof ExceptionConverterDriver && $driverEx instanceof DriverExceptionInterface) {
            return $driver->convertException($msg, $driverEx);
        }

        return new self($msg, 0, $driverEx);
    }
at Doctrine\DBAL\DBALException::wrapException(object(Doctrine\DBAL\Driver\Mysqli\Driver), object(Doctrine\DBAL\Driver\Mysqli\MysqliException), 'An exception occurred while executing \'SELECT `url_segment` FROM `tx_t3blog_post` WHERE (`uid` = de) AND ((`tx_t3blog_post`.`deleted` = 0) AND (`tx_t3blog_post`.`hidden` = 0) AND (`tx_t3blog_post`.`starttime` <= 1711635420) AND ((`tx_t3blog_post`.`endtime` = 0) OR (`tx_t3blog_post`.`endtime` > 1711635420)))\':Unknown column \'de\' in \'where clause\'')
in /html/xfab.com/vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php line 151
        }

        $msg .= ":\n\n" . $driverEx->getMessage();

        return static::wrapException($driver, $driverEx, $msg);
    }

    /**
     * @return self
at Doctrine\DBAL\DBALException::driverExceptionDuringQuery(object(Doctrine\DBAL\Driver\Mysqli\Driver), object(Doctrine\DBAL\Driver\Mysqli\MysqliException), 'SELECT `url_segment` FROM `tx_t3blog_post` WHERE (`uid` = de) AND ((`tx_t3blog_post`.`deleted` = 0) AND (`tx_t3blog_post`.`hidden` = 0) AND (`tx_t3blog_post`.`starttime` <= 1711635420) AND ((`tx_t3blog_post`.`endtime` = 0) OR (`tx_t3blog_post`.`endtime` > 1711635420)))', array())
in /html/xfab.com/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php line 918
            throw DBALException::driverExceptionDuringQuery(
                $this->_driver,
                $ex,
                $sql,
                $this->resolveParams($params, $types)
            );
        }

        $stmt->setFetchMode($this->defaultFetchMode);
at Doctrine\DBAL\Connection->executeQuery('SELECT `url_segment` FROM `tx_t3blog_post` WHERE (`uid` = de) AND ((`tx_t3blog_post`.`deleted` = 0) AND (`tx_t3blog_post`.`hidden` = 0) AND (`tx_t3blog_post`.`starttime` <= 1711635420) AND ((`tx_t3blog_post`.`endtime` = 0) OR (`tx_t3blog_post`.`endtime` > 1711635420)))', array(), array())
in /html/xfab.com/vendor/doctrine/dbal/lib/Doctrine/DBAL/Query/QueryBuilder.php line 207
     */
    public function execute()
    {
        if ($this->type === self::SELECT) {
            return $this->connection->executeQuery($this->getSQL(), $this->params, $this->paramTypes);
        }

        return $this->connection->executeUpdate($this->getSQL(), $this->params, $this->paramTypes);
    }
at Doctrine\DBAL\Query\QueryBuilder->execute()
in /html/xfab.com/public/typo3/sysext/core/Classes/Database/Query/QueryBuilder.php line 191

        // Set additional query restrictions
        $originalWhereConditions = $this->addAdditionalWhereConditions();

        $result = $this->concreteQueryBuilder->execute();

        // Restore the original query conditions in case the user keeps
        // on modifying the state.
        $this->concreteQueryBuilder->add('where', $originalWhereConditions, false);
at TYPO3\CMS\Core\Database\Query\QueryBuilder->execute()
in /html/xfab.com/public/typo3conf/ext/akt_resourcecenter/Classes/Routing/Aspect/PostMapper.php line 30
        $data = $queryBuilder
            ->select('url_segment')
            ->from($table)
            ->where($queryBuilder->expr()->eq('uid', $value))
            ->execute()
            ->fetchAll();

        return $data[0]['url_segment'] != '' ? (string)$data[0]['url_segment'] : null;
    }
at AKT\AktResourcecenter\Routing\Aspect\PostMapper->generate('de')
in /html/xfab.com/public/typo3/sysext/core/Classes/Routing/Aspect/MappableProcessor.php line 68

        $values = [];
        foreach ($mappers as $variableName => $mapper) {
            $value = $mapper->generate(
                (string)($attributes[$variableName] ?? '')
            );
            if ($value === null) {
                return false;
            }
at TYPO3\CMS\Core\Routing\Aspect\MappableProcessor->generate(object(TYPO3\CMS\Core\Routing\Route), array('t61921f3d6e42452faec62506ec6f9f' => 'de'))
in /html/xfab.com/public/typo3/sysext/core/Classes/Routing/PageRouter.php line 346
                $parameters = $originalParameters;
                if ($route->hasOption('deflatedParameters')) {
                    $parameters = $route->getOption('deflatedParameters');
                }
                $mappableProcessor->generate($route, $parameters);
                // ABSOLUTE_URL is used as default fallback
                $urlAsString = $generator->generate($routeName, $parameters, $referenceType);
                $uri = new Uri($urlAsString);
                /** @var Route $matchedRoute */
at TYPO3\CMS\Core\Routing\PageRouter->generateUri(object(TYPO3\CMS\Core\Routing\Route), array('t61921f3d6e42452faec62506ec6f9f' => 'de'), '', 'absolute')
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Typolink/PageLinkBuilder.php line 436
                $uri = $siteOfTargetPage->getRouter()->generateUri(
                    $targetPageId,
                    $queryParameters,
                    $fragment,
                    $useAbsoluteUrl ? RouterInterface::ABSOLUTE_URL : RouterInterface::ABSOLUTE_PATH
                );
            } catch (InvalidRouteArgumentsException $e) {
                throw new UnableToLinkException('The target page could not be linked. Error: ' . $e->getMessage(), 1535472406);
            }
at TYPO3\CMS\Frontend\Typolink\PageLinkBuilder->generateUrlForPageWithSiteConfiguration(array('uid' => 1, 'pid' => 0, 'tstamp' => 1624518882, 'crdate' => 1592312425, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 256, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:50:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Home', 'slug' => '/', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 1, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => 'X-FAB Foundry', 'layout' => 0, 'target' => '', 'media' => 1, 'lastUpdated' => 1611579480, 'keywords' => 'Foundry, analog/mixed signal, semiconductor, pure-play', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1690980723, 'abstract' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__defaultwithfocus', 'backend_layout_next_level' => 'pagets__defaultwithfocus', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Your specialty foundry for the analog world', 'no_index' => 0, 'no_follow' => 1, 'og_title' => 'X-FAB: Your specialty foundry for the analog world', 'og_description' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.', 'og_image' => 0, 'twitter_title' => 'X-FAB: Your specialty foundry for the analog world', 'twitter_description' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Your specialty foundry for the analog world', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0), object(TYPO3\CMS\Core\Site\Entity\Site), array('tx_aktresourcecenter_resourcecenter' => array('action' => 'show', 'controller' => 'Resourcecenter', 'post' => 'de'), 'cHash' => '4997e84c935cf85e44c2bb3fe3873766', '_language' => object(TYPO3\CMS\Core\Site\Entity\SiteLanguage)), '', array('parameter' => 1, 'additionalParams' => '&tx_aktresourcecenter_resourcecenter%5Baction%5D=show&tx_aktresourcecenter_resourcecenter%5Bcontroller%5D=Resourcecenter&tx_aktresourcecenter_resourcecenter%5Bpost%5D=de&L=0', 'useCacheHash' => true, 'linkAccessRestrictedPages' => false, 'language' => 0))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Typolink/PageLinkBuilder.php line 228
            if ($pageType) {
                $queryParameters['type'] = (int)$pageType;
            }
            // Generate the URL
            $url = $this->generateUrlForPageWithSiteConfiguration($page, $siteOfTargetPage, $queryParameters, $sectionMark, $conf);

            $treatAsExternalLink = true;
            // no scheme => always not external
            if (!$url->getScheme() || !$url->getHost()) {
at TYPO3\CMS\Frontend\Typolink\PageLinkBuilder->build(array('type' => 'page', 'pageuid' => '1', 'typoLinkParameter' => '1'), '|', '', array('parameter' => 1, 'additionalParams' => '&tx_aktresourcecenter_resourcecenter%5Baction%5D=show&tx_aktresourcecenter_resourcecenter%5Bcontroller%5D=Resourcecenter&tx_aktresourcecenter_resourcecenter%5Bpost%5D=de&L=0', 'useCacheHash' => true, 'linkAccessRestrictedPages' => false, 'language' => 0))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 5464
                $this,
                $tsfe
            );
            try {
                list($this->lastTypoLinkUrl, $linkText, $target) = $linkBuilder->build($linkDetails, $linkText, $target, $conf);
                $this->lastTypoLinkTarget = htmlspecialchars($target);
                $this->lastTypoLinkLD['target'] = htmlspecialchars($target);
                $this->lastTypoLinkLD['totalUrl'] = $this->lastTypoLinkUrl;
            } catch (UnableToLinkException $e) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->typoLink('|', array('parameter' => 1, 'additionalParams' => '&tx_aktresourcecenter_resourcecenter%5Baction%5D=show&tx_aktresourcecenter_resourcecenter%5Bcontroller%5D=Resourcecenter&tx_aktresourcecenter_resourcecenter%5Bpost%5D=de&L=0', 'useCacheHash' => true, 'linkAccessRestrictedPages' => false))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/ContentObject/Menu/AbstractMenuContentObject.php line 2254
        if ($page['sectionIndex_uid'] ?? false) {
            $conf['section'] = $page['sectionIndex_uid'];
        }
        $conf['linkAccessRestrictedPages'] = !empty($this->mconf['showAccessRestrictedPages']);
        $this->parent_cObj->typoLink('|', $conf);
        $LD = $this->parent_cObj->lastTypoLinkLD;
        $LD['totalURL'] = $this->parent_cObj->lastTypoLinkUrl;
        return $LD;
    }
at TYPO3\CMS\Frontend\ContentObject\Menu\AbstractMenuContentObject->menuTypoLink(array('uid' => 1, 'pid' => 0, 'tstamp' => 1624518882, 'crdate' => 1592312425, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 256, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:50:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Home', 'slug' => '/', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 1, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => 'X-FAB Foundry', 'layout' => 0, 'target' => '', 'media' => 1, 'lastUpdated' => 1611579480, 'keywords' => 'Foundry, analog/mixed signal, semiconductor, pure-play', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1690980723, 'abstract' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__defaultwithfocus', 'backend_layout_next_level' => 'pagets__defaultwithfocus', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Your specialty foundry for the analog world', 'no_index' => 0, 'no_follow' => 1, 'og_title' => 'X-FAB: Your specialty foundry for the analog world', 'og_description' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.', 'og_image' => 0, 'twitter_title' => 'X-FAB: Your specialty foundry for the analog world', 'twitter_description' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Your specialty foundry for the analog world', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'ITEM_STATE' => 'ACT', '_ADD_GETVARS' => '&tx_aktresourcecenter_resourcecenter%5Baction%5D=show&tx_aktresourcecenter_resourcecenter%5Bcontroller%5D=Resourcecenter&tx_aktresourcecenter_resourcecenter%5Bpost%5D=de&L=0', '_SAFE' => true, 'isSpacer' => false), null, '', '', '', '&tx_aktresourcecenter_resourcecenter%5Baction%5D=show&tx_aktresourcecenter_resourcecenter%5Bcontroller%5D=Resourcecenter&tx_aktresourcecenter_resourcecenter%5Bpost%5D=de&L=0', null)
in /html/xfab.com/public/typo3/sysext/frontend/Classes/ContentObject/Menu/AbstractMenuContentObject.php line 1712
            $addParams .= $this->menuArr[$key]['_ADD_GETVARS'];
            $LD = $this->menuTypoLink($thePage, $mainTarget, '', '', $overrideArray, $addParams, $typeOverride);
        } else {
            $addParams .= $this->I['val']['additionalParams'] . $this->menuArr[$key]['_ADD_GETVARS'];
            $LD = $this->menuTypoLink($this->menuArr[$key], $mainTarget, '', '', $overrideArray, $addParams, $typeOverride);
        }
        // Override default target configuration if option is set
        if ($this->menuArr[$key]['target']) {
            $LD['target'] = $this->menuArr[$key]['target'];
at TYPO3\CMS\Frontend\ContentObject\Menu\AbstractMenuContentObject->link(0, null, null)
in /html/xfab.com/public/typo3/sysext/frontend/Classes/ContentObject/Menu/TextMenuContentObject.php line 91
            $this->I['val']['ATagParams'] = $this->WMcObj->getATagParams($this->I['val']);
            if (isset($this->I['val']['additionalParams.'])) {
                $this->I['val']['additionalParams'] = $this->WMcObj->stdWrap($this->I['val']['additionalParams'], $this->I['val']['additionalParams.']);
            }
            $this->I['linkHREF'] = $this->link($key, $this->I['val']['altTarget'], $this->mconf['forceTypeValue']);
            if (empty($this->I['linkHREF'])) {
                $this->I['val']['doNotLinkIt'] = 1;
            }
            // Title attribute of links:
at TYPO3\CMS\Frontend\ContentObject\Menu\TextMenuContentObject->writeMenu()
in /html/xfab.com/public/typo3/sysext/frontend/Classes/ContentObject/HierarchicalMenuContentObject.php line 50
            $GLOBALS['TSFE']->applicationData['GMENU_LAYERS']['WMparentId'] = [];
            $menu->parent_cObj = $this->cObj;
            $menu->start($GLOBALS['TSFE']->tmpl, $GLOBALS['TSFE']->sys_page, '', $conf, 1);
            $menu->makeMenu();
            $theValue .= $menu->writeMenu();
        } catch (Menu\Exception\NoSuchMenuTypeException $e) {
        }
        $wrap = isset($conf['wrap.']) ? $this->cObj->stdWrap($conf['wrap'], $conf['wrap.']) : $conf['wrap'];
        if ($wrap) {
at TYPO3\CMS\Frontend\ContentObject\HierarchicalMenuContentObject->render(array('special' => 'language', 'addQueryString' => 1, 'addQueryString.' => array('method' => 'GET', 'exclude' => ''), 'wrap' => '[|]', 'special.' => array('value' => 'auto'), 'TMENU', '1.' => array('IProcFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->replacePlaceholderInRenderedMenuItem', 'NO' => '1', 'NO.' => array('doNotLinkIt' => '1', 'wrapItemAndSub' => '{|}, |*| {|}, |*| {|}', 'stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '1.' => array('languageId.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('data' => 'register:languages_HMENU'), 'listNum.' => array('stdWrap.' => array('data' => 'register:count_HMENU_MENUOBJ', 'wrap' => '|-1'), 'splitChar' => ',')))), 'TEXT', '10.' => array('stdWrap.' => array('data' => 'register:languageId'), 'wrap' => '"languageId":|'), 'USER', '11.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'locale', 'stdWrap.' => array('wrap' => ',"locale":|')), 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'title', 'stdWrap.' => array('wrap' => ',"title":|')), 'USER', '21.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'navigationTitle', 'stdWrap.' => array('wrap' => ',"navigationTitle":|')), 'USER', '22.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'twoLetterIsoCode', 'stdWrap.' => array('wrap' => ',"twoLetterIsoCode":|')), 'USER', '23.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'hreflang', 'stdWrap.' => array('wrap' => ',"hreflang":|')), 'USER', '24.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'direction', 'stdWrap.' => array('wrap' => ',"direction":|')), 'TEXT', '90.' => array('value' => '###LINKPLACEHOLDER###', 'wrap' => ',"link":|'), 'TEXT', '91.' => array('value' => '0', 'wrap' => ',"active":|'), 'TEXT', '92.' => array('value' => '0', 'wrap' => ',"current":|'), 'TEXT', '93.' => array('value' => '1', 'wrap' => ',"available":|'), 'RESTORE_REGISTER'))), 'ACT' => '1', 'ACT.' => array('doNotLinkIt' => '1', 'wrapItemAndSub' => '{|}, |*| {|}, |*| {|}', 'stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '1.' => array('languageId.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('data' => 'register:languages_HMENU'), 'listNum.' => array('stdWrap.' => array('data' => 'register:count_HMENU_MENUOBJ', 'wrap' => '|-1'), 'splitChar' => ',')))), 'TEXT', '10.' => array('stdWrap.' => array('data' => 'register:languageId'), 'wrap' => '"languageId":|'), 'USER', '11.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'locale', 'stdWrap.' => array('wrap' => ',"locale":|')), 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'title', 'stdWrap.' => array('wrap' => ',"title":|')), 'USER', '21.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'navigationTitle', 'stdWrap.' => array('wrap' => ',"navigationTitle":|')), 'USER', '22.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'twoLetterIsoCode', 'stdWrap.' => array('wrap' => ',"twoLetterIsoCode":|')), 'USER', '23.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'hreflang', 'stdWrap.' => array('wrap' => ',"hreflang":|')), 'USER', '24.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'direction', 'stdWrap.' => array('wrap' => ',"direction":|')), 'TEXT', '90.' => array('value' => '###LINKPLACEHOLDER###', 'wrap' => ',"link":|'), 'TEXT', '91.' => array('value' => '1', 'wrap' => ',"active":|'), 'TEXT', '92.' => array('value' => '0', 'wrap' => ',"current":|'), 'TEXT', '93.' => array('value' => '1', 'wrap' => ',"available":|'), 'RESTORE_REGISTER'))), 'CUR' => '1', 'CUR.' => array('doNotLinkIt' => '1', 'wrapItemAndSub' => '{|}, |*| {|}, |*| {|}', 'stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '1.' => array('languageId.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('data' => 'register:languages_HMENU'), 'listNum.' => array('stdWrap.' => array('data' => 'register:count_HMENU_MENUOBJ', 'wrap' => '|-1'), 'splitChar' => ',')))), 'TEXT', '10.' => array('stdWrap.' => array('data' => 'register:languageId'), 'wrap' => '"languageId":|'), 'USER', '11.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'locale', 'stdWrap.' => array('wrap' => ',"locale":|')), 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'title', 'stdWrap.' => array('wrap' => ',"title":|')), 'USER', '21.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'navigationTitle', 'stdWrap.' => array('wrap' => ',"navigationTitle":|')), 'USER', '22.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'twoLetterIsoCode', 'stdWrap.' => array('wrap' => ',"twoLetterIsoCode":|')), 'USER', '23.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'hreflang', 'stdWrap.' => array('wrap' => ',"hreflang":|')), 'USER', '24.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'direction', 'stdWrap.' => array('wrap' => ',"direction":|')), 'TEXT', '90.' => array('value' => '###LINKPLACEHOLDER###', 'wrap' => ',"link":|'), 'TEXT', '91.' => array('value' => '1', 'wrap' => ',"active":|'), 'TEXT', '92.' => array('value' => '1', 'wrap' => ',"current":|'), 'TEXT', '93.' => array('value' => '1', 'wrap' => ',"available":|'), 'RESTORE_REGISTER'))), 'USERDEF1' => '1', 'USERDEF1.' => array('doNotLinkIt' => '1', 'wrapItemAndSub' => '{|}, |*| {|}, |*| {|}', 'stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '1.' => array('languageId.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('data' => 'register:languages_HMENU'), 'listNum.' => array('stdWrap.' => array('data' => 'register:count_HMENU_MENUOBJ', 'wrap' => '|-1'), 'splitChar' => ',')))), 'TEXT', '10.' => array('stdWrap.' => array('data' => 'register:languageId'), 'wrap' => '"languageId":|'), 'USER', '11.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'locale', 'stdWrap.' => array('wrap' => ',"locale":|')), 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'title', 'stdWrap.' => array('wrap' => ',"title":|')), 'USER', '21.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'navigationTitle', 'stdWrap.' => array('wrap' => ',"navigationTitle":|')), 'USER', '22.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'twoLetterIsoCode', 'stdWrap.' => array('wrap' => ',"twoLetterIsoCode":|')), 'USER', '23.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'hreflang', 'stdWrap.' => array('wrap' => ',"hreflang":|')), 'USER', '24.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'direction', 'stdWrap.' => array('wrap' => ',"direction":|')), 'TEXT', '90.' => array('value' => '###LINKPLACEHOLDER###', 'wrap' => ',"link":|'), 'TEXT', '91.' => array('value' => '0', 'wrap' => ',"active":|'), 'TEXT', '92.' => array('value' => '0', 'wrap' => ',"current":|'), 'TEXT', '93.' => array('value' => '0', 'wrap' => ',"available":|'), 'RESTORE_REGISTER'))), 'USERDEF2' => '1', 'USERDEF2.' => array('doNotLinkIt' => '1', 'wrapItemAndSub' => '{|}, |*| {|}, |*| {|}', 'stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '1.' => array('languageId.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('data' => 'register:languages_HMENU'), 'listNum.' => array('stdWrap.' => array('data' => 'register:count_HMENU_MENUOBJ', 'wrap' => '|-1'), 'splitChar' => ',')))), 'TEXT', '10.' => array('stdWrap.' => array('data' => 'register:languageId'), 'wrap' => '"languageId":|'), 'USER', '11.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'locale', 'stdWrap.' => array('wrap' => ',"locale":|')), 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'title', 'stdWrap.' => array('wrap' => ',"title":|')), 'USER', '21.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'navigationTitle', 'stdWrap.' => array('wrap' => ',"navigationTitle":|')), 'USER', '22.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'twoLetterIsoCode', 'stdWrap.' => array('wrap' => ',"twoLetterIsoCode":|')), 'USER', '23.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'hreflang', 'stdWrap.' => array('wrap' => ',"hreflang":|')), 'USER', '24.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'direction', 'stdWrap.' => array('wrap' => ',"direction":|')), 'TEXT', '90.' => array('value' => '###LINKPLACEHOLDER###', 'wrap' => ',"link":|'), 'TEXT', '91.' => array('value' => '1', 'wrap' => ',"active":|'), 'TEXT', '92.' => array('value' => '0', 'wrap' => ',"current":|'), 'TEXT', '93.' => array('value' => '0', 'wrap' => ',"available":|'), 'RESTORE_REGISTER'))))))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/DataProcessing/LanguageMenuProcessor.php line 403
        $this->validateAndBuildConfiguration();

        // Process Configuration
        $menuContentObject = $cObj->getContentObject('HMENU');
        $renderedMenu = $menuContentObject->render($this->menuConfig);
        if ($renderedMenu) {
            // Process menu
            $menu = json_decode($renderedMenu, true);
            $processedMenu = [];
at TYPO3\CMS\Frontend\DataProcessing\LanguageMenuProcessor->process(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer), array('templateName' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'templateRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Templates/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Templates/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Partials/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Partials/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Layouts/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Layouts/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special.' => array('value.' => array('field' => 'pages')), 'levels' => '3', 'as' => 'menuMain', 'expandAll' => '1', 'includeSpacer' => '0', 'titleField' => 'nav_title // title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'as' => 'image'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('levels' => '5', 'entryLevel' => '2', 'expandAll' => '0', 'includeSpacer' => '0', 'as' => 'menuSub'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '40.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'includeNotInMenu' => '1', 'excludeUidList' => '1', 'as' => 'menuBreadcrumb'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'directory', 'special.' => array('value' => '5'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'menuTop'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '60.' => array('special' => 'directory', 'special.' => array('value' => '7'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'menuSocket'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '70.' => array('special' => 'directory', 'special.' => array('value' => ''), 'levels' => '1', 'includeSpacer' => '0', 'as' => 'menuSide'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '80.' => array('languages' => 'auto', 'as' => 'menuLanguage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '90.' => array('special' => 'directory', 'special.' => array('value' => '9'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'footerLeftSideMenu')), 'settings.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'framework' => 'UiKit', 'rootPid' => '1', 'targetPid' => '15', 'logoFilePath' => 'fileadmin/user_upload/XFAB_Logo_White.svg', 'logoFileWidth' => '140', 'logoFileAltAttr' => 'XFAB Logo', 'logoShrink' => '1', 'topMenuPosition' => 'right', 'mainMenuEntryLevel' => '0', 'mainMenuPosition' => 'right', 'mainMenuSticky' => '1', 'mainMenuMegaExclude' => '', 'mainMenuMegaBackgroundColor' => 'default', 'mainMenuMegaWidth' => 'Navbar', 'showSubMenuInSidebars' => '0', 'socketMenuPosition' => 'right', 'socketMenuSourceID' => '7', 'copyrightFooterText' => 'X-FAB Silicon Foundries SE', 'topMenuSourceID' => '5', 'sideMenuSourceID' => '', 'headerInnerBuild' => 'default', 'headerWidth' => '0', 'headerInnerAlign' => 'left', 'headerOuterBackgroundColor' => 'primary', 'headerTopmenuBackgroundColor' => 'primary', 'headerMainmenuBackgroundColor' => 'primary', 'footerBackgroundColor' => 'muted', 'footerBackgroundInlineColor' => '', 'footerSitemapMenu' => '1', 'footerSitemapExcludePageID' => '', 'socketBackgroundColor' => 'muted', 'socketBackgroundInlineColor' => '', 'showBreadcrumb' => '0', 'showBreadcrumbHomeLink' => '1', 'breadcrumbBackgroundColor' => 'primary', 'newsDetailPid' => '{$plugin.tx_akt_sitepackage.settings.newsDetailPid}', 'socialMediaMenu' => '1', 'facebookPath' => 'https://www.facebook.com/xfab.corporate', 'twitterPath' => 'https://twitter.com/xfab_foundry?lang=de', 'youtubePath' => 'https://www.youtube.com/channel/UCZVqNluNp8W0Ni9CQ0PTvyQ', 'linkedInPath' => 'https://de.linkedin.com/company/x-fab', 'xingPath' => '', 'instagramPath' => '', 'footerContent.' => array('footerContentSourceUID' => '')), 'variables.' => array('contentMain' => 'CONTENT', 'contentMain.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=0')), 'contentFocus' => 'CONTENT', 'contentFocus.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=1')), 'headers' => '< lib.contentElement', 'headers.' => array('templateName' => 'Header'))), array('languages' => 'auto', 'as' => 'menuLanguage'), array('contentMain' => '<section class="uk-section uk-section-default " style="" ><div class="uk-container uk-container-large"><div id="c3" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"><header><h1 class="ce-headline-center"> What we do... </h1></header></div><div class="uk-child-width-expand " data-uk-grid><div class="uk-width-1-1@s uk-width-1-2@m uk-width-1-2@l uk-width-1-2@xl "><div id="c2" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p>As the world\'s leading foundry group for analog/mixed-signal semiconductor applications&nbsp;X-FAB creates a clear alternative to typical foundry services by combining solid, specialized expertise in advanced analog and mixed-signal process technologies with excellent service, a high level of responsiveness and first-class technical support.</p></div></div></div></div><div class="uk-width-1-1@s uk-width-1-2@m uk-width-1-2@l uk-width-1-2@xl "><div id="c4" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p>X-FAB manufactures wafers for <a href="/automotive">automotive</a>, <a href="/industrial">industrial</a>, <a href="/markets/communication-consumer">consumer</a>, <a href="/medical">medical</a>, and other applications on modular <a href="/technology">CMOS</a> processes in geometries ranging from 1.0μm to 130 nm, special <a href="/technology">SOI</a> and <a href="/technology">MEMS</a> long-lifetime processes.&nbsp;With our&nbsp;six <a href="/manufacturing/our-fabs">manufacturing sites</a> in Germany, France, Malaysia and the USA, we have a combined capacity of about 100,000 eight inch equivalent wafer starts per month.</p></div></div></div></div></div></div></section><section class="uk-section uk-section-primary uk-preserve-color" style="" ><div class="uk-container uk-container-large"><div id="c5" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div id="c6" class="frame frame-default frame-type-list frame-layout-0"><header><h2 class="ce-headline-center"> News </h2></header><div class="news"><!--TYPO3SEARCH_end--><!-- GRID VIEW --><div id="news-container-6" class="uk-news-list uk-news-grid-view uk-grid-large uk-margin-large-top uk-margin-medium-bottom"><div class="uk-card uk-card-default uk-margin-medium" itemscope="itemscope" itemtype="http://schema.org/Article"><div class="uk-child-width-1-2@s uk-child-width-1-3@m uk-grid-collapse uk-card-inner" uk-grid><div class="uk-card-media-left uk-background-default uk-cover-container uk-padding"><div class="header"><p class="uk-article-meta"><span class="news-list-date"><time itemprop="datePublished" datetime="2024-03-27"> Mar 27, 2024 </time></span></p><h3 class="uk-card-title"><a title="photonixFAB Consortium now open for first prototyping" href="/news/details/article/photonixfab-consortium-now-open-for-first-prototyping"><span itemprop="headline">photonixFAB Consortium now open for first prototyping</span></a></h3></div></div><div class="uk-card-image uk-padding-remove uk-margin-remove"><div class="uk-card-body uk-padding-remove"><div class="news-img-wrap"><a title="photonixFAB Consortium now open for first prototyping" href="/news/details/article/photonixfab-consortium-now-open-for-first-prototyping"><img src="/fileadmin/_processed_/6/4/csm_photonixFAB_Logo_horizontal_RGB_5fb92bcbfa.png" width="610" height="400" alt="" /></a></div></div></div><div class="uk-card-media-right uk-background-secondary uk-cover-container uk-padding uk-margin-remove"><div class="teaser-text"><div itemprop="description"><p>New customer engagement portal enables early technology access</p></div><a class="more uk-button uk-button-default uk-button--more" title="photonixFAB Consortium now open for first prototyping" href="/news/details/article/photonixfab-consortium-now-open-for-first-prototyping"> Read more </a></div></div></div></div><div class="uk-card uk-card-default uk-margin-medium" itemscope="itemscope" itemtype="http://schema.org/Article"><div class="uk-child-width-1-2@s uk-child-width-1-3@m uk-grid-collapse uk-card-inner" uk-grid><div class="uk-card-media-left uk-background-default uk-cover-container uk-padding"><div class="header"><p class="uk-article-meta"><span class="news-list-date"><time itemprop="datePublished" datetime="2023-11-16"> Nov 16, 2023 </time></span></p><h3 class="uk-card-title"><a title="X-FAB Introduces New Generation of Enhanced Performance SPAD Devices focused on Near-Infrared Applications" href="/news/details/article/x-fab-introduces-new-generation-of-enhanced-performance-spad-devices-focused-on-near-infrared-applications"><span itemprop="headline">X-FAB Introduces New Generation of Enhanced Performance SPAD Devices focused on Near-Infrared Applications</span></a></h3></div></div><div class="uk-card-image uk-padding-remove uk-margin-remove"><div class="uk-card-body uk-padding-remove"><div class="news-img-wrap"><a title="X-FAB Introduces New Generation of Enhanced Performance SPAD Devices focused on Near-Infrared Applications" href="/news/details/article/x-fab-introduces-new-generation-of-enhanced-performance-spad-devices-focused-on-near-infrared-applications"><img title="SPAD Near Infrared Applications" alt="SPAD Near Infrared Applications" src="/fileadmin/_processed_/8/9/csm_16nov_SPAD__IR_2919398133.jpg" width="610" height="400" /></a></div></div></div><div class="uk-card-media-right uk-background-secondary uk-cover-container uk-padding uk-margin-remove"><div class="teaser-text"><div itemprop="description"><p>X-FAB Silicon Foundries SE, the leading analog/mixed-signal and specialty foundry, has introduced a specific near-infrared version to its single-photon avalanche diode (SPAD)…</p></div><a class="more uk-button uk-button-default uk-button--more" title="X-FAB Introduces New Generation of Enhanced Performance SPAD Devices focused on Near-Infrared Applications" href="/news/details/article/x-fab-introduces-new-generation-of-enhanced-performance-spad-devices-focused-on-near-infrared-applications"> Read more </a></div></div></div></div><div class="uk-card uk-card-default uk-margin-medium" itemscope="itemscope" itemtype="http://schema.org/Article"><div class="uk-child-width-1-2@s uk-child-width-1-3@m uk-grid-collapse uk-card-inner" uk-grid><div class="uk-card-media-left uk-background-default uk-cover-container uk-padding"><div class="header"><p class="uk-article-meta"><span class="news-list-date"><time itemprop="datePublished" datetime="2023-11-02"> Nov 02, 2023 </time></span></p><h3 class="uk-card-title"><a title="X-FAB Adds CMOS Integration Option to its Galvanic Isolation Solution" href="/news/details/article/x-fab-adds-cmos-integration-option-to-its-galvanic-isolation-solution"><span itemprop="headline">X-FAB Adds CMOS Integration Option to its Galvanic Isolation Solution</span></a></h3></div></div><div class="uk-card-image uk-padding-remove uk-margin-remove"><div class="uk-card-body uk-padding-remove"><div class="news-img-wrap"><a title="X-FAB Adds CMOS Integration Option to its Galvanic Isolation Solution" href="/news/details/article/x-fab-adds-cmos-integration-option-to-its-galvanic-isolation-solution"><img src="/fileadmin/_processed_/c/8/csm_Integrated_Coupler_02Nov2023_X-FAB_wafer_8-inch_6349eada54.jpg" width="610" height="400" alt="" /></a></div></div></div><div class="uk-card-media-right uk-background-secondary uk-cover-container uk-padding uk-margin-remove"><div class="teaser-text"><div itemprop="description"><p>X-FAB Silicon Foundries SE, the leading analog/mixed-signal and specialty foundry, is making further significant progress with its galvanic isolation technology. </p></div><a class="more uk-button uk-button-default uk-button--more" title="X-FAB Adds CMOS Integration Option to its Galvanic Isolation Solution" href="/news/details/article/x-fab-adds-cmos-integration-option-to-its-galvanic-isolation-solution"> Read more </a></div></div></div></div></div><!-- GRID VIEW --><!--TYPO3SEARCH_begin--></div></div><div id="c1758" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center"><a href="/news" title="MORE NEWS" class="load-more">MORE NEWS</a></p></div></div></div></div></div></div></section><section class="uk-section uk-section-transparent" style="" ><div class="uk-container uk-container-large"><div id="c8" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div id="c7" class="frame frame-default frame-type-list frame-layout-0"><header><h2 class="ce-headline-center"> Events </h2></header><div class="news"><!--TYPO3SEARCH_end--><!-- EVENT LIST VIEW --><div class="uk-news-list uk-event-view uk-child-width-1-2@m uk-margin-large-top uk-margin-medium-bottom" uk-grid><!-- ===================== Partials/Event/Item.html--><div class="article uk-article uk-article-event-item uk-grid-collapse articletype-0 uk-margin-medium-bottom" itemscope="itemscope" itemtype="http://schema.org/Article" uk-grid><div class="uk-width-1-3 uk-padding uk-padding-remove-top uk-padding-remove-bottom uk-padding-remove-left"><div class="news-img-wrap"><a title="User2User" href="/news/details/article/user2user"><img src="/fileadmin/X-FAB/Events/U2U_2023_logo_thumb.jpg" width="541" height="541" alt="" /></a><!-- date --><span class="news-list-date"><time itemprop="datePublished" datetime="2024-05-07"> May 07 </time></span></div></div><div class="uk-width-2-3"><!-- header --><div class="header"><h3 class="uk-margin-remove-bottom"><a title="User2User" href="/news/details/article/user2user"><span itemprop="headline">User2User</span></a></h3></div><div class="date"><span class="location"><p>Munich, Germany | 7 May 2024</p></span></div><!-- teaser --><div class="teaser-text"><div itemprop="description"><p>User2User is a great opportunity to learn, grow and connect with fellow technical experts who design leading-edge products using Siemens EDA tools. &nbsp;Dedicated to end-users of…</p><a class="more" title="User2User" href="/news/details/article/user2user"> Read more </a></div></div></div></div><!-- ===================== Partials/Event/Item.html--><div class="article uk-article uk-article-event-item uk-grid-collapse articletype-0 uk-margin-medium-bottom" itemscope="itemscope" itemtype="http://schema.org/Article" uk-grid><div class="uk-width-1-3 uk-padding uk-padding-remove-top uk-padding-remove-bottom uk-padding-remove-left"><div class="news-img-wrap"><a title="ISPSD" href="/news/details/article/ispsd"><img src="/fileadmin/_processed_/8/e/csm_Logo_ISPSD_2024_7d2cf0ee13.png" width="153" height="153" alt="" /></a><!-- date --><span class="news-list-date"><time itemprop="datePublished" datetime="2024-06-02"> Jun 02 </time></span></div></div><div class="uk-width-2-3"><!-- header --><div class="header"><h3 class="uk-margin-remove-bottom"><a title="ISPSD" href="/news/details/article/ispsd"><span itemprop="headline">ISPSD</span></a></h3></div><div class="date"><span class="location"><p>Bremen, Germany | 2-6 June 2024</p></span></div><!-- teaser --><div class="teaser-text"><div itemprop="description"><p>The 36th International Symposium on Power Semiconductor Devices and ICs is the premier forum for technical discussion in all areas of power semiconductor devices, power integrated…</p><a class="more" title="ISPSD" href="/news/details/article/ispsd"> Read more </a></div></div></div></div><!-- ===================== Partials/Event/Item.html--><div class="article uk-article uk-article-event-item uk-grid-collapse articletype-0 uk-margin-medium-bottom" itemscope="itemscope" itemtype="http://schema.org/Article" uk-grid><div class="uk-width-1-3 uk-padding uk-padding-remove-top uk-padding-remove-bottom uk-padding-remove-left"><div class="news-img-wrap"><a title="ISSW 2024" href="/news/details/article/issw-2024"><img src="/fileadmin/_processed_/3/4/csm_ISSW_2024_e40479e74e.jpg" width="217" height="217" alt="" /></a><!-- date --><span class="news-list-date"><time itemprop="datePublished" datetime="2024-06-04"> Jun 04 </time></span></div></div><div class="uk-width-2-3"><!-- header --><div class="header"><h3 class="uk-margin-remove-bottom"><a title="ISSW 2024" href="/news/details/article/issw-2024"><span itemprop="headline">ISSW 2024</span></a></h3></div><div class="date"><span class="location"><p>Trento, Italy | 4-6 June 2024</p></span></div><!-- teaser --><div class="teaser-text"><div itemprop="description"><p>At X-FAB, &nbsp;we offer primitive devices for our APD in linear mode which are scalable from 30 µm to 200 µm, and for our SPAD in Geiger mode with sizes from 10 µm to 30 µm.</p><p>We are…</p><a class="more" title="ISSW 2024" href="/news/details/article/issw-2024"> Read more </a></div></div></div></div><!-- ===================== Partials/Event/Item.html--><div class="article uk-article uk-article-event-item uk-grid-collapse articletype-0 uk-margin-medium-bottom" itemscope="itemscope" itemtype="http://schema.org/Article" uk-grid><div class="uk-width-1-3 uk-padding uk-padding-remove-top uk-padding-remove-bottom uk-padding-remove-left"><div class="news-img-wrap"><a title="Silicon Saxony Day" href="/news/details/article/silicon-saxony-day"><img src="/fileadmin/X-FAB/Events/siliconsaxonyday-thumb-2024.jpg" width="214" height="214" alt="" /></a><!-- date --><span class="news-list-date"><time itemprop="datePublished" datetime="2024-06-11"> Jun 11 </time></span></div></div><div class="uk-width-2-3"><!-- header --><div class="header"><h3 class="uk-margin-remove-bottom"><a title="Silicon Saxony Day" href="/news/details/article/silicon-saxony-day"><span itemprop="headline">Silicon Saxony Day</span></a></h3></div><div class="date"><span class="location"><p>Dresden, Germany | 11 June 2024</p></span></div><!-- teaser --><div class="teaser-text"><div itemprop="description"><p>The 18<sup>th</sup> Silicon Saxony Day is one of the most international high-tech and networking event in Europe. It offers cross-industry insights into technologies and solutions in the…</p><a class="more" title="Silicon Saxony Day" href="/news/details/article/silicon-saxony-day"> Read more </a></div></div></div></div><!-- ===================== Partials/Event/Item.html--><div class="article uk-article uk-article-event-item uk-grid-collapse articletype-0 uk-margin-medium-bottom" itemscope="itemscope" itemtype="http://schema.org/Article" uk-grid><div class="uk-width-1-3 uk-padding uk-padding-remove-top uk-padding-remove-bottom uk-padding-remove-left"><div class="news-img-wrap"><a title="SENSORS CONVERGE 2024" href="/news/details/article/sensors-converge-2024"><img src="/fileadmin/_processed_/a/5/csm_Sensors_Converge_2024_logo_659158e030.jpg" width="235" height="235" alt="" /></a><!-- date --><span class="news-list-date"><time itemprop="datePublished" datetime="2024-06-24"> Jun 24 </time></span></div></div><div class="uk-width-2-3"><!-- header --><div class="header"><h3 class="uk-margin-remove-bottom"><a title="SENSORS CONVERGE 2024" href="/news/details/article/sensors-converge-2024"><span itemprop="headline">SENSORS CONVERGE 2024</span></a></h3></div><div class="date"><span class="location"><p>Santa Clara, California, USA | 24-26 June 2024</p></span></div><!-- teaser --><div class="teaser-text"><div itemprop="description"><p>Join the sensors and electronics community during this event covering the biggest design engineering trends. From enabling innovation, to process design &amp; control development, to…</p><a class="more" title="SENSORS CONVERGE 2024" href="/news/details/article/sensors-converge-2024"> Read more </a></div></div></div></div><!-- ===================== Partials/Event/Item.html--><div class="article uk-article uk-article-event-item uk-grid-collapse articletype-0 uk-margin-medium-bottom" itemscope="itemscope" itemtype="http://schema.org/Article" uk-grid><div class="uk-width-1-3 uk-padding uk-padding-remove-top uk-padding-remove-bottom uk-padding-remove-left"><div class="news-img-wrap"><a title="MICROTAS" href="/news/details/article/microtas-2024"><img src="/fileadmin/_processed_/0/5/csm_uTAS24_logo_138a9d0b7c.jpg" width="394" height="394" alt="" /></a><!-- date --><span class="news-list-date"><time itemprop="datePublished" datetime="2024-10-12"> Oct 12 </time></span></div></div><div class="uk-width-2-3"><!-- header --><div class="header"><h3 class="uk-margin-remove-bottom"><a title="MICROTAS" href="/news/details/article/microtas-2024"><span itemprop="headline">MICROTAS</span></a></h3></div><div class="date"><span class="location"><p>Montreal, Canada | 13-17 October 2024</p></span></div><!-- teaser --><div class="teaser-text"><div itemprop="description"><p>The 28th International Conference on Miniaturized Systems for Chemistry and Life Sciences (µTAS 2024) is the premier forum for reporting research results in microfluidics,…</p><a class="more" title="MICROTAS" href="/news/details/article/microtas-2024"> Read more </a></div></div></div></div></div><!-- EVENT LIST VIEW --><!--TYPO3SEARCH_begin--></div></div></div></div></div></section><section class="uk-section uk-section-transparent uk-padding-remove-vertical" style="" ><div class="uk-container uk-container-large"><div id="c30251" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><section class="uk-section uk-section-transparent" style="" ><div class="uk-container uk-container-large"><div id="c1890" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"><header><h2 class=""> Market solutions </h2></header></div><div class=" "><div class="uk-width-1-1@s uk-width-1-1@m "><div id="c2091" class="frame frame-indent frame-type-textmedia frame-layout-0 frame-space-after-medium"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-justify">With our broad range of specialty technologies including the unique combination of CMOS and MEMS process capabilities, we are&nbsp;well equipped to manufacture complex devices that meet the exacting quality requirements of the automotive, industrial, consumer&nbsp;and medical industries.&nbsp;</p></div></div></div><div class="uk-slider-wrap uk-light" ><div class="uk-position-relative" data-uk-slider=" autoplay-interval: 7000; finite: true;"><div class="uk-slider-container"><ul class="uk-slider-items uk-child-width-1-1@s uk-child-width-1-2@m uk-child-width-1-2@l uk-child-width-1-2@xl" data-uk-grid="" data-uk-height-match="target: .frame"><li class="uk-slide-item item"><div id="c577" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-gallery" data-ce-columns="1" data-ce-images="1" ><div class="ce-outer"><div class="ce-inner"><div class=""><figure class="image"><a href="/automotive"><img class="image-embed-item" src="/fileadmin/_processed_/4/8/csm_automotive_1280x616px_dcffacd0e0.jpg" width="800" height="532" alt="" /></a></figure></div></div></div></div><div class="ce-bodytext"><h4>Automotive</h4><p>Reliability and trust are two key requisites for serving the automotive industry. Our focus on security issues, complex demands and the extreme environmental conditions faced by the automotive industry helps us determine which advanced solutions best benefit automotive designers and their customers.</p><p class="uk-text-center"><a href="/automotive" class="more-btn">read more</a></p></div></div></div></li><li class="uk-slide-item item"><div id="c587" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-gallery" data-ce-columns="1" data-ce-images="1" ><div class="ce-outer"><div class="ce-inner"><div class=""><figure class="image"><a href="/medical"><img class="image-embed-item" src="/fileadmin/_processed_/9/8/csm_medical_market-image-2020_low_70cbf780a8.jpg" width="800" height="533" alt="" /></a></figure></div></div></div></div><div class="ce-bodytext"><h4>Medical</h4><p>As a supplier for the medical market - one in which people trust technology for their health and recovery - we are committed to deliver solutions that are accurate and reliable for our customers\' medical devices.</p><p>&nbsp;</p><p class="uk-text-center"><a href="/medical" class="more-btn">read more</a></p></div></div></div></li></ul></div><div class="uk-slidenav-container uk-hidden@l uk-flex uk-flex-center uk-margin-top"><a class="" href="#" data-uk-slidenav-previous data-uk-slider-item="previous"></a><a class="" href="#" data-uk-slidenav-next data-uk-slider-item="next"></a></div><div class="uk-slidenav-container uk-visible@l"><a class="uk-position-center-left-out uk-position-medium" href="#" data-uk-slidenav-previous data-uk-slider-item="previous"></a><a class="uk-position-center-right-out uk-position-medium" href="#" data-uk-slidenav-next data-uk-slider-item="next"></a></div><ul class="uk-slider-nav uk-dotnav uk-flex-center uk-margin"></ul></div></div><section class="uk-section uk-section-transparent" style="" ><div class="uk-container uk-container-large"><div id="c584" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div class="uk-slider-wrap uk-light" ><div class="uk-position-relative" data-uk-slider=" autoplay-interval: 7000; finite: true;"><div class="uk-slider-container"><ul class="uk-slider-items uk-child-width-1-1@s uk-child-width-1-2@m uk-child-width-1-2@l uk-child-width-1-2@xl" data-uk-grid="" data-uk-height-match="target: .frame"><li class="uk-slide-item item"><div id="c585" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-gallery" data-ce-columns="1" data-ce-images="1" ><div class="ce-outer"><div class="ce-inner"><div class=""><figure class="image"><a href="/industrial"><img class="image-embed-item" src="/fileadmin/_processed_/e/a/csm_industrial_1280x557px_de3f458e33.jpg" width="800" height="533" alt="" /></a></figure></div></div></div></div><div class="ce-bodytext"><h4>Industrial</h4><p>The products designed with our processes for the industrial market find their way into a broad range of industrial applications that require both robust devices and highly flexible manufacturing capabilities.&nbsp;</p><p>&nbsp;</p><p class="uk-text-center"><a href="/industrial" class="more-btn">read more</a></p></div></div></div></li><li class="uk-slide-item item"><div id="c579" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-gallery" data-ce-columns="1" data-ce-images="1" ><div class="ce-outer"><div class="ce-inner"><div class=""><figure class="image"><a href="/markets/communication-consumer"><img class="image-embed-item" src="/fileadmin/_processed_/b/3/csm_communication-consumer_1280x853px_ac5268b52c.jpg" width="800" height="531" alt="" /></a></figure></div></div></div></div><div class="ce-bodytext"><h4>Consumer &amp; Mobile Applications</h4><p>We entered the mobile communications market with a clear vision: connecting mobile devices with the real world. With this vision in mind, we became a leading foundry provider for discrete and integrated mobile sensor solutions, offering expert support to enable first-time-right designs.<br> &nbsp;</p><p class="uk-text-center"><a href="/markets/communication-consumer" class="more-btn">read more</a></p></div></div></div></li></ul></div><div class="uk-slidenav-container uk-hidden@l uk-flex uk-flex-center uk-margin-top"><a class="" href="#" data-uk-slidenav-previous data-uk-slider-item="previous"></a><a class="" href="#" data-uk-slidenav-next data-uk-slider-item="next"></a></div><div class="uk-slidenav-container uk-visible@l"><a class="uk-position-center-left-out uk-position-medium" href="#" data-uk-slidenav-previous data-uk-slider-item="previous"></a><a class="uk-position-center-right-out uk-position-medium" href="#" data-uk-slidenav-next data-uk-slider-item="next"></a></div><ul class="uk-slider-nav uk-dotnav uk-flex-center uk-margin"></ul></div></div></div></div></div></section></div></div></div></section></div></div></div></section><div id="c31743" class="frame frame-default frame-type-shortcut frame-layout-0"><section class="uk-section uk-section-primary uk-preserve-color uk-light" style="min-height: 450px; background-image: url(/fileadmin/a_background/Website_Sustainability_background_2000x1333px.png); background-repeat: no-repeat; background-attachment: fixed;" data-uk-parallax = "bgy: -250"><div class="uk-container"><div id="c31738" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><section class="uk-section uk-section-transparent uk-light uk-padding-remove-vertical" style="" ><div class="uk-container uk-container-expand"><div id="c31798" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div id="c31737" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><h2 class="uk-text-center">Our environment. Our responsibility.</h2></div></div></div></div></div></div></section><section class="uk-section uk-section-transparent uk-light uk-padding-remove-vertical uk-margin-medium-bottom uk-flex uk-flex-middle" style="" ><div class="uk-container uk-container-small"><div id="c31802" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div id="c31801" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center">Sustainability embodies many different facets, from environmental care to health and safety, human rights, business ethics and social responsibility.&nbsp;Visit our sustainability webpage to find more information.</p></div></div></div></div></div></div></section><section class="uk-section uk-section-transparent uk-light uk-padding-remove-vertical" style="" ><div class="uk-container"><div id="c31800" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div id="c31799" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center"><a href="/sustainability" title="Edit" class="load-more">Sustainability at X-FAB</a></p></div></div></div></div></div></div></section></div></div></div></section></div><section class="uk-section uk-section-transparent" style="" ><div class="uk-container uk-container-large"><div id="c2089" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"><header><h2 class=""> Technology portfolio </h2></header></div><div class=" "><div class="uk-width-1-1@m "><div id="c2090" class="frame frame-indent frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center">As a pure-play foundry specialized in analog/mixed-signal applications, we offer&nbsp;a wide range of modular CMOS and SOI processes in geometries ranging from 1.0 µm to 130 nm as well as special MEMS and SiC process capabilities. See our whole portfolio here: <a href="/technology">technology overview</a></p></div></div></div><div id="c30254" class="frame frame-default frame-type-shortcut frame-layout-0"><section class="uk-section uk-section-default " style="" ><div class="uk-container uk-container-large"><div id="c2220" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class="uk-child-width-expand uk-flex-center " data-uk-grid><div class="uk-width-1-2@s uk-width-1-4@m uk-width-1-4@l uk-width-1-4@xl "><div id="c2224" class="frame frame-default frame-type-textmedia frame-layout-0 frame-space-after-small"><header><h3 class="ce-headline-center"><a href="/technology#c2997">CMOS &amp; SOI</a></h3></header><div class="ce-textpic ce-center ce-above"></div></div><div id="c2212" class="frame frame-default frame-type-textmedia frame-layout-330 frame-space-after-small"><div class="ce-textpic ce-center ce-above"><div class="ce-gallery round-img" data-ce-columns="1" data-ce-images="1" ><div class="ce-outer"><div class="ce-inner"><div class=""><figure class="image"><a href="/technology#c2997"><img class="image-embed-item" src="/fileadmin/_processed_/9/8/csm_RF-CMOS_wafer_e0146cc2f5.jpg" width="300" height="300" alt="" /></a></figure></div></div></div></div></div></div><div id="c2213" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center">13 process families with over 450 options</p></div></div></div></div><div class="uk-width-1-2@s uk-width-1-4@m uk-width-1-4@l uk-width-1-4@xl "><div id="c2223" class="frame frame-default frame-type-textmedia frame-layout-0 frame-space-after-small"><header><h3 class="ce-headline-center"><a href="/technology#c2945">MEMS</a></h3></header><div class="ce-textpic ce-center ce-above"></div></div><div id="c30207" class="frame frame-default frame-type-textmedia frame-layout-330 frame-space-after-small"><div class="ce-textpic ce-center ce-above"><div class="ce-gallery round-img" data-ce-columns="1" data-ce-images="1" ><div class="ce-outer"><div class="ce-inner"><div class=""><figure class="image"><a href="/technology#c2945"><img class="image-embed-item" src="/fileadmin/_processed_/c/5/csm_MEMS_tech_overview_small_463eb795fd.jpg" width="300" height="300" alt="" /></a></figure></div></div></div></div></div></div><div id="c2215" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center">MEMS with or without integrated CMOS</p></div></div></div></div><div class="uk-width-1-2@s uk-width-1-4@m uk-width-1-4@l uk-width-1-4@xl "><div id="c2222" class="frame frame-default frame-type-textmedia frame-layout-0 frame-space-after-small"><header><h3 class="ce-headline-center"><a href="/technology/sic-gan">SiC &amp; GaN</a></h3></header><div class="ce-textpic ce-center ce-above"></div></div><div id="c2216" class="frame frame-default frame-type-textmedia frame-layout-330 frame-space-after-small"><div class="ce-textpic ce-center ce-above"><div class="ce-gallery round-img" data-ce-columns="1" data-ce-images="1" ><div class="ce-outer"><div class="ce-inner"><div class=""><figure class="image"><a href="/technology/sic-gan"><img class="image-embed-item" src="/fileadmin/_processed_/f/5/csm_SiC_wafer-epitaxy_800x533px_f96b806de8.jpg" width="300" height="300" alt="" /></a></figure></div></div></div></div></div></div><div id="c2217" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center">Processing technologies for WBG 6” SiC &amp; 8” GaN-on-Si</p></div></div></div></div><div class="uk-width-1-2@s uk-width-1-4@m uk-width-1-4@l uk-width-1-4@xl "><div id="c2221" class="frame frame-default frame-type-textmedia frame-layout-0"><header><h3 class="ce-headline-center"><a href="/technology/wlp-3d-int">Heterogeneous Integration</a></h3></header><div class="ce-textpic ce-center ce-above"></div></div><div id="c2218" class="frame frame-default frame-type-textmedia frame-layout-330 frame-space-after-small"><div class="ce-textpic ce-center ce-above"><div class="ce-gallery round-img" data-ce-columns="1" data-ce-images="1" ><div class="ce-outer"><div class="ce-inner"><div class=""><figure class="image"><a href="/technology/wlp-3d-int"><img class="image-embed-item" src="/fileadmin/_processed_/e/e/csm_Heterogeneous_integration_TSV_e973ab803b.jpg" width="300" height="300" alt="" /></a></figure></div></div></div></div></div></div><div id="c2219" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center">3D Integration and Wafer Level Package Solutions</p></div></div></div></div></div></div></section></div><div id="c2094" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center"><a href="/technology" class="load-more">READ MORE</a></p></div></div></div></div></div></div></section><section id="socialwall-header" class="uk-section uk-section-transparent uk-section-xsmall frame-space-before-extra-large uk-flex uk-flex-bottom" style="background-image: url(/fileadmin/a_background/ccc_bgi_2000x1333px.jpg); background-position: center center; background-size: cover; background-repeat: no-repeat; background-attachment: scroll;" ><div class="uk-container uk-container-expand"><div id="c31601" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0 frame-space-before-extra-large"></div><div class=" "><div class="uk-width-1-1@m "><div id="c31599" class="frame frame-default frame-type-header frame-layout-0"><header><h2 class="ce-headline-center"> Social media channels </h2></header></div></div></div></div></section><section id="socialwall" class="uk-section uk-section-transparent" style="" ><div class="uk-container uk-container-small"><div id="c31597" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div id="c31598" class="frame frame-default frame-type-html frame-layout-0"><div id="flockler-embed-17fb1d4954907fde08604d922b74c373"></div><script src="https://plugins.flockler.com/embed/17c9d1ae3af03836bd8db6a8d19d986b/17fb1d4954907fde08604d922b74c373" async></script></div></div></div></div></section><div id="c212" class="frame frame-default frame-type-shortcut frame-layout-0"><section class="uk-section uk-section-primary uk-preserve-color uk-light" style="" ><div class="uk-container uk-container-small"><div id="c32" class="frame frame-indent frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div id="c33" class="frame frame-default frame-type-textmedia frame-layout-0"><header><h2 class=""> Contact </h2></header><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center">For more information, please contact us:</p></div></div></div><div id="c1317" class="frame frame-default frame-type-shortcut frame-layout-0"><div id="c1314" class="frame frame-default frame-type-form_formframework frame-layout-0"><form enctype="multipart/form-data" method="post" id="contactform-1314" action="/?tx_form_formframework%5Baction%5D=perform&amp;tx_form_formframework%5Bcontroller%5D=FormFrontend&amp;cHash=97cc4823c07a04476fa87c4f13320d12#contactform-1314"><div><input type="hidden" name="tx_form_formframework[contactform-1314][__state]" value="TzozOToiVFlQTzNcQ01TXEZvcm1cRG9tYWluXFJ1bnRpbWVcRm9ybVN0YXRlIjoyOntzOjI1OiIAKgBsYXN0RGlzcGxheWVkUGFnZUluZGV4IjtpOjA7czoxMzoiACoAZm9ybVZhbHVlcyI7YTowOnt9fQ==506332f8c83bea95e9a9e942a9190c154742194e" /><input type="hidden" name="tx_form_formframework[__trustedProperties]" value="a:1:{s:16:&quot;contactform-1314&quot;;a:8:{s:6:&quot;text-1&quot;;i:1;s:19:&quot;JQnhg8UHVEfIDcXxC3z&quot;;i:1;s:7:&quot;email-1&quot;;i:1;s:14:&quot;singleselect-1&quot;;i:1;s:10:&quot;textarea-1&quot;;i:1;s:10:&quot;checkbox-1&quot;;i:1;s:11:&quot;recaptcha-1&quot;;i:1;s:13:&quot;__currentPage&quot;;i:1;}}9778493a6acdbb6615e75e6969a6f1943f3054dc" /></div><div class="form-group uk-margin-bottom"><label class="control-label uk-form-label" for="contactform-1314-text-1">Name<span class="required">*</span></label><div class="uk-form-controls uk-margin-small-bottom"><input required="required" class="uk-input form-control uk-input" id="contactform-1314-text-1" type="text" name="tx_form_formframework[contactform-1314][text-1]" value="" /></div></div><input autocomplete="JQnhg8UHVEfIDcXxC3z" aria-hidden="true" id="contactform-1314-JQnhg8UHVEfIDcXxC3z" style="position:absolute; margin:0 0 0 -999em;" tabindex="-1" type="text" name="tx_form_formframework[contactform-1314][JQnhg8UHVEfIDcXxC3z]" /><div class="form-group uk-margin-bottom"><label class="control-label uk-form-label" for="contactform-1314-email-1">E-Mail<span class="required">*</span></label><div class="uk-form-controls uk-margin-small-bottom"><input required="required" class="uk-input form-control uk-input" id="contactform-1314-email-1" type="email" name="tx_form_formframework[contactform-1314][email-1]" value="" /></div></div><div class="form-group uk-margin-bottom"><label class="control-label uk-form-label" for="contactform-1314-singleselect-1">Region</label><div class="uk-form-controls uk-margin-small-bottom"><select class="uk-select form-control uk-select" id="contactform-1314-singleselect-1" name="tx_form_formframework[contactform-1314][singleselect-1]"><option value="">Please Select</option><option value="Europe">Europe</option><option value="North America">North America</option><option value="Asia Pacific">Asia Pacific</option><option value="Other">Other</option></select></div></div><div class="form-group uk-margin-bottom"><label class="control-label uk-form-label" for="contactform-1314-textarea-1">Message<span class="required">*</span></label><div class="uk-form-controls uk-margin-small-bottom"><textarea required="required" class="uk-textarea form-control uk-textarea" id="contactform-1314-textarea-1" name="tx_form_formframework[contactform-1314][textarea-1]"></textarea></div></div><div class="clearfix"><div id="c28" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p>By submitting the form you agree to our <a href="/privacy-statement">privacy policy</a>.</p></div></div></div></div><div class="form-group uk-margin-bottom"><div class=""><div class="form-check"><label class="uk-checkbox form-check-label " for="contactform-1314-checkbox-1"><input type="hidden" name="tx_form_formframework[contactform-1314][checkbox-1]" value="" /><input required="required" class="uk-checkbox uk-checkbox" id="contactform-1314-checkbox-1" type="checkbox" name="tx_form_formframework[contactform-1314][checkbox-1]" value="1" /><span><span class="required">*</span></span></label></div><span class="help-block">I agree to my data being stored and processed by X-FAB.</span></div></div><div class="form-group uk-margin-bottom"><label class="control-label uk-form-label" for="contactform-1314-recaptcha-1">reCAPTCHA</label><div class="recaptcha"><input id="contactform-1314-recaptcha-1" type="hidden" name="tx_form_formframework[contactform-1314][recaptcha-1]" value="1" /><div class="g-recaptcha" data-sitekey="6LfSfTscAAAAACM6Oa5gJcMbpYxzc9Vobk3IQsJI"></div></div></div><div class="actions"><nav class="form-navigation"><div class="btn-toolbar" role="toolbar"><div class="btn-group" role="group"><input id="currentPage" type="hidden" name="tx_form_formframework[contactform-1314][__currentPage]" value="" /><span class="next submit"><button class="btn btn-primary" onclick="document.getElementById(\'currentPage\').value=\'1\'" type="submit" name="" value="1">send message</button></span></div></div></nav></div></form></div></div></div></div></div></section></div>', 'contentFocus' => '<section class="uk-section uk-section-default uk-section-large uk-flex uk-flex-bottom" style="background-image: url(/fileadmin/X-FAB_Wafer_Foundry_Produktion_IMG62473_1920x1273px.jpg); background-position: center center; background-size: cover; background-repeat: no-repeat; background-attachment: scroll;" ><div class=""><div id="c1109" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div id="c1" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><h2>Your specialty foundry</h2><h3><span class="uk-text-uppercase">For the analog world</span></h3></div></div></div></div></div></div></section>', 'headers' => '<div id="c1" class="frame frame- frame-type- frame-layout-0"></div>', 'data' => array('uid' => 1, 'pid' => 0, 'tstamp' => 1624518882, 'crdate' => 1592312425, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 256, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:50:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Home', 'slug' => '/', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 1, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => 'X-FAB Foundry', 'layout' => 0, 'target' => '', 'media' => 1, 'lastUpdated' => 1611579480, 'keywords' => 'Foundry, analog/mixed signal, semiconductor, pure-play', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1690980723, 'abstract' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__defaultwithfocus', 'backend_layout_next_level' => 'pagets__defaultwithfocus', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Your specialty foundry for the analog world', 'no_index' => 0, 'no_follow' => 1, 'og_title' => 'X-FAB: Your specialty foundry for the analog world', 'og_description' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.', 'og_image' => 0, 'twitter_title' => 'X-FAB: Your specialty foundry for the analog world', 'twitter_description' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Your specialty foundry for the analog world', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'currentValue_kidjls9dksoje' => 'defaultwithfocus'), 'current' => 'defaultwithfocus', 'files' => array(object(TYPO3\CMS\Core\Resource\FileReference)), 'menuMain' => array(array('data' => array('uid' => 12, 'pid' => 1, 'tstamp' => 1610960241, 'crdate' => 1592377009, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 192, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'About us', 'slug' => '/about-us', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies with a clear focus on automotive, industrial, and medical applications. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits (ICs) and other semiconductor devices for use in their own products or the products of their customers.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1693896583, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Your specialty foundry for the analog world', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'About us', 'link' => '/about-us', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 1618, 'pid' => 12, 'tstamp' => 1607599674, 'crdate' => 1607598452, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 64, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:33:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:13:"shortcut_mode";N;s:8:"shortcut";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'News & Events', 'slug' => '/about-us/news-events', 'doktype' => 4, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 29, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 1, 'SYS_LASTCHANGED' => 0, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => '', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'News & Events', 'link' => '/news', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1620, 'pid' => 12, 'tstamp' => 1607599761, 'crdate' => 1607599736, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 96, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:33:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:13:"shortcut_mode";N;s:8:"shortcut";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Investors', 'slug' => '/about-us/investors', 'doktype' => 4, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 6, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Investors', 'link' => '/investors', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1619, 'pid' => 12, 'tstamp' => 1607599660, 'crdate' => 1607599660, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 128, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 22, 'l10n_diffsource' => 'a:32:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:3:"url";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Career', 'slug' => '/career-1', 'doktype' => 3, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => 'https://www.xfabulous.com', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Career', 'link' => 'https://www.xfabulous.com', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 2617, 'pid' => 12, 'tstamp' => 1658407954, 'crdate' => 1658407904, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 384, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:33:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:13:"shortcut_mode";N;s:8:"shortcut";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Sustainability', 'slug' => '/about-us/sustainability', 'doktype' => 4, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 2612, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Sustainability', 'link' => '/sustainability', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array())), 'image' => array()), array('data' => array('uid' => 18, 'pid' => 1, 'tstamp' => 1607633132, 'crdate' => 1599649257, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 224, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Markets', 'slug' => '/markets', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'With our broad range of technologies and unique combination of CMOS and MEMS process capabilities, X-FAB is well equipped to manufacture complex devices that meet the exacting quality requirements of the automotive, industrial and medical industries. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1691165372, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Foundry solutions for key markets: automotive, medical, industrial devices', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'With our broad range of technologies and unique combination of CMOS and MEMS process capabilities we meet the requirements of the automotive, industrial and medical industries. ', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Markets', 'link' => '/markets', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 30, 'pid' => 18, 'tstamp' => 1607633423, 'crdate' => 1599650465, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 256, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Automotive', 'slug' => '/automotive', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Reliability and trust are two key requisites for serving the automotive industry. At X-FAB, we focus on technology performance, robustness and reliability and help our customers design and market semiconductors of outstanding quality with increased integration, functionalities and effectiveness.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1687833718, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Foundry solutions for the automotive industry with quality built in.', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Your foundry partner for automotive electronics', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Automotive', 'link' => '/automotive', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 44, 'pid' => 18, 'tstamp' => 1607633473, 'crdate' => 1600778671, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 320, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Medical', 'slug' => '/medical', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'medical applications, pacemakers, dna sequencing, ultrasound, lab-on-a-chip, ', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'We manufacture chips for medical applications such as pacemakers, DNA sequencing and ultrasound device. Find out more about our medical solutions here.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1678088570, 'abstract' => 'We manufacture chips for medical applications such as pacemakers, DNA sequencing and ultrasound device. Find out more about our medical solutions here.', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Your foundry partner for medical products', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Your foundry partner for medical products', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Medical', 'link' => '/medical', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 43, 'pid' => 18, 'tstamp' => 1607633631, 'crdate' => 1600778664, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 384, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Industrial', 'slug' => '/industrial', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'At X-FAB, we empower the future of the industrial electronics markets with our solutions for the next generation of energy management and automation technologies. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1687833905, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Your foundry partner for industrial applications with quality built in.', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Your foundry partner for industrial applications', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Industrial', 'link' => '/industrial', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 31, 'pid' => 18, 'tstamp' => 1607633835, 'crdate' => 1599653258, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 512, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Communication & Consumer', 'slug' => '/markets/communication-consumer', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Our technologies enable communication and consumer applications that make your life smarter, greener and safer. Together with your innovations, our proven, reliable technology portfolio of sensor/sensor interface, power management and radiofrequency (RF) solutions allows you to realize applications that integrate seamlessly into everyone’s daily life, connecting devices and people. Your foundry partner for communication & consumer devices.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1677040027, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Your foundry partner for communication & consumer devices', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Your foundry partner for communication & consumer devices', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Communication & Consumer', 'link' => '/markets/communication-consumer', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array())), 'image' => array()), array('data' => array('uid' => 19, 'pid' => 1, 'tstamp' => 1610955628, 'crdate' => 1599649290, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 240, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Technology', 'slug' => '/technology', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'We offer a wide range of open platform process technologies. We combine advanced modular CMOS and BiCMOS platforms with additional analog functions and modular options. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1689305484, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Wide range of Semiconductor Technologies', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 1, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Technology', 'link' => '/technology', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 1591, 'pid' => 19, 'tstamp' => 1702884256, 'crdate' => 1602150500, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 640, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'High Voltage', 'slug' => '/technology/high-voltage', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB BCD-on-SOI solutions offers a comprehensive range of automotive High-voltage (HV) CMOS processes supporting AEC-Q100 Garde 0 designs.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1702884256, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Automotive BCD-on-SOI and High Voltage (HV) foundry solutions', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'BCD-on-SOI', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'High Voltage', 'link' => '/technology/high-voltage', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 45, 'pid' => 19, 'tstamp' => 1702884435, 'crdate' => 1600778703, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 704, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'e-NVM', 'slug' => '/technology/e-nvm', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB provides a comprehensive portfolio of embedded NVM IPs complying with the most stringent quality requirements of the automotive market. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1706244252, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Best-in-class automotive grade embedded NVM solutions', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Embedded NVM ', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'e-NVM', 'link' => '/technology/e-nvm', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1592, 'pid' => 19, 'tstamp' => 1674549190, 'crdate' => 1602150609, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 736, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Sensors', 'slug' => '/technology/sensors', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'At X-FAB, we provide a comprehensive range of sensors measuring light, pressure, temperature and others. Our sensor wafer production is based on high-volume technologies and fulfills automotive standards. Our best-in-class ultralow-noise CMOS technologies – XH035 and XH018 – are recognized and adopted by tier-one semiconductor vendors for sensor interfaces.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1688956064, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Sensors and actuator solutions from a foundry', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Sensing the analog world', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Sensors', 'link' => '/technology/sensors', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1593, 'pid' => 19, 'tstamp' => 1607634257, 'crdate' => 1602150642, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 752, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'RF', 'slug' => '/technology/rf', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In today’s connected world, radio frequency (RF) electromagnetic signals are key for enabling many everyday tasks. Making a phone call or browsing the Internet with your smartphone at home or on the street is only possible with RF signals.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1694598434, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'RF and wireless solutions from a foundry', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Connecting people and devices worldwide', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'RF', 'link' => '/technology/rf', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 46, 'pid' => 19, 'tstamp' => 1702885286, 'crdate' => 1600778762, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 768, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'SiC & GaN', 'slug' => '/technology/sic-gan', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB foundry provides comprehensive processing technologies for wide bandgap (WBG) materials, Silicon Carbide (SiC) and Gallium Nitride (GaN). ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1711355804, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'SiC and GaN foundry solutions that fit your needs', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'SiC and GaN foundry', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'SiC & GaN', 'link' => '/technology/sic-gan', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1594, 'pid' => 19, 'tstamp' => 1607634476, 'crdate' => 1602150755, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 896, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'WLP & 3D Integration', 'slug' => '/technology/wlp-3d-int', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Extending the already feature rich CMOS technologies, X-FAB is working on solutions for 3D Heterogeneous integration, TSV and wafer level packaging. These technologies allow a better integration, as well as a reduction of packaging costs for our customers.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1688972043, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Wafer Level Packaging and 3D Integration', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Wafer Level Packaging and 3D Integration', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'WLP & 3D Integration', 'link' => '/technology/wlp-3d-int', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 47, 'pid' => 19, 'tstamp' => 1607634571, 'crdate' => 1600778770, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 1024, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Silicon-based Microfluidics', 'slug' => '/technology/silicon-based-microfluidics', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Connecting the two worlds of microelectronics and microfluidics is a challenge and an opportunity at the same time. Smart integrated microfluidic systems are the key to connecting both worlds. Our extensive MEMS-oriented technology offering enables such innovative applications, including devices for next-generation DNA sequencing and liquid biopsy or microelectrode arrays for drug development or food safety testing.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1688975443, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Silicon-based microfluidic solutions', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Silicon-based microfluidic solutions', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Silicon-based Microfluidics', 'link' => '/technology/silicon-based-microfluidics', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1631, 'pid' => 19, 'tstamp' => 1612454205, 'crdate' => 1611233481, 'cruser_id' => 9, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 1536, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 9, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Innovation', 'slug' => '/innovation', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'funded projects, innovation, collaboration, industrial partners', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB works and participates continuously on research, development and innovation projects in future-oriented technology and product fields. Main topics here are future emission-free and safe mobility, smart energy supply, ultralow power technologies, data security and artificial intelligence for smart sensor systems. ', 'no_search' => 1, 'SYS_LASTCHANGED' => 1689907295, 'abstract' => 'Focus areas are emission-free and safe mobility, smart energy supply, ultralow power technologies, data security and artificial intelligence for smart sensor systems. ', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Together we shape our future through innovation', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Focus areas are emission-free and safe mobility, smart energy supply, ultralow power technologies, data security and artificial intelligence for smart sensor systems. ', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Innovation', 'link' => '/innovation', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array())), 'image' => array()), array('data' => array('uid' => 20, 'pid' => 1, 'tstamp' => 1607634716, 'crdate' => 1599649310, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 248, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Manufacturing', 'slug' => '/manufacturing', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB has an established track record of over 25 years of experience providing proprietary manufacturing processes and advanced design and engineering support offerings. Excellent service, reliability and first-class technical support – that’s what X-FAB stands for.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1660039460, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Manufacturing solutions from a pure-play foundry', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Manufacturing excellence to make your innovations come to life', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Manufacturing', 'link' => '/manufacturing', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 32, 'pid' => 20, 'tstamp' => 1604477339, 'crdate' => 1599653757, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 256, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:48:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:8:"abstract";N;s:8:"keywords";N;s:11:"description";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Our Fabs', 'slug' => '/manufacturing/our-fabs', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1708597934, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Our Fabs', 'link' => '/manufacturing/our-fabs', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 48, 'pid' => 20, 'tstamp' => 1606989586, 'crdate' => 1600778797, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 512, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Supply Chain Management', 'slug' => '/manufacturing/supply-chain-management', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1617190077, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Supply Chain Management', 'link' => '/manufacturing/supply-chain-management', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 37, 'pid' => 20, 'tstamp' => 1610959597, 'crdate' => 1600772732, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 768, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Quality', 'slug' => '/manufacturing/quality', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'At X-FAB we understand quality as ongoing process which has to cover all steps that are needed to develop, realize and maintain our technologies and services along the whole lifecycle. We put the customer needs, goals and expectations in the focus of our efforts.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1706685556, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Quality - More than 25 years of automotive quality foundry offering', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'We put the customer needs, goals and expectations in the focus of our efforts.', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Quality', 'link' => '/manufacturing/quality', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 49, 'pid' => 20, 'tstamp' => 1617937078, 'crdate' => 1600778815, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 1024, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Prototyping', 'slug' => '/manufacturing/prototyping', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1711595518, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Prototyping', 'link' => '/manufacturing/prototyping', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1604, 'pid' => 20, 'tstamp' => 1617937063, 'crdate' => 1604054288, 'cruser_id' => 9, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 1280, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 9, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Outsourcing', 'slug' => '/manufacturing/outsourcing', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1702367772, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Outsourcing', 'link' => '/manufacturing/outsourcing', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array())), 'image' => array()), array('data' => array('uid' => 21, 'pid' => 1, 'tstamp' => 1608040619, 'crdate' => 1599649394, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 252, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Design Support', 'slug' => '/design-support', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1689305053, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Design Support', 'link' => '/design-support', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 1627, 'pid' => 21, 'tstamp' => 1611083842, 'crdate' => 1609997293, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 192, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:32:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:3:"url";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'FeatureXplorer', 'slug' => '/design-support/featurexplorer', 'doktype' => 3, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => 'https://www.xfab.com/featurexplorer', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1611083699, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'FeatureXplorer', 'link' => 'https://www.xfab.com/featurexplorer', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1628, 'pid' => 21, 'tstamp' => 1611308945, 'crdate' => 1610003841, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 480, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 1603, 'l10n_diffsource' => 'a:33:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:13:"shortcut_mode";N;s:8:"shortcut";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'ResourceXplorer', 'slug' => '/design-support/resourcexplorer', 'doktype' => 4, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => 'https://www.xfab.com/tools/resourcexplorer', 'shortcut' => 1630, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'ResourceXplorer', 'link' => '/tools/resourcexplorer', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1636, 'pid' => 21, 'tstamp' => 1611588474, 'crdate' => 1611588423, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 1008, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:33:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:13:"shortcut_mode";N;s:8:"shortcut";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'X-CHAIN', 'slug' => '/design-support/x-chain', 'doktype' => 4, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 58, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'X-CHAIN', 'link' => '/x-chain', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1637, 'pid' => 21, 'tstamp' => 1611608943, 'crdate' => 1611604387, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 1272, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:33:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:13:"shortcut_mode";N;s:8:"shortcut";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'IP Portal', 'slug' => '/design-support/ip-portal', 'doktype' => 4, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 1578, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'IP Portal', 'link' => '/ip-portal', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array())), 'image' => array())), 'menuSub' => array(), 'menuBreadcrumb' => array(), 'menuTop' => array(array('data' => array('uid' => 29, 'pid' => 5, 'tstamp' => 1605005074, 'crdate' => 1599650139, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 128, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:48:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:8:"abstract";N;s:8:"keywords";N;s:11:"description";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'News/Events', 'slug' => '/news', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1709882672, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'News/Events', 'link' => '/news', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 6, 'pid' => 5, 'tstamp' => 1627654361, 'crdate' => 1592376863, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 256, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Investors', 'slug' => '/investors', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Find all relevant investor information at a glance. Latest Investor News · X-FAB Share · Corporate Governance · Financial Reports · Investor Day 2021...', 'no_search' => 0, 'SYS_LASTCHANGED' => 1711471135, 'abstract' => 'Find all relevant investor information at a glance. Latest Investor News · X-FAB Share · Corporate Governance · Financial Reports · Investor Day 2021...', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Investor Relations', 'no_index' => 0, 'no_follow' => 0, 'og_title' => 'X-FAB Investor Relations', 'og_description' => 'Find all relevant investor information at a glance. Latest Investor News · X-FAB Share · Corporate Governance · Financial Reports · Investor Day 2021...', 'og_image' => 1, 'twitter_title' => 'X-FAB Investor Relations', 'twitter_description' => 'Find all relevant investor information at a glance. Latest Investor News · X-FAB Share · Corporate Governance · Financial Reports · Investor Day 2021...', 'twitter_image' => 1, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Investors', 'link' => '/investors', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 22, 'pid' => 5, 'tstamp' => 1602769103, 'crdate' => 1599649419, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 512, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:32:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:3:"url";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Career', 'slug' => '/career', 'doktype' => 3, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => 'https://www.xfabulous.com', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1601965457, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Career', 'link' => 'https://www.xfabulous.com', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 23, 'pid' => 5, 'tstamp' => 1601965457, 'crdate' => 1599649689, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '0', 'sorting' => 640, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:1:{s:6:"hidden";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Tools', 'slug' => '/tools', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1665056387, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Tools', 'link' => '/tools', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 1616, 'pid' => 5, 'tstamp' => 1607431938, 'crdate' => 1607246530, 'cruser_id' => 9, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 672, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:32:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:3:"url";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 9, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'My X-FAB', 'slug' => '/my-xfab-login', 'doktype' => 3, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => 'https://my.xfab.com/', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'My X-FAB', 'link' => 'https://my.xfab.com/', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 24, 'pid' => 5, 'tstamp' => 1701760506, 'crdate' => 1599649699, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 704, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:1:{s:6:"hidden";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Contact', 'slug' => '/contact', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1710902458, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Contact', 'link' => '/contact', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 15, 'pid' => 5, 'tstamp' => 1601965457, 'crdate' => 1592378532, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '0', 'sorting' => 768, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:1:{s:6:"hidden";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Search', 'slug' => '/search', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1632302701, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Search', 'link' => '/search', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0)), 'menuSocket' => array(array('data' => array('uid' => 1622, 'pid' => 7, 'tstamp' => 1607603784, 'crdate' => 1607603716, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 128, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:33:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:13:"shortcut_mode";N;s:8:"shortcut";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Sitemap', 'slug' => '/sitemap-2', 'doktype' => 4, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 25, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 1, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Sitemap', 'link' => '/sitemap', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 26, 'pid' => 7, 'tstamp' => 1601965457, 'crdate' => 1599649882, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 768, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:48:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:8:"abstract";N;s:8:"keywords";N;s:11:"description";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Imprint', 'slug' => '/imprint', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1681458270, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Imprint', 'link' => '/imprint', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 27, 'pid' => 7, 'tstamp' => 1601965457, 'crdate' => 1599650039, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 1024, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:48:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:8:"abstract";N;s:8:"keywords";N;s:11:"description";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Privacy Statement', 'slug' => '/privacy-statement', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1686650399, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Privacy Statement', 'link' => '/privacy-statement', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0)), 'menuSide' => array(array('data' => array('uid' => 12, 'pid' => 1, 'tstamp' => 1610960241, 'crdate' => 1592377009, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 192, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'About us', 'slug' => '/about-us', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies with a clear focus on automotive, industrial, and medical applications. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits (ICs) and other semiconductor devices for use in their own products or the products of their customers.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1693896583, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Your specialty foundry for the analog world', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'About us', 'link' => '/about-us', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 18, 'pid' => 1, 'tstamp' => 1607633132, 'crdate' => 1599649257, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 224, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Markets', 'slug' => '/markets', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'With our broad range of technologies and unique combination of CMOS and MEMS process capabilities, X-FAB is well equipped to manufacture complex devices that meet the exacting quality requirements of the automotive, industrial and medical industries. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1691165372, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Foundry solutions for key markets: automotive, medical, industrial devices', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'With our broad range of technologies and unique combination of CMOS and MEMS process capabilities we meet the requirements of the automotive, industrial and medical industries. ', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Markets', 'link' => '/markets', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 19, 'pid' => 1, 'tstamp' => 1610955628, 'crdate' => 1599649290, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 240, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Technology', 'slug' => '/technology', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'We offer a wide range of open platform process technologies. We combine advanced modular CMOS and BiCMOS platforms with additional analog functions and modular options. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1689305484, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Wide range of Semiconductor Technologies', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 1, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Technology', 'link' => '/technology', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 20, 'pid' => 1, 'tstamp' => 1607634716, 'crdate' => 1599649310, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 248, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Manufacturing', 'slug' => '/manufacturing', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB has an established track record of over 25 years of experience providing proprietary manufacturing processes and advanced design and engineering support offerings. Excellent service, reliability and first-class technical support – that’s what X-FAB stands for.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1660039460, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Manufacturing solutions from a pure-play foundry', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Manufacturing excellence to make your innovations come to life', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Manufacturing', 'link' => '/manufacturing', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 21, 'pid' => 1, 'tstamp' => 1608040619, 'crdate' => 1599649394, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 252, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Design Support', 'slug' => '/design-support', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1689305053, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Design Support', 'link' => '/design-support', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0))))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/ContentObject/ContentDataProcessor.php line 60

                $processorConfiguration = $processors[$key . '.'] ?? [];

                $variables = GeneralUtility::makeInstance($className)->process(
                    $cObject,
                    $configuration,
                    $processorConfiguration,
                    $variables
                );
at TYPO3\CMS\Frontend\ContentObject\ContentDataProcessor->process(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer), array('templateName' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'templateRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Templates/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Templates/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Partials/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Partials/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Layouts/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Layouts/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special.' => array('value.' => array('field' => 'pages')), 'levels' => '3', 'as' => 'menuMain', 'expandAll' => '1', 'includeSpacer' => '0', 'titleField' => 'nav_title // title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'as' => 'image'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('levels' => '5', 'entryLevel' => '2', 'expandAll' => '0', 'includeSpacer' => '0', 'as' => 'menuSub'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '40.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'includeNotInMenu' => '1', 'excludeUidList' => '1', 'as' => 'menuBreadcrumb'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'directory', 'special.' => array('value' => '5'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'menuTop'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '60.' => array('special' => 'directory', 'special.' => array('value' => '7'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'menuSocket'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '70.' => array('special' => 'directory', 'special.' => array('value' => ''), 'levels' => '1', 'includeSpacer' => '0', 'as' => 'menuSide'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '80.' => array('languages' => 'auto', 'as' => 'menuLanguage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '90.' => array('special' => 'directory', 'special.' => array('value' => '9'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'footerLeftSideMenu')), 'settings.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'framework' => 'UiKit', 'rootPid' => '1', 'targetPid' => '15', 'logoFilePath' => 'fileadmin/user_upload/XFAB_Logo_White.svg', 'logoFileWidth' => '140', 'logoFileAltAttr' => 'XFAB Logo', 'logoShrink' => '1', 'topMenuPosition' => 'right', 'mainMenuEntryLevel' => '0', 'mainMenuPosition' => 'right', 'mainMenuSticky' => '1', 'mainMenuMegaExclude' => '', 'mainMenuMegaBackgroundColor' => 'default', 'mainMenuMegaWidth' => 'Navbar', 'showSubMenuInSidebars' => '0', 'socketMenuPosition' => 'right', 'socketMenuSourceID' => '7', 'copyrightFooterText' => 'X-FAB Silicon Foundries SE', 'topMenuSourceID' => '5', 'sideMenuSourceID' => '', 'headerInnerBuild' => 'default', 'headerWidth' => '0', 'headerInnerAlign' => 'left', 'headerOuterBackgroundColor' => 'primary', 'headerTopmenuBackgroundColor' => 'primary', 'headerMainmenuBackgroundColor' => 'primary', 'footerBackgroundColor' => 'muted', 'footerBackgroundInlineColor' => '', 'footerSitemapMenu' => '1', 'footerSitemapExcludePageID' => '', 'socketBackgroundColor' => 'muted', 'socketBackgroundInlineColor' => '', 'showBreadcrumb' => '0', 'showBreadcrumbHomeLink' => '1', 'breadcrumbBackgroundColor' => 'primary', 'newsDetailPid' => '{$plugin.tx_akt_sitepackage.settings.newsDetailPid}', 'socialMediaMenu' => '1', 'facebookPath' => 'https://www.facebook.com/xfab.corporate', 'twitterPath' => 'https://twitter.com/xfab_foundry?lang=de', 'youtubePath' => 'https://www.youtube.com/channel/UCZVqNluNp8W0Ni9CQ0PTvyQ', 'linkedInPath' => 'https://de.linkedin.com/company/x-fab', 'xingPath' => '', 'instagramPath' => '', 'footerContent.' => array('footerContentSourceUID' => '')), 'variables.' => array('contentMain' => 'CONTENT', 'contentMain.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=0')), 'contentFocus' => 'CONTENT', 'contentFocus.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=1')), 'headers' => '< lib.contentElement', 'headers.' => array('templateName' => 'Header'))), array('contentMain' => '<section class="uk-section uk-section-default " style="" ><div class="uk-container uk-container-large"><div id="c3" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"><header><h1 class="ce-headline-center"> What we do... </h1></header></div><div class="uk-child-width-expand " data-uk-grid><div class="uk-width-1-1@s uk-width-1-2@m uk-width-1-2@l uk-width-1-2@xl "><div id="c2" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p>As the world\'s leading foundry group for analog/mixed-signal semiconductor applications&nbsp;X-FAB creates a clear alternative to typical foundry services by combining solid, specialized expertise in advanced analog and mixed-signal process technologies with excellent service, a high level of responsiveness and first-class technical support.</p></div></div></div></div><div class="uk-width-1-1@s uk-width-1-2@m uk-width-1-2@l uk-width-1-2@xl "><div id="c4" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p>X-FAB manufactures wafers for <a href="/automotive">automotive</a>, <a href="/industrial">industrial</a>, <a href="/markets/communication-consumer">consumer</a>, <a href="/medical">medical</a>, and other applications on modular <a href="/technology">CMOS</a> processes in geometries ranging from 1.0μm to 130 nm, special <a href="/technology">SOI</a> and <a href="/technology">MEMS</a> long-lifetime processes.&nbsp;With our&nbsp;six <a href="/manufacturing/our-fabs">manufacturing sites</a> in Germany, France, Malaysia and the USA, we have a combined capacity of about 100,000 eight inch equivalent wafer starts per month.</p></div></div></div></div></div></div></section><section class="uk-section uk-section-primary uk-preserve-color" style="" ><div class="uk-container uk-container-large"><div id="c5" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div id="c6" class="frame frame-default frame-type-list frame-layout-0"><header><h2 class="ce-headline-center"> News </h2></header><div class="news"><!--TYPO3SEARCH_end--><!-- GRID VIEW --><div id="news-container-6" class="uk-news-list uk-news-grid-view uk-grid-large uk-margin-large-top uk-margin-medium-bottom"><div class="uk-card uk-card-default uk-margin-medium" itemscope="itemscope" itemtype="http://schema.org/Article"><div class="uk-child-width-1-2@s uk-child-width-1-3@m uk-grid-collapse uk-card-inner" uk-grid><div class="uk-card-media-left uk-background-default uk-cover-container uk-padding"><div class="header"><p class="uk-article-meta"><span class="news-list-date"><time itemprop="datePublished" datetime="2024-03-27"> Mar 27, 2024 </time></span></p><h3 class="uk-card-title"><a title="photonixFAB Consortium now open for first prototyping" href="/news/details/article/photonixfab-consortium-now-open-for-first-prototyping"><span itemprop="headline">photonixFAB Consortium now open for first prototyping</span></a></h3></div></div><div class="uk-card-image uk-padding-remove uk-margin-remove"><div class="uk-card-body uk-padding-remove"><div class="news-img-wrap"><a title="photonixFAB Consortium now open for first prototyping" href="/news/details/article/photonixfab-consortium-now-open-for-first-prototyping"><img src="/fileadmin/_processed_/6/4/csm_photonixFAB_Logo_horizontal_RGB_5fb92bcbfa.png" width="610" height="400" alt="" /></a></div></div></div><div class="uk-card-media-right uk-background-secondary uk-cover-container uk-padding uk-margin-remove"><div class="teaser-text"><div itemprop="description"><p>New customer engagement portal enables early technology access</p></div><a class="more uk-button uk-button-default uk-button--more" title="photonixFAB Consortium now open for first prototyping" href="/news/details/article/photonixfab-consortium-now-open-for-first-prototyping"> Read more </a></div></div></div></div><div class="uk-card uk-card-default uk-margin-medium" itemscope="itemscope" itemtype="http://schema.org/Article"><div class="uk-child-width-1-2@s uk-child-width-1-3@m uk-grid-collapse uk-card-inner" uk-grid><div class="uk-card-media-left uk-background-default uk-cover-container uk-padding"><div class="header"><p class="uk-article-meta"><span class="news-list-date"><time itemprop="datePublished" datetime="2023-11-16"> Nov 16, 2023 </time></span></p><h3 class="uk-card-title"><a title="X-FAB Introduces New Generation of Enhanced Performance SPAD Devices focused on Near-Infrared Applications" href="/news/details/article/x-fab-introduces-new-generation-of-enhanced-performance-spad-devices-focused-on-near-infrared-applications"><span itemprop="headline">X-FAB Introduces New Generation of Enhanced Performance SPAD Devices focused on Near-Infrared Applications</span></a></h3></div></div><div class="uk-card-image uk-padding-remove uk-margin-remove"><div class="uk-card-body uk-padding-remove"><div class="news-img-wrap"><a title="X-FAB Introduces New Generation of Enhanced Performance SPAD Devices focused on Near-Infrared Applications" href="/news/details/article/x-fab-introduces-new-generation-of-enhanced-performance-spad-devices-focused-on-near-infrared-applications"><img title="SPAD Near Infrared Applications" alt="SPAD Near Infrared Applications" src="/fileadmin/_processed_/8/9/csm_16nov_SPAD__IR_2919398133.jpg" width="610" height="400" /></a></div></div></div><div class="uk-card-media-right uk-background-secondary uk-cover-container uk-padding uk-margin-remove"><div class="teaser-text"><div itemprop="description"><p>X-FAB Silicon Foundries SE, the leading analog/mixed-signal and specialty foundry, has introduced a specific near-infrared version to its single-photon avalanche diode (SPAD)…</p></div><a class="more uk-button uk-button-default uk-button--more" title="X-FAB Introduces New Generation of Enhanced Performance SPAD Devices focused on Near-Infrared Applications" href="/news/details/article/x-fab-introduces-new-generation-of-enhanced-performance-spad-devices-focused-on-near-infrared-applications"> Read more </a></div></div></div></div><div class="uk-card uk-card-default uk-margin-medium" itemscope="itemscope" itemtype="http://schema.org/Article"><div class="uk-child-width-1-2@s uk-child-width-1-3@m uk-grid-collapse uk-card-inner" uk-grid><div class="uk-card-media-left uk-background-default uk-cover-container uk-padding"><div class="header"><p class="uk-article-meta"><span class="news-list-date"><time itemprop="datePublished" datetime="2023-11-02"> Nov 02, 2023 </time></span></p><h3 class="uk-card-title"><a title="X-FAB Adds CMOS Integration Option to its Galvanic Isolation Solution" href="/news/details/article/x-fab-adds-cmos-integration-option-to-its-galvanic-isolation-solution"><span itemprop="headline">X-FAB Adds CMOS Integration Option to its Galvanic Isolation Solution</span></a></h3></div></div><div class="uk-card-image uk-padding-remove uk-margin-remove"><div class="uk-card-body uk-padding-remove"><div class="news-img-wrap"><a title="X-FAB Adds CMOS Integration Option to its Galvanic Isolation Solution" href="/news/details/article/x-fab-adds-cmos-integration-option-to-its-galvanic-isolation-solution"><img src="/fileadmin/_processed_/c/8/csm_Integrated_Coupler_02Nov2023_X-FAB_wafer_8-inch_6349eada54.jpg" width="610" height="400" alt="" /></a></div></div></div><div class="uk-card-media-right uk-background-secondary uk-cover-container uk-padding uk-margin-remove"><div class="teaser-text"><div itemprop="description"><p>X-FAB Silicon Foundries SE, the leading analog/mixed-signal and specialty foundry, is making further significant progress with its galvanic isolation technology. </p></div><a class="more uk-button uk-button-default uk-button--more" title="X-FAB Adds CMOS Integration Option to its Galvanic Isolation Solution" href="/news/details/article/x-fab-adds-cmos-integration-option-to-its-galvanic-isolation-solution"> Read more </a></div></div></div></div></div><!-- GRID VIEW --><!--TYPO3SEARCH_begin--></div></div><div id="c1758" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center"><a href="/news" title="MORE NEWS" class="load-more">MORE NEWS</a></p></div></div></div></div></div></div></section><section class="uk-section uk-section-transparent" style="" ><div class="uk-container uk-container-large"><div id="c8" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div id="c7" class="frame frame-default frame-type-list frame-layout-0"><header><h2 class="ce-headline-center"> Events </h2></header><div class="news"><!--TYPO3SEARCH_end--><!-- EVENT LIST VIEW --><div class="uk-news-list uk-event-view uk-child-width-1-2@m uk-margin-large-top uk-margin-medium-bottom" uk-grid><!-- ===================== Partials/Event/Item.html--><div class="article uk-article uk-article-event-item uk-grid-collapse articletype-0 uk-margin-medium-bottom" itemscope="itemscope" itemtype="http://schema.org/Article" uk-grid><div class="uk-width-1-3 uk-padding uk-padding-remove-top uk-padding-remove-bottom uk-padding-remove-left"><div class="news-img-wrap"><a title="User2User" href="/news/details/article/user2user"><img src="/fileadmin/X-FAB/Events/U2U_2023_logo_thumb.jpg" width="541" height="541" alt="" /></a><!-- date --><span class="news-list-date"><time itemprop="datePublished" datetime="2024-05-07"> May 07 </time></span></div></div><div class="uk-width-2-3"><!-- header --><div class="header"><h3 class="uk-margin-remove-bottom"><a title="User2User" href="/news/details/article/user2user"><span itemprop="headline">User2User</span></a></h3></div><div class="date"><span class="location"><p>Munich, Germany | 7 May 2024</p></span></div><!-- teaser --><div class="teaser-text"><div itemprop="description"><p>User2User is a great opportunity to learn, grow and connect with fellow technical experts who design leading-edge products using Siemens EDA tools. &nbsp;Dedicated to end-users of…</p><a class="more" title="User2User" href="/news/details/article/user2user"> Read more </a></div></div></div></div><!-- ===================== Partials/Event/Item.html--><div class="article uk-article uk-article-event-item uk-grid-collapse articletype-0 uk-margin-medium-bottom" itemscope="itemscope" itemtype="http://schema.org/Article" uk-grid><div class="uk-width-1-3 uk-padding uk-padding-remove-top uk-padding-remove-bottom uk-padding-remove-left"><div class="news-img-wrap"><a title="ISPSD" href="/news/details/article/ispsd"><img src="/fileadmin/_processed_/8/e/csm_Logo_ISPSD_2024_7d2cf0ee13.png" width="153" height="153" alt="" /></a><!-- date --><span class="news-list-date"><time itemprop="datePublished" datetime="2024-06-02"> Jun 02 </time></span></div></div><div class="uk-width-2-3"><!-- header --><div class="header"><h3 class="uk-margin-remove-bottom"><a title="ISPSD" href="/news/details/article/ispsd"><span itemprop="headline">ISPSD</span></a></h3></div><div class="date"><span class="location"><p>Bremen, Germany | 2-6 June 2024</p></span></div><!-- teaser --><div class="teaser-text"><div itemprop="description"><p>The 36th International Symposium on Power Semiconductor Devices and ICs is the premier forum for technical discussion in all areas of power semiconductor devices, power integrated…</p><a class="more" title="ISPSD" href="/news/details/article/ispsd"> Read more </a></div></div></div></div><!-- ===================== Partials/Event/Item.html--><div class="article uk-article uk-article-event-item uk-grid-collapse articletype-0 uk-margin-medium-bottom" itemscope="itemscope" itemtype="http://schema.org/Article" uk-grid><div class="uk-width-1-3 uk-padding uk-padding-remove-top uk-padding-remove-bottom uk-padding-remove-left"><div class="news-img-wrap"><a title="ISSW 2024" href="/news/details/article/issw-2024"><img src="/fileadmin/_processed_/3/4/csm_ISSW_2024_e40479e74e.jpg" width="217" height="217" alt="" /></a><!-- date --><span class="news-list-date"><time itemprop="datePublished" datetime="2024-06-04"> Jun 04 </time></span></div></div><div class="uk-width-2-3"><!-- header --><div class="header"><h3 class="uk-margin-remove-bottom"><a title="ISSW 2024" href="/news/details/article/issw-2024"><span itemprop="headline">ISSW 2024</span></a></h3></div><div class="date"><span class="location"><p>Trento, Italy | 4-6 June 2024</p></span></div><!-- teaser --><div class="teaser-text"><div itemprop="description"><p>At X-FAB, &nbsp;we offer primitive devices for our APD in linear mode which are scalable from 30 µm to 200 µm, and for our SPAD in Geiger mode with sizes from 10 µm to 30 µm.</p><p>We are…</p><a class="more" title="ISSW 2024" href="/news/details/article/issw-2024"> Read more </a></div></div></div></div><!-- ===================== Partials/Event/Item.html--><div class="article uk-article uk-article-event-item uk-grid-collapse articletype-0 uk-margin-medium-bottom" itemscope="itemscope" itemtype="http://schema.org/Article" uk-grid><div class="uk-width-1-3 uk-padding uk-padding-remove-top uk-padding-remove-bottom uk-padding-remove-left"><div class="news-img-wrap"><a title="Silicon Saxony Day" href="/news/details/article/silicon-saxony-day"><img src="/fileadmin/X-FAB/Events/siliconsaxonyday-thumb-2024.jpg" width="214" height="214" alt="" /></a><!-- date --><span class="news-list-date"><time itemprop="datePublished" datetime="2024-06-11"> Jun 11 </time></span></div></div><div class="uk-width-2-3"><!-- header --><div class="header"><h3 class="uk-margin-remove-bottom"><a title="Silicon Saxony Day" href="/news/details/article/silicon-saxony-day"><span itemprop="headline">Silicon Saxony Day</span></a></h3></div><div class="date"><span class="location"><p>Dresden, Germany | 11 June 2024</p></span></div><!-- teaser --><div class="teaser-text"><div itemprop="description"><p>The 18<sup>th</sup> Silicon Saxony Day is one of the most international high-tech and networking event in Europe. It offers cross-industry insights into technologies and solutions in the…</p><a class="more" title="Silicon Saxony Day" href="/news/details/article/silicon-saxony-day"> Read more </a></div></div></div></div><!-- ===================== Partials/Event/Item.html--><div class="article uk-article uk-article-event-item uk-grid-collapse articletype-0 uk-margin-medium-bottom" itemscope="itemscope" itemtype="http://schema.org/Article" uk-grid><div class="uk-width-1-3 uk-padding uk-padding-remove-top uk-padding-remove-bottom uk-padding-remove-left"><div class="news-img-wrap"><a title="SENSORS CONVERGE 2024" href="/news/details/article/sensors-converge-2024"><img src="/fileadmin/_processed_/a/5/csm_Sensors_Converge_2024_logo_659158e030.jpg" width="235" height="235" alt="" /></a><!-- date --><span class="news-list-date"><time itemprop="datePublished" datetime="2024-06-24"> Jun 24 </time></span></div></div><div class="uk-width-2-3"><!-- header --><div class="header"><h3 class="uk-margin-remove-bottom"><a title="SENSORS CONVERGE 2024" href="/news/details/article/sensors-converge-2024"><span itemprop="headline">SENSORS CONVERGE 2024</span></a></h3></div><div class="date"><span class="location"><p>Santa Clara, California, USA | 24-26 June 2024</p></span></div><!-- teaser --><div class="teaser-text"><div itemprop="description"><p>Join the sensors and electronics community during this event covering the biggest design engineering trends. From enabling innovation, to process design &amp; control development, to…</p><a class="more" title="SENSORS CONVERGE 2024" href="/news/details/article/sensors-converge-2024"> Read more </a></div></div></div></div><!-- ===================== Partials/Event/Item.html--><div class="article uk-article uk-article-event-item uk-grid-collapse articletype-0 uk-margin-medium-bottom" itemscope="itemscope" itemtype="http://schema.org/Article" uk-grid><div class="uk-width-1-3 uk-padding uk-padding-remove-top uk-padding-remove-bottom uk-padding-remove-left"><div class="news-img-wrap"><a title="MICROTAS" href="/news/details/article/microtas-2024"><img src="/fileadmin/_processed_/0/5/csm_uTAS24_logo_138a9d0b7c.jpg" width="394" height="394" alt="" /></a><!-- date --><span class="news-list-date"><time itemprop="datePublished" datetime="2024-10-12"> Oct 12 </time></span></div></div><div class="uk-width-2-3"><!-- header --><div class="header"><h3 class="uk-margin-remove-bottom"><a title="MICROTAS" href="/news/details/article/microtas-2024"><span itemprop="headline">MICROTAS</span></a></h3></div><div class="date"><span class="location"><p>Montreal, Canada | 13-17 October 2024</p></span></div><!-- teaser --><div class="teaser-text"><div itemprop="description"><p>The 28th International Conference on Miniaturized Systems for Chemistry and Life Sciences (µTAS 2024) is the premier forum for reporting research results in microfluidics,…</p><a class="more" title="MICROTAS" href="/news/details/article/microtas-2024"> Read more </a></div></div></div></div></div><!-- EVENT LIST VIEW --><!--TYPO3SEARCH_begin--></div></div></div></div></div></section><section class="uk-section uk-section-transparent uk-padding-remove-vertical" style="" ><div class="uk-container uk-container-large"><div id="c30251" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><section class="uk-section uk-section-transparent" style="" ><div class="uk-container uk-container-large"><div id="c1890" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"><header><h2 class=""> Market solutions </h2></header></div><div class=" "><div class="uk-width-1-1@s uk-width-1-1@m "><div id="c2091" class="frame frame-indent frame-type-textmedia frame-layout-0 frame-space-after-medium"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-justify">With our broad range of specialty technologies including the unique combination of CMOS and MEMS process capabilities, we are&nbsp;well equipped to manufacture complex devices that meet the exacting quality requirements of the automotive, industrial, consumer&nbsp;and medical industries.&nbsp;</p></div></div></div><div class="uk-slider-wrap uk-light" ><div class="uk-position-relative" data-uk-slider=" autoplay-interval: 7000; finite: true;"><div class="uk-slider-container"><ul class="uk-slider-items uk-child-width-1-1@s uk-child-width-1-2@m uk-child-width-1-2@l uk-child-width-1-2@xl" data-uk-grid="" data-uk-height-match="target: .frame"><li class="uk-slide-item item"><div id="c577" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-gallery" data-ce-columns="1" data-ce-images="1" ><div class="ce-outer"><div class="ce-inner"><div class=""><figure class="image"><a href="/automotive"><img class="image-embed-item" src="/fileadmin/_processed_/4/8/csm_automotive_1280x616px_dcffacd0e0.jpg" width="800" height="532" alt="" /></a></figure></div></div></div></div><div class="ce-bodytext"><h4>Automotive</h4><p>Reliability and trust are two key requisites for serving the automotive industry. Our focus on security issues, complex demands and the extreme environmental conditions faced by the automotive industry helps us determine which advanced solutions best benefit automotive designers and their customers.</p><p class="uk-text-center"><a href="/automotive" class="more-btn">read more</a></p></div></div></div></li><li class="uk-slide-item item"><div id="c587" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-gallery" data-ce-columns="1" data-ce-images="1" ><div class="ce-outer"><div class="ce-inner"><div class=""><figure class="image"><a href="/medical"><img class="image-embed-item" src="/fileadmin/_processed_/9/8/csm_medical_market-image-2020_low_70cbf780a8.jpg" width="800" height="533" alt="" /></a></figure></div></div></div></div><div class="ce-bodytext"><h4>Medical</h4><p>As a supplier for the medical market - one in which people trust technology for their health and recovery - we are committed to deliver solutions that are accurate and reliable for our customers\' medical devices.</p><p>&nbsp;</p><p class="uk-text-center"><a href="/medical" class="more-btn">read more</a></p></div></div></div></li></ul></div><div class="uk-slidenav-container uk-hidden@l uk-flex uk-flex-center uk-margin-top"><a class="" href="#" data-uk-slidenav-previous data-uk-slider-item="previous"></a><a class="" href="#" data-uk-slidenav-next data-uk-slider-item="next"></a></div><div class="uk-slidenav-container uk-visible@l"><a class="uk-position-center-left-out uk-position-medium" href="#" data-uk-slidenav-previous data-uk-slider-item="previous"></a><a class="uk-position-center-right-out uk-position-medium" href="#" data-uk-slidenav-next data-uk-slider-item="next"></a></div><ul class="uk-slider-nav uk-dotnav uk-flex-center uk-margin"></ul></div></div><section class="uk-section uk-section-transparent" style="" ><div class="uk-container uk-container-large"><div id="c584" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div class="uk-slider-wrap uk-light" ><div class="uk-position-relative" data-uk-slider=" autoplay-interval: 7000; finite: true;"><div class="uk-slider-container"><ul class="uk-slider-items uk-child-width-1-1@s uk-child-width-1-2@m uk-child-width-1-2@l uk-child-width-1-2@xl" data-uk-grid="" data-uk-height-match="target: .frame"><li class="uk-slide-item item"><div id="c585" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-gallery" data-ce-columns="1" data-ce-images="1" ><div class="ce-outer"><div class="ce-inner"><div class=""><figure class="image"><a href="/industrial"><img class="image-embed-item" src="/fileadmin/_processed_/e/a/csm_industrial_1280x557px_de3f458e33.jpg" width="800" height="533" alt="" /></a></figure></div></div></div></div><div class="ce-bodytext"><h4>Industrial</h4><p>The products designed with our processes for the industrial market find their way into a broad range of industrial applications that require both robust devices and highly flexible manufacturing capabilities.&nbsp;</p><p>&nbsp;</p><p class="uk-text-center"><a href="/industrial" class="more-btn">read more</a></p></div></div></div></li><li class="uk-slide-item item"><div id="c579" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-gallery" data-ce-columns="1" data-ce-images="1" ><div class="ce-outer"><div class="ce-inner"><div class=""><figure class="image"><a href="/markets/communication-consumer"><img class="image-embed-item" src="/fileadmin/_processed_/b/3/csm_communication-consumer_1280x853px_ac5268b52c.jpg" width="800" height="531" alt="" /></a></figure></div></div></div></div><div class="ce-bodytext"><h4>Consumer &amp; Mobile Applications</h4><p>We entered the mobile communications market with a clear vision: connecting mobile devices with the real world. With this vision in mind, we became a leading foundry provider for discrete and integrated mobile sensor solutions, offering expert support to enable first-time-right designs.<br> &nbsp;</p><p class="uk-text-center"><a href="/markets/communication-consumer" class="more-btn">read more</a></p></div></div></div></li></ul></div><div class="uk-slidenav-container uk-hidden@l uk-flex uk-flex-center uk-margin-top"><a class="" href="#" data-uk-slidenav-previous data-uk-slider-item="previous"></a><a class="" href="#" data-uk-slidenav-next data-uk-slider-item="next"></a></div><div class="uk-slidenav-container uk-visible@l"><a class="uk-position-center-left-out uk-position-medium" href="#" data-uk-slidenav-previous data-uk-slider-item="previous"></a><a class="uk-position-center-right-out uk-position-medium" href="#" data-uk-slidenav-next data-uk-slider-item="next"></a></div><ul class="uk-slider-nav uk-dotnav uk-flex-center uk-margin"></ul></div></div></div></div></div></section></div></div></div></section></div></div></div></section><div id="c31743" class="frame frame-default frame-type-shortcut frame-layout-0"><section class="uk-section uk-section-primary uk-preserve-color uk-light" style="min-height: 450px; background-image: url(/fileadmin/a_background/Website_Sustainability_background_2000x1333px.png); background-repeat: no-repeat; background-attachment: fixed;" data-uk-parallax = "bgy: -250"><div class="uk-container"><div id="c31738" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><section class="uk-section uk-section-transparent uk-light uk-padding-remove-vertical" style="" ><div class="uk-container uk-container-expand"><div id="c31798" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div id="c31737" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><h2 class="uk-text-center">Our environment. Our responsibility.</h2></div></div></div></div></div></div></section><section class="uk-section uk-section-transparent uk-light uk-padding-remove-vertical uk-margin-medium-bottom uk-flex uk-flex-middle" style="" ><div class="uk-container uk-container-small"><div id="c31802" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div id="c31801" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center">Sustainability embodies many different facets, from environmental care to health and safety, human rights, business ethics and social responsibility.&nbsp;Visit our sustainability webpage to find more information.</p></div></div></div></div></div></div></section><section class="uk-section uk-section-transparent uk-light uk-padding-remove-vertical" style="" ><div class="uk-container"><div id="c31800" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div id="c31799" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center"><a href="/sustainability" title="Edit" class="load-more">Sustainability at X-FAB</a></p></div></div></div></div></div></div></section></div></div></div></section></div><section class="uk-section uk-section-transparent" style="" ><div class="uk-container uk-container-large"><div id="c2089" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"><header><h2 class=""> Technology portfolio </h2></header></div><div class=" "><div class="uk-width-1-1@m "><div id="c2090" class="frame frame-indent frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center">As a pure-play foundry specialized in analog/mixed-signal applications, we offer&nbsp;a wide range of modular CMOS and SOI processes in geometries ranging from 1.0 µm to 130 nm as well as special MEMS and SiC process capabilities. See our whole portfolio here: <a href="/technology">technology overview</a></p></div></div></div><div id="c30254" class="frame frame-default frame-type-shortcut frame-layout-0"><section class="uk-section uk-section-default " style="" ><div class="uk-container uk-container-large"><div id="c2220" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class="uk-child-width-expand uk-flex-center " data-uk-grid><div class="uk-width-1-2@s uk-width-1-4@m uk-width-1-4@l uk-width-1-4@xl "><div id="c2224" class="frame frame-default frame-type-textmedia frame-layout-0 frame-space-after-small"><header><h3 class="ce-headline-center"><a href="/technology#c2997">CMOS &amp; SOI</a></h3></header><div class="ce-textpic ce-center ce-above"></div></div><div id="c2212" class="frame frame-default frame-type-textmedia frame-layout-330 frame-space-after-small"><div class="ce-textpic ce-center ce-above"><div class="ce-gallery round-img" data-ce-columns="1" data-ce-images="1" ><div class="ce-outer"><div class="ce-inner"><div class=""><figure class="image"><a href="/technology#c2997"><img class="image-embed-item" src="/fileadmin/_processed_/9/8/csm_RF-CMOS_wafer_e0146cc2f5.jpg" width="300" height="300" alt="" /></a></figure></div></div></div></div></div></div><div id="c2213" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center">13 process families with over 450 options</p></div></div></div></div><div class="uk-width-1-2@s uk-width-1-4@m uk-width-1-4@l uk-width-1-4@xl "><div id="c2223" class="frame frame-default frame-type-textmedia frame-layout-0 frame-space-after-small"><header><h3 class="ce-headline-center"><a href="/technology#c2945">MEMS</a></h3></header><div class="ce-textpic ce-center ce-above"></div></div><div id="c30207" class="frame frame-default frame-type-textmedia frame-layout-330 frame-space-after-small"><div class="ce-textpic ce-center ce-above"><div class="ce-gallery round-img" data-ce-columns="1" data-ce-images="1" ><div class="ce-outer"><div class="ce-inner"><div class=""><figure class="image"><a href="/technology#c2945"><img class="image-embed-item" src="/fileadmin/_processed_/c/5/csm_MEMS_tech_overview_small_463eb795fd.jpg" width="300" height="300" alt="" /></a></figure></div></div></div></div></div></div><div id="c2215" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center">MEMS with or without integrated CMOS</p></div></div></div></div><div class="uk-width-1-2@s uk-width-1-4@m uk-width-1-4@l uk-width-1-4@xl "><div id="c2222" class="frame frame-default frame-type-textmedia frame-layout-0 frame-space-after-small"><header><h3 class="ce-headline-center"><a href="/technology/sic-gan">SiC &amp; GaN</a></h3></header><div class="ce-textpic ce-center ce-above"></div></div><div id="c2216" class="frame frame-default frame-type-textmedia frame-layout-330 frame-space-after-small"><div class="ce-textpic ce-center ce-above"><div class="ce-gallery round-img" data-ce-columns="1" data-ce-images="1" ><div class="ce-outer"><div class="ce-inner"><div class=""><figure class="image"><a href="/technology/sic-gan"><img class="image-embed-item" src="/fileadmin/_processed_/f/5/csm_SiC_wafer-epitaxy_800x533px_f96b806de8.jpg" width="300" height="300" alt="" /></a></figure></div></div></div></div></div></div><div id="c2217" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center">Processing technologies for WBG 6” SiC &amp; 8” GaN-on-Si</p></div></div></div></div><div class="uk-width-1-2@s uk-width-1-4@m uk-width-1-4@l uk-width-1-4@xl "><div id="c2221" class="frame frame-default frame-type-textmedia frame-layout-0"><header><h3 class="ce-headline-center"><a href="/technology/wlp-3d-int">Heterogeneous Integration</a></h3></header><div class="ce-textpic ce-center ce-above"></div></div><div id="c2218" class="frame frame-default frame-type-textmedia frame-layout-330 frame-space-after-small"><div class="ce-textpic ce-center ce-above"><div class="ce-gallery round-img" data-ce-columns="1" data-ce-images="1" ><div class="ce-outer"><div class="ce-inner"><div class=""><figure class="image"><a href="/technology/wlp-3d-int"><img class="image-embed-item" src="/fileadmin/_processed_/e/e/csm_Heterogeneous_integration_TSV_e973ab803b.jpg" width="300" height="300" alt="" /></a></figure></div></div></div></div></div></div><div id="c2219" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center">3D Integration and Wafer Level Package Solutions</p></div></div></div></div></div></div></section></div><div id="c2094" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center"><a href="/technology" class="load-more">READ MORE</a></p></div></div></div></div></div></div></section><section id="socialwall-header" class="uk-section uk-section-transparent uk-section-xsmall frame-space-before-extra-large uk-flex uk-flex-bottom" style="background-image: url(/fileadmin/a_background/ccc_bgi_2000x1333px.jpg); background-position: center center; background-size: cover; background-repeat: no-repeat; background-attachment: scroll;" ><div class="uk-container uk-container-expand"><div id="c31601" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0 frame-space-before-extra-large"></div><div class=" "><div class="uk-width-1-1@m "><div id="c31599" class="frame frame-default frame-type-header frame-layout-0"><header><h2 class="ce-headline-center"> Social media channels </h2></header></div></div></div></div></section><section id="socialwall" class="uk-section uk-section-transparent" style="" ><div class="uk-container uk-container-small"><div id="c31597" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div id="c31598" class="frame frame-default frame-type-html frame-layout-0"><div id="flockler-embed-17fb1d4954907fde08604d922b74c373"></div><script src="https://plugins.flockler.com/embed/17c9d1ae3af03836bd8db6a8d19d986b/17fb1d4954907fde08604d922b74c373" async></script></div></div></div></div></section><div id="c212" class="frame frame-default frame-type-shortcut frame-layout-0"><section class="uk-section uk-section-primary uk-preserve-color uk-light" style="" ><div class="uk-container uk-container-small"><div id="c32" class="frame frame-indent frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div id="c33" class="frame frame-default frame-type-textmedia frame-layout-0"><header><h2 class=""> Contact </h2></header><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center">For more information, please contact us:</p></div></div></div><div id="c1317" class="frame frame-default frame-type-shortcut frame-layout-0"><div id="c1314" class="frame frame-default frame-type-form_formframework frame-layout-0"><form enctype="multipart/form-data" method="post" id="contactform-1314" action="/?tx_form_formframework%5Baction%5D=perform&amp;tx_form_formframework%5Bcontroller%5D=FormFrontend&amp;cHash=97cc4823c07a04476fa87c4f13320d12#contactform-1314"><div><input type="hidden" name="tx_form_formframework[contactform-1314][__state]" value="TzozOToiVFlQTzNcQ01TXEZvcm1cRG9tYWluXFJ1bnRpbWVcRm9ybVN0YXRlIjoyOntzOjI1OiIAKgBsYXN0RGlzcGxheWVkUGFnZUluZGV4IjtpOjA7czoxMzoiACoAZm9ybVZhbHVlcyI7YTowOnt9fQ==506332f8c83bea95e9a9e942a9190c154742194e" /><input type="hidden" name="tx_form_formframework[__trustedProperties]" value="a:1:{s:16:&quot;contactform-1314&quot;;a:8:{s:6:&quot;text-1&quot;;i:1;s:19:&quot;JQnhg8UHVEfIDcXxC3z&quot;;i:1;s:7:&quot;email-1&quot;;i:1;s:14:&quot;singleselect-1&quot;;i:1;s:10:&quot;textarea-1&quot;;i:1;s:10:&quot;checkbox-1&quot;;i:1;s:11:&quot;recaptcha-1&quot;;i:1;s:13:&quot;__currentPage&quot;;i:1;}}9778493a6acdbb6615e75e6969a6f1943f3054dc" /></div><div class="form-group uk-margin-bottom"><label class="control-label uk-form-label" for="contactform-1314-text-1">Name<span class="required">*</span></label><div class="uk-form-controls uk-margin-small-bottom"><input required="required" class="uk-input form-control uk-input" id="contactform-1314-text-1" type="text" name="tx_form_formframework[contactform-1314][text-1]" value="" /></div></div><input autocomplete="JQnhg8UHVEfIDcXxC3z" aria-hidden="true" id="contactform-1314-JQnhg8UHVEfIDcXxC3z" style="position:absolute; margin:0 0 0 -999em;" tabindex="-1" type="text" name="tx_form_formframework[contactform-1314][JQnhg8UHVEfIDcXxC3z]" /><div class="form-group uk-margin-bottom"><label class="control-label uk-form-label" for="contactform-1314-email-1">E-Mail<span class="required">*</span></label><div class="uk-form-controls uk-margin-small-bottom"><input required="required" class="uk-input form-control uk-input" id="contactform-1314-email-1" type="email" name="tx_form_formframework[contactform-1314][email-1]" value="" /></div></div><div class="form-group uk-margin-bottom"><label class="control-label uk-form-label" for="contactform-1314-singleselect-1">Region</label><div class="uk-form-controls uk-margin-small-bottom"><select class="uk-select form-control uk-select" id="contactform-1314-singleselect-1" name="tx_form_formframework[contactform-1314][singleselect-1]"><option value="">Please Select</option><option value="Europe">Europe</option><option value="North America">North America</option><option value="Asia Pacific">Asia Pacific</option><option value="Other">Other</option></select></div></div><div class="form-group uk-margin-bottom"><label class="control-label uk-form-label" for="contactform-1314-textarea-1">Message<span class="required">*</span></label><div class="uk-form-controls uk-margin-small-bottom"><textarea required="required" class="uk-textarea form-control uk-textarea" id="contactform-1314-textarea-1" name="tx_form_formframework[contactform-1314][textarea-1]"></textarea></div></div><div class="clearfix"><div id="c28" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p>By submitting the form you agree to our <a href="/privacy-statement">privacy policy</a>.</p></div></div></div></div><div class="form-group uk-margin-bottom"><div class=""><div class="form-check"><label class="uk-checkbox form-check-label " for="contactform-1314-checkbox-1"><input type="hidden" name="tx_form_formframework[contactform-1314][checkbox-1]" value="" /><input required="required" class="uk-checkbox uk-checkbox" id="contactform-1314-checkbox-1" type="checkbox" name="tx_form_formframework[contactform-1314][checkbox-1]" value="1" /><span><span class="required">*</span></span></label></div><span class="help-block">I agree to my data being stored and processed by X-FAB.</span></div></div><div class="form-group uk-margin-bottom"><label class="control-label uk-form-label" for="contactform-1314-recaptcha-1">reCAPTCHA</label><div class="recaptcha"><input id="contactform-1314-recaptcha-1" type="hidden" name="tx_form_formframework[contactform-1314][recaptcha-1]" value="1" /><div class="g-recaptcha" data-sitekey="6LfSfTscAAAAACM6Oa5gJcMbpYxzc9Vobk3IQsJI"></div></div></div><div class="actions"><nav class="form-navigation"><div class="btn-toolbar" role="toolbar"><div class="btn-group" role="group"><input id="currentPage" type="hidden" name="tx_form_formframework[contactform-1314][__currentPage]" value="" /><span class="next submit"><button class="btn btn-primary" onclick="document.getElementById(\'currentPage\').value=\'1\'" type="submit" name="" value="1">send message</button></span></div></div></nav></div></form></div></div></div></div></div></section></div>', 'contentFocus' => '<section class="uk-section uk-section-default uk-section-large uk-flex uk-flex-bottom" style="background-image: url(/fileadmin/X-FAB_Wafer_Foundry_Produktion_IMG62473_1920x1273px.jpg); background-position: center center; background-size: cover; background-repeat: no-repeat; background-attachment: scroll;" ><div class=""><div id="c1109" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div id="c1" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><h2>Your specialty foundry</h2><h3><span class="uk-text-uppercase">For the analog world</span></h3></div></div></div></div></div></div></section>', 'headers' => '<div id="c1" class="frame frame- frame-type- frame-layout-0"></div>', 'data' => array('uid' => 1, 'pid' => 0, 'tstamp' => 1624518882, 'crdate' => 1592312425, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 256, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:50:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Home', 'slug' => '/', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 1, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => 'X-FAB Foundry', 'layout' => 0, 'target' => '', 'media' => 1, 'lastUpdated' => 1611579480, 'keywords' => 'Foundry, analog/mixed signal, semiconductor, pure-play', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1690980723, 'abstract' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__defaultwithfocus', 'backend_layout_next_level' => 'pagets__defaultwithfocus', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Your specialty foundry for the analog world', 'no_index' => 0, 'no_follow' => 1, 'og_title' => 'X-FAB: Your specialty foundry for the analog world', 'og_description' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.', 'og_image' => 0, 'twitter_title' => 'X-FAB: Your specialty foundry for the analog world', 'twitter_description' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Your specialty foundry for the analog world', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'currentValue_kidjls9dksoje' => 'defaultwithfocus'), 'current' => 'defaultwithfocus', 'files' => array(object(TYPO3\CMS\Core\Resource\FileReference)), 'menuMain' => array(array('data' => array('uid' => 12, 'pid' => 1, 'tstamp' => 1610960241, 'crdate' => 1592377009, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 192, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'About us', 'slug' => '/about-us', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies with a clear focus on automotive, industrial, and medical applications. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits (ICs) and other semiconductor devices for use in their own products or the products of their customers.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1693896583, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Your specialty foundry for the analog world', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'About us', 'link' => '/about-us', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 1618, 'pid' => 12, 'tstamp' => 1607599674, 'crdate' => 1607598452, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 64, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:33:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:13:"shortcut_mode";N;s:8:"shortcut";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'News & Events', 'slug' => '/about-us/news-events', 'doktype' => 4, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 29, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 1, 'SYS_LASTCHANGED' => 0, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => '', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'News & Events', 'link' => '/news', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1620, 'pid' => 12, 'tstamp' => 1607599761, 'crdate' => 1607599736, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 96, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:33:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:13:"shortcut_mode";N;s:8:"shortcut";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Investors', 'slug' => '/about-us/investors', 'doktype' => 4, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 6, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Investors', 'link' => '/investors', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1619, 'pid' => 12, 'tstamp' => 1607599660, 'crdate' => 1607599660, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 128, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 22, 'l10n_diffsource' => 'a:32:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:3:"url";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Career', 'slug' => '/career-1', 'doktype' => 3, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => 'https://www.xfabulous.com', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Career', 'link' => 'https://www.xfabulous.com', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 2617, 'pid' => 12, 'tstamp' => 1658407954, 'crdate' => 1658407904, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 384, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:33:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:13:"shortcut_mode";N;s:8:"shortcut";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Sustainability', 'slug' => '/about-us/sustainability', 'doktype' => 4, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 2612, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Sustainability', 'link' => '/sustainability', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array())), 'image' => array()), array('data' => array('uid' => 18, 'pid' => 1, 'tstamp' => 1607633132, 'crdate' => 1599649257, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 224, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Markets', 'slug' => '/markets', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'With our broad range of technologies and unique combination of CMOS and MEMS process capabilities, X-FAB is well equipped to manufacture complex devices that meet the exacting quality requirements of the automotive, industrial and medical industries. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1691165372, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Foundry solutions for key markets: automotive, medical, industrial devices', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'With our broad range of technologies and unique combination of CMOS and MEMS process capabilities we meet the requirements of the automotive, industrial and medical industries. ', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Markets', 'link' => '/markets', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 30, 'pid' => 18, 'tstamp' => 1607633423, 'crdate' => 1599650465, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 256, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Automotive', 'slug' => '/automotive', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Reliability and trust are two key requisites for serving the automotive industry. At X-FAB, we focus on technology performance, robustness and reliability and help our customers design and market semiconductors of outstanding quality with increased integration, functionalities and effectiveness.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1687833718, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Foundry solutions for the automotive industry with quality built in.', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Your foundry partner for automotive electronics', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Automotive', 'link' => '/automotive', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 44, 'pid' => 18, 'tstamp' => 1607633473, 'crdate' => 1600778671, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 320, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Medical', 'slug' => '/medical', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'medical applications, pacemakers, dna sequencing, ultrasound, lab-on-a-chip, ', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'We manufacture chips for medical applications such as pacemakers, DNA sequencing and ultrasound device. Find out more about our medical solutions here.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1678088570, 'abstract' => 'We manufacture chips for medical applications such as pacemakers, DNA sequencing and ultrasound device. Find out more about our medical solutions here.', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Your foundry partner for medical products', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Your foundry partner for medical products', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Medical', 'link' => '/medical', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 43, 'pid' => 18, 'tstamp' => 1607633631, 'crdate' => 1600778664, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 384, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Industrial', 'slug' => '/industrial', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'At X-FAB, we empower the future of the industrial electronics markets with our solutions for the next generation of energy management and automation technologies. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1687833905, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Your foundry partner for industrial applications with quality built in.', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Your foundry partner for industrial applications', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Industrial', 'link' => '/industrial', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 31, 'pid' => 18, 'tstamp' => 1607633835, 'crdate' => 1599653258, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 512, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Communication & Consumer', 'slug' => '/markets/communication-consumer', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Our technologies enable communication and consumer applications that make your life smarter, greener and safer. Together with your innovations, our proven, reliable technology portfolio of sensor/sensor interface, power management and radiofrequency (RF) solutions allows you to realize applications that integrate seamlessly into everyone’s daily life, connecting devices and people. Your foundry partner for communication & consumer devices.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1677040027, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Your foundry partner for communication & consumer devices', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Your foundry partner for communication & consumer devices', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Communication & Consumer', 'link' => '/markets/communication-consumer', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array())), 'image' => array()), array('data' => array('uid' => 19, 'pid' => 1, 'tstamp' => 1610955628, 'crdate' => 1599649290, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 240, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Technology', 'slug' => '/technology', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'We offer a wide range of open platform process technologies. We combine advanced modular CMOS and BiCMOS platforms with additional analog functions and modular options. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1689305484, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Wide range of Semiconductor Technologies', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 1, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Technology', 'link' => '/technology', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 1591, 'pid' => 19, 'tstamp' => 1702884256, 'crdate' => 1602150500, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 640, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'High Voltage', 'slug' => '/technology/high-voltage', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB BCD-on-SOI solutions offers a comprehensive range of automotive High-voltage (HV) CMOS processes supporting AEC-Q100 Garde 0 designs.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1702884256, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Automotive BCD-on-SOI and High Voltage (HV) foundry solutions', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'BCD-on-SOI', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'High Voltage', 'link' => '/technology/high-voltage', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 45, 'pid' => 19, 'tstamp' => 1702884435, 'crdate' => 1600778703, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 704, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'e-NVM', 'slug' => '/technology/e-nvm', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB provides a comprehensive portfolio of embedded NVM IPs complying with the most stringent quality requirements of the automotive market. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1706244252, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Best-in-class automotive grade embedded NVM solutions', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Embedded NVM ', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'e-NVM', 'link' => '/technology/e-nvm', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1592, 'pid' => 19, 'tstamp' => 1674549190, 'crdate' => 1602150609, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 736, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Sensors', 'slug' => '/technology/sensors', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'At X-FAB, we provide a comprehensive range of sensors measuring light, pressure, temperature and others. Our sensor wafer production is based on high-volume technologies and fulfills automotive standards. Our best-in-class ultralow-noise CMOS technologies – XH035 and XH018 – are recognized and adopted by tier-one semiconductor vendors for sensor interfaces.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1688956064, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Sensors and actuator solutions from a foundry', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Sensing the analog world', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Sensors', 'link' => '/technology/sensors', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1593, 'pid' => 19, 'tstamp' => 1607634257, 'crdate' => 1602150642, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 752, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'RF', 'slug' => '/technology/rf', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In today’s connected world, radio frequency (RF) electromagnetic signals are key for enabling many everyday tasks. Making a phone call or browsing the Internet with your smartphone at home or on the street is only possible with RF signals.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1694598434, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'RF and wireless solutions from a foundry', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Connecting people and devices worldwide', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'RF', 'link' => '/technology/rf', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 46, 'pid' => 19, 'tstamp' => 1702885286, 'crdate' => 1600778762, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 768, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'SiC & GaN', 'slug' => '/technology/sic-gan', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB foundry provides comprehensive processing technologies for wide bandgap (WBG) materials, Silicon Carbide (SiC) and Gallium Nitride (GaN). ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1711355804, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'SiC and GaN foundry solutions that fit your needs', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'SiC and GaN foundry', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'SiC & GaN', 'link' => '/technology/sic-gan', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1594, 'pid' => 19, 'tstamp' => 1607634476, 'crdate' => 1602150755, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 896, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'WLP & 3D Integration', 'slug' => '/technology/wlp-3d-int', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Extending the already feature rich CMOS technologies, X-FAB is working on solutions for 3D Heterogeneous integration, TSV and wafer level packaging. These technologies allow a better integration, as well as a reduction of packaging costs for our customers.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1688972043, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Wafer Level Packaging and 3D Integration', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Wafer Level Packaging and 3D Integration', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'WLP & 3D Integration', 'link' => '/technology/wlp-3d-int', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 47, 'pid' => 19, 'tstamp' => 1607634571, 'crdate' => 1600778770, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 1024, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Silicon-based Microfluidics', 'slug' => '/technology/silicon-based-microfluidics', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Connecting the two worlds of microelectronics and microfluidics is a challenge and an opportunity at the same time. Smart integrated microfluidic systems are the key to connecting both worlds. Our extensive MEMS-oriented technology offering enables such innovative applications, including devices for next-generation DNA sequencing and liquid biopsy or microelectrode arrays for drug development or food safety testing.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1688975443, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Silicon-based microfluidic solutions', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Silicon-based microfluidic solutions', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Silicon-based Microfluidics', 'link' => '/technology/silicon-based-microfluidics', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1631, 'pid' => 19, 'tstamp' => 1612454205, 'crdate' => 1611233481, 'cruser_id' => 9, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 1536, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 9, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Innovation', 'slug' => '/innovation', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'funded projects, innovation, collaboration, industrial partners', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB works and participates continuously on research, development and innovation projects in future-oriented technology and product fields. Main topics here are future emission-free and safe mobility, smart energy supply, ultralow power technologies, data security and artificial intelligence for smart sensor systems. ', 'no_search' => 1, 'SYS_LASTCHANGED' => 1689907295, 'abstract' => 'Focus areas are emission-free and safe mobility, smart energy supply, ultralow power technologies, data security and artificial intelligence for smart sensor systems. ', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Together we shape our future through innovation', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Focus areas are emission-free and safe mobility, smart energy supply, ultralow power technologies, data security and artificial intelligence for smart sensor systems. ', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Innovation', 'link' => '/innovation', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array())), 'image' => array()), array('data' => array('uid' => 20, 'pid' => 1, 'tstamp' => 1607634716, 'crdate' => 1599649310, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 248, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Manufacturing', 'slug' => '/manufacturing', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB has an established track record of over 25 years of experience providing proprietary manufacturing processes and advanced design and engineering support offerings. Excellent service, reliability and first-class technical support – that’s what X-FAB stands for.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1660039460, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Manufacturing solutions from a pure-play foundry', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Manufacturing excellence to make your innovations come to life', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Manufacturing', 'link' => '/manufacturing', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 32, 'pid' => 20, 'tstamp' => 1604477339, 'crdate' => 1599653757, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 256, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:48:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:8:"abstract";N;s:8:"keywords";N;s:11:"description";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Our Fabs', 'slug' => '/manufacturing/our-fabs', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1708597934, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Our Fabs', 'link' => '/manufacturing/our-fabs', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 48, 'pid' => 20, 'tstamp' => 1606989586, 'crdate' => 1600778797, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 512, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Supply Chain Management', 'slug' => '/manufacturing/supply-chain-management', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1617190077, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Supply Chain Management', 'link' => '/manufacturing/supply-chain-management', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 37, 'pid' => 20, 'tstamp' => 1610959597, 'crdate' => 1600772732, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 768, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Quality', 'slug' => '/manufacturing/quality', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'At X-FAB we understand quality as ongoing process which has to cover all steps that are needed to develop, realize and maintain our technologies and services along the whole lifecycle. We put the customer needs, goals and expectations in the focus of our efforts.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1706685556, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Quality - More than 25 years of automotive quality foundry offering', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'We put the customer needs, goals and expectations in the focus of our efforts.', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Quality', 'link' => '/manufacturing/quality', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 49, 'pid' => 20, 'tstamp' => 1617937078, 'crdate' => 1600778815, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 1024, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Prototyping', 'slug' => '/manufacturing/prototyping', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1711595518, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Prototyping', 'link' => '/manufacturing/prototyping', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1604, 'pid' => 20, 'tstamp' => 1617937063, 'crdate' => 1604054288, 'cruser_id' => 9, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 1280, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 9, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Outsourcing', 'slug' => '/manufacturing/outsourcing', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1702367772, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Outsourcing', 'link' => '/manufacturing/outsourcing', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array())), 'image' => array()), array('data' => array('uid' => 21, 'pid' => 1, 'tstamp' => 1608040619, 'crdate' => 1599649394, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 252, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Design Support', 'slug' => '/design-support', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1689305053, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Design Support', 'link' => '/design-support', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 1627, 'pid' => 21, 'tstamp' => 1611083842, 'crdate' => 1609997293, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 192, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:32:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:3:"url";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'FeatureXplorer', 'slug' => '/design-support/featurexplorer', 'doktype' => 3, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => 'https://www.xfab.com/featurexplorer', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1611083699, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'FeatureXplorer', 'link' => 'https://www.xfab.com/featurexplorer', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1628, 'pid' => 21, 'tstamp' => 1611308945, 'crdate' => 1610003841, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 480, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 1603, 'l10n_diffsource' => 'a:33:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:13:"shortcut_mode";N;s:8:"shortcut";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'ResourceXplorer', 'slug' => '/design-support/resourcexplorer', 'doktype' => 4, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => 'https://www.xfab.com/tools/resourcexplorer', 'shortcut' => 1630, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'ResourceXplorer', 'link' => '/tools/resourcexplorer', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1636, 'pid' => 21, 'tstamp' => 1611588474, 'crdate' => 1611588423, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 1008, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:33:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:13:"shortcut_mode";N;s:8:"shortcut";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'X-CHAIN', 'slug' => '/design-support/x-chain', 'doktype' => 4, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 58, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'X-CHAIN', 'link' => '/x-chain', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1637, 'pid' => 21, 'tstamp' => 1611608943, 'crdate' => 1611604387, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 1272, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:33:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:13:"shortcut_mode";N;s:8:"shortcut";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'IP Portal', 'slug' => '/design-support/ip-portal', 'doktype' => 4, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 1578, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'IP Portal', 'link' => '/ip-portal', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array())), 'image' => array())), 'menuSub' => array(), 'menuBreadcrumb' => array(), 'menuTop' => array(array('data' => array('uid' => 29, 'pid' => 5, 'tstamp' => 1605005074, 'crdate' => 1599650139, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 128, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:48:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:8:"abstract";N;s:8:"keywords";N;s:11:"description";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'News/Events', 'slug' => '/news', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1709882672, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'News/Events', 'link' => '/news', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 6, 'pid' => 5, 'tstamp' => 1627654361, 'crdate' => 1592376863, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 256, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Investors', 'slug' => '/investors', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Find all relevant investor information at a glance. Latest Investor News · X-FAB Share · Corporate Governance · Financial Reports · Investor Day 2021...', 'no_search' => 0, 'SYS_LASTCHANGED' => 1711471135, 'abstract' => 'Find all relevant investor information at a glance. Latest Investor News · X-FAB Share · Corporate Governance · Financial Reports · Investor Day 2021...', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Investor Relations', 'no_index' => 0, 'no_follow' => 0, 'og_title' => 'X-FAB Investor Relations', 'og_description' => 'Find all relevant investor information at a glance. Latest Investor News · X-FAB Share · Corporate Governance · Financial Reports · Investor Day 2021...', 'og_image' => 1, 'twitter_title' => 'X-FAB Investor Relations', 'twitter_description' => 'Find all relevant investor information at a glance. Latest Investor News · X-FAB Share · Corporate Governance · Financial Reports · Investor Day 2021...', 'twitter_image' => 1, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Investors', 'link' => '/investors', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 22, 'pid' => 5, 'tstamp' => 1602769103, 'crdate' => 1599649419, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 512, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:32:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:3:"url";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Career', 'slug' => '/career', 'doktype' => 3, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => 'https://www.xfabulous.com', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1601965457, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Career', 'link' => 'https://www.xfabulous.com', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 23, 'pid' => 5, 'tstamp' => 1601965457, 'crdate' => 1599649689, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '0', 'sorting' => 640, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:1:{s:6:"hidden";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Tools', 'slug' => '/tools', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1665056387, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Tools', 'link' => '/tools', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 1616, 'pid' => 5, 'tstamp' => 1607431938, 'crdate' => 1607246530, 'cruser_id' => 9, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 672, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:32:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:3:"url";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 9, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'My X-FAB', 'slug' => '/my-xfab-login', 'doktype' => 3, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => 'https://my.xfab.com/', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'My X-FAB', 'link' => 'https://my.xfab.com/', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 24, 'pid' => 5, 'tstamp' => 1701760506, 'crdate' => 1599649699, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 704, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:1:{s:6:"hidden";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Contact', 'slug' => '/contact', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1710902458, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Contact', 'link' => '/contact', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 15, 'pid' => 5, 'tstamp' => 1601965457, 'crdate' => 1592378532, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '0', 'sorting' => 768, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:1:{s:6:"hidden";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Search', 'slug' => '/search', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1632302701, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Search', 'link' => '/search', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0)), 'menuSocket' => array(array('data' => array('uid' => 1622, 'pid' => 7, 'tstamp' => 1607603784, 'crdate' => 1607603716, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 128, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:33:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:13:"shortcut_mode";N;s:8:"shortcut";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Sitemap', 'slug' => '/sitemap-2', 'doktype' => 4, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 25, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 1, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Sitemap', 'link' => '/sitemap', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 26, 'pid' => 7, 'tstamp' => 1601965457, 'crdate' => 1599649882, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 768, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:48:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:8:"abstract";N;s:8:"keywords";N;s:11:"description";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Imprint', 'slug' => '/imprint', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1681458270, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Imprint', 'link' => '/imprint', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 27, 'pid' => 7, 'tstamp' => 1601965457, 'crdate' => 1599650039, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 1024, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:48:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:8:"abstract";N;s:8:"keywords";N;s:11:"description";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Privacy Statement', 'slug' => '/privacy-statement', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1686650399, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Privacy Statement', 'link' => '/privacy-statement', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0)), 'menuSide' => array(array('data' => array('uid' => 12, 'pid' => 1, 'tstamp' => 1610960241, 'crdate' => 1592377009, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 192, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'About us', 'slug' => '/about-us', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies with a clear focus on automotive, industrial, and medical applications. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits (ICs) and other semiconductor devices for use in their own products or the products of their customers.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1693896583, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Your specialty foundry for the analog world', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'About us', 'link' => '/about-us', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 18, 'pid' => 1, 'tstamp' => 1607633132, 'crdate' => 1599649257, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 224, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Markets', 'slug' => '/markets', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'With our broad range of technologies and unique combination of CMOS and MEMS process capabilities, X-FAB is well equipped to manufacture complex devices that meet the exacting quality requirements of the automotive, industrial and medical industries. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1691165372, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Foundry solutions for key markets: automotive, medical, industrial devices', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'With our broad range of technologies and unique combination of CMOS and MEMS process capabilities we meet the requirements of the automotive, industrial and medical industries. ', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Markets', 'link' => '/markets', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 19, 'pid' => 1, 'tstamp' => 1610955628, 'crdate' => 1599649290, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 240, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Technology', 'slug' => '/technology', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'We offer a wide range of open platform process technologies. We combine advanced modular CMOS and BiCMOS platforms with additional analog functions and modular options. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1689305484, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Wide range of Semiconductor Technologies', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 1, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Technology', 'link' => '/technology', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 20, 'pid' => 1, 'tstamp' => 1607634716, 'crdate' => 1599649310, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 248, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Manufacturing', 'slug' => '/manufacturing', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB has an established track record of over 25 years of experience providing proprietary manufacturing processes and advanced design and engineering support offerings. Excellent service, reliability and first-class technical support – that’s what X-FAB stands for.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1660039460, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Manufacturing solutions from a pure-play foundry', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Manufacturing excellence to make your innovations come to life', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Manufacturing', 'link' => '/manufacturing', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 21, 'pid' => 1, 'tstamp' => 1608040619, 'crdate' => 1599649394, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 252, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Design Support', 'slug' => '/design-support', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1689305053, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Design Support', 'link' => '/design-support', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0))))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 102
        $this->setPartialRootPath($conf);
        $this->setExtbaseVariables($conf);
        $this->assignSettings($conf);
        $variables = $this->getContentObjectVariables($conf);
        $variables = $this->contentDataProcessor->process($this->cObj, $conf, $variables);

        $this->view->assignMultiple($variables);

        $this->renderFluidTemplateAssetsIntoPageRenderer();
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->render(array('templateName' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'templateRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Templates/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Templates/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Partials/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Partials/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Layouts/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Layouts/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special.' => array('value.' => array('field' => 'pages')), 'levels' => '3', 'as' => 'menuMain', 'expandAll' => '1', 'includeSpacer' => '0', 'titleField' => 'nav_title // title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'as' => 'image'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('levels' => '5', 'entryLevel' => '2', 'expandAll' => '0', 'includeSpacer' => '0', 'as' => 'menuSub'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '40.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'includeNotInMenu' => '1', 'excludeUidList' => '1', 'as' => 'menuBreadcrumb'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'directory', 'special.' => array('value' => '5'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'menuTop'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '60.' => array('special' => 'directory', 'special.' => array('value' => '7'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'menuSocket'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '70.' => array('special' => 'directory', 'special.' => array('value' => ''), 'levels' => '1', 'includeSpacer' => '0', 'as' => 'menuSide'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '80.' => array('languages' => 'auto', 'as' => 'menuLanguage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '90.' => array('special' => 'directory', 'special.' => array('value' => '9'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'footerLeftSideMenu')), 'settings.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'framework' => 'UiKit', 'rootPid' => '1', 'targetPid' => '15', 'logoFilePath' => 'fileadmin/user_upload/XFAB_Logo_White.svg', 'logoFileWidth' => '140', 'logoFileAltAttr' => 'XFAB Logo', 'logoShrink' => '1', 'topMenuPosition' => 'right', 'mainMenuEntryLevel' => '0', 'mainMenuPosition' => 'right', 'mainMenuSticky' => '1', 'mainMenuMegaExclude' => '', 'mainMenuMegaBackgroundColor' => 'default', 'mainMenuMegaWidth' => 'Navbar', 'showSubMenuInSidebars' => '0', 'socketMenuPosition' => 'right', 'socketMenuSourceID' => '7', 'copyrightFooterText' => 'X-FAB Silicon Foundries SE', 'topMenuSourceID' => '5', 'sideMenuSourceID' => '', 'headerInnerBuild' => 'default', 'headerWidth' => '0', 'headerInnerAlign' => 'left', 'headerOuterBackgroundColor' => 'primary', 'headerTopmenuBackgroundColor' => 'primary', 'headerMainmenuBackgroundColor' => 'primary', 'footerBackgroundColor' => 'muted', 'footerBackgroundInlineColor' => '', 'footerSitemapMenu' => '1', 'footerSitemapExcludePageID' => '', 'socketBackgroundColor' => 'muted', 'socketBackgroundInlineColor' => '', 'showBreadcrumb' => '0', 'showBreadcrumbHomeLink' => '1', 'breadcrumbBackgroundColor' => 'primary', 'newsDetailPid' => '{$plugin.tx_akt_sitepackage.settings.newsDetailPid}', 'socialMediaMenu' => '1', 'facebookPath' => 'https://www.facebook.com/xfab.corporate', 'twitterPath' => 'https://twitter.com/xfab_foundry?lang=de', 'youtubePath' => 'https://www.youtube.com/channel/UCZVqNluNp8W0Ni9CQ0PTvyQ', 'linkedInPath' => 'https://de.linkedin.com/company/x-fab', 'xingPath' => '', 'instagramPath' => '', 'footerContent.' => array('footerContentSourceUID' => '')), 'variables.' => array('contentMain' => 'CONTENT', 'contentMain.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=0')), 'contentFocus' => 'CONTENT', 'contentFocus.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=1')), 'headers' => '< lib.contentElement', 'headers.' => array('templateName' => 'Header'))))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 821
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject), array('templateName' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'templateRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Templates/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Templates/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Partials/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Partials/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Layouts/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Layouts/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special.' => array('value.' => array('field' => 'pages')), 'levels' => '3', 'as' => 'menuMain', 'expandAll' => '1', 'includeSpacer' => '0', 'titleField' => 'nav_title // title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'as' => 'image'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('levels' => '5', 'entryLevel' => '2', 'expandAll' => '0', 'includeSpacer' => '0', 'as' => 'menuSub'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '40.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'includeNotInMenu' => '1', 'excludeUidList' => '1', 'as' => 'menuBreadcrumb'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'directory', 'special.' => array('value' => '5'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'menuTop'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '60.' => array('special' => 'directory', 'special.' => array('value' => '7'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'menuSocket'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '70.' => array('special' => 'directory', 'special.' => array('value' => ''), 'levels' => '1', 'includeSpacer' => '0', 'as' => 'menuSide'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '80.' => array('languages' => 'auto', 'as' => 'menuLanguage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '90.' => array('special' => 'directory', 'special.' => array('value' => '9'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'footerLeftSideMenu')), 'settings.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'framework' => 'UiKit', 'rootPid' => '1', 'targetPid' => '15', 'logoFilePath' => 'fileadmin/user_upload/XFAB_Logo_White.svg', 'logoFileWidth' => '140', 'logoFileAltAttr' => 'XFAB Logo', 'logoShrink' => '1', 'topMenuPosition' => 'right', 'mainMenuEntryLevel' => '0', 'mainMenuPosition' => 'right', 'mainMenuSticky' => '1', 'mainMenuMegaExclude' => '', 'mainMenuMegaBackgroundColor' => 'default', 'mainMenuMegaWidth' => 'Navbar', 'showSubMenuInSidebars' => '0', 'socketMenuPosition' => 'right', 'socketMenuSourceID' => '7', 'copyrightFooterText' => 'X-FAB Silicon Foundries SE', 'topMenuSourceID' => '5', 'sideMenuSourceID' => '', 'headerInnerBuild' => 'default', 'headerWidth' => '0', 'headerInnerAlign' => 'left', 'headerOuterBackgroundColor' => 'primary', 'headerTopmenuBackgroundColor' => 'primary', 'headerMainmenuBackgroundColor' => 'primary', 'footerBackgroundColor' => 'muted', 'footerBackgroundInlineColor' => '', 'footerSitemapMenu' => '1', 'footerSitemapExcludePageID' => '', 'socketBackgroundColor' => 'muted', 'socketBackgroundInlineColor' => '', 'showBreadcrumb' => '0', 'showBreadcrumbHomeLink' => '1', 'breadcrumbBackgroundColor' => 'primary', 'newsDetailPid' => '{$plugin.tx_akt_sitepackage.settings.newsDetailPid}', 'socialMediaMenu' => '1', 'facebookPath' => 'https://www.facebook.com/xfab.corporate', 'twitterPath' => 'https://twitter.com/xfab_foundry?lang=de', 'youtubePath' => 'https://www.youtube.com/channel/UCZVqNluNp8W0Ni9CQ0PTvyQ', 'linkedInPath' => 'https://de.linkedin.com/company/x-fab', 'xingPath' => '', 'instagramPath' => '', 'footerContent.' => array('footerContentSourceUID' => '')), 'variables.' => array('contentMain' => 'CONTENT', 'contentMain.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=0')), 'contentFocus' => 'CONTENT', 'contentFocus.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=1')), 'headers' => '< lib.contentElement', 'headers.' => array('templateName' => 'Header'))))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 737
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'] ?? [] as $className) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'templateRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Templates/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Templates/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Partials/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Partials/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Layouts/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Layouts/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special.' => array('value.' => array('field' => 'pages')), 'levels' => '3', 'as' => 'menuMain', 'expandAll' => '1', 'includeSpacer' => '0', 'titleField' => 'nav_title // title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'as' => 'image'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('levels' => '5', 'entryLevel' => '2', 'expandAll' => '0', 'includeSpacer' => '0', 'as' => 'menuSub'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '40.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'includeNotInMenu' => '1', 'excludeUidList' => '1', 'as' => 'menuBreadcrumb'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'directory', 'special.' => array('value' => '5'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'menuTop'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '60.' => array('special' => 'directory', 'special.' => array('value' => '7'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'menuSocket'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '70.' => array('special' => 'directory', 'special.' => array('value' => ''), 'levels' => '1', 'includeSpacer' => '0', 'as' => 'menuSide'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '80.' => array('languages' => 'auto', 'as' => 'menuLanguage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '90.' => array('special' => 'directory', 'special.' => array('value' => '9'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'footerLeftSideMenu')), 'settings.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'framework' => 'UiKit', 'rootPid' => '1', 'targetPid' => '15', 'logoFilePath' => 'fileadmin/user_upload/XFAB_Logo_White.svg', 'logoFileWidth' => '140', 'logoFileAltAttr' => 'XFAB Logo', 'logoShrink' => '1', 'topMenuPosition' => 'right', 'mainMenuEntryLevel' => '0', 'mainMenuPosition' => 'right', 'mainMenuSticky' => '1', 'mainMenuMegaExclude' => '', 'mainMenuMegaBackgroundColor' => 'default', 'mainMenuMegaWidth' => 'Navbar', 'showSubMenuInSidebars' => '0', 'socketMenuPosition' => 'right', 'socketMenuSourceID' => '7', 'copyrightFooterText' => 'X-FAB Silicon Foundries SE', 'topMenuSourceID' => '5', 'sideMenuSourceID' => '', 'headerInnerBuild' => 'default', 'headerWidth' => '0', 'headerInnerAlign' => 'left', 'headerOuterBackgroundColor' => 'primary', 'headerTopmenuBackgroundColor' => 'primary', 'headerMainmenuBackgroundColor' => 'primary', 'footerBackgroundColor' => 'muted', 'footerBackgroundInlineColor' => '', 'footerSitemapMenu' => '1', 'footerSitemapExcludePageID' => '', 'socketBackgroundColor' => 'muted', 'socketBackgroundInlineColor' => '', 'showBreadcrumb' => '0', 'showBreadcrumbHomeLink' => '1', 'breadcrumbBackgroundColor' => 'primary', 'newsDetailPid' => '{$plugin.tx_akt_sitepackage.settings.newsDetailPid}', 'socialMediaMenu' => '1', 'facebookPath' => 'https://www.facebook.com/xfab.corporate', 'twitterPath' => 'https://twitter.com/xfab_foundry?lang=de', 'youtubePath' => 'https://www.youtube.com/channel/UCZVqNluNp8W0Ni9CQ0PTvyQ', 'linkedInPath' => 'https://de.linkedin.com/company/x-fab', 'xingPath' => '', 'instagramPath' => '', 'footerContent.' => array('footerContentSourceUID' => '')), 'variables.' => array('contentMain' => 'CONTENT', 'contentMain.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=0')), 'contentFocus' => 'CONTENT', 'contentFocus.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=1')), 'headers' => '< lib.contentElement', 'headers.' => array('templateName' => 'Header'))), '10')
in /html/xfab.com/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 683
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && strpos($theKey, '.') === false) {
                $conf = $setup[$theKey . '.'];
                $content .= $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $content;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('typeNum' => '0', 'shortcutIcon' => 'EXT:akt_sitepackage_client_extender/Resources/Public/Images/favicon.ico', 'FLUIDTEMPLATE', '10.' => array('templateName' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'templateRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Templates/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Templates/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Partials/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Partials/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Layouts/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Layouts/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special.' => array('value.' => array('field' => 'pages')), 'levels' => '3', 'as' => 'menuMain', 'expandAll' => '1', 'includeSpacer' => '0', 'titleField' => 'nav_title // title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'as' => 'image'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('levels' => '5', 'entryLevel' => '2', 'expandAll' => '0', 'includeSpacer' => '0', 'as' => 'menuSub'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '40.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'includeNotInMenu' => '1', 'excludeUidList' => '1', 'as' => 'menuBreadcrumb'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'directory', 'special.' => array('value' => '5'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'menuTop'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '60.' => array('special' => 'directory', 'special.' => array('value' => '7'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'menuSocket'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '70.' => array('special' => 'directory', 'special.' => array('value' => ''), 'levels' => '1', 'includeSpacer' => '0', 'as' => 'menuSide'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '80.' => array('languages' => 'auto', 'as' => 'menuLanguage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '90.' => array('special' => 'directory', 'special.' => array('value' => '9'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'footerLeftSideMenu')), 'settings.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'framework' => 'UiKit', 'rootPid' => '1', 'targetPid' => '15', 'logoFilePath' => 'fileadmin/user_upload/XFAB_Logo_White.svg', 'logoFileWidth' => '140', 'logoFileAltAttr' => 'XFAB Logo', 'logoShrink' => '1', 'topMenuPosition' => 'right', 'mainMenuEntryLevel' => '0', 'mainMenuPosition' => 'right', 'mainMenuSticky' => '1', 'mainMenuMegaExclude' => '', 'mainMenuMegaBackgroundColor' => 'default', 'mainMenuMegaWidth' => 'Navbar', 'showSubMenuInSidebars' => '0', 'socketMenuPosition' => 'right', 'socketMenuSourceID' => '7', 'copyrightFooterText' => 'X-FAB Silicon Foundries SE', 'topMenuSourceID' => '5', 'sideMenuSourceID' => '', 'headerInnerBuild' => 'default', 'headerWidth' => '0', 'headerInnerAlign' => 'left', 'headerOuterBackgroundColor' => 'primary', 'headerTopmenuBackgroundColor' => 'primary', 'headerMainmenuBackgroundColor' => 'primary', 'footerBackgroundColor' => 'muted', 'footerBackgroundInlineColor' => '', 'footerSitemapMenu' => '1', 'footerSitemapExcludePageID' => '', 'socketBackgroundColor' => 'muted', 'socketBackgroundInlineColor' => '', 'showBreadcrumb' => '0', 'showBreadcrumbHomeLink' => '1', 'breadcrumbBackgroundColor' => 'primary', 'newsDetailPid' => '{$plugin.tx_akt_sitepackage.settings.newsDetailPid}', 'socialMediaMenu' => '1', 'facebookPath' => 'https://www.facebook.com/xfab.corporate', 'twitterPath' => 'https://twitter.com/xfab_foundry?lang=de', 'youtubePath' => 'https://www.youtube.com/channel/UCZVqNluNp8W0Ni9CQ0PTvyQ', 'linkedInPath' => 'https://de.linkedin.com/company/x-fab', 'xingPath' => '', 'instagramPath' => '', 'footerContent.' => array('footerContentSourceUID' => '')), 'variables.' => array('contentMain' => 'CONTENT', 'contentMain.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=0')), 'contentFocus' => 'CONTENT', 'contentFocus.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=1')), 'headers' => '< lib.contentElement', 'headers.' => array('templateName' => 'Header'))), 'meta.' => array('viewport' => 'width=device-width, initial-scale=1', 'robots' => 'index,follow', 'apple-mobile-web-app-capable' => 'no', 'description' => '', 'description.' => array('override.' => array('field' => 'description')), 'author' => '', 'author.' => array('override.' => array('field' => 'author')), 'keywords' => '', 'keywords.' => array('override.' => array('field' => 'keywords')), 'X-UA-Compatible' => 'IE=edge', 'X-UA-Compatible.' => array('attribute' => 'http-equiv'), 'og:title.' => array('attribute' => 'property', 'field' => 'title'), 'og:site_name.' => array('attribute' => 'property', 'data' => 'TSFE:tmpl|setup|sitetitle'), 'og:description' => '', 'og:description.' => array('attribute' => 'property', 'field' => 'description'), 'og:image.' => array('attribute' => 'property', 'stdWrap.' => array('cObject' => 'FILES', 'cObject.' => array('references.' => array('data' => 'levelfield:-1, media, slide'), 'maxItems' => '1', 'renderObj' => 'COA', 'renderObj.' => array('IMG_RESOURCE', '10.' => array('file.' => array('import.' => array('data' => 'file:current:uid'), 'treatIdAsReference' => '1', 'width' => '1280c', 'height' => '720c'), 'stdWrap.' => array('typolink.' => array('parameter.' => array('data' => 'TSFE:lastImgResourceInfo|3'), 'returnLast' => 'url', 'forceAbsoluteUrl' => '1')))))))), 'includeCSSLibs.' => array('akt_sitepackage_layout' => 'EXT:akt_sitepackage/Resources/Public/Css/Framework/UiKit/uikit.min.css'), 'includeCSS.' => array('akt_sitepackage_font' => 'EXT:akt_sitepackage/Resources/Public/Css/Page/akt_sitepackage_font.css', 'akt_sitepackage_default' => 'EXT:akt_sitepackage/Resources/Public/Css/Page/akt_sitepackage_default.css', 'timeline' => 'EXT:akt_sitepackage/Resources/Public/Scss/timeline.scss', 'timeline.' => array('outputdir' => 'EXT:akt_sitepackage/Resources/Public/Scss/timeline-output.css'), 'akt_sitepackage_client_extender_layout' => 'EXT:akt_sitepackage_client_extender/Resources/Public/Scss/layout.scss', 'tooltipster' => 'EXT:akt_servicesearch/Resources/Public/Css/tooltipster.css', 'requestform' => 'EXT:akt_servicesearch/Resources/Public/Css/request-forn.css', 'ckefontawesome' => 'https://use.fontawesome.com/releases/v5.15.2/css/all.css', 'ckefontawesome.' => array('external' => '1', 'if.' => array('isTrue' => '1')), 'akt_pagehits' => 'EXT:akt_pagehits/Resources/Public/Css/akt_pagehits.css', 'tx_aktpardot_registration' => 'EXT:akt_pardot/Resources/Public/Css/tx_aktpardot_registration.css', 'tx_aktlogincode_form' => 'EXT:akt_login_code/Resources/Public/Css/tx-aktlogin-form.css'), 'includeJSLibs.' => array(), 'includeJS.' => array(), 'includeJSFooterlibs.' => array('akt_sitepackage_scripts' => 'EXT:akt_sitepackage/Resources/Public/JavaScript/Libs/jquery-3.3.1.min.js', 'recaptcha' => 'https://www.google.com/recaptcha/api.js?hl='), 'includeJSFooter.' => array('akt_sitepackage_framework_script' => 'EXT:akt_sitepackage/Resources/Public/JavaScript/Framework/UiKit/uikit.min.js', 'akt_sitepackage_framework_script.' => array('forceOnTop' => '1'), 'akt_sitepackage_framework_iconscript' => 'EXT:akt_sitepackage/Resources/Public/JavaScript/Framework/UiKit/uikit-icons.min.js', 'akt_sitepackage_main_script' => 'EXT:akt_sitepackage_client_extender/Resources/Public/JavaScript/Dist/scriptsOverrideSitepackage.js', 'mindshapecookieconsent' => 'EXT:akt_sitepackage_client_extender/Resources/Public/JavaScript/Dist/mindshape_cookie_consent.js', 'akt_sitepackage_client_extender_scripts' => 'EXT:akt_sitepackage_client_extender/Resources/Public/JavaScript/Dist/scripts.js', 'browser_update' => 'EXT:akt_sitepackage_client_extender/Resources/Public/JavaScript/Dist/browser_update.js', 'file100' => 'EXT:akt_servicesearch/Resources/Public/Js/script.js', 'file101' => 'EXT:akt_servicesearch/Resources/Public/Js/jquery.tooltipster.min.js', 'powermailJQueryDatepicker' => 'EXT:powermail/Resources/Public/JavaScript/Libraries/jquery.datetimepicker.min.js', 'powermailJQueryFormValidation' => 'EXT:powermail/Resources/Public/JavaScript/Libraries/parsley.min.js', 'powermailJQueryTabs' => 'EXT:powermail/Resources/Public/JavaScript/Powermail/Tabs.min.js', 'powermailForm' => 'EXT:powermail/Resources/Public/JavaScript/Powermail/Form.min.js', 'tx_aktpardot_registration' => 'EXT:akt_pardot/Resources/Public/JavaScript/tx_aktpardot_registration.js', 'tx_aktlogincode_form' => 'EXT:akt_login_code/Resources/Public/JavaScript/tx_aktlogincode_form.js'), 'TEXT', '1.' => array('value' => ' <div id="googleIframe"></div>'), 'bodyTagCObject' => 'TEXT', 'bodyTagCObject.' => array('field' => 'uid', 'wrap' => '<body id="uk-page-|">'), 'headerData.' => array('TEXT', '5.' => array('noTrimWrap' => '|<title>X-FAB: |</title>|', 'field' => 'seo_title// subtitle // title'), 'TEXT', '27.' => array('value' => ' <link rel="apple-touch-icon" sizes="180x180" href="typo3conf/ext/akt_sitepackage_client_extender/Resources/Public/Icons/Favicon/apple-touch-icon.png"> <link rel="icon" type="image/png" sizes="32x32" href="typo3conf/ext/akt_sitepackage_client_extender/Resources/Public/Icons/Favicon/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="typo3conf/ext/akt_sitepackage_client_extender/Resources/Public/Icons/Favicon/favicon-16x16.png"> <link rel="manifest" href="typo3conf/ext/akt_sitepackage_client_extender/Resources/Public/Icons/Favicon/site.webmanifest"> <link rel="mask-icon" href="typo3conf/ext/akt_sitepackage_client_extender/Resources/Public/Icons/Favicon/safari-pinned-tab.svg" color="#5bbad5"> <meta name="msapplication-TileColor" content="#ffffff"> <meta name="theme-color" content="#ffffff"> <meta name="msapplication-config" content="typo3conf/ext/akt_sitepackage_client_extender/Resources/Public/Icons/Favicon/browserconfig.xml">')), 'jsInline.' => array('TEXT', '1508480348393.' => array('value' => 'function onRecaptchaSubmit() { document.querySelectorAll(\'[data-callback="onRecaptchaSubmit"]\')[0].form.submit(); return false; }', 'if.' => array('isTrue' => '0')))))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 246
     * @return string
     */
    protected function generatePageContent(TypoScriptFrontendController $controller): string
    {
        $pageContent = $controller->cObj->cObjGet($controller->pSetup) ?: '';
        if ($controller->pSetup['wrap'] ?? false) {
            $pageContent = $controller->cObj->wrap($pageContent, $controller->pSetup['wrap']);
        }
        if ($controller->pSetup['stdWrap.'] ?? false) {
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 268
     */
    protected function generatePageContentWithHeader(TypoScriptFrontendController $controller, ?SiteLanguage $siteLanguage): string
    {
        // Generate the page content, this has to be first, as some additional TSFE-related code could have been written
        $pageContent = $this->generatePageContent($controller);
        $pageRenderer = $this->getPageRenderer();
        if ($controller->config['config']['moveJsFromHeaderToFooter'] ?? false) {
            $pageRenderer->enableMoveJsFromHeaderToFooter();
        }
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageContentWithHeader(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController), object(TYPO3\CMS\Core\Site\Entity\SiteLanguage))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 168
            // If 'disableAllHeaderCode' is set, all the header-code is discarded
            if ($controller->config['config']['disableAllHeaderCode'] ?? false) {
                $controller->content = $this->generatePageContent($controller);
            } else {
                $controller->content = $this->generatePageContentWithHeader($controller, $request->getAttribute('language', null));
            }

            $this->timeTracker->pull($this->timeTracker->LR ? $controller->content : '');
            $this->timeTracker->decStackPointer();
at TYPO3\CMS\Frontend\Http\RequestHandler->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/OutputCompression.php line 46
        // Throw away all output that may have happened during bootstrapping by weird extensions
        ob_clean();
        // Initialize output compression if configured
        $this->initializeOutputCompression();
        return $handler->handle($request);
    }

    /**
     * Initialize output compression if configured
at TYPO3\CMS\Frontend\Middleware\OutputCompression->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(TYPO3\CMS\Frontend\Http\RequestHandler))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3conf/ext/sourceopt/Classes/Middleware/CleanHtmlMiddleware.php line 39
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);

        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
at HTML\Sourceopt\Middleware\CleanHtmlMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3conf/ext/typoscript_rendering/Classes/Middleware/TypoScriptRenderingMiddleware.php line 43
    {
        $frontendController = $GLOBALS['TSFE'];
        $requestedContentType = $frontendController->config['config']['contentType'] ?? self::defaultContentType;
        if (!$frontendController->isGeneratePage() || !isset($request->getQueryParams()[self::argumentNamespace])) {
            return $this->amendContentType($handler->handle($request), $requestedContentType);
        }
        $this->ensureRequiredEnvironment();

        $frontendController->config['config']['debug'] = 0;
at Helhum\TyposcriptRendering\Middleware\TypoScriptRenderingMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelDataPersister.php line 44
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && $GLOBALS['TSFE']->isOutputting()
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelDataPersister->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelRenderer.php line 46
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && $GLOBALS['TSFE']->isOutputting()
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelRenderer->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/ContentLengthResponseHeader.php line 45
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && $GLOBALS['TSFE']->isOutputting()) {
at TYPO3\CMS\Frontend\Middleware\ContentLengthResponseHeader->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/ShortcutAndMountPointRedirect.php line 65
                return new RedirectResponse($externalUrl, 303);
            }
        }

        return $handler->handle($request);
    }

    protected function getRedirectUri(ServerRequestInterface $request): ?string
    {
at TYPO3\CMS\Frontend\Middleware\ShortcutAndMountPointRedirect->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/PrepareTypoScriptFrontendRendering.php line 118
                GeneralUtility::makeInstance($className)->checkDataSubmission($this->controller);
            }
        }

        return $handler->handle($request);
    }

    /**
     * Small helper function to convert charsets for arrays to UTF-8
at TYPO3\CMS\Frontend\Middleware\PrepareTypoScriptFrontendRendering->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/PageArgumentValidator.php line 99
                    ['code' => PageAccessFailureReasons::CACHEHASH_COMPARISON_FAILED]
                );
            }
        }
        return $handler->handle($request);
    }

    /**
     * Calculates a hash string based on additional parameters in the url.
at TYPO3\CMS\Frontend\Middleware\PageArgumentValidator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/MaintenanceMode.php line 53
        ) {
            return GeneralUtility::makeInstance(ErrorController::class)->unavailableAction($request, 'This page is temporarily unavailable.');
        }
        // Continue the regular stack if no maintenance mode is active
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\MaintenanceMode->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/PageResolver.php line 171
            }
            $this->controller->determineId();
        }

        return $handler->handle($request);
    }

    /**
     * Provides ways to bypass the '?id=[xxx]&type=[xx]' format, using either PATH_INFO or Server Rewrites
at TYPO3\CMS\Frontend\Middleware\PageResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/PreviewSimulator.php line 62
            $showHiddenRecords = ($this->context->hasAspect('visibility') ? $this->context->getAspect('visibility')->includeHidden() : false);
            $GLOBALS['TSFE']->fePreview = ($simulatingDate || $simulatingGroup || $showHiddenRecords);
        }

        return $handler->handle($request);
    }

    /**
     * Simulate dates for preview functionality
at TYPO3\CMS\Frontend\Middleware\PreviewSimulator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/redirects/Classes/Http/Middleware/RedirectHandler.php line 70
                return $response;
            }
        }

        return $handler->handle($request);
    }

    /**
     * Creates a PSR-7 compatible Response object
at TYPO3\CMS\Redirects\Http\Middleware\RedirectHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/StaticRouteResolver.php line 62

                return new HtmlResponse($content, 200, ['Content-Type' => $contentType]);
            }
        }
        return $handler->handle($request);
    }

    /**
     * Find the proper configuration for the static route in the static route configuration. Mainly:
at TYPO3\CMS\Frontend\Middleware\StaticRouteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3conf/ext/akt_login_code/Classes/Middleware/AjaxRoutes.php line 102
                return $response;
            }
        }

        return $handler->handle($request);
    }

    /**
     * @param $email
at Akt\AktLoginCode\Middleware\AjaxRoutes->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/SiteBaseRedirectResolver.php line 86
                $uri = $requestedUri->withPath(rtrim($requestedUri->getPath(), '/'));
                return new RedirectResponse($uri, 307);
            }
        }
        return $handler->handle($request);
    }
    /**
     * Checks if the language is allowed in Frontend, if not, check if there is valid BE user
     *
at TYPO3\CMS\Frontend\Middleware\SiteBaseRedirectResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelInitiator.php line 58
            $beUser = $GLOBALS['BE_USER'];
            $beUser->adminPanel = GeneralUtility::makeInstance(AdminPanelView::class);
            $beUser->extAdmEnabled = true;
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelInitiator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/SiteResolver.php line 68
        // At this point, we later get further route modifiers
        // for bw-compat we update $GLOBALS[TYPO3_REQUEST] to be used later in TSFE.
        $GLOBALS['TYPO3_REQUEST'] = $request;

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\SiteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3conf/ext/secure_downloads/Classes/Middleware/FileDeliveryMiddleware.php line 58
            [$jwt, $basePath] = explode('/', $cleanPath);
            return (new FileDelivery($jwt))->deliver($request);
        }

        return $handler->handle($request);
    }

    public function isResponsible(ServerRequestInterface $request)
    {
at Bitmotion\SecureDownloads\Middleware\FileDeliveryMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/adminpanel/Classes/Middleware/SqlLogging.php line 49
            $connectionPool = GeneralUtility::makeInstance(ConnectionPool::class);
            $connection = $connectionPool->getConnectionByName(ConnectionPool::DEFAULT_CONNECTION_NAME);
            $connection->getConfiguration()->setSQLLogger(GeneralUtility::makeInstance(DoctrineSqlLogger::class));
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Adminpanel\Middleware\SqlLogging->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/BackendUserAuthenticator.php line 95
            Bootstrap::loadExtTables();
            $this->setBackendUserAspect(GeneralUtility::makeInstance(Context::class), $GLOBALS['BE_USER']);
        }

        return $handler->handle($request);
    }

    /**
     * Creates the backend user object and returns it.
at TYPO3\CMS\Frontend\Middleware\BackendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/FrontendUserAuthenticator.php line 79

        // Register the frontend user as aspect
        $this->setFrontendUserAspect(GeneralUtility::makeInstance(Context::class), $frontendUser);

        return $handler->handle($request);
    }

    /**
     * It's possible to transfer a frontend user session via a GET/POST parameter 'FE_SESSION_KEY'.
at TYPO3\CMS\Frontend\Middleware\FrontendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/TypoScriptFrontendInitialization.php line 90
                GeneralUtility::callUserFunction($_funcRef, $_params, $GLOBALS['TSFE']);
            }
        }

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\TypoScriptFrontendInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3conf/ext/yoast_seo/Classes/Middleware/PageRequestMiddleware.php line 32
        if (YoastRequestHash::isValid($request->getServerParams())) {
            $context = GeneralUtility::makeInstance(Context::class);
            $context->setAspect('visibility', new VisibilityAspect(true));
        }
        return $handler->handle($request);
    }
}
at YoastSeoForTypo3\YoastSeo\Middleware\PageRequestMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/EidHandler.php line 50
    {
        $eID = $request->getParsedBody()['eID'] ?? $request->getQueryParams()['eID'] ?? null;

        if ($eID === null) {
            return $handler->handle($request);
        }

        // Remove any output produced until now
        ob_clean();
at TYPO3\CMS\Frontend\Middleware\EidHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/PreprocessRequestHook.php line 57
                $hookParameters = [];
                GeneralUtility::callUserFunction($hookFunction, $hookParameters, $hookParameters);
            }
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\PreprocessRequestHook->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/core/Classes/Middleware/NormalizedParamsAttribute.php line 58
        // refactored to have ServerRequest object available where it is needed. This global will be
        // deprecated then and removed.
        $GLOBALS['TYPO3_REQUEST'] = $request;

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Core\Middleware\NormalizedParamsAttribute->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/TimeTrackerInitialization.php line 49
        );
        $timeTracker->start();
        $timeTracker->push('');

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\TimeTrackerInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 67
     * @return ResponseInterface
     */
    public function handle(ServerRequestInterface $request): ResponseInterface
    {
        return $this->tip->handle($request);
    }

    /**
     * Seed the middleware stack with the inner request handler
at TYPO3\CMS\Core\Http\MiddlewareDispatcher->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/AbstractApplication.php line 108
    {
        $requestHandler = GeneralUtility::makeInstance($this->requestHandler);
        $dispatcher = $this->createMiddlewareDispatcher($requestHandler);

        return $dispatcher->handle($request);
    }

    /**
     * Set up the application and shut it down afterwards
at TYPO3\CMS\Core\Http\AbstractApplication->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Http/Application.php line 69
        if (!$this->checkIfEssentialConfigurationExists()) {
            return $this->installToolRedirect();
        }
        $this->initializeContext();
        return parent::handle($request);
    }

    /**
     * Check if LocalConfiguration.php and PackageStates.php exist
at TYPO3\CMS\Frontend\Http\Application->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/AbstractApplication.php line 120
    final public function run(callable $execute = null)
    {
        try {
            $response = $this->handle(
                \TYPO3\CMS\Core\Http\ServerRequestFactory::fromGlobals()
            );
            if ($execute !== null) {
                call_user_func($execute);
            }
at TYPO3\CMS\Core\Http\AbstractApplication->run()
in /html/xfab.com/public/index.php line 24
// Set up the application for the frontend
call_user_func(function () {
    $classLoader = require dirname(__DIR__).'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});
at {closure}()
in /html/xfab.com/public/index.php line 25
call_user_func(function () {
    $classLoader = require dirname(__DIR__).'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});

(2/2) Doctrine\DBAL\Driver\Mysqli\MysqliException

Unknown column 'de' in 'where clause'

in /html/xfab.com/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/Mysqli/MysqliStatement.php line 87

        $stmt = $conn->prepare($prepareString);

        if ($stmt === false) {
            throw new MysqliException($this->_conn->error, $this->_conn->sqlstate, $this->_conn->errno);
        }

        $this->_stmt = $stmt;

at Doctrine\DBAL\Driver\Mysqli\MysqliStatement->__construct(object(mysqli), 'SELECT `url_segment` FROM `tx_t3blog_post` WHERE (`uid` = de) AND ((`tx_t3blog_post`.`deleted` = 0) AND (`tx_t3blog_post`.`hidden` = 0) AND (`tx_t3blog_post`.`starttime` <= 1711635420) AND ((`tx_t3blog_post`.`endtime` = 0) OR (`tx_t3blog_post`.`endtime` > 1711635420)))')
in /html/xfab.com/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/Mysqli/MysqliConnection.php line 137
     * {@inheritdoc}
     */
    public function prepare($sql)
    {
        return new MysqliStatement($this->conn, $sql);
    }

    /**
     * {@inheritdoc}
at Doctrine\DBAL\Driver\Mysqli\MysqliConnection->prepare('SELECT `url_segment` FROM `tx_t3blog_post` WHERE (`uid` = de) AND ((`tx_t3blog_post`.`deleted` = 0) AND (`tx_t3blog_post`.`hidden` = 0) AND (`tx_t3blog_post`.`starttime` <= 1711635420) AND ((`tx_t3blog_post`.`endtime` = 0) OR (`tx_t3blog_post`.`endtime` > 1711635420)))')
in /html/xfab.com/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/Mysqli/MysqliConnection.php line 147
    public function query()
    {
        $args = func_get_args();
        $sql  = $args[0];
        $stmt = $this->prepare($sql);
        $stmt->execute();

        return $stmt;
    }
at Doctrine\DBAL\Driver\Mysqli\MysqliConnection->query('SELECT `url_segment` FROM `tx_t3blog_post` WHERE (`uid` = de) AND ((`tx_t3blog_post`.`deleted` = 0) AND (`tx_t3blog_post`.`hidden` = 0) AND (`tx_t3blog_post`.`starttime` <= 1711635420) AND ((`tx_t3blog_post`.`endtime` = 0) OR (`tx_t3blog_post`.`endtime` > 1711635420)))')
in /html/xfab.com/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php line 911
                } else {
                    $stmt->execute($params);
                }
            } else {
                $stmt = $connection->query($sql);
            }
        } catch (Throwable $ex) {
            throw DBALException::driverExceptionDuringQuery(
                $this->_driver,
at Doctrine\DBAL\Connection->executeQuery('SELECT `url_segment` FROM `tx_t3blog_post` WHERE (`uid` = de) AND ((`tx_t3blog_post`.`deleted` = 0) AND (`tx_t3blog_post`.`hidden` = 0) AND (`tx_t3blog_post`.`starttime` <= 1711635420) AND ((`tx_t3blog_post`.`endtime` = 0) OR (`tx_t3blog_post`.`endtime` > 1711635420)))', array(), array())
in /html/xfab.com/vendor/doctrine/dbal/lib/Doctrine/DBAL/Query/QueryBuilder.php line 207
     */
    public function execute()
    {
        if ($this->type === self::SELECT) {
            return $this->connection->executeQuery($this->getSQL(), $this->params, $this->paramTypes);
        }

        return $this->connection->executeUpdate($this->getSQL(), $this->params, $this->paramTypes);
    }
at Doctrine\DBAL\Query\QueryBuilder->execute()
in /html/xfab.com/public/typo3/sysext/core/Classes/Database/Query/QueryBuilder.php line 191

        // Set additional query restrictions
        $originalWhereConditions = $this->addAdditionalWhereConditions();

        $result = $this->concreteQueryBuilder->execute();

        // Restore the original query conditions in case the user keeps
        // on modifying the state.
        $this->concreteQueryBuilder->add('where', $originalWhereConditions, false);
at TYPO3\CMS\Core\Database\Query\QueryBuilder->execute()
in /html/xfab.com/public/typo3conf/ext/akt_resourcecenter/Classes/Routing/Aspect/PostMapper.php line 30
        $data = $queryBuilder
            ->select('url_segment')
            ->from($table)
            ->where($queryBuilder->expr()->eq('uid', $value))
            ->execute()
            ->fetchAll();

        return $data[0]['url_segment'] != '' ? (string)$data[0]['url_segment'] : null;
    }
at AKT\AktResourcecenter\Routing\Aspect\PostMapper->generate('de')
in /html/xfab.com/public/typo3/sysext/core/Classes/Routing/Aspect/MappableProcessor.php line 68

        $values = [];
        foreach ($mappers as $variableName => $mapper) {
            $value = $mapper->generate(
                (string)($attributes[$variableName] ?? '')
            );
            if ($value === null) {
                return false;
            }
at TYPO3\CMS\Core\Routing\Aspect\MappableProcessor->generate(object(TYPO3\CMS\Core\Routing\Route), array('t61921f3d6e42452faec62506ec6f9f' => 'de'))
in /html/xfab.com/public/typo3/sysext/core/Classes/Routing/PageRouter.php line 346
                $parameters = $originalParameters;
                if ($route->hasOption('deflatedParameters')) {
                    $parameters = $route->getOption('deflatedParameters');
                }
                $mappableProcessor->generate($route, $parameters);
                // ABSOLUTE_URL is used as default fallback
                $urlAsString = $generator->generate($routeName, $parameters, $referenceType);
                $uri = new Uri($urlAsString);
                /** @var Route $matchedRoute */
at TYPO3\CMS\Core\Routing\PageRouter->generateUri(object(TYPO3\CMS\Core\Routing\Route), array('t61921f3d6e42452faec62506ec6f9f' => 'de'), '', 'absolute')
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Typolink/PageLinkBuilder.php line 436
                $uri = $siteOfTargetPage->getRouter()->generateUri(
                    $targetPageId,
                    $queryParameters,
                    $fragment,
                    $useAbsoluteUrl ? RouterInterface::ABSOLUTE_URL : RouterInterface::ABSOLUTE_PATH
                );
            } catch (InvalidRouteArgumentsException $e) {
                throw new UnableToLinkException('The target page could not be linked. Error: ' . $e->getMessage(), 1535472406);
            }
at TYPO3\CMS\Frontend\Typolink\PageLinkBuilder->generateUrlForPageWithSiteConfiguration(array('uid' => 1, 'pid' => 0, 'tstamp' => 1624518882, 'crdate' => 1592312425, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 256, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:50:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Home', 'slug' => '/', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 1, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => 'X-FAB Foundry', 'layout' => 0, 'target' => '', 'media' => 1, 'lastUpdated' => 1611579480, 'keywords' => 'Foundry, analog/mixed signal, semiconductor, pure-play', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1690980723, 'abstract' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__defaultwithfocus', 'backend_layout_next_level' => 'pagets__defaultwithfocus', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Your specialty foundry for the analog world', 'no_index' => 0, 'no_follow' => 1, 'og_title' => 'X-FAB: Your specialty foundry for the analog world', 'og_description' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.', 'og_image' => 0, 'twitter_title' => 'X-FAB: Your specialty foundry for the analog world', 'twitter_description' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Your specialty foundry for the analog world', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0), object(TYPO3\CMS\Core\Site\Entity\Site), array('tx_aktresourcecenter_resourcecenter' => array('action' => 'show', 'controller' => 'Resourcecenter', 'post' => 'de'), 'cHash' => '4997e84c935cf85e44c2bb3fe3873766', '_language' => object(TYPO3\CMS\Core\Site\Entity\SiteLanguage)), '', array('parameter' => 1, 'additionalParams' => '&tx_aktresourcecenter_resourcecenter%5Baction%5D=show&tx_aktresourcecenter_resourcecenter%5Bcontroller%5D=Resourcecenter&tx_aktresourcecenter_resourcecenter%5Bpost%5D=de&L=0', 'useCacheHash' => true, 'linkAccessRestrictedPages' => false, 'language' => 0))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Typolink/PageLinkBuilder.php line 228
            if ($pageType) {
                $queryParameters['type'] = (int)$pageType;
            }
            // Generate the URL
            $url = $this->generateUrlForPageWithSiteConfiguration($page, $siteOfTargetPage, $queryParameters, $sectionMark, $conf);

            $treatAsExternalLink = true;
            // no scheme => always not external
            if (!$url->getScheme() || !$url->getHost()) {
at TYPO3\CMS\Frontend\Typolink\PageLinkBuilder->build(array('type' => 'page', 'pageuid' => '1', 'typoLinkParameter' => '1'), '|', '', array('parameter' => 1, 'additionalParams' => '&tx_aktresourcecenter_resourcecenter%5Baction%5D=show&tx_aktresourcecenter_resourcecenter%5Bcontroller%5D=Resourcecenter&tx_aktresourcecenter_resourcecenter%5Bpost%5D=de&L=0', 'useCacheHash' => true, 'linkAccessRestrictedPages' => false, 'language' => 0))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 5464
                $this,
                $tsfe
            );
            try {
                list($this->lastTypoLinkUrl, $linkText, $target) = $linkBuilder->build($linkDetails, $linkText, $target, $conf);
                $this->lastTypoLinkTarget = htmlspecialchars($target);
                $this->lastTypoLinkLD['target'] = htmlspecialchars($target);
                $this->lastTypoLinkLD['totalUrl'] = $this->lastTypoLinkUrl;
            } catch (UnableToLinkException $e) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->typoLink('|', array('parameter' => 1, 'additionalParams' => '&tx_aktresourcecenter_resourcecenter%5Baction%5D=show&tx_aktresourcecenter_resourcecenter%5Bcontroller%5D=Resourcecenter&tx_aktresourcecenter_resourcecenter%5Bpost%5D=de&L=0', 'useCacheHash' => true, 'linkAccessRestrictedPages' => false))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/ContentObject/Menu/AbstractMenuContentObject.php line 2254
        if ($page['sectionIndex_uid'] ?? false) {
            $conf['section'] = $page['sectionIndex_uid'];
        }
        $conf['linkAccessRestrictedPages'] = !empty($this->mconf['showAccessRestrictedPages']);
        $this->parent_cObj->typoLink('|', $conf);
        $LD = $this->parent_cObj->lastTypoLinkLD;
        $LD['totalURL'] = $this->parent_cObj->lastTypoLinkUrl;
        return $LD;
    }
at TYPO3\CMS\Frontend\ContentObject\Menu\AbstractMenuContentObject->menuTypoLink(array('uid' => 1, 'pid' => 0, 'tstamp' => 1624518882, 'crdate' => 1592312425, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 256, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:50:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Home', 'slug' => '/', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 1, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => 'X-FAB Foundry', 'layout' => 0, 'target' => '', 'media' => 1, 'lastUpdated' => 1611579480, 'keywords' => 'Foundry, analog/mixed signal, semiconductor, pure-play', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1690980723, 'abstract' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__defaultwithfocus', 'backend_layout_next_level' => 'pagets__defaultwithfocus', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Your specialty foundry for the analog world', 'no_index' => 0, 'no_follow' => 1, 'og_title' => 'X-FAB: Your specialty foundry for the analog world', 'og_description' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.', 'og_image' => 0, 'twitter_title' => 'X-FAB: Your specialty foundry for the analog world', 'twitter_description' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Your specialty foundry for the analog world', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'ITEM_STATE' => 'ACT', '_ADD_GETVARS' => '&tx_aktresourcecenter_resourcecenter%5Baction%5D=show&tx_aktresourcecenter_resourcecenter%5Bcontroller%5D=Resourcecenter&tx_aktresourcecenter_resourcecenter%5Bpost%5D=de&L=0', '_SAFE' => true, 'isSpacer' => false), null, '', '', '', '&tx_aktresourcecenter_resourcecenter%5Baction%5D=show&tx_aktresourcecenter_resourcecenter%5Bcontroller%5D=Resourcecenter&tx_aktresourcecenter_resourcecenter%5Bpost%5D=de&L=0', null)
in /html/xfab.com/public/typo3/sysext/frontend/Classes/ContentObject/Menu/AbstractMenuContentObject.php line 1712
            $addParams .= $this->menuArr[$key]['_ADD_GETVARS'];
            $LD = $this->menuTypoLink($thePage, $mainTarget, '', '', $overrideArray, $addParams, $typeOverride);
        } else {
            $addParams .= $this->I['val']['additionalParams'] . $this->menuArr[$key]['_ADD_GETVARS'];
            $LD = $this->menuTypoLink($this->menuArr[$key], $mainTarget, '', '', $overrideArray, $addParams, $typeOverride);
        }
        // Override default target configuration if option is set
        if ($this->menuArr[$key]['target']) {
            $LD['target'] = $this->menuArr[$key]['target'];
at TYPO3\CMS\Frontend\ContentObject\Menu\AbstractMenuContentObject->link(0, null, null)
in /html/xfab.com/public/typo3/sysext/frontend/Classes/ContentObject/Menu/TextMenuContentObject.php line 91
            $this->I['val']['ATagParams'] = $this->WMcObj->getATagParams($this->I['val']);
            if (isset($this->I['val']['additionalParams.'])) {
                $this->I['val']['additionalParams'] = $this->WMcObj->stdWrap($this->I['val']['additionalParams'], $this->I['val']['additionalParams.']);
            }
            $this->I['linkHREF'] = $this->link($key, $this->I['val']['altTarget'], $this->mconf['forceTypeValue']);
            if (empty($this->I['linkHREF'])) {
                $this->I['val']['doNotLinkIt'] = 1;
            }
            // Title attribute of links:
at TYPO3\CMS\Frontend\ContentObject\Menu\TextMenuContentObject->writeMenu()
in /html/xfab.com/public/typo3/sysext/frontend/Classes/ContentObject/HierarchicalMenuContentObject.php line 50
            $GLOBALS['TSFE']->applicationData['GMENU_LAYERS']['WMparentId'] = [];
            $menu->parent_cObj = $this->cObj;
            $menu->start($GLOBALS['TSFE']->tmpl, $GLOBALS['TSFE']->sys_page, '', $conf, 1);
            $menu->makeMenu();
            $theValue .= $menu->writeMenu();
        } catch (Menu\Exception\NoSuchMenuTypeException $e) {
        }
        $wrap = isset($conf['wrap.']) ? $this->cObj->stdWrap($conf['wrap'], $conf['wrap.']) : $conf['wrap'];
        if ($wrap) {
at TYPO3\CMS\Frontend\ContentObject\HierarchicalMenuContentObject->render(array('special' => 'language', 'addQueryString' => 1, 'addQueryString.' => array('method' => 'GET', 'exclude' => ''), 'wrap' => '[|]', 'special.' => array('value' => 'auto'), 'TMENU', '1.' => array('IProcFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->replacePlaceholderInRenderedMenuItem', 'NO' => '1', 'NO.' => array('doNotLinkIt' => '1', 'wrapItemAndSub' => '{|}, |*| {|}, |*| {|}', 'stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '1.' => array('languageId.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('data' => 'register:languages_HMENU'), 'listNum.' => array('stdWrap.' => array('data' => 'register:count_HMENU_MENUOBJ', 'wrap' => '|-1'), 'splitChar' => ',')))), 'TEXT', '10.' => array('stdWrap.' => array('data' => 'register:languageId'), 'wrap' => '"languageId":|'), 'USER', '11.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'locale', 'stdWrap.' => array('wrap' => ',"locale":|')), 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'title', 'stdWrap.' => array('wrap' => ',"title":|')), 'USER', '21.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'navigationTitle', 'stdWrap.' => array('wrap' => ',"navigationTitle":|')), 'USER', '22.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'twoLetterIsoCode', 'stdWrap.' => array('wrap' => ',"twoLetterIsoCode":|')), 'USER', '23.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'hreflang', 'stdWrap.' => array('wrap' => ',"hreflang":|')), 'USER', '24.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'direction', 'stdWrap.' => array('wrap' => ',"direction":|')), 'TEXT', '90.' => array('value' => '###LINKPLACEHOLDER###', 'wrap' => ',"link":|'), 'TEXT', '91.' => array('value' => '0', 'wrap' => ',"active":|'), 'TEXT', '92.' => array('value' => '0', 'wrap' => ',"current":|'), 'TEXT', '93.' => array('value' => '1', 'wrap' => ',"available":|'), 'RESTORE_REGISTER'))), 'ACT' => '1', 'ACT.' => array('doNotLinkIt' => '1', 'wrapItemAndSub' => '{|}, |*| {|}, |*| {|}', 'stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '1.' => array('languageId.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('data' => 'register:languages_HMENU'), 'listNum.' => array('stdWrap.' => array('data' => 'register:count_HMENU_MENUOBJ', 'wrap' => '|-1'), 'splitChar' => ',')))), 'TEXT', '10.' => array('stdWrap.' => array('data' => 'register:languageId'), 'wrap' => '"languageId":|'), 'USER', '11.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'locale', 'stdWrap.' => array('wrap' => ',"locale":|')), 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'title', 'stdWrap.' => array('wrap' => ',"title":|')), 'USER', '21.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'navigationTitle', 'stdWrap.' => array('wrap' => ',"navigationTitle":|')), 'USER', '22.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'twoLetterIsoCode', 'stdWrap.' => array('wrap' => ',"twoLetterIsoCode":|')), 'USER', '23.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'hreflang', 'stdWrap.' => array('wrap' => ',"hreflang":|')), 'USER', '24.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'direction', 'stdWrap.' => array('wrap' => ',"direction":|')), 'TEXT', '90.' => array('value' => '###LINKPLACEHOLDER###', 'wrap' => ',"link":|'), 'TEXT', '91.' => array('value' => '1', 'wrap' => ',"active":|'), 'TEXT', '92.' => array('value' => '0', 'wrap' => ',"current":|'), 'TEXT', '93.' => array('value' => '1', 'wrap' => ',"available":|'), 'RESTORE_REGISTER'))), 'CUR' => '1', 'CUR.' => array('doNotLinkIt' => '1', 'wrapItemAndSub' => '{|}, |*| {|}, |*| {|}', 'stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '1.' => array('languageId.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('data' => 'register:languages_HMENU'), 'listNum.' => array('stdWrap.' => array('data' => 'register:count_HMENU_MENUOBJ', 'wrap' => '|-1'), 'splitChar' => ',')))), 'TEXT', '10.' => array('stdWrap.' => array('data' => 'register:languageId'), 'wrap' => '"languageId":|'), 'USER', '11.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'locale', 'stdWrap.' => array('wrap' => ',"locale":|')), 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'title', 'stdWrap.' => array('wrap' => ',"title":|')), 'USER', '21.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'navigationTitle', 'stdWrap.' => array('wrap' => ',"navigationTitle":|')), 'USER', '22.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'twoLetterIsoCode', 'stdWrap.' => array('wrap' => ',"twoLetterIsoCode":|')), 'USER', '23.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'hreflang', 'stdWrap.' => array('wrap' => ',"hreflang":|')), 'USER', '24.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'direction', 'stdWrap.' => array('wrap' => ',"direction":|')), 'TEXT', '90.' => array('value' => '###LINKPLACEHOLDER###', 'wrap' => ',"link":|'), 'TEXT', '91.' => array('value' => '1', 'wrap' => ',"active":|'), 'TEXT', '92.' => array('value' => '1', 'wrap' => ',"current":|'), 'TEXT', '93.' => array('value' => '1', 'wrap' => ',"available":|'), 'RESTORE_REGISTER'))), 'USERDEF1' => '1', 'USERDEF1.' => array('doNotLinkIt' => '1', 'wrapItemAndSub' => '{|}, |*| {|}, |*| {|}', 'stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '1.' => array('languageId.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('data' => 'register:languages_HMENU'), 'listNum.' => array('stdWrap.' => array('data' => 'register:count_HMENU_MENUOBJ', 'wrap' => '|-1'), 'splitChar' => ',')))), 'TEXT', '10.' => array('stdWrap.' => array('data' => 'register:languageId'), 'wrap' => '"languageId":|'), 'USER', '11.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'locale', 'stdWrap.' => array('wrap' => ',"locale":|')), 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'title', 'stdWrap.' => array('wrap' => ',"title":|')), 'USER', '21.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'navigationTitle', 'stdWrap.' => array('wrap' => ',"navigationTitle":|')), 'USER', '22.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'twoLetterIsoCode', 'stdWrap.' => array('wrap' => ',"twoLetterIsoCode":|')), 'USER', '23.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'hreflang', 'stdWrap.' => array('wrap' => ',"hreflang":|')), 'USER', '24.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'direction', 'stdWrap.' => array('wrap' => ',"direction":|')), 'TEXT', '90.' => array('value' => '###LINKPLACEHOLDER###', 'wrap' => ',"link":|'), 'TEXT', '91.' => array('value' => '0', 'wrap' => ',"active":|'), 'TEXT', '92.' => array('value' => '0', 'wrap' => ',"current":|'), 'TEXT', '93.' => array('value' => '0', 'wrap' => ',"available":|'), 'RESTORE_REGISTER'))), 'USERDEF2' => '1', 'USERDEF2.' => array('doNotLinkIt' => '1', 'wrapItemAndSub' => '{|}, |*| {|}, |*| {|}', 'stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '1.' => array('languageId.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('data' => 'register:languages_HMENU'), 'listNum.' => array('stdWrap.' => array('data' => 'register:count_HMENU_MENUOBJ', 'wrap' => '|-1'), 'splitChar' => ',')))), 'TEXT', '10.' => array('stdWrap.' => array('data' => 'register:languageId'), 'wrap' => '"languageId":|'), 'USER', '11.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'locale', 'stdWrap.' => array('wrap' => ',"locale":|')), 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'title', 'stdWrap.' => array('wrap' => ',"title":|')), 'USER', '21.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'navigationTitle', 'stdWrap.' => array('wrap' => ',"navigationTitle":|')), 'USER', '22.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'twoLetterIsoCode', 'stdWrap.' => array('wrap' => ',"twoLetterIsoCode":|')), 'USER', '23.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'hreflang', 'stdWrap.' => array('wrap' => ',"hreflang":|')), 'USER', '24.' => array('userFunc' => 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor->getFieldAsJson', 'language.' => array('data' => 'register:languageId'), 'field' => 'direction', 'stdWrap.' => array('wrap' => ',"direction":|')), 'TEXT', '90.' => array('value' => '###LINKPLACEHOLDER###', 'wrap' => ',"link":|'), 'TEXT', '91.' => array('value' => '1', 'wrap' => ',"active":|'), 'TEXT', '92.' => array('value' => '0', 'wrap' => ',"current":|'), 'TEXT', '93.' => array('value' => '0', 'wrap' => ',"available":|'), 'RESTORE_REGISTER'))))))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/DataProcessing/LanguageMenuProcessor.php line 403
        $this->validateAndBuildConfiguration();

        // Process Configuration
        $menuContentObject = $cObj->getContentObject('HMENU');
        $renderedMenu = $menuContentObject->render($this->menuConfig);
        if ($renderedMenu) {
            // Process menu
            $menu = json_decode($renderedMenu, true);
            $processedMenu = [];
at TYPO3\CMS\Frontend\DataProcessing\LanguageMenuProcessor->process(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer), array('templateName' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'templateRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Templates/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Templates/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Partials/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Partials/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Layouts/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Layouts/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special.' => array('value.' => array('field' => 'pages')), 'levels' => '3', 'as' => 'menuMain', 'expandAll' => '1', 'includeSpacer' => '0', 'titleField' => 'nav_title // title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'as' => 'image'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('levels' => '5', 'entryLevel' => '2', 'expandAll' => '0', 'includeSpacer' => '0', 'as' => 'menuSub'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '40.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'includeNotInMenu' => '1', 'excludeUidList' => '1', 'as' => 'menuBreadcrumb'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'directory', 'special.' => array('value' => '5'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'menuTop'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '60.' => array('special' => 'directory', 'special.' => array('value' => '7'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'menuSocket'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '70.' => array('special' => 'directory', 'special.' => array('value' => ''), 'levels' => '1', 'includeSpacer' => '0', 'as' => 'menuSide'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '80.' => array('languages' => 'auto', 'as' => 'menuLanguage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '90.' => array('special' => 'directory', 'special.' => array('value' => '9'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'footerLeftSideMenu')), 'settings.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'framework' => 'UiKit', 'rootPid' => '1', 'targetPid' => '15', 'logoFilePath' => 'fileadmin/user_upload/XFAB_Logo_White.svg', 'logoFileWidth' => '140', 'logoFileAltAttr' => 'XFAB Logo', 'logoShrink' => '1', 'topMenuPosition' => 'right', 'mainMenuEntryLevel' => '0', 'mainMenuPosition' => 'right', 'mainMenuSticky' => '1', 'mainMenuMegaExclude' => '', 'mainMenuMegaBackgroundColor' => 'default', 'mainMenuMegaWidth' => 'Navbar', 'showSubMenuInSidebars' => '0', 'socketMenuPosition' => 'right', 'socketMenuSourceID' => '7', 'copyrightFooterText' => 'X-FAB Silicon Foundries SE', 'topMenuSourceID' => '5', 'sideMenuSourceID' => '', 'headerInnerBuild' => 'default', 'headerWidth' => '0', 'headerInnerAlign' => 'left', 'headerOuterBackgroundColor' => 'primary', 'headerTopmenuBackgroundColor' => 'primary', 'headerMainmenuBackgroundColor' => 'primary', 'footerBackgroundColor' => 'muted', 'footerBackgroundInlineColor' => '', 'footerSitemapMenu' => '1', 'footerSitemapExcludePageID' => '', 'socketBackgroundColor' => 'muted', 'socketBackgroundInlineColor' => '', 'showBreadcrumb' => '0', 'showBreadcrumbHomeLink' => '1', 'breadcrumbBackgroundColor' => 'primary', 'newsDetailPid' => '{$plugin.tx_akt_sitepackage.settings.newsDetailPid}', 'socialMediaMenu' => '1', 'facebookPath' => 'https://www.facebook.com/xfab.corporate', 'twitterPath' => 'https://twitter.com/xfab_foundry?lang=de', 'youtubePath' => 'https://www.youtube.com/channel/UCZVqNluNp8W0Ni9CQ0PTvyQ', 'linkedInPath' => 'https://de.linkedin.com/company/x-fab', 'xingPath' => '', 'instagramPath' => '', 'footerContent.' => array('footerContentSourceUID' => '')), 'variables.' => array('contentMain' => 'CONTENT', 'contentMain.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=0')), 'contentFocus' => 'CONTENT', 'contentFocus.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=1')), 'headers' => '< lib.contentElement', 'headers.' => array('templateName' => 'Header'))), array('languages' => 'auto', 'as' => 'menuLanguage'), array('contentMain' => '<section class="uk-section uk-section-default " style="" ><div class="uk-container uk-container-large"><div id="c3" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"><header><h1 class="ce-headline-center"> What we do... </h1></header></div><div class="uk-child-width-expand " data-uk-grid><div class="uk-width-1-1@s uk-width-1-2@m uk-width-1-2@l uk-width-1-2@xl "><div id="c2" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p>As the world\'s leading foundry group for analog/mixed-signal semiconductor applications&nbsp;X-FAB creates a clear alternative to typical foundry services by combining solid, specialized expertise in advanced analog and mixed-signal process technologies with excellent service, a high level of responsiveness and first-class technical support.</p></div></div></div></div><div class="uk-width-1-1@s uk-width-1-2@m uk-width-1-2@l uk-width-1-2@xl "><div id="c4" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p>X-FAB manufactures wafers for <a href="/automotive">automotive</a>, <a href="/industrial">industrial</a>, <a href="/markets/communication-consumer">consumer</a>, <a href="/medical">medical</a>, and other applications on modular <a href="/technology">CMOS</a> processes in geometries ranging from 1.0μm to 130 nm, special <a href="/technology">SOI</a> and <a href="/technology">MEMS</a> long-lifetime processes.&nbsp;With our&nbsp;six <a href="/manufacturing/our-fabs">manufacturing sites</a> in Germany, France, Malaysia and the USA, we have a combined capacity of about 100,000 eight inch equivalent wafer starts per month.</p></div></div></div></div></div></div></section><section class="uk-section uk-section-primary uk-preserve-color" style="" ><div class="uk-container uk-container-large"><div id="c5" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div id="c6" class="frame frame-default frame-type-list frame-layout-0"><header><h2 class="ce-headline-center"> News </h2></header><div class="news"><!--TYPO3SEARCH_end--><!-- GRID VIEW --><div id="news-container-6" class="uk-news-list uk-news-grid-view uk-grid-large uk-margin-large-top uk-margin-medium-bottom"><div class="uk-card uk-card-default uk-margin-medium" itemscope="itemscope" itemtype="http://schema.org/Article"><div class="uk-child-width-1-2@s uk-child-width-1-3@m uk-grid-collapse uk-card-inner" uk-grid><div class="uk-card-media-left uk-background-default uk-cover-container uk-padding"><div class="header"><p class="uk-article-meta"><span class="news-list-date"><time itemprop="datePublished" datetime="2024-03-27"> Mar 27, 2024 </time></span></p><h3 class="uk-card-title"><a title="photonixFAB Consortium now open for first prototyping" href="/news/details/article/photonixfab-consortium-now-open-for-first-prototyping"><span itemprop="headline">photonixFAB Consortium now open for first prototyping</span></a></h3></div></div><div class="uk-card-image uk-padding-remove uk-margin-remove"><div class="uk-card-body uk-padding-remove"><div class="news-img-wrap"><a title="photonixFAB Consortium now open for first prototyping" href="/news/details/article/photonixfab-consortium-now-open-for-first-prototyping"><img src="/fileadmin/_processed_/6/4/csm_photonixFAB_Logo_horizontal_RGB_5fb92bcbfa.png" width="610" height="400" alt="" /></a></div></div></div><div class="uk-card-media-right uk-background-secondary uk-cover-container uk-padding uk-margin-remove"><div class="teaser-text"><div itemprop="description"><p>New customer engagement portal enables early technology access</p></div><a class="more uk-button uk-button-default uk-button--more" title="photonixFAB Consortium now open for first prototyping" href="/news/details/article/photonixfab-consortium-now-open-for-first-prototyping"> Read more </a></div></div></div></div><div class="uk-card uk-card-default uk-margin-medium" itemscope="itemscope" itemtype="http://schema.org/Article"><div class="uk-child-width-1-2@s uk-child-width-1-3@m uk-grid-collapse uk-card-inner" uk-grid><div class="uk-card-media-left uk-background-default uk-cover-container uk-padding"><div class="header"><p class="uk-article-meta"><span class="news-list-date"><time itemprop="datePublished" datetime="2023-11-16"> Nov 16, 2023 </time></span></p><h3 class="uk-card-title"><a title="X-FAB Introduces New Generation of Enhanced Performance SPAD Devices focused on Near-Infrared Applications" href="/news/details/article/x-fab-introduces-new-generation-of-enhanced-performance-spad-devices-focused-on-near-infrared-applications"><span itemprop="headline">X-FAB Introduces New Generation of Enhanced Performance SPAD Devices focused on Near-Infrared Applications</span></a></h3></div></div><div class="uk-card-image uk-padding-remove uk-margin-remove"><div class="uk-card-body uk-padding-remove"><div class="news-img-wrap"><a title="X-FAB Introduces New Generation of Enhanced Performance SPAD Devices focused on Near-Infrared Applications" href="/news/details/article/x-fab-introduces-new-generation-of-enhanced-performance-spad-devices-focused-on-near-infrared-applications"><img title="SPAD Near Infrared Applications" alt="SPAD Near Infrared Applications" src="/fileadmin/_processed_/8/9/csm_16nov_SPAD__IR_2919398133.jpg" width="610" height="400" /></a></div></div></div><div class="uk-card-media-right uk-background-secondary uk-cover-container uk-padding uk-margin-remove"><div class="teaser-text"><div itemprop="description"><p>X-FAB Silicon Foundries SE, the leading analog/mixed-signal and specialty foundry, has introduced a specific near-infrared version to its single-photon avalanche diode (SPAD)…</p></div><a class="more uk-button uk-button-default uk-button--more" title="X-FAB Introduces New Generation of Enhanced Performance SPAD Devices focused on Near-Infrared Applications" href="/news/details/article/x-fab-introduces-new-generation-of-enhanced-performance-spad-devices-focused-on-near-infrared-applications"> Read more </a></div></div></div></div><div class="uk-card uk-card-default uk-margin-medium" itemscope="itemscope" itemtype="http://schema.org/Article"><div class="uk-child-width-1-2@s uk-child-width-1-3@m uk-grid-collapse uk-card-inner" uk-grid><div class="uk-card-media-left uk-background-default uk-cover-container uk-padding"><div class="header"><p class="uk-article-meta"><span class="news-list-date"><time itemprop="datePublished" datetime="2023-11-02"> Nov 02, 2023 </time></span></p><h3 class="uk-card-title"><a title="X-FAB Adds CMOS Integration Option to its Galvanic Isolation Solution" href="/news/details/article/x-fab-adds-cmos-integration-option-to-its-galvanic-isolation-solution"><span itemprop="headline">X-FAB Adds CMOS Integration Option to its Galvanic Isolation Solution</span></a></h3></div></div><div class="uk-card-image uk-padding-remove uk-margin-remove"><div class="uk-card-body uk-padding-remove"><div class="news-img-wrap"><a title="X-FAB Adds CMOS Integration Option to its Galvanic Isolation Solution" href="/news/details/article/x-fab-adds-cmos-integration-option-to-its-galvanic-isolation-solution"><img src="/fileadmin/_processed_/c/8/csm_Integrated_Coupler_02Nov2023_X-FAB_wafer_8-inch_6349eada54.jpg" width="610" height="400" alt="" /></a></div></div></div><div class="uk-card-media-right uk-background-secondary uk-cover-container uk-padding uk-margin-remove"><div class="teaser-text"><div itemprop="description"><p>X-FAB Silicon Foundries SE, the leading analog/mixed-signal and specialty foundry, is making further significant progress with its galvanic isolation technology. </p></div><a class="more uk-button uk-button-default uk-button--more" title="X-FAB Adds CMOS Integration Option to its Galvanic Isolation Solution" href="/news/details/article/x-fab-adds-cmos-integration-option-to-its-galvanic-isolation-solution"> Read more </a></div></div></div></div></div><!-- GRID VIEW --><!--TYPO3SEARCH_begin--></div></div><div id="c1758" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center"><a href="/news" title="MORE NEWS" class="load-more">MORE NEWS</a></p></div></div></div></div></div></div></section><section class="uk-section uk-section-transparent" style="" ><div class="uk-container uk-container-large"><div id="c8" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div id="c7" class="frame frame-default frame-type-list frame-layout-0"><header><h2 class="ce-headline-center"> Events </h2></header><div class="news"><!--TYPO3SEARCH_end--><!-- EVENT LIST VIEW --><div class="uk-news-list uk-event-view uk-child-width-1-2@m uk-margin-large-top uk-margin-medium-bottom" uk-grid><!-- ===================== Partials/Event/Item.html--><div class="article uk-article uk-article-event-item uk-grid-collapse articletype-0 uk-margin-medium-bottom" itemscope="itemscope" itemtype="http://schema.org/Article" uk-grid><div class="uk-width-1-3 uk-padding uk-padding-remove-top uk-padding-remove-bottom uk-padding-remove-left"><div class="news-img-wrap"><a title="User2User" href="/news/details/article/user2user"><img src="/fileadmin/X-FAB/Events/U2U_2023_logo_thumb.jpg" width="541" height="541" alt="" /></a><!-- date --><span class="news-list-date"><time itemprop="datePublished" datetime="2024-05-07"> May 07 </time></span></div></div><div class="uk-width-2-3"><!-- header --><div class="header"><h3 class="uk-margin-remove-bottom"><a title="User2User" href="/news/details/article/user2user"><span itemprop="headline">User2User</span></a></h3></div><div class="date"><span class="location"><p>Munich, Germany | 7 May 2024</p></span></div><!-- teaser --><div class="teaser-text"><div itemprop="description"><p>User2User is a great opportunity to learn, grow and connect with fellow technical experts who design leading-edge products using Siemens EDA tools. &nbsp;Dedicated to end-users of…</p><a class="more" title="User2User" href="/news/details/article/user2user"> Read more </a></div></div></div></div><!-- ===================== Partials/Event/Item.html--><div class="article uk-article uk-article-event-item uk-grid-collapse articletype-0 uk-margin-medium-bottom" itemscope="itemscope" itemtype="http://schema.org/Article" uk-grid><div class="uk-width-1-3 uk-padding uk-padding-remove-top uk-padding-remove-bottom uk-padding-remove-left"><div class="news-img-wrap"><a title="ISPSD" href="/news/details/article/ispsd"><img src="/fileadmin/_processed_/8/e/csm_Logo_ISPSD_2024_7d2cf0ee13.png" width="153" height="153" alt="" /></a><!-- date --><span class="news-list-date"><time itemprop="datePublished" datetime="2024-06-02"> Jun 02 </time></span></div></div><div class="uk-width-2-3"><!-- header --><div class="header"><h3 class="uk-margin-remove-bottom"><a title="ISPSD" href="/news/details/article/ispsd"><span itemprop="headline">ISPSD</span></a></h3></div><div class="date"><span class="location"><p>Bremen, Germany | 2-6 June 2024</p></span></div><!-- teaser --><div class="teaser-text"><div itemprop="description"><p>The 36th International Symposium on Power Semiconductor Devices and ICs is the premier forum for technical discussion in all areas of power semiconductor devices, power integrated…</p><a class="more" title="ISPSD" href="/news/details/article/ispsd"> Read more </a></div></div></div></div><!-- ===================== Partials/Event/Item.html--><div class="article uk-article uk-article-event-item uk-grid-collapse articletype-0 uk-margin-medium-bottom" itemscope="itemscope" itemtype="http://schema.org/Article" uk-grid><div class="uk-width-1-3 uk-padding uk-padding-remove-top uk-padding-remove-bottom uk-padding-remove-left"><div class="news-img-wrap"><a title="ISSW 2024" href="/news/details/article/issw-2024"><img src="/fileadmin/_processed_/3/4/csm_ISSW_2024_e40479e74e.jpg" width="217" height="217" alt="" /></a><!-- date --><span class="news-list-date"><time itemprop="datePublished" datetime="2024-06-04"> Jun 04 </time></span></div></div><div class="uk-width-2-3"><!-- header --><div class="header"><h3 class="uk-margin-remove-bottom"><a title="ISSW 2024" href="/news/details/article/issw-2024"><span itemprop="headline">ISSW 2024</span></a></h3></div><div class="date"><span class="location"><p>Trento, Italy | 4-6 June 2024</p></span></div><!-- teaser --><div class="teaser-text"><div itemprop="description"><p>At X-FAB, &nbsp;we offer primitive devices for our APD in linear mode which are scalable from 30 µm to 200 µm, and for our SPAD in Geiger mode with sizes from 10 µm to 30 µm.</p><p>We are…</p><a class="more" title="ISSW 2024" href="/news/details/article/issw-2024"> Read more </a></div></div></div></div><!-- ===================== Partials/Event/Item.html--><div class="article uk-article uk-article-event-item uk-grid-collapse articletype-0 uk-margin-medium-bottom" itemscope="itemscope" itemtype="http://schema.org/Article" uk-grid><div class="uk-width-1-3 uk-padding uk-padding-remove-top uk-padding-remove-bottom uk-padding-remove-left"><div class="news-img-wrap"><a title="Silicon Saxony Day" href="/news/details/article/silicon-saxony-day"><img src="/fileadmin/X-FAB/Events/siliconsaxonyday-thumb-2024.jpg" width="214" height="214" alt="" /></a><!-- date --><span class="news-list-date"><time itemprop="datePublished" datetime="2024-06-11"> Jun 11 </time></span></div></div><div class="uk-width-2-3"><!-- header --><div class="header"><h3 class="uk-margin-remove-bottom"><a title="Silicon Saxony Day" href="/news/details/article/silicon-saxony-day"><span itemprop="headline">Silicon Saxony Day</span></a></h3></div><div class="date"><span class="location"><p>Dresden, Germany | 11 June 2024</p></span></div><!-- teaser --><div class="teaser-text"><div itemprop="description"><p>The 18<sup>th</sup> Silicon Saxony Day is one of the most international high-tech and networking event in Europe. It offers cross-industry insights into technologies and solutions in the…</p><a class="more" title="Silicon Saxony Day" href="/news/details/article/silicon-saxony-day"> Read more </a></div></div></div></div><!-- ===================== Partials/Event/Item.html--><div class="article uk-article uk-article-event-item uk-grid-collapse articletype-0 uk-margin-medium-bottom" itemscope="itemscope" itemtype="http://schema.org/Article" uk-grid><div class="uk-width-1-3 uk-padding uk-padding-remove-top uk-padding-remove-bottom uk-padding-remove-left"><div class="news-img-wrap"><a title="SENSORS CONVERGE 2024" href="/news/details/article/sensors-converge-2024"><img src="/fileadmin/_processed_/a/5/csm_Sensors_Converge_2024_logo_659158e030.jpg" width="235" height="235" alt="" /></a><!-- date --><span class="news-list-date"><time itemprop="datePublished" datetime="2024-06-24"> Jun 24 </time></span></div></div><div class="uk-width-2-3"><!-- header --><div class="header"><h3 class="uk-margin-remove-bottom"><a title="SENSORS CONVERGE 2024" href="/news/details/article/sensors-converge-2024"><span itemprop="headline">SENSORS CONVERGE 2024</span></a></h3></div><div class="date"><span class="location"><p>Santa Clara, California, USA | 24-26 June 2024</p></span></div><!-- teaser --><div class="teaser-text"><div itemprop="description"><p>Join the sensors and electronics community during this event covering the biggest design engineering trends. From enabling innovation, to process design &amp; control development, to…</p><a class="more" title="SENSORS CONVERGE 2024" href="/news/details/article/sensors-converge-2024"> Read more </a></div></div></div></div><!-- ===================== Partials/Event/Item.html--><div class="article uk-article uk-article-event-item uk-grid-collapse articletype-0 uk-margin-medium-bottom" itemscope="itemscope" itemtype="http://schema.org/Article" uk-grid><div class="uk-width-1-3 uk-padding uk-padding-remove-top uk-padding-remove-bottom uk-padding-remove-left"><div class="news-img-wrap"><a title="MICROTAS" href="/news/details/article/microtas-2024"><img src="/fileadmin/_processed_/0/5/csm_uTAS24_logo_138a9d0b7c.jpg" width="394" height="394" alt="" /></a><!-- date --><span class="news-list-date"><time itemprop="datePublished" datetime="2024-10-12"> Oct 12 </time></span></div></div><div class="uk-width-2-3"><!-- header --><div class="header"><h3 class="uk-margin-remove-bottom"><a title="MICROTAS" href="/news/details/article/microtas-2024"><span itemprop="headline">MICROTAS</span></a></h3></div><div class="date"><span class="location"><p>Montreal, Canada | 13-17 October 2024</p></span></div><!-- teaser --><div class="teaser-text"><div itemprop="description"><p>The 28th International Conference on Miniaturized Systems for Chemistry and Life Sciences (µTAS 2024) is the premier forum for reporting research results in microfluidics,…</p><a class="more" title="MICROTAS" href="/news/details/article/microtas-2024"> Read more </a></div></div></div></div></div><!-- EVENT LIST VIEW --><!--TYPO3SEARCH_begin--></div></div></div></div></div></section><section class="uk-section uk-section-transparent uk-padding-remove-vertical" style="" ><div class="uk-container uk-container-large"><div id="c30251" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><section class="uk-section uk-section-transparent" style="" ><div class="uk-container uk-container-large"><div id="c1890" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"><header><h2 class=""> Market solutions </h2></header></div><div class=" "><div class="uk-width-1-1@s uk-width-1-1@m "><div id="c2091" class="frame frame-indent frame-type-textmedia frame-layout-0 frame-space-after-medium"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-justify">With our broad range of specialty technologies including the unique combination of CMOS and MEMS process capabilities, we are&nbsp;well equipped to manufacture complex devices that meet the exacting quality requirements of the automotive, industrial, consumer&nbsp;and medical industries.&nbsp;</p></div></div></div><div class="uk-slider-wrap uk-light" ><div class="uk-position-relative" data-uk-slider=" autoplay-interval: 7000; finite: true;"><div class="uk-slider-container"><ul class="uk-slider-items uk-child-width-1-1@s uk-child-width-1-2@m uk-child-width-1-2@l uk-child-width-1-2@xl" data-uk-grid="" data-uk-height-match="target: .frame"><li class="uk-slide-item item"><div id="c577" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-gallery" data-ce-columns="1" data-ce-images="1" ><div class="ce-outer"><div class="ce-inner"><div class=""><figure class="image"><a href="/automotive"><img class="image-embed-item" src="/fileadmin/_processed_/4/8/csm_automotive_1280x616px_dcffacd0e0.jpg" width="800" height="532" alt="" /></a></figure></div></div></div></div><div class="ce-bodytext"><h4>Automotive</h4><p>Reliability and trust are two key requisites for serving the automotive industry. Our focus on security issues, complex demands and the extreme environmental conditions faced by the automotive industry helps us determine which advanced solutions best benefit automotive designers and their customers.</p><p class="uk-text-center"><a href="/automotive" class="more-btn">read more</a></p></div></div></div></li><li class="uk-slide-item item"><div id="c587" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-gallery" data-ce-columns="1" data-ce-images="1" ><div class="ce-outer"><div class="ce-inner"><div class=""><figure class="image"><a href="/medical"><img class="image-embed-item" src="/fileadmin/_processed_/9/8/csm_medical_market-image-2020_low_70cbf780a8.jpg" width="800" height="533" alt="" /></a></figure></div></div></div></div><div class="ce-bodytext"><h4>Medical</h4><p>As a supplier for the medical market - one in which people trust technology for their health and recovery - we are committed to deliver solutions that are accurate and reliable for our customers\' medical devices.</p><p>&nbsp;</p><p class="uk-text-center"><a href="/medical" class="more-btn">read more</a></p></div></div></div></li></ul></div><div class="uk-slidenav-container uk-hidden@l uk-flex uk-flex-center uk-margin-top"><a class="" href="#" data-uk-slidenav-previous data-uk-slider-item="previous"></a><a class="" href="#" data-uk-slidenav-next data-uk-slider-item="next"></a></div><div class="uk-slidenav-container uk-visible@l"><a class="uk-position-center-left-out uk-position-medium" href="#" data-uk-slidenav-previous data-uk-slider-item="previous"></a><a class="uk-position-center-right-out uk-position-medium" href="#" data-uk-slidenav-next data-uk-slider-item="next"></a></div><ul class="uk-slider-nav uk-dotnav uk-flex-center uk-margin"></ul></div></div><section class="uk-section uk-section-transparent" style="" ><div class="uk-container uk-container-large"><div id="c584" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div class="uk-slider-wrap uk-light" ><div class="uk-position-relative" data-uk-slider=" autoplay-interval: 7000; finite: true;"><div class="uk-slider-container"><ul class="uk-slider-items uk-child-width-1-1@s uk-child-width-1-2@m uk-child-width-1-2@l uk-child-width-1-2@xl" data-uk-grid="" data-uk-height-match="target: .frame"><li class="uk-slide-item item"><div id="c585" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-gallery" data-ce-columns="1" data-ce-images="1" ><div class="ce-outer"><div class="ce-inner"><div class=""><figure class="image"><a href="/industrial"><img class="image-embed-item" src="/fileadmin/_processed_/e/a/csm_industrial_1280x557px_de3f458e33.jpg" width="800" height="533" alt="" /></a></figure></div></div></div></div><div class="ce-bodytext"><h4>Industrial</h4><p>The products designed with our processes for the industrial market find their way into a broad range of industrial applications that require both robust devices and highly flexible manufacturing capabilities.&nbsp;</p><p>&nbsp;</p><p class="uk-text-center"><a href="/industrial" class="more-btn">read more</a></p></div></div></div></li><li class="uk-slide-item item"><div id="c579" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-gallery" data-ce-columns="1" data-ce-images="1" ><div class="ce-outer"><div class="ce-inner"><div class=""><figure class="image"><a href="/markets/communication-consumer"><img class="image-embed-item" src="/fileadmin/_processed_/b/3/csm_communication-consumer_1280x853px_ac5268b52c.jpg" width="800" height="531" alt="" /></a></figure></div></div></div></div><div class="ce-bodytext"><h4>Consumer &amp; Mobile Applications</h4><p>We entered the mobile communications market with a clear vision: connecting mobile devices with the real world. With this vision in mind, we became a leading foundry provider for discrete and integrated mobile sensor solutions, offering expert support to enable first-time-right designs.<br> &nbsp;</p><p class="uk-text-center"><a href="/markets/communication-consumer" class="more-btn">read more</a></p></div></div></div></li></ul></div><div class="uk-slidenav-container uk-hidden@l uk-flex uk-flex-center uk-margin-top"><a class="" href="#" data-uk-slidenav-previous data-uk-slider-item="previous"></a><a class="" href="#" data-uk-slidenav-next data-uk-slider-item="next"></a></div><div class="uk-slidenav-container uk-visible@l"><a class="uk-position-center-left-out uk-position-medium" href="#" data-uk-slidenav-previous data-uk-slider-item="previous"></a><a class="uk-position-center-right-out uk-position-medium" href="#" data-uk-slidenav-next data-uk-slider-item="next"></a></div><ul class="uk-slider-nav uk-dotnav uk-flex-center uk-margin"></ul></div></div></div></div></div></section></div></div></div></section></div></div></div></section><div id="c31743" class="frame frame-default frame-type-shortcut frame-layout-0"><section class="uk-section uk-section-primary uk-preserve-color uk-light" style="min-height: 450px; background-image: url(/fileadmin/a_background/Website_Sustainability_background_2000x1333px.png); background-repeat: no-repeat; background-attachment: fixed;" data-uk-parallax = "bgy: -250"><div class="uk-container"><div id="c31738" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><section class="uk-section uk-section-transparent uk-light uk-padding-remove-vertical" style="" ><div class="uk-container uk-container-expand"><div id="c31798" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div id="c31737" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><h2 class="uk-text-center">Our environment. Our responsibility.</h2></div></div></div></div></div></div></section><section class="uk-section uk-section-transparent uk-light uk-padding-remove-vertical uk-margin-medium-bottom uk-flex uk-flex-middle" style="" ><div class="uk-container uk-container-small"><div id="c31802" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div id="c31801" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center">Sustainability embodies many different facets, from environmental care to health and safety, human rights, business ethics and social responsibility.&nbsp;Visit our sustainability webpage to find more information.</p></div></div></div></div></div></div></section><section class="uk-section uk-section-transparent uk-light uk-padding-remove-vertical" style="" ><div class="uk-container"><div id="c31800" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div id="c31799" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center"><a href="/sustainability" title="Edit" class="load-more">Sustainability at X-FAB</a></p></div></div></div></div></div></div></section></div></div></div></section></div><section class="uk-section uk-section-transparent" style="" ><div class="uk-container uk-container-large"><div id="c2089" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"><header><h2 class=""> Technology portfolio </h2></header></div><div class=" "><div class="uk-width-1-1@m "><div id="c2090" class="frame frame-indent frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center">As a pure-play foundry specialized in analog/mixed-signal applications, we offer&nbsp;a wide range of modular CMOS and SOI processes in geometries ranging from 1.0 µm to 130 nm as well as special MEMS and SiC process capabilities. See our whole portfolio here: <a href="/technology">technology overview</a></p></div></div></div><div id="c30254" class="frame frame-default frame-type-shortcut frame-layout-0"><section class="uk-section uk-section-default " style="" ><div class="uk-container uk-container-large"><div id="c2220" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class="uk-child-width-expand uk-flex-center " data-uk-grid><div class="uk-width-1-2@s uk-width-1-4@m uk-width-1-4@l uk-width-1-4@xl "><div id="c2224" class="frame frame-default frame-type-textmedia frame-layout-0 frame-space-after-small"><header><h3 class="ce-headline-center"><a href="/technology#c2997">CMOS &amp; SOI</a></h3></header><div class="ce-textpic ce-center ce-above"></div></div><div id="c2212" class="frame frame-default frame-type-textmedia frame-layout-330 frame-space-after-small"><div class="ce-textpic ce-center ce-above"><div class="ce-gallery round-img" data-ce-columns="1" data-ce-images="1" ><div class="ce-outer"><div class="ce-inner"><div class=""><figure class="image"><a href="/technology#c2997"><img class="image-embed-item" src="/fileadmin/_processed_/9/8/csm_RF-CMOS_wafer_e0146cc2f5.jpg" width="300" height="300" alt="" /></a></figure></div></div></div></div></div></div><div id="c2213" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center">13 process families with over 450 options</p></div></div></div></div><div class="uk-width-1-2@s uk-width-1-4@m uk-width-1-4@l uk-width-1-4@xl "><div id="c2223" class="frame frame-default frame-type-textmedia frame-layout-0 frame-space-after-small"><header><h3 class="ce-headline-center"><a href="/technology#c2945">MEMS</a></h3></header><div class="ce-textpic ce-center ce-above"></div></div><div id="c30207" class="frame frame-default frame-type-textmedia frame-layout-330 frame-space-after-small"><div class="ce-textpic ce-center ce-above"><div class="ce-gallery round-img" data-ce-columns="1" data-ce-images="1" ><div class="ce-outer"><div class="ce-inner"><div class=""><figure class="image"><a href="/technology#c2945"><img class="image-embed-item" src="/fileadmin/_processed_/c/5/csm_MEMS_tech_overview_small_463eb795fd.jpg" width="300" height="300" alt="" /></a></figure></div></div></div></div></div></div><div id="c2215" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center">MEMS with or without integrated CMOS</p></div></div></div></div><div class="uk-width-1-2@s uk-width-1-4@m uk-width-1-4@l uk-width-1-4@xl "><div id="c2222" class="frame frame-default frame-type-textmedia frame-layout-0 frame-space-after-small"><header><h3 class="ce-headline-center"><a href="/technology/sic-gan">SiC &amp; GaN</a></h3></header><div class="ce-textpic ce-center ce-above"></div></div><div id="c2216" class="frame frame-default frame-type-textmedia frame-layout-330 frame-space-after-small"><div class="ce-textpic ce-center ce-above"><div class="ce-gallery round-img" data-ce-columns="1" data-ce-images="1" ><div class="ce-outer"><div class="ce-inner"><div class=""><figure class="image"><a href="/technology/sic-gan"><img class="image-embed-item" src="/fileadmin/_processed_/f/5/csm_SiC_wafer-epitaxy_800x533px_f96b806de8.jpg" width="300" height="300" alt="" /></a></figure></div></div></div></div></div></div><div id="c2217" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center">Processing technologies for WBG 6” SiC &amp; 8” GaN-on-Si</p></div></div></div></div><div class="uk-width-1-2@s uk-width-1-4@m uk-width-1-4@l uk-width-1-4@xl "><div id="c2221" class="frame frame-default frame-type-textmedia frame-layout-0"><header><h3 class="ce-headline-center"><a href="/technology/wlp-3d-int">Heterogeneous Integration</a></h3></header><div class="ce-textpic ce-center ce-above"></div></div><div id="c2218" class="frame frame-default frame-type-textmedia frame-layout-330 frame-space-after-small"><div class="ce-textpic ce-center ce-above"><div class="ce-gallery round-img" data-ce-columns="1" data-ce-images="1" ><div class="ce-outer"><div class="ce-inner"><div class=""><figure class="image"><a href="/technology/wlp-3d-int"><img class="image-embed-item" src="/fileadmin/_processed_/e/e/csm_Heterogeneous_integration_TSV_e973ab803b.jpg" width="300" height="300" alt="" /></a></figure></div></div></div></div></div></div><div id="c2219" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center">3D Integration and Wafer Level Package Solutions</p></div></div></div></div></div></div></section></div><div id="c2094" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center"><a href="/technology" class="load-more">READ MORE</a></p></div></div></div></div></div></div></section><section id="socialwall-header" class="uk-section uk-section-transparent uk-section-xsmall frame-space-before-extra-large uk-flex uk-flex-bottom" style="background-image: url(/fileadmin/a_background/ccc_bgi_2000x1333px.jpg); background-position: center center; background-size: cover; background-repeat: no-repeat; background-attachment: scroll;" ><div class="uk-container uk-container-expand"><div id="c31601" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0 frame-space-before-extra-large"></div><div class=" "><div class="uk-width-1-1@m "><div id="c31599" class="frame frame-default frame-type-header frame-layout-0"><header><h2 class="ce-headline-center"> Social media channels </h2></header></div></div></div></div></section><section id="socialwall" class="uk-section uk-section-transparent" style="" ><div class="uk-container uk-container-small"><div id="c31597" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div id="c31598" class="frame frame-default frame-type-html frame-layout-0"><div id="flockler-embed-17fb1d4954907fde08604d922b74c373"></div><script src="https://plugins.flockler.com/embed/17c9d1ae3af03836bd8db6a8d19d986b/17fb1d4954907fde08604d922b74c373" async></script></div></div></div></div></section><div id="c212" class="frame frame-default frame-type-shortcut frame-layout-0"><section class="uk-section uk-section-primary uk-preserve-color uk-light" style="" ><div class="uk-container uk-container-small"><div id="c32" class="frame frame-indent frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div id="c33" class="frame frame-default frame-type-textmedia frame-layout-0"><header><h2 class=""> Contact </h2></header><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center">For more information, please contact us:</p></div></div></div><div id="c1317" class="frame frame-default frame-type-shortcut frame-layout-0"><div id="c1314" class="frame frame-default frame-type-form_formframework frame-layout-0"><form enctype="multipart/form-data" method="post" id="contactform-1314" action="/?tx_form_formframework%5Baction%5D=perform&amp;tx_form_formframework%5Bcontroller%5D=FormFrontend&amp;cHash=97cc4823c07a04476fa87c4f13320d12#contactform-1314"><div><input type="hidden" name="tx_form_formframework[contactform-1314][__state]" value="TzozOToiVFlQTzNcQ01TXEZvcm1cRG9tYWluXFJ1bnRpbWVcRm9ybVN0YXRlIjoyOntzOjI1OiIAKgBsYXN0RGlzcGxheWVkUGFnZUluZGV4IjtpOjA7czoxMzoiACoAZm9ybVZhbHVlcyI7YTowOnt9fQ==506332f8c83bea95e9a9e942a9190c154742194e" /><input type="hidden" name="tx_form_formframework[__trustedProperties]" value="a:1:{s:16:&quot;contactform-1314&quot;;a:8:{s:6:&quot;text-1&quot;;i:1;s:19:&quot;JQnhg8UHVEfIDcXxC3z&quot;;i:1;s:7:&quot;email-1&quot;;i:1;s:14:&quot;singleselect-1&quot;;i:1;s:10:&quot;textarea-1&quot;;i:1;s:10:&quot;checkbox-1&quot;;i:1;s:11:&quot;recaptcha-1&quot;;i:1;s:13:&quot;__currentPage&quot;;i:1;}}9778493a6acdbb6615e75e6969a6f1943f3054dc" /></div><div class="form-group uk-margin-bottom"><label class="control-label uk-form-label" for="contactform-1314-text-1">Name<span class="required">*</span></label><div class="uk-form-controls uk-margin-small-bottom"><input required="required" class="uk-input form-control uk-input" id="contactform-1314-text-1" type="text" name="tx_form_formframework[contactform-1314][text-1]" value="" /></div></div><input autocomplete="JQnhg8UHVEfIDcXxC3z" aria-hidden="true" id="contactform-1314-JQnhg8UHVEfIDcXxC3z" style="position:absolute; margin:0 0 0 -999em;" tabindex="-1" type="text" name="tx_form_formframework[contactform-1314][JQnhg8UHVEfIDcXxC3z]" /><div class="form-group uk-margin-bottom"><label class="control-label uk-form-label" for="contactform-1314-email-1">E-Mail<span class="required">*</span></label><div class="uk-form-controls uk-margin-small-bottom"><input required="required" class="uk-input form-control uk-input" id="contactform-1314-email-1" type="email" name="tx_form_formframework[contactform-1314][email-1]" value="" /></div></div><div class="form-group uk-margin-bottom"><label class="control-label uk-form-label" for="contactform-1314-singleselect-1">Region</label><div class="uk-form-controls uk-margin-small-bottom"><select class="uk-select form-control uk-select" id="contactform-1314-singleselect-1" name="tx_form_formframework[contactform-1314][singleselect-1]"><option value="">Please Select</option><option value="Europe">Europe</option><option value="North America">North America</option><option value="Asia Pacific">Asia Pacific</option><option value="Other">Other</option></select></div></div><div class="form-group uk-margin-bottom"><label class="control-label uk-form-label" for="contactform-1314-textarea-1">Message<span class="required">*</span></label><div class="uk-form-controls uk-margin-small-bottom"><textarea required="required" class="uk-textarea form-control uk-textarea" id="contactform-1314-textarea-1" name="tx_form_formframework[contactform-1314][textarea-1]"></textarea></div></div><div class="clearfix"><div id="c28" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p>By submitting the form you agree to our <a href="/privacy-statement">privacy policy</a>.</p></div></div></div></div><div class="form-group uk-margin-bottom"><div class=""><div class="form-check"><label class="uk-checkbox form-check-label " for="contactform-1314-checkbox-1"><input type="hidden" name="tx_form_formframework[contactform-1314][checkbox-1]" value="" /><input required="required" class="uk-checkbox uk-checkbox" id="contactform-1314-checkbox-1" type="checkbox" name="tx_form_formframework[contactform-1314][checkbox-1]" value="1" /><span><span class="required">*</span></span></label></div><span class="help-block">I agree to my data being stored and processed by X-FAB.</span></div></div><div class="form-group uk-margin-bottom"><label class="control-label uk-form-label" for="contactform-1314-recaptcha-1">reCAPTCHA</label><div class="recaptcha"><input id="contactform-1314-recaptcha-1" type="hidden" name="tx_form_formframework[contactform-1314][recaptcha-1]" value="1" /><div class="g-recaptcha" data-sitekey="6LfSfTscAAAAACM6Oa5gJcMbpYxzc9Vobk3IQsJI"></div></div></div><div class="actions"><nav class="form-navigation"><div class="btn-toolbar" role="toolbar"><div class="btn-group" role="group"><input id="currentPage" type="hidden" name="tx_form_formframework[contactform-1314][__currentPage]" value="" /><span class="next submit"><button class="btn btn-primary" onclick="document.getElementById(\'currentPage\').value=\'1\'" type="submit" name="" value="1">send message</button></span></div></div></nav></div></form></div></div></div></div></div></section></div>', 'contentFocus' => '<section class="uk-section uk-section-default uk-section-large uk-flex uk-flex-bottom" style="background-image: url(/fileadmin/X-FAB_Wafer_Foundry_Produktion_IMG62473_1920x1273px.jpg); background-position: center center; background-size: cover; background-repeat: no-repeat; background-attachment: scroll;" ><div class=""><div id="c1109" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div id="c1" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><h2>Your specialty foundry</h2><h3><span class="uk-text-uppercase">For the analog world</span></h3></div></div></div></div></div></div></section>', 'headers' => '<div id="c1" class="frame frame- frame-type- frame-layout-0"></div>', 'data' => array('uid' => 1, 'pid' => 0, 'tstamp' => 1624518882, 'crdate' => 1592312425, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 256, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:50:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Home', 'slug' => '/', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 1, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => 'X-FAB Foundry', 'layout' => 0, 'target' => '', 'media' => 1, 'lastUpdated' => 1611579480, 'keywords' => 'Foundry, analog/mixed signal, semiconductor, pure-play', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1690980723, 'abstract' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__defaultwithfocus', 'backend_layout_next_level' => 'pagets__defaultwithfocus', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Your specialty foundry for the analog world', 'no_index' => 0, 'no_follow' => 1, 'og_title' => 'X-FAB: Your specialty foundry for the analog world', 'og_description' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.', 'og_image' => 0, 'twitter_title' => 'X-FAB: Your specialty foundry for the analog world', 'twitter_description' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Your specialty foundry for the analog world', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'currentValue_kidjls9dksoje' => 'defaultwithfocus'), 'current' => 'defaultwithfocus', 'files' => array(object(TYPO3\CMS\Core\Resource\FileReference)), 'menuMain' => array(array('data' => array('uid' => 12, 'pid' => 1, 'tstamp' => 1610960241, 'crdate' => 1592377009, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 192, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'About us', 'slug' => '/about-us', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies with a clear focus on automotive, industrial, and medical applications. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits (ICs) and other semiconductor devices for use in their own products or the products of their customers.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1693896583, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Your specialty foundry for the analog world', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'About us', 'link' => '/about-us', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 1618, 'pid' => 12, 'tstamp' => 1607599674, 'crdate' => 1607598452, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 64, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:33:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:13:"shortcut_mode";N;s:8:"shortcut";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'News & Events', 'slug' => '/about-us/news-events', 'doktype' => 4, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 29, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 1, 'SYS_LASTCHANGED' => 0, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => '', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'News & Events', 'link' => '/news', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1620, 'pid' => 12, 'tstamp' => 1607599761, 'crdate' => 1607599736, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 96, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:33:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:13:"shortcut_mode";N;s:8:"shortcut";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Investors', 'slug' => '/about-us/investors', 'doktype' => 4, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 6, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Investors', 'link' => '/investors', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1619, 'pid' => 12, 'tstamp' => 1607599660, 'crdate' => 1607599660, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 128, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 22, 'l10n_diffsource' => 'a:32:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:3:"url";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Career', 'slug' => '/career-1', 'doktype' => 3, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => 'https://www.xfabulous.com', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Career', 'link' => 'https://www.xfabulous.com', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 2617, 'pid' => 12, 'tstamp' => 1658407954, 'crdate' => 1658407904, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 384, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:33:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:13:"shortcut_mode";N;s:8:"shortcut";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Sustainability', 'slug' => '/about-us/sustainability', 'doktype' => 4, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 2612, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Sustainability', 'link' => '/sustainability', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array())), 'image' => array()), array('data' => array('uid' => 18, 'pid' => 1, 'tstamp' => 1607633132, 'crdate' => 1599649257, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 224, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Markets', 'slug' => '/markets', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'With our broad range of technologies and unique combination of CMOS and MEMS process capabilities, X-FAB is well equipped to manufacture complex devices that meet the exacting quality requirements of the automotive, industrial and medical industries. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1691165372, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Foundry solutions for key markets: automotive, medical, industrial devices', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'With our broad range of technologies and unique combination of CMOS and MEMS process capabilities we meet the requirements of the automotive, industrial and medical industries. ', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Markets', 'link' => '/markets', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 30, 'pid' => 18, 'tstamp' => 1607633423, 'crdate' => 1599650465, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 256, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Automotive', 'slug' => '/automotive', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Reliability and trust are two key requisites for serving the automotive industry. At X-FAB, we focus on technology performance, robustness and reliability and help our customers design and market semiconductors of outstanding quality with increased integration, functionalities and effectiveness.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1687833718, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Foundry solutions for the automotive industry with quality built in.', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Your foundry partner for automotive electronics', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Automotive', 'link' => '/automotive', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 44, 'pid' => 18, 'tstamp' => 1607633473, 'crdate' => 1600778671, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 320, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Medical', 'slug' => '/medical', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'medical applications, pacemakers, dna sequencing, ultrasound, lab-on-a-chip, ', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'We manufacture chips for medical applications such as pacemakers, DNA sequencing and ultrasound device. Find out more about our medical solutions here.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1678088570, 'abstract' => 'We manufacture chips for medical applications such as pacemakers, DNA sequencing and ultrasound device. Find out more about our medical solutions here.', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Your foundry partner for medical products', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Your foundry partner for medical products', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Medical', 'link' => '/medical', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 43, 'pid' => 18, 'tstamp' => 1607633631, 'crdate' => 1600778664, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 384, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Industrial', 'slug' => '/industrial', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'At X-FAB, we empower the future of the industrial electronics markets with our solutions for the next generation of energy management and automation technologies. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1687833905, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Your foundry partner for industrial applications with quality built in.', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Your foundry partner for industrial applications', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Industrial', 'link' => '/industrial', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 31, 'pid' => 18, 'tstamp' => 1607633835, 'crdate' => 1599653258, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 512, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Communication & Consumer', 'slug' => '/markets/communication-consumer', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Our technologies enable communication and consumer applications that make your life smarter, greener and safer. Together with your innovations, our proven, reliable technology portfolio of sensor/sensor interface, power management and radiofrequency (RF) solutions allows you to realize applications that integrate seamlessly into everyone’s daily life, connecting devices and people. Your foundry partner for communication & consumer devices.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1677040027, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Your foundry partner for communication & consumer devices', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Your foundry partner for communication & consumer devices', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Communication & Consumer', 'link' => '/markets/communication-consumer', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array())), 'image' => array()), array('data' => array('uid' => 19, 'pid' => 1, 'tstamp' => 1610955628, 'crdate' => 1599649290, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 240, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Technology', 'slug' => '/technology', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'We offer a wide range of open platform process technologies. We combine advanced modular CMOS and BiCMOS platforms with additional analog functions and modular options. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1689305484, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Wide range of Semiconductor Technologies', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 1, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Technology', 'link' => '/technology', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 1591, 'pid' => 19, 'tstamp' => 1702884256, 'crdate' => 1602150500, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 640, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'High Voltage', 'slug' => '/technology/high-voltage', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB BCD-on-SOI solutions offers a comprehensive range of automotive High-voltage (HV) CMOS processes supporting AEC-Q100 Garde 0 designs.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1702884256, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Automotive BCD-on-SOI and High Voltage (HV) foundry solutions', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'BCD-on-SOI', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'High Voltage', 'link' => '/technology/high-voltage', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 45, 'pid' => 19, 'tstamp' => 1702884435, 'crdate' => 1600778703, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 704, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'e-NVM', 'slug' => '/technology/e-nvm', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB provides a comprehensive portfolio of embedded NVM IPs complying with the most stringent quality requirements of the automotive market. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1706244252, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Best-in-class automotive grade embedded NVM solutions', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Embedded NVM ', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'e-NVM', 'link' => '/technology/e-nvm', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1592, 'pid' => 19, 'tstamp' => 1674549190, 'crdate' => 1602150609, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 736, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Sensors', 'slug' => '/technology/sensors', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'At X-FAB, we provide a comprehensive range of sensors measuring light, pressure, temperature and others. Our sensor wafer production is based on high-volume technologies and fulfills automotive standards. Our best-in-class ultralow-noise CMOS technologies – XH035 and XH018 – are recognized and adopted by tier-one semiconductor vendors for sensor interfaces.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1688956064, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Sensors and actuator solutions from a foundry', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Sensing the analog world', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Sensors', 'link' => '/technology/sensors', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1593, 'pid' => 19, 'tstamp' => 1607634257, 'crdate' => 1602150642, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 752, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'RF', 'slug' => '/technology/rf', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In today’s connected world, radio frequency (RF) electromagnetic signals are key for enabling many everyday tasks. Making a phone call or browsing the Internet with your smartphone at home or on the street is only possible with RF signals.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1694598434, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'RF and wireless solutions from a foundry', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Connecting people and devices worldwide', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'RF', 'link' => '/technology/rf', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 46, 'pid' => 19, 'tstamp' => 1702885286, 'crdate' => 1600778762, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 768, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'SiC & GaN', 'slug' => '/technology/sic-gan', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB foundry provides comprehensive processing technologies for wide bandgap (WBG) materials, Silicon Carbide (SiC) and Gallium Nitride (GaN). ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1711355804, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'SiC and GaN foundry solutions that fit your needs', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'SiC and GaN foundry', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'SiC & GaN', 'link' => '/technology/sic-gan', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1594, 'pid' => 19, 'tstamp' => 1607634476, 'crdate' => 1602150755, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 896, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'WLP & 3D Integration', 'slug' => '/technology/wlp-3d-int', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Extending the already feature rich CMOS technologies, X-FAB is working on solutions for 3D Heterogeneous integration, TSV and wafer level packaging. These technologies allow a better integration, as well as a reduction of packaging costs for our customers.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1688972043, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Wafer Level Packaging and 3D Integration', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Wafer Level Packaging and 3D Integration', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'WLP & 3D Integration', 'link' => '/technology/wlp-3d-int', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 47, 'pid' => 19, 'tstamp' => 1607634571, 'crdate' => 1600778770, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 1024, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Silicon-based Microfluidics', 'slug' => '/technology/silicon-based-microfluidics', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Connecting the two worlds of microelectronics and microfluidics is a challenge and an opportunity at the same time. Smart integrated microfluidic systems are the key to connecting both worlds. Our extensive MEMS-oriented technology offering enables such innovative applications, including devices for next-generation DNA sequencing and liquid biopsy or microelectrode arrays for drug development or food safety testing.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1688975443, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Silicon-based microfluidic solutions', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Silicon-based microfluidic solutions', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Silicon-based Microfluidics', 'link' => '/technology/silicon-based-microfluidics', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1631, 'pid' => 19, 'tstamp' => 1612454205, 'crdate' => 1611233481, 'cruser_id' => 9, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 1536, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 9, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Innovation', 'slug' => '/innovation', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'funded projects, innovation, collaboration, industrial partners', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB works and participates continuously on research, development and innovation projects in future-oriented technology and product fields. Main topics here are future emission-free and safe mobility, smart energy supply, ultralow power technologies, data security and artificial intelligence for smart sensor systems. ', 'no_search' => 1, 'SYS_LASTCHANGED' => 1689907295, 'abstract' => 'Focus areas are emission-free and safe mobility, smart energy supply, ultralow power technologies, data security and artificial intelligence for smart sensor systems. ', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Together we shape our future through innovation', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Focus areas are emission-free and safe mobility, smart energy supply, ultralow power technologies, data security and artificial intelligence for smart sensor systems. ', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Innovation', 'link' => '/innovation', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array())), 'image' => array()), array('data' => array('uid' => 20, 'pid' => 1, 'tstamp' => 1607634716, 'crdate' => 1599649310, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 248, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Manufacturing', 'slug' => '/manufacturing', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB has an established track record of over 25 years of experience providing proprietary manufacturing processes and advanced design and engineering support offerings. Excellent service, reliability and first-class technical support – that’s what X-FAB stands for.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1660039460, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Manufacturing solutions from a pure-play foundry', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Manufacturing excellence to make your innovations come to life', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Manufacturing', 'link' => '/manufacturing', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 32, 'pid' => 20, 'tstamp' => 1604477339, 'crdate' => 1599653757, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 256, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:48:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:8:"abstract";N;s:8:"keywords";N;s:11:"description";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Our Fabs', 'slug' => '/manufacturing/our-fabs', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1708597934, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Our Fabs', 'link' => '/manufacturing/our-fabs', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 48, 'pid' => 20, 'tstamp' => 1606989586, 'crdate' => 1600778797, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 512, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Supply Chain Management', 'slug' => '/manufacturing/supply-chain-management', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1617190077, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Supply Chain Management', 'link' => '/manufacturing/supply-chain-management', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 37, 'pid' => 20, 'tstamp' => 1610959597, 'crdate' => 1600772732, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 768, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Quality', 'slug' => '/manufacturing/quality', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'At X-FAB we understand quality as ongoing process which has to cover all steps that are needed to develop, realize and maintain our technologies and services along the whole lifecycle. We put the customer needs, goals and expectations in the focus of our efforts.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1706685556, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Quality - More than 25 years of automotive quality foundry offering', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'We put the customer needs, goals and expectations in the focus of our efforts.', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Quality', 'link' => '/manufacturing/quality', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 49, 'pid' => 20, 'tstamp' => 1617937078, 'crdate' => 1600778815, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 1024, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Prototyping', 'slug' => '/manufacturing/prototyping', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1711595518, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Prototyping', 'link' => '/manufacturing/prototyping', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1604, 'pid' => 20, 'tstamp' => 1617937063, 'crdate' => 1604054288, 'cruser_id' => 9, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 1280, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 9, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Outsourcing', 'slug' => '/manufacturing/outsourcing', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1702367772, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Outsourcing', 'link' => '/manufacturing/outsourcing', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array())), 'image' => array()), array('data' => array('uid' => 21, 'pid' => 1, 'tstamp' => 1608040619, 'crdate' => 1599649394, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 252, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Design Support', 'slug' => '/design-support', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1689305053, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Design Support', 'link' => '/design-support', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 1627, 'pid' => 21, 'tstamp' => 1611083842, 'crdate' => 1609997293, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 192, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:32:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:3:"url";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'FeatureXplorer', 'slug' => '/design-support/featurexplorer', 'doktype' => 3, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => 'https://www.xfab.com/featurexplorer', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1611083699, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'FeatureXplorer', 'link' => 'https://www.xfab.com/featurexplorer', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1628, 'pid' => 21, 'tstamp' => 1611308945, 'crdate' => 1610003841, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 480, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 1603, 'l10n_diffsource' => 'a:33:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:13:"shortcut_mode";N;s:8:"shortcut";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'ResourceXplorer', 'slug' => '/design-support/resourcexplorer', 'doktype' => 4, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => 'https://www.xfab.com/tools/resourcexplorer', 'shortcut' => 1630, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'ResourceXplorer', 'link' => '/tools/resourcexplorer', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1636, 'pid' => 21, 'tstamp' => 1611588474, 'crdate' => 1611588423, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 1008, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:33:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:13:"shortcut_mode";N;s:8:"shortcut";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'X-CHAIN', 'slug' => '/design-support/x-chain', 'doktype' => 4, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 58, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'X-CHAIN', 'link' => '/x-chain', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1637, 'pid' => 21, 'tstamp' => 1611608943, 'crdate' => 1611604387, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 1272, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:33:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:13:"shortcut_mode";N;s:8:"shortcut";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'IP Portal', 'slug' => '/design-support/ip-portal', 'doktype' => 4, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 1578, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'IP Portal', 'link' => '/ip-portal', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array())), 'image' => array())), 'menuSub' => array(), 'menuBreadcrumb' => array(), 'menuTop' => array(array('data' => array('uid' => 29, 'pid' => 5, 'tstamp' => 1605005074, 'crdate' => 1599650139, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 128, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:48:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:8:"abstract";N;s:8:"keywords";N;s:11:"description";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'News/Events', 'slug' => '/news', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1709882672, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'News/Events', 'link' => '/news', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 6, 'pid' => 5, 'tstamp' => 1627654361, 'crdate' => 1592376863, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 256, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Investors', 'slug' => '/investors', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Find all relevant investor information at a glance. Latest Investor News · X-FAB Share · Corporate Governance · Financial Reports · Investor Day 2021...', 'no_search' => 0, 'SYS_LASTCHANGED' => 1711471135, 'abstract' => 'Find all relevant investor information at a glance. Latest Investor News · X-FAB Share · Corporate Governance · Financial Reports · Investor Day 2021...', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Investor Relations', 'no_index' => 0, 'no_follow' => 0, 'og_title' => 'X-FAB Investor Relations', 'og_description' => 'Find all relevant investor information at a glance. Latest Investor News · X-FAB Share · Corporate Governance · Financial Reports · Investor Day 2021...', 'og_image' => 1, 'twitter_title' => 'X-FAB Investor Relations', 'twitter_description' => 'Find all relevant investor information at a glance. Latest Investor News · X-FAB Share · Corporate Governance · Financial Reports · Investor Day 2021...', 'twitter_image' => 1, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Investors', 'link' => '/investors', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 22, 'pid' => 5, 'tstamp' => 1602769103, 'crdate' => 1599649419, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 512, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:32:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:3:"url";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Career', 'slug' => '/career', 'doktype' => 3, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => 'https://www.xfabulous.com', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1601965457, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Career', 'link' => 'https://www.xfabulous.com', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 23, 'pid' => 5, 'tstamp' => 1601965457, 'crdate' => 1599649689, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '0', 'sorting' => 640, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:1:{s:6:"hidden";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Tools', 'slug' => '/tools', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1665056387, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Tools', 'link' => '/tools', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 1616, 'pid' => 5, 'tstamp' => 1607431938, 'crdate' => 1607246530, 'cruser_id' => 9, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 672, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:32:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:3:"url";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 9, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'My X-FAB', 'slug' => '/my-xfab-login', 'doktype' => 3, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => 'https://my.xfab.com/', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'My X-FAB', 'link' => 'https://my.xfab.com/', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 24, 'pid' => 5, 'tstamp' => 1701760506, 'crdate' => 1599649699, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 704, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:1:{s:6:"hidden";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Contact', 'slug' => '/contact', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1710902458, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Contact', 'link' => '/contact', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 15, 'pid' => 5, 'tstamp' => 1601965457, 'crdate' => 1592378532, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '0', 'sorting' => 768, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:1:{s:6:"hidden";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Search', 'slug' => '/search', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1632302701, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Search', 'link' => '/search', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0)), 'menuSocket' => array(array('data' => array('uid' => 1622, 'pid' => 7, 'tstamp' => 1607603784, 'crdate' => 1607603716, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 128, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:33:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:13:"shortcut_mode";N;s:8:"shortcut";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Sitemap', 'slug' => '/sitemap-2', 'doktype' => 4, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 25, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 1, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Sitemap', 'link' => '/sitemap', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 26, 'pid' => 7, 'tstamp' => 1601965457, 'crdate' => 1599649882, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 768, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:48:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:8:"abstract";N;s:8:"keywords";N;s:11:"description";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Imprint', 'slug' => '/imprint', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1681458270, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Imprint', 'link' => '/imprint', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 27, 'pid' => 7, 'tstamp' => 1601965457, 'crdate' => 1599650039, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 1024, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:48:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:8:"abstract";N;s:8:"keywords";N;s:11:"description";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Privacy Statement', 'slug' => '/privacy-statement', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1686650399, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Privacy Statement', 'link' => '/privacy-statement', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0)), 'menuSide' => array(array('data' => array('uid' => 12, 'pid' => 1, 'tstamp' => 1610960241, 'crdate' => 1592377009, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 192, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'About us', 'slug' => '/about-us', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies with a clear focus on automotive, industrial, and medical applications. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits (ICs) and other semiconductor devices for use in their own products or the products of their customers.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1693896583, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Your specialty foundry for the analog world', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'About us', 'link' => '/about-us', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 18, 'pid' => 1, 'tstamp' => 1607633132, 'crdate' => 1599649257, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 224, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Markets', 'slug' => '/markets', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'With our broad range of technologies and unique combination of CMOS and MEMS process capabilities, X-FAB is well equipped to manufacture complex devices that meet the exacting quality requirements of the automotive, industrial and medical industries. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1691165372, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Foundry solutions for key markets: automotive, medical, industrial devices', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'With our broad range of technologies and unique combination of CMOS and MEMS process capabilities we meet the requirements of the automotive, industrial and medical industries. ', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Markets', 'link' => '/markets', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 19, 'pid' => 1, 'tstamp' => 1610955628, 'crdate' => 1599649290, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 240, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Technology', 'slug' => '/technology', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'We offer a wide range of open platform process technologies. We combine advanced modular CMOS and BiCMOS platforms with additional analog functions and modular options. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1689305484, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Wide range of Semiconductor Technologies', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 1, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Technology', 'link' => '/technology', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 20, 'pid' => 1, 'tstamp' => 1607634716, 'crdate' => 1599649310, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 248, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Manufacturing', 'slug' => '/manufacturing', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB has an established track record of over 25 years of experience providing proprietary manufacturing processes and advanced design and engineering support offerings. Excellent service, reliability and first-class technical support – that’s what X-FAB stands for.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1660039460, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Manufacturing solutions from a pure-play foundry', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Manufacturing excellence to make your innovations come to life', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Manufacturing', 'link' => '/manufacturing', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 21, 'pid' => 1, 'tstamp' => 1608040619, 'crdate' => 1599649394, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 252, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Design Support', 'slug' => '/design-support', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1689305053, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Design Support', 'link' => '/design-support', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0))))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/ContentObject/ContentDataProcessor.php line 60

                $processorConfiguration = $processors[$key . '.'] ?? [];

                $variables = GeneralUtility::makeInstance($className)->process(
                    $cObject,
                    $configuration,
                    $processorConfiguration,
                    $variables
                );
at TYPO3\CMS\Frontend\ContentObject\ContentDataProcessor->process(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer), array('templateName' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'templateRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Templates/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Templates/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Partials/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Partials/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Layouts/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Layouts/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special.' => array('value.' => array('field' => 'pages')), 'levels' => '3', 'as' => 'menuMain', 'expandAll' => '1', 'includeSpacer' => '0', 'titleField' => 'nav_title // title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'as' => 'image'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('levels' => '5', 'entryLevel' => '2', 'expandAll' => '0', 'includeSpacer' => '0', 'as' => 'menuSub'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '40.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'includeNotInMenu' => '1', 'excludeUidList' => '1', 'as' => 'menuBreadcrumb'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'directory', 'special.' => array('value' => '5'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'menuTop'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '60.' => array('special' => 'directory', 'special.' => array('value' => '7'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'menuSocket'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '70.' => array('special' => 'directory', 'special.' => array('value' => ''), 'levels' => '1', 'includeSpacer' => '0', 'as' => 'menuSide'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '80.' => array('languages' => 'auto', 'as' => 'menuLanguage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '90.' => array('special' => 'directory', 'special.' => array('value' => '9'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'footerLeftSideMenu')), 'settings.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'framework' => 'UiKit', 'rootPid' => '1', 'targetPid' => '15', 'logoFilePath' => 'fileadmin/user_upload/XFAB_Logo_White.svg', 'logoFileWidth' => '140', 'logoFileAltAttr' => 'XFAB Logo', 'logoShrink' => '1', 'topMenuPosition' => 'right', 'mainMenuEntryLevel' => '0', 'mainMenuPosition' => 'right', 'mainMenuSticky' => '1', 'mainMenuMegaExclude' => '', 'mainMenuMegaBackgroundColor' => 'default', 'mainMenuMegaWidth' => 'Navbar', 'showSubMenuInSidebars' => '0', 'socketMenuPosition' => 'right', 'socketMenuSourceID' => '7', 'copyrightFooterText' => 'X-FAB Silicon Foundries SE', 'topMenuSourceID' => '5', 'sideMenuSourceID' => '', 'headerInnerBuild' => 'default', 'headerWidth' => '0', 'headerInnerAlign' => 'left', 'headerOuterBackgroundColor' => 'primary', 'headerTopmenuBackgroundColor' => 'primary', 'headerMainmenuBackgroundColor' => 'primary', 'footerBackgroundColor' => 'muted', 'footerBackgroundInlineColor' => '', 'footerSitemapMenu' => '1', 'footerSitemapExcludePageID' => '', 'socketBackgroundColor' => 'muted', 'socketBackgroundInlineColor' => '', 'showBreadcrumb' => '0', 'showBreadcrumbHomeLink' => '1', 'breadcrumbBackgroundColor' => 'primary', 'newsDetailPid' => '{$plugin.tx_akt_sitepackage.settings.newsDetailPid}', 'socialMediaMenu' => '1', 'facebookPath' => 'https://www.facebook.com/xfab.corporate', 'twitterPath' => 'https://twitter.com/xfab_foundry?lang=de', 'youtubePath' => 'https://www.youtube.com/channel/UCZVqNluNp8W0Ni9CQ0PTvyQ', 'linkedInPath' => 'https://de.linkedin.com/company/x-fab', 'xingPath' => '', 'instagramPath' => '', 'footerContent.' => array('footerContentSourceUID' => '')), 'variables.' => array('contentMain' => 'CONTENT', 'contentMain.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=0')), 'contentFocus' => 'CONTENT', 'contentFocus.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=1')), 'headers' => '< lib.contentElement', 'headers.' => array('templateName' => 'Header'))), array('contentMain' => '<section class="uk-section uk-section-default " style="" ><div class="uk-container uk-container-large"><div id="c3" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"><header><h1 class="ce-headline-center"> What we do... </h1></header></div><div class="uk-child-width-expand " data-uk-grid><div class="uk-width-1-1@s uk-width-1-2@m uk-width-1-2@l uk-width-1-2@xl "><div id="c2" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p>As the world\'s leading foundry group for analog/mixed-signal semiconductor applications&nbsp;X-FAB creates a clear alternative to typical foundry services by combining solid, specialized expertise in advanced analog and mixed-signal process technologies with excellent service, a high level of responsiveness and first-class technical support.</p></div></div></div></div><div class="uk-width-1-1@s uk-width-1-2@m uk-width-1-2@l uk-width-1-2@xl "><div id="c4" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p>X-FAB manufactures wafers for <a href="/automotive">automotive</a>, <a href="/industrial">industrial</a>, <a href="/markets/communication-consumer">consumer</a>, <a href="/medical">medical</a>, and other applications on modular <a href="/technology">CMOS</a> processes in geometries ranging from 1.0μm to 130 nm, special <a href="/technology">SOI</a> and <a href="/technology">MEMS</a> long-lifetime processes.&nbsp;With our&nbsp;six <a href="/manufacturing/our-fabs">manufacturing sites</a> in Germany, France, Malaysia and the USA, we have a combined capacity of about 100,000 eight inch equivalent wafer starts per month.</p></div></div></div></div></div></div></section><section class="uk-section uk-section-primary uk-preserve-color" style="" ><div class="uk-container uk-container-large"><div id="c5" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div id="c6" class="frame frame-default frame-type-list frame-layout-0"><header><h2 class="ce-headline-center"> News </h2></header><div class="news"><!--TYPO3SEARCH_end--><!-- GRID VIEW --><div id="news-container-6" class="uk-news-list uk-news-grid-view uk-grid-large uk-margin-large-top uk-margin-medium-bottom"><div class="uk-card uk-card-default uk-margin-medium" itemscope="itemscope" itemtype="http://schema.org/Article"><div class="uk-child-width-1-2@s uk-child-width-1-3@m uk-grid-collapse uk-card-inner" uk-grid><div class="uk-card-media-left uk-background-default uk-cover-container uk-padding"><div class="header"><p class="uk-article-meta"><span class="news-list-date"><time itemprop="datePublished" datetime="2024-03-27"> Mar 27, 2024 </time></span></p><h3 class="uk-card-title"><a title="photonixFAB Consortium now open for first prototyping" href="/news/details/article/photonixfab-consortium-now-open-for-first-prototyping"><span itemprop="headline">photonixFAB Consortium now open for first prototyping</span></a></h3></div></div><div class="uk-card-image uk-padding-remove uk-margin-remove"><div class="uk-card-body uk-padding-remove"><div class="news-img-wrap"><a title="photonixFAB Consortium now open for first prototyping" href="/news/details/article/photonixfab-consortium-now-open-for-first-prototyping"><img src="/fileadmin/_processed_/6/4/csm_photonixFAB_Logo_horizontal_RGB_5fb92bcbfa.png" width="610" height="400" alt="" /></a></div></div></div><div class="uk-card-media-right uk-background-secondary uk-cover-container uk-padding uk-margin-remove"><div class="teaser-text"><div itemprop="description"><p>New customer engagement portal enables early technology access</p></div><a class="more uk-button uk-button-default uk-button--more" title="photonixFAB Consortium now open for first prototyping" href="/news/details/article/photonixfab-consortium-now-open-for-first-prototyping"> Read more </a></div></div></div></div><div class="uk-card uk-card-default uk-margin-medium" itemscope="itemscope" itemtype="http://schema.org/Article"><div class="uk-child-width-1-2@s uk-child-width-1-3@m uk-grid-collapse uk-card-inner" uk-grid><div class="uk-card-media-left uk-background-default uk-cover-container uk-padding"><div class="header"><p class="uk-article-meta"><span class="news-list-date"><time itemprop="datePublished" datetime="2023-11-16"> Nov 16, 2023 </time></span></p><h3 class="uk-card-title"><a title="X-FAB Introduces New Generation of Enhanced Performance SPAD Devices focused on Near-Infrared Applications" href="/news/details/article/x-fab-introduces-new-generation-of-enhanced-performance-spad-devices-focused-on-near-infrared-applications"><span itemprop="headline">X-FAB Introduces New Generation of Enhanced Performance SPAD Devices focused on Near-Infrared Applications</span></a></h3></div></div><div class="uk-card-image uk-padding-remove uk-margin-remove"><div class="uk-card-body uk-padding-remove"><div class="news-img-wrap"><a title="X-FAB Introduces New Generation of Enhanced Performance SPAD Devices focused on Near-Infrared Applications" href="/news/details/article/x-fab-introduces-new-generation-of-enhanced-performance-spad-devices-focused-on-near-infrared-applications"><img title="SPAD Near Infrared Applications" alt="SPAD Near Infrared Applications" src="/fileadmin/_processed_/8/9/csm_16nov_SPAD__IR_2919398133.jpg" width="610" height="400" /></a></div></div></div><div class="uk-card-media-right uk-background-secondary uk-cover-container uk-padding uk-margin-remove"><div class="teaser-text"><div itemprop="description"><p>X-FAB Silicon Foundries SE, the leading analog/mixed-signal and specialty foundry, has introduced a specific near-infrared version to its single-photon avalanche diode (SPAD)…</p></div><a class="more uk-button uk-button-default uk-button--more" title="X-FAB Introduces New Generation of Enhanced Performance SPAD Devices focused on Near-Infrared Applications" href="/news/details/article/x-fab-introduces-new-generation-of-enhanced-performance-spad-devices-focused-on-near-infrared-applications"> Read more </a></div></div></div></div><div class="uk-card uk-card-default uk-margin-medium" itemscope="itemscope" itemtype="http://schema.org/Article"><div class="uk-child-width-1-2@s uk-child-width-1-3@m uk-grid-collapse uk-card-inner" uk-grid><div class="uk-card-media-left uk-background-default uk-cover-container uk-padding"><div class="header"><p class="uk-article-meta"><span class="news-list-date"><time itemprop="datePublished" datetime="2023-11-02"> Nov 02, 2023 </time></span></p><h3 class="uk-card-title"><a title="X-FAB Adds CMOS Integration Option to its Galvanic Isolation Solution" href="/news/details/article/x-fab-adds-cmos-integration-option-to-its-galvanic-isolation-solution"><span itemprop="headline">X-FAB Adds CMOS Integration Option to its Galvanic Isolation Solution</span></a></h3></div></div><div class="uk-card-image uk-padding-remove uk-margin-remove"><div class="uk-card-body uk-padding-remove"><div class="news-img-wrap"><a title="X-FAB Adds CMOS Integration Option to its Galvanic Isolation Solution" href="/news/details/article/x-fab-adds-cmos-integration-option-to-its-galvanic-isolation-solution"><img src="/fileadmin/_processed_/c/8/csm_Integrated_Coupler_02Nov2023_X-FAB_wafer_8-inch_6349eada54.jpg" width="610" height="400" alt="" /></a></div></div></div><div class="uk-card-media-right uk-background-secondary uk-cover-container uk-padding uk-margin-remove"><div class="teaser-text"><div itemprop="description"><p>X-FAB Silicon Foundries SE, the leading analog/mixed-signal and specialty foundry, is making further significant progress with its galvanic isolation technology. </p></div><a class="more uk-button uk-button-default uk-button--more" title="X-FAB Adds CMOS Integration Option to its Galvanic Isolation Solution" href="/news/details/article/x-fab-adds-cmos-integration-option-to-its-galvanic-isolation-solution"> Read more </a></div></div></div></div></div><!-- GRID VIEW --><!--TYPO3SEARCH_begin--></div></div><div id="c1758" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center"><a href="/news" title="MORE NEWS" class="load-more">MORE NEWS</a></p></div></div></div></div></div></div></section><section class="uk-section uk-section-transparent" style="" ><div class="uk-container uk-container-large"><div id="c8" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div id="c7" class="frame frame-default frame-type-list frame-layout-0"><header><h2 class="ce-headline-center"> Events </h2></header><div class="news"><!--TYPO3SEARCH_end--><!-- EVENT LIST VIEW --><div class="uk-news-list uk-event-view uk-child-width-1-2@m uk-margin-large-top uk-margin-medium-bottom" uk-grid><!-- ===================== Partials/Event/Item.html--><div class="article uk-article uk-article-event-item uk-grid-collapse articletype-0 uk-margin-medium-bottom" itemscope="itemscope" itemtype="http://schema.org/Article" uk-grid><div class="uk-width-1-3 uk-padding uk-padding-remove-top uk-padding-remove-bottom uk-padding-remove-left"><div class="news-img-wrap"><a title="User2User" href="/news/details/article/user2user"><img src="/fileadmin/X-FAB/Events/U2U_2023_logo_thumb.jpg" width="541" height="541" alt="" /></a><!-- date --><span class="news-list-date"><time itemprop="datePublished" datetime="2024-05-07"> May 07 </time></span></div></div><div class="uk-width-2-3"><!-- header --><div class="header"><h3 class="uk-margin-remove-bottom"><a title="User2User" href="/news/details/article/user2user"><span itemprop="headline">User2User</span></a></h3></div><div class="date"><span class="location"><p>Munich, Germany | 7 May 2024</p></span></div><!-- teaser --><div class="teaser-text"><div itemprop="description"><p>User2User is a great opportunity to learn, grow and connect with fellow technical experts who design leading-edge products using Siemens EDA tools. &nbsp;Dedicated to end-users of…</p><a class="more" title="User2User" href="/news/details/article/user2user"> Read more </a></div></div></div></div><!-- ===================== Partials/Event/Item.html--><div class="article uk-article uk-article-event-item uk-grid-collapse articletype-0 uk-margin-medium-bottom" itemscope="itemscope" itemtype="http://schema.org/Article" uk-grid><div class="uk-width-1-3 uk-padding uk-padding-remove-top uk-padding-remove-bottom uk-padding-remove-left"><div class="news-img-wrap"><a title="ISPSD" href="/news/details/article/ispsd"><img src="/fileadmin/_processed_/8/e/csm_Logo_ISPSD_2024_7d2cf0ee13.png" width="153" height="153" alt="" /></a><!-- date --><span class="news-list-date"><time itemprop="datePublished" datetime="2024-06-02"> Jun 02 </time></span></div></div><div class="uk-width-2-3"><!-- header --><div class="header"><h3 class="uk-margin-remove-bottom"><a title="ISPSD" href="/news/details/article/ispsd"><span itemprop="headline">ISPSD</span></a></h3></div><div class="date"><span class="location"><p>Bremen, Germany | 2-6 June 2024</p></span></div><!-- teaser --><div class="teaser-text"><div itemprop="description"><p>The 36th International Symposium on Power Semiconductor Devices and ICs is the premier forum for technical discussion in all areas of power semiconductor devices, power integrated…</p><a class="more" title="ISPSD" href="/news/details/article/ispsd"> Read more </a></div></div></div></div><!-- ===================== Partials/Event/Item.html--><div class="article uk-article uk-article-event-item uk-grid-collapse articletype-0 uk-margin-medium-bottom" itemscope="itemscope" itemtype="http://schema.org/Article" uk-grid><div class="uk-width-1-3 uk-padding uk-padding-remove-top uk-padding-remove-bottom uk-padding-remove-left"><div class="news-img-wrap"><a title="ISSW 2024" href="/news/details/article/issw-2024"><img src="/fileadmin/_processed_/3/4/csm_ISSW_2024_e40479e74e.jpg" width="217" height="217" alt="" /></a><!-- date --><span class="news-list-date"><time itemprop="datePublished" datetime="2024-06-04"> Jun 04 </time></span></div></div><div class="uk-width-2-3"><!-- header --><div class="header"><h3 class="uk-margin-remove-bottom"><a title="ISSW 2024" href="/news/details/article/issw-2024"><span itemprop="headline">ISSW 2024</span></a></h3></div><div class="date"><span class="location"><p>Trento, Italy | 4-6 June 2024</p></span></div><!-- teaser --><div class="teaser-text"><div itemprop="description"><p>At X-FAB, &nbsp;we offer primitive devices for our APD in linear mode which are scalable from 30 µm to 200 µm, and for our SPAD in Geiger mode with sizes from 10 µm to 30 µm.</p><p>We are…</p><a class="more" title="ISSW 2024" href="/news/details/article/issw-2024"> Read more </a></div></div></div></div><!-- ===================== Partials/Event/Item.html--><div class="article uk-article uk-article-event-item uk-grid-collapse articletype-0 uk-margin-medium-bottom" itemscope="itemscope" itemtype="http://schema.org/Article" uk-grid><div class="uk-width-1-3 uk-padding uk-padding-remove-top uk-padding-remove-bottom uk-padding-remove-left"><div class="news-img-wrap"><a title="Silicon Saxony Day" href="/news/details/article/silicon-saxony-day"><img src="/fileadmin/X-FAB/Events/siliconsaxonyday-thumb-2024.jpg" width="214" height="214" alt="" /></a><!-- date --><span class="news-list-date"><time itemprop="datePublished" datetime="2024-06-11"> Jun 11 </time></span></div></div><div class="uk-width-2-3"><!-- header --><div class="header"><h3 class="uk-margin-remove-bottom"><a title="Silicon Saxony Day" href="/news/details/article/silicon-saxony-day"><span itemprop="headline">Silicon Saxony Day</span></a></h3></div><div class="date"><span class="location"><p>Dresden, Germany | 11 June 2024</p></span></div><!-- teaser --><div class="teaser-text"><div itemprop="description"><p>The 18<sup>th</sup> Silicon Saxony Day is one of the most international high-tech and networking event in Europe. It offers cross-industry insights into technologies and solutions in the…</p><a class="more" title="Silicon Saxony Day" href="/news/details/article/silicon-saxony-day"> Read more </a></div></div></div></div><!-- ===================== Partials/Event/Item.html--><div class="article uk-article uk-article-event-item uk-grid-collapse articletype-0 uk-margin-medium-bottom" itemscope="itemscope" itemtype="http://schema.org/Article" uk-grid><div class="uk-width-1-3 uk-padding uk-padding-remove-top uk-padding-remove-bottom uk-padding-remove-left"><div class="news-img-wrap"><a title="SENSORS CONVERGE 2024" href="/news/details/article/sensors-converge-2024"><img src="/fileadmin/_processed_/a/5/csm_Sensors_Converge_2024_logo_659158e030.jpg" width="235" height="235" alt="" /></a><!-- date --><span class="news-list-date"><time itemprop="datePublished" datetime="2024-06-24"> Jun 24 </time></span></div></div><div class="uk-width-2-3"><!-- header --><div class="header"><h3 class="uk-margin-remove-bottom"><a title="SENSORS CONVERGE 2024" href="/news/details/article/sensors-converge-2024"><span itemprop="headline">SENSORS CONVERGE 2024</span></a></h3></div><div class="date"><span class="location"><p>Santa Clara, California, USA | 24-26 June 2024</p></span></div><!-- teaser --><div class="teaser-text"><div itemprop="description"><p>Join the sensors and electronics community during this event covering the biggest design engineering trends. From enabling innovation, to process design &amp; control development, to…</p><a class="more" title="SENSORS CONVERGE 2024" href="/news/details/article/sensors-converge-2024"> Read more </a></div></div></div></div><!-- ===================== Partials/Event/Item.html--><div class="article uk-article uk-article-event-item uk-grid-collapse articletype-0 uk-margin-medium-bottom" itemscope="itemscope" itemtype="http://schema.org/Article" uk-grid><div class="uk-width-1-3 uk-padding uk-padding-remove-top uk-padding-remove-bottom uk-padding-remove-left"><div class="news-img-wrap"><a title="MICROTAS" href="/news/details/article/microtas-2024"><img src="/fileadmin/_processed_/0/5/csm_uTAS24_logo_138a9d0b7c.jpg" width="394" height="394" alt="" /></a><!-- date --><span class="news-list-date"><time itemprop="datePublished" datetime="2024-10-12"> Oct 12 </time></span></div></div><div class="uk-width-2-3"><!-- header --><div class="header"><h3 class="uk-margin-remove-bottom"><a title="MICROTAS" href="/news/details/article/microtas-2024"><span itemprop="headline">MICROTAS</span></a></h3></div><div class="date"><span class="location"><p>Montreal, Canada | 13-17 October 2024</p></span></div><!-- teaser --><div class="teaser-text"><div itemprop="description"><p>The 28th International Conference on Miniaturized Systems for Chemistry and Life Sciences (µTAS 2024) is the premier forum for reporting research results in microfluidics,…</p><a class="more" title="MICROTAS" href="/news/details/article/microtas-2024"> Read more </a></div></div></div></div></div><!-- EVENT LIST VIEW --><!--TYPO3SEARCH_begin--></div></div></div></div></div></section><section class="uk-section uk-section-transparent uk-padding-remove-vertical" style="" ><div class="uk-container uk-container-large"><div id="c30251" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><section class="uk-section uk-section-transparent" style="" ><div class="uk-container uk-container-large"><div id="c1890" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"><header><h2 class=""> Market solutions </h2></header></div><div class=" "><div class="uk-width-1-1@s uk-width-1-1@m "><div id="c2091" class="frame frame-indent frame-type-textmedia frame-layout-0 frame-space-after-medium"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-justify">With our broad range of specialty technologies including the unique combination of CMOS and MEMS process capabilities, we are&nbsp;well equipped to manufacture complex devices that meet the exacting quality requirements of the automotive, industrial, consumer&nbsp;and medical industries.&nbsp;</p></div></div></div><div class="uk-slider-wrap uk-light" ><div class="uk-position-relative" data-uk-slider=" autoplay-interval: 7000; finite: true;"><div class="uk-slider-container"><ul class="uk-slider-items uk-child-width-1-1@s uk-child-width-1-2@m uk-child-width-1-2@l uk-child-width-1-2@xl" data-uk-grid="" data-uk-height-match="target: .frame"><li class="uk-slide-item item"><div id="c577" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-gallery" data-ce-columns="1" data-ce-images="1" ><div class="ce-outer"><div class="ce-inner"><div class=""><figure class="image"><a href="/automotive"><img class="image-embed-item" src="/fileadmin/_processed_/4/8/csm_automotive_1280x616px_dcffacd0e0.jpg" width="800" height="532" alt="" /></a></figure></div></div></div></div><div class="ce-bodytext"><h4>Automotive</h4><p>Reliability and trust are two key requisites for serving the automotive industry. Our focus on security issues, complex demands and the extreme environmental conditions faced by the automotive industry helps us determine which advanced solutions best benefit automotive designers and their customers.</p><p class="uk-text-center"><a href="/automotive" class="more-btn">read more</a></p></div></div></div></li><li class="uk-slide-item item"><div id="c587" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-gallery" data-ce-columns="1" data-ce-images="1" ><div class="ce-outer"><div class="ce-inner"><div class=""><figure class="image"><a href="/medical"><img class="image-embed-item" src="/fileadmin/_processed_/9/8/csm_medical_market-image-2020_low_70cbf780a8.jpg" width="800" height="533" alt="" /></a></figure></div></div></div></div><div class="ce-bodytext"><h4>Medical</h4><p>As a supplier for the medical market - one in which people trust technology for their health and recovery - we are committed to deliver solutions that are accurate and reliable for our customers\' medical devices.</p><p>&nbsp;</p><p class="uk-text-center"><a href="/medical" class="more-btn">read more</a></p></div></div></div></li></ul></div><div class="uk-slidenav-container uk-hidden@l uk-flex uk-flex-center uk-margin-top"><a class="" href="#" data-uk-slidenav-previous data-uk-slider-item="previous"></a><a class="" href="#" data-uk-slidenav-next data-uk-slider-item="next"></a></div><div class="uk-slidenav-container uk-visible@l"><a class="uk-position-center-left-out uk-position-medium" href="#" data-uk-slidenav-previous data-uk-slider-item="previous"></a><a class="uk-position-center-right-out uk-position-medium" href="#" data-uk-slidenav-next data-uk-slider-item="next"></a></div><ul class="uk-slider-nav uk-dotnav uk-flex-center uk-margin"></ul></div></div><section class="uk-section uk-section-transparent" style="" ><div class="uk-container uk-container-large"><div id="c584" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div class="uk-slider-wrap uk-light" ><div class="uk-position-relative" data-uk-slider=" autoplay-interval: 7000; finite: true;"><div class="uk-slider-container"><ul class="uk-slider-items uk-child-width-1-1@s uk-child-width-1-2@m uk-child-width-1-2@l uk-child-width-1-2@xl" data-uk-grid="" data-uk-height-match="target: .frame"><li class="uk-slide-item item"><div id="c585" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-gallery" data-ce-columns="1" data-ce-images="1" ><div class="ce-outer"><div class="ce-inner"><div class=""><figure class="image"><a href="/industrial"><img class="image-embed-item" src="/fileadmin/_processed_/e/a/csm_industrial_1280x557px_de3f458e33.jpg" width="800" height="533" alt="" /></a></figure></div></div></div></div><div class="ce-bodytext"><h4>Industrial</h4><p>The products designed with our processes for the industrial market find their way into a broad range of industrial applications that require both robust devices and highly flexible manufacturing capabilities.&nbsp;</p><p>&nbsp;</p><p class="uk-text-center"><a href="/industrial" class="more-btn">read more</a></p></div></div></div></li><li class="uk-slide-item item"><div id="c579" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-gallery" data-ce-columns="1" data-ce-images="1" ><div class="ce-outer"><div class="ce-inner"><div class=""><figure class="image"><a href="/markets/communication-consumer"><img class="image-embed-item" src="/fileadmin/_processed_/b/3/csm_communication-consumer_1280x853px_ac5268b52c.jpg" width="800" height="531" alt="" /></a></figure></div></div></div></div><div class="ce-bodytext"><h4>Consumer &amp; Mobile Applications</h4><p>We entered the mobile communications market with a clear vision: connecting mobile devices with the real world. With this vision in mind, we became a leading foundry provider for discrete and integrated mobile sensor solutions, offering expert support to enable first-time-right designs.<br> &nbsp;</p><p class="uk-text-center"><a href="/markets/communication-consumer" class="more-btn">read more</a></p></div></div></div></li></ul></div><div class="uk-slidenav-container uk-hidden@l uk-flex uk-flex-center uk-margin-top"><a class="" href="#" data-uk-slidenav-previous data-uk-slider-item="previous"></a><a class="" href="#" data-uk-slidenav-next data-uk-slider-item="next"></a></div><div class="uk-slidenav-container uk-visible@l"><a class="uk-position-center-left-out uk-position-medium" href="#" data-uk-slidenav-previous data-uk-slider-item="previous"></a><a class="uk-position-center-right-out uk-position-medium" href="#" data-uk-slidenav-next data-uk-slider-item="next"></a></div><ul class="uk-slider-nav uk-dotnav uk-flex-center uk-margin"></ul></div></div></div></div></div></section></div></div></div></section></div></div></div></section><div id="c31743" class="frame frame-default frame-type-shortcut frame-layout-0"><section class="uk-section uk-section-primary uk-preserve-color uk-light" style="min-height: 450px; background-image: url(/fileadmin/a_background/Website_Sustainability_background_2000x1333px.png); background-repeat: no-repeat; background-attachment: fixed;" data-uk-parallax = "bgy: -250"><div class="uk-container"><div id="c31738" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><section class="uk-section uk-section-transparent uk-light uk-padding-remove-vertical" style="" ><div class="uk-container uk-container-expand"><div id="c31798" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div id="c31737" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><h2 class="uk-text-center">Our environment. Our responsibility.</h2></div></div></div></div></div></div></section><section class="uk-section uk-section-transparent uk-light uk-padding-remove-vertical uk-margin-medium-bottom uk-flex uk-flex-middle" style="" ><div class="uk-container uk-container-small"><div id="c31802" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div id="c31801" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center">Sustainability embodies many different facets, from environmental care to health and safety, human rights, business ethics and social responsibility.&nbsp;Visit our sustainability webpage to find more information.</p></div></div></div></div></div></div></section><section class="uk-section uk-section-transparent uk-light uk-padding-remove-vertical" style="" ><div class="uk-container"><div id="c31800" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div id="c31799" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center"><a href="/sustainability" title="Edit" class="load-more">Sustainability at X-FAB</a></p></div></div></div></div></div></div></section></div></div></div></section></div><section class="uk-section uk-section-transparent" style="" ><div class="uk-container uk-container-large"><div id="c2089" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"><header><h2 class=""> Technology portfolio </h2></header></div><div class=" "><div class="uk-width-1-1@m "><div id="c2090" class="frame frame-indent frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center">As a pure-play foundry specialized in analog/mixed-signal applications, we offer&nbsp;a wide range of modular CMOS and SOI processes in geometries ranging from 1.0 µm to 130 nm as well as special MEMS and SiC process capabilities. See our whole portfolio here: <a href="/technology">technology overview</a></p></div></div></div><div id="c30254" class="frame frame-default frame-type-shortcut frame-layout-0"><section class="uk-section uk-section-default " style="" ><div class="uk-container uk-container-large"><div id="c2220" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class="uk-child-width-expand uk-flex-center " data-uk-grid><div class="uk-width-1-2@s uk-width-1-4@m uk-width-1-4@l uk-width-1-4@xl "><div id="c2224" class="frame frame-default frame-type-textmedia frame-layout-0 frame-space-after-small"><header><h3 class="ce-headline-center"><a href="/technology#c2997">CMOS &amp; SOI</a></h3></header><div class="ce-textpic ce-center ce-above"></div></div><div id="c2212" class="frame frame-default frame-type-textmedia frame-layout-330 frame-space-after-small"><div class="ce-textpic ce-center ce-above"><div class="ce-gallery round-img" data-ce-columns="1" data-ce-images="1" ><div class="ce-outer"><div class="ce-inner"><div class=""><figure class="image"><a href="/technology#c2997"><img class="image-embed-item" src="/fileadmin/_processed_/9/8/csm_RF-CMOS_wafer_e0146cc2f5.jpg" width="300" height="300" alt="" /></a></figure></div></div></div></div></div></div><div id="c2213" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center">13 process families with over 450 options</p></div></div></div></div><div class="uk-width-1-2@s uk-width-1-4@m uk-width-1-4@l uk-width-1-4@xl "><div id="c2223" class="frame frame-default frame-type-textmedia frame-layout-0 frame-space-after-small"><header><h3 class="ce-headline-center"><a href="/technology#c2945">MEMS</a></h3></header><div class="ce-textpic ce-center ce-above"></div></div><div id="c30207" class="frame frame-default frame-type-textmedia frame-layout-330 frame-space-after-small"><div class="ce-textpic ce-center ce-above"><div class="ce-gallery round-img" data-ce-columns="1" data-ce-images="1" ><div class="ce-outer"><div class="ce-inner"><div class=""><figure class="image"><a href="/technology#c2945"><img class="image-embed-item" src="/fileadmin/_processed_/c/5/csm_MEMS_tech_overview_small_463eb795fd.jpg" width="300" height="300" alt="" /></a></figure></div></div></div></div></div></div><div id="c2215" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center">MEMS with or without integrated CMOS</p></div></div></div></div><div class="uk-width-1-2@s uk-width-1-4@m uk-width-1-4@l uk-width-1-4@xl "><div id="c2222" class="frame frame-default frame-type-textmedia frame-layout-0 frame-space-after-small"><header><h3 class="ce-headline-center"><a href="/technology/sic-gan">SiC &amp; GaN</a></h3></header><div class="ce-textpic ce-center ce-above"></div></div><div id="c2216" class="frame frame-default frame-type-textmedia frame-layout-330 frame-space-after-small"><div class="ce-textpic ce-center ce-above"><div class="ce-gallery round-img" data-ce-columns="1" data-ce-images="1" ><div class="ce-outer"><div class="ce-inner"><div class=""><figure class="image"><a href="/technology/sic-gan"><img class="image-embed-item" src="/fileadmin/_processed_/f/5/csm_SiC_wafer-epitaxy_800x533px_f96b806de8.jpg" width="300" height="300" alt="" /></a></figure></div></div></div></div></div></div><div id="c2217" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center">Processing technologies for WBG 6” SiC &amp; 8” GaN-on-Si</p></div></div></div></div><div class="uk-width-1-2@s uk-width-1-4@m uk-width-1-4@l uk-width-1-4@xl "><div id="c2221" class="frame frame-default frame-type-textmedia frame-layout-0"><header><h3 class="ce-headline-center"><a href="/technology/wlp-3d-int">Heterogeneous Integration</a></h3></header><div class="ce-textpic ce-center ce-above"></div></div><div id="c2218" class="frame frame-default frame-type-textmedia frame-layout-330 frame-space-after-small"><div class="ce-textpic ce-center ce-above"><div class="ce-gallery round-img" data-ce-columns="1" data-ce-images="1" ><div class="ce-outer"><div class="ce-inner"><div class=""><figure class="image"><a href="/technology/wlp-3d-int"><img class="image-embed-item" src="/fileadmin/_processed_/e/e/csm_Heterogeneous_integration_TSV_e973ab803b.jpg" width="300" height="300" alt="" /></a></figure></div></div></div></div></div></div><div id="c2219" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center">3D Integration and Wafer Level Package Solutions</p></div></div></div></div></div></div></section></div><div id="c2094" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center"><a href="/technology" class="load-more">READ MORE</a></p></div></div></div></div></div></div></section><section id="socialwall-header" class="uk-section uk-section-transparent uk-section-xsmall frame-space-before-extra-large uk-flex uk-flex-bottom" style="background-image: url(/fileadmin/a_background/ccc_bgi_2000x1333px.jpg); background-position: center center; background-size: cover; background-repeat: no-repeat; background-attachment: scroll;" ><div class="uk-container uk-container-expand"><div id="c31601" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0 frame-space-before-extra-large"></div><div class=" "><div class="uk-width-1-1@m "><div id="c31599" class="frame frame-default frame-type-header frame-layout-0"><header><h2 class="ce-headline-center"> Social media channels </h2></header></div></div></div></div></section><section id="socialwall" class="uk-section uk-section-transparent" style="" ><div class="uk-container uk-container-small"><div id="c31597" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div id="c31598" class="frame frame-default frame-type-html frame-layout-0"><div id="flockler-embed-17fb1d4954907fde08604d922b74c373"></div><script src="https://plugins.flockler.com/embed/17c9d1ae3af03836bd8db6a8d19d986b/17fb1d4954907fde08604d922b74c373" async></script></div></div></div></div></section><div id="c212" class="frame frame-default frame-type-shortcut frame-layout-0"><section class="uk-section uk-section-primary uk-preserve-color uk-light" style="" ><div class="uk-container uk-container-small"><div id="c32" class="frame frame-indent frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div id="c33" class="frame frame-default frame-type-textmedia frame-layout-0"><header><h2 class=""> Contact </h2></header><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p class="uk-text-center">For more information, please contact us:</p></div></div></div><div id="c1317" class="frame frame-default frame-type-shortcut frame-layout-0"><div id="c1314" class="frame frame-default frame-type-form_formframework frame-layout-0"><form enctype="multipart/form-data" method="post" id="contactform-1314" action="/?tx_form_formframework%5Baction%5D=perform&amp;tx_form_formframework%5Bcontroller%5D=FormFrontend&amp;cHash=97cc4823c07a04476fa87c4f13320d12#contactform-1314"><div><input type="hidden" name="tx_form_formframework[contactform-1314][__state]" value="TzozOToiVFlQTzNcQ01TXEZvcm1cRG9tYWluXFJ1bnRpbWVcRm9ybVN0YXRlIjoyOntzOjI1OiIAKgBsYXN0RGlzcGxheWVkUGFnZUluZGV4IjtpOjA7czoxMzoiACoAZm9ybVZhbHVlcyI7YTowOnt9fQ==506332f8c83bea95e9a9e942a9190c154742194e" /><input type="hidden" name="tx_form_formframework[__trustedProperties]" value="a:1:{s:16:&quot;contactform-1314&quot;;a:8:{s:6:&quot;text-1&quot;;i:1;s:19:&quot;JQnhg8UHVEfIDcXxC3z&quot;;i:1;s:7:&quot;email-1&quot;;i:1;s:14:&quot;singleselect-1&quot;;i:1;s:10:&quot;textarea-1&quot;;i:1;s:10:&quot;checkbox-1&quot;;i:1;s:11:&quot;recaptcha-1&quot;;i:1;s:13:&quot;__currentPage&quot;;i:1;}}9778493a6acdbb6615e75e6969a6f1943f3054dc" /></div><div class="form-group uk-margin-bottom"><label class="control-label uk-form-label" for="contactform-1314-text-1">Name<span class="required">*</span></label><div class="uk-form-controls uk-margin-small-bottom"><input required="required" class="uk-input form-control uk-input" id="contactform-1314-text-1" type="text" name="tx_form_formframework[contactform-1314][text-1]" value="" /></div></div><input autocomplete="JQnhg8UHVEfIDcXxC3z" aria-hidden="true" id="contactform-1314-JQnhg8UHVEfIDcXxC3z" style="position:absolute; margin:0 0 0 -999em;" tabindex="-1" type="text" name="tx_form_formframework[contactform-1314][JQnhg8UHVEfIDcXxC3z]" /><div class="form-group uk-margin-bottom"><label class="control-label uk-form-label" for="contactform-1314-email-1">E-Mail<span class="required">*</span></label><div class="uk-form-controls uk-margin-small-bottom"><input required="required" class="uk-input form-control uk-input" id="contactform-1314-email-1" type="email" name="tx_form_formframework[contactform-1314][email-1]" value="" /></div></div><div class="form-group uk-margin-bottom"><label class="control-label uk-form-label" for="contactform-1314-singleselect-1">Region</label><div class="uk-form-controls uk-margin-small-bottom"><select class="uk-select form-control uk-select" id="contactform-1314-singleselect-1" name="tx_form_formframework[contactform-1314][singleselect-1]"><option value="">Please Select</option><option value="Europe">Europe</option><option value="North America">North America</option><option value="Asia Pacific">Asia Pacific</option><option value="Other">Other</option></select></div></div><div class="form-group uk-margin-bottom"><label class="control-label uk-form-label" for="contactform-1314-textarea-1">Message<span class="required">*</span></label><div class="uk-form-controls uk-margin-small-bottom"><textarea required="required" class="uk-textarea form-control uk-textarea" id="contactform-1314-textarea-1" name="tx_form_formframework[contactform-1314][textarea-1]"></textarea></div></div><div class="clearfix"><div id="c28" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><p>By submitting the form you agree to our <a href="/privacy-statement">privacy policy</a>.</p></div></div></div></div><div class="form-group uk-margin-bottom"><div class=""><div class="form-check"><label class="uk-checkbox form-check-label " for="contactform-1314-checkbox-1"><input type="hidden" name="tx_form_formframework[contactform-1314][checkbox-1]" value="" /><input required="required" class="uk-checkbox uk-checkbox" id="contactform-1314-checkbox-1" type="checkbox" name="tx_form_formframework[contactform-1314][checkbox-1]" value="1" /><span><span class="required">*</span></span></label></div><span class="help-block">I agree to my data being stored and processed by X-FAB.</span></div></div><div class="form-group uk-margin-bottom"><label class="control-label uk-form-label" for="contactform-1314-recaptcha-1">reCAPTCHA</label><div class="recaptcha"><input id="contactform-1314-recaptcha-1" type="hidden" name="tx_form_formframework[contactform-1314][recaptcha-1]" value="1" /><div class="g-recaptcha" data-sitekey="6LfSfTscAAAAACM6Oa5gJcMbpYxzc9Vobk3IQsJI"></div></div></div><div class="actions"><nav class="form-navigation"><div class="btn-toolbar" role="toolbar"><div class="btn-group" role="group"><input id="currentPage" type="hidden" name="tx_form_formframework[contactform-1314][__currentPage]" value="" /><span class="next submit"><button class="btn btn-primary" onclick="document.getElementById(\'currentPage\').value=\'1\'" type="submit" name="" value="1">send message</button></span></div></div></nav></div></form></div></div></div></div></div></section></div>', 'contentFocus' => '<section class="uk-section uk-section-default uk-section-large uk-flex uk-flex-bottom" style="background-image: url(/fileadmin/X-FAB_Wafer_Foundry_Produktion_IMG62473_1920x1273px.jpg); background-position: center center; background-size: cover; background-repeat: no-repeat; background-attachment: scroll;" ><div class=""><div id="c1109" class="frame frame-default frame-type-gridelements_pi1 frame-layout-0"></div><div class=" "><div class="uk-width-1-1@m "><div id="c1" class="frame frame-default frame-type-textmedia frame-layout-0"><div class="ce-textpic ce-center ce-above ce-textpic-w-bodytext"><div class="ce-bodytext"><h2>Your specialty foundry</h2><h3><span class="uk-text-uppercase">For the analog world</span></h3></div></div></div></div></div></div></section>', 'headers' => '<div id="c1" class="frame frame- frame-type- frame-layout-0"></div>', 'data' => array('uid' => 1, 'pid' => 0, 'tstamp' => 1624518882, 'crdate' => 1592312425, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 256, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:50:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Home', 'slug' => '/', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 1, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => 'X-FAB Foundry', 'layout' => 0, 'target' => '', 'media' => 1, 'lastUpdated' => 1611579480, 'keywords' => 'Foundry, analog/mixed signal, semiconductor, pure-play', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1690980723, 'abstract' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => 'pagets__defaultwithfocus', 'backend_layout_next_level' => 'pagets__defaultwithfocus', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Your specialty foundry for the analog world', 'no_index' => 0, 'no_follow' => 1, 'og_title' => 'X-FAB: Your specialty foundry for the analog world', 'og_description' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.', 'og_image' => 0, 'twitter_title' => 'X-FAB: Your specialty foundry for the analog world', 'twitter_description' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Your specialty foundry for the analog world', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'currentValue_kidjls9dksoje' => 'defaultwithfocus'), 'current' => 'defaultwithfocus', 'files' => array(object(TYPO3\CMS\Core\Resource\FileReference)), 'menuMain' => array(array('data' => array('uid' => 12, 'pid' => 1, 'tstamp' => 1610960241, 'crdate' => 1592377009, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 192, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'About us', 'slug' => '/about-us', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies with a clear focus on automotive, industrial, and medical applications. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits (ICs) and other semiconductor devices for use in their own products or the products of their customers.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1693896583, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Your specialty foundry for the analog world', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'About us', 'link' => '/about-us', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 1618, 'pid' => 12, 'tstamp' => 1607599674, 'crdate' => 1607598452, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 64, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:33:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:13:"shortcut_mode";N;s:8:"shortcut";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'News & Events', 'slug' => '/about-us/news-events', 'doktype' => 4, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 29, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 1, 'SYS_LASTCHANGED' => 0, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => '', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'News & Events', 'link' => '/news', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1620, 'pid' => 12, 'tstamp' => 1607599761, 'crdate' => 1607599736, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 96, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:33:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:13:"shortcut_mode";N;s:8:"shortcut";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Investors', 'slug' => '/about-us/investors', 'doktype' => 4, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 6, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Investors', 'link' => '/investors', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1619, 'pid' => 12, 'tstamp' => 1607599660, 'crdate' => 1607599660, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 128, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 22, 'l10n_diffsource' => 'a:32:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:3:"url";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Career', 'slug' => '/career-1', 'doktype' => 3, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => 'https://www.xfabulous.com', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Career', 'link' => 'https://www.xfabulous.com', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 2617, 'pid' => 12, 'tstamp' => 1658407954, 'crdate' => 1658407904, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 384, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:33:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:13:"shortcut_mode";N;s:8:"shortcut";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Sustainability', 'slug' => '/about-us/sustainability', 'doktype' => 4, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 2612, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Sustainability', 'link' => '/sustainability', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array())), 'image' => array()), array('data' => array('uid' => 18, 'pid' => 1, 'tstamp' => 1607633132, 'crdate' => 1599649257, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 224, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Markets', 'slug' => '/markets', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'With our broad range of technologies and unique combination of CMOS and MEMS process capabilities, X-FAB is well equipped to manufacture complex devices that meet the exacting quality requirements of the automotive, industrial and medical industries. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1691165372, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Foundry solutions for key markets: automotive, medical, industrial devices', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'With our broad range of technologies and unique combination of CMOS and MEMS process capabilities we meet the requirements of the automotive, industrial and medical industries. ', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Markets', 'link' => '/markets', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 30, 'pid' => 18, 'tstamp' => 1607633423, 'crdate' => 1599650465, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 256, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Automotive', 'slug' => '/automotive', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Reliability and trust are two key requisites for serving the automotive industry. At X-FAB, we focus on technology performance, robustness and reliability and help our customers design and market semiconductors of outstanding quality with increased integration, functionalities and effectiveness.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1687833718, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Foundry solutions for the automotive industry with quality built in.', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Your foundry partner for automotive electronics', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Automotive', 'link' => '/automotive', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 44, 'pid' => 18, 'tstamp' => 1607633473, 'crdate' => 1600778671, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 320, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Medical', 'slug' => '/medical', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'medical applications, pacemakers, dna sequencing, ultrasound, lab-on-a-chip, ', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'We manufacture chips for medical applications such as pacemakers, DNA sequencing and ultrasound device. Find out more about our medical solutions here.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1678088570, 'abstract' => 'We manufacture chips for medical applications such as pacemakers, DNA sequencing and ultrasound device. Find out more about our medical solutions here.', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Your foundry partner for medical products', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Your foundry partner for medical products', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Medical', 'link' => '/medical', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 43, 'pid' => 18, 'tstamp' => 1607633631, 'crdate' => 1600778664, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 384, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Industrial', 'slug' => '/industrial', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'At X-FAB, we empower the future of the industrial electronics markets with our solutions for the next generation of energy management and automation technologies. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1687833905, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Your foundry partner for industrial applications with quality built in.', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Your foundry partner for industrial applications', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Industrial', 'link' => '/industrial', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 31, 'pid' => 18, 'tstamp' => 1607633835, 'crdate' => 1599653258, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 512, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Communication & Consumer', 'slug' => '/markets/communication-consumer', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Our technologies enable communication and consumer applications that make your life smarter, greener and safer. Together with your innovations, our proven, reliable technology portfolio of sensor/sensor interface, power management and radiofrequency (RF) solutions allows you to realize applications that integrate seamlessly into everyone’s daily life, connecting devices and people. Your foundry partner for communication & consumer devices.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1677040027, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Your foundry partner for communication & consumer devices', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Your foundry partner for communication & consumer devices', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Communication & Consumer', 'link' => '/markets/communication-consumer', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array())), 'image' => array()), array('data' => array('uid' => 19, 'pid' => 1, 'tstamp' => 1610955628, 'crdate' => 1599649290, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 240, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Technology', 'slug' => '/technology', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'We offer a wide range of open platform process technologies. We combine advanced modular CMOS and BiCMOS platforms with additional analog functions and modular options. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1689305484, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Wide range of Semiconductor Technologies', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 1, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Technology', 'link' => '/technology', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 1591, 'pid' => 19, 'tstamp' => 1702884256, 'crdate' => 1602150500, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 640, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'High Voltage', 'slug' => '/technology/high-voltage', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB BCD-on-SOI solutions offers a comprehensive range of automotive High-voltage (HV) CMOS processes supporting AEC-Q100 Garde 0 designs.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1702884256, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Automotive BCD-on-SOI and High Voltage (HV) foundry solutions', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'BCD-on-SOI', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'High Voltage', 'link' => '/technology/high-voltage', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 45, 'pid' => 19, 'tstamp' => 1702884435, 'crdate' => 1600778703, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 704, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'e-NVM', 'slug' => '/technology/e-nvm', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB provides a comprehensive portfolio of embedded NVM IPs complying with the most stringent quality requirements of the automotive market. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1706244252, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Best-in-class automotive grade embedded NVM solutions', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Embedded NVM ', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'e-NVM', 'link' => '/technology/e-nvm', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1592, 'pid' => 19, 'tstamp' => 1674549190, 'crdate' => 1602150609, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 736, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Sensors', 'slug' => '/technology/sensors', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'At X-FAB, we provide a comprehensive range of sensors measuring light, pressure, temperature and others. Our sensor wafer production is based on high-volume technologies and fulfills automotive standards. Our best-in-class ultralow-noise CMOS technologies – XH035 and XH018 – are recognized and adopted by tier-one semiconductor vendors for sensor interfaces.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1688956064, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Sensors and actuator solutions from a foundry', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Sensing the analog world', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Sensors', 'link' => '/technology/sensors', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1593, 'pid' => 19, 'tstamp' => 1607634257, 'crdate' => 1602150642, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 752, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'RF', 'slug' => '/technology/rf', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'In today’s connected world, radio frequency (RF) electromagnetic signals are key for enabling many everyday tasks. Making a phone call or browsing the Internet with your smartphone at home or on the street is only possible with RF signals.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1694598434, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'RF and wireless solutions from a foundry', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Connecting people and devices worldwide', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'RF', 'link' => '/technology/rf', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 46, 'pid' => 19, 'tstamp' => 1702885286, 'crdate' => 1600778762, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 768, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'SiC & GaN', 'slug' => '/technology/sic-gan', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB foundry provides comprehensive processing technologies for wide bandgap (WBG) materials, Silicon Carbide (SiC) and Gallium Nitride (GaN). ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1711355804, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'SiC and GaN foundry solutions that fit your needs', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'SiC and GaN foundry', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'SiC & GaN', 'link' => '/technology/sic-gan', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1594, 'pid' => 19, 'tstamp' => 1607634476, 'crdate' => 1602150755, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 896, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'WLP & 3D Integration', 'slug' => '/technology/wlp-3d-int', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Extending the already feature rich CMOS technologies, X-FAB is working on solutions for 3D Heterogeneous integration, TSV and wafer level packaging. These technologies allow a better integration, as well as a reduction of packaging costs for our customers.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1688972043, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Wafer Level Packaging and 3D Integration', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Wafer Level Packaging and 3D Integration', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'WLP & 3D Integration', 'link' => '/technology/wlp-3d-int', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 47, 'pid' => 19, 'tstamp' => 1607634571, 'crdate' => 1600778770, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 1024, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Silicon-based Microfluidics', 'slug' => '/technology/silicon-based-microfluidics', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Connecting the two worlds of microelectronics and microfluidics is a challenge and an opportunity at the same time. Smart integrated microfluidic systems are the key to connecting both worlds. Our extensive MEMS-oriented technology offering enables such innovative applications, including devices for next-generation DNA sequencing and liquid biopsy or microelectrode arrays for drug development or food safety testing.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1688975443, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Silicon-based microfluidic solutions', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Silicon-based microfluidic solutions', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Silicon-based Microfluidics', 'link' => '/technology/silicon-based-microfluidics', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1631, 'pid' => 19, 'tstamp' => 1612454205, 'crdate' => 1611233481, 'cruser_id' => 9, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 1536, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 9, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Innovation', 'slug' => '/innovation', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'funded projects, innovation, collaboration, industrial partners', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB works and participates continuously on research, development and innovation projects in future-oriented technology and product fields. Main topics here are future emission-free and safe mobility, smart energy supply, ultralow power technologies, data security and artificial intelligence for smart sensor systems. ', 'no_search' => 1, 'SYS_LASTCHANGED' => 1689907295, 'abstract' => 'Focus areas are emission-free and safe mobility, smart energy supply, ultralow power technologies, data security and artificial intelligence for smart sensor systems. ', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Together we shape our future through innovation', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Focus areas are emission-free and safe mobility, smart energy supply, ultralow power technologies, data security and artificial intelligence for smart sensor systems. ', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Innovation', 'link' => '/innovation', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array())), 'image' => array()), array('data' => array('uid' => 20, 'pid' => 1, 'tstamp' => 1607634716, 'crdate' => 1599649310, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 248, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Manufacturing', 'slug' => '/manufacturing', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB has an established track record of over 25 years of experience providing proprietary manufacturing processes and advanced design and engineering support offerings. Excellent service, reliability and first-class technical support – that’s what X-FAB stands for.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1660039460, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Manufacturing solutions from a pure-play foundry', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Manufacturing excellence to make your innovations come to life', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Manufacturing', 'link' => '/manufacturing', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 32, 'pid' => 20, 'tstamp' => 1604477339, 'crdate' => 1599653757, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 256, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:48:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:8:"abstract";N;s:8:"keywords";N;s:11:"description";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Our Fabs', 'slug' => '/manufacturing/our-fabs', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1708597934, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Our Fabs', 'link' => '/manufacturing/our-fabs', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 48, 'pid' => 20, 'tstamp' => 1606989586, 'crdate' => 1600778797, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 512, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Supply Chain Management', 'slug' => '/manufacturing/supply-chain-management', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1617190077, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Supply Chain Management', 'link' => '/manufacturing/supply-chain-management', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 37, 'pid' => 20, 'tstamp' => 1610959597, 'crdate' => 1600772732, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 768, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Quality', 'slug' => '/manufacturing/quality', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'At X-FAB we understand quality as ongoing process which has to cover all steps that are needed to develop, realize and maintain our technologies and services along the whole lifecycle. We put the customer needs, goals and expectations in the focus of our efforts.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1706685556, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Quality - More than 25 years of automotive quality foundry offering', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'We put the customer needs, goals and expectations in the focus of our efforts.', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Quality', 'link' => '/manufacturing/quality', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 49, 'pid' => 20, 'tstamp' => 1617937078, 'crdate' => 1600778815, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 1024, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Prototyping', 'slug' => '/manufacturing/prototyping', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1711595518, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Prototyping', 'link' => '/manufacturing/prototyping', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1604, 'pid' => 20, 'tstamp' => 1617937063, 'crdate' => 1604054288, 'cruser_id' => 9, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 1280, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 9, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Outsourcing', 'slug' => '/manufacturing/outsourcing', 'doktype' => 1, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => '', 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1702367772, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Outsourcing', 'link' => '/manufacturing/outsourcing', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array())), 'image' => array()), array('data' => array('uid' => 21, 'pid' => 1, 'tstamp' => 1608040619, 'crdate' => 1599649394, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 252, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Design Support', 'slug' => '/design-support', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1689305053, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Design Support', 'link' => '/design-support', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'children' => array(array('data' => array('uid' => 1627, 'pid' => 21, 'tstamp' => 1611083842, 'crdate' => 1609997293, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 192, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:32:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:3:"url";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'FeatureXplorer', 'slug' => '/design-support/featurexplorer', 'doktype' => 3, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => 'https://www.xfab.com/featurexplorer', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1611083699, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'FeatureXplorer', 'link' => 'https://www.xfab.com/featurexplorer', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1628, 'pid' => 21, 'tstamp' => 1611308945, 'crdate' => 1610003841, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 480, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 1603, 'l10n_diffsource' => 'a:33:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:13:"shortcut_mode";N;s:8:"shortcut";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'ResourceXplorer', 'slug' => '/design-support/resourcexplorer', 'doktype' => 4, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => 'https://www.xfab.com/tools/resourcexplorer', 'shortcut' => 1630, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'ResourceXplorer', 'link' => '/tools/resourcexplorer', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1636, 'pid' => 21, 'tstamp' => 1611588474, 'crdate' => 1611588423, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 1008, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:33:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:13:"shortcut_mode";N;s:8:"shortcut";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'X-CHAIN', 'slug' => '/design-support/x-chain', 'doktype' => 4, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 58, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'X-CHAIN', 'link' => '/x-chain', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array()), array('data' => array('uid' => 1637, 'pid' => 21, 'tstamp' => 1611608943, 'crdate' => 1611604387, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 1272, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:33:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:13:"shortcut_mode";N;s:8:"shortcut";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'IP Portal', 'slug' => '/design-support/ip-portal', 'doktype' => 4, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 1578, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'IP Portal', 'link' => '/ip-portal', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0, 'image' => array())), 'image' => array())), 'menuSub' => array(), 'menuBreadcrumb' => array(), 'menuTop' => array(array('data' => array('uid' => 29, 'pid' => 5, 'tstamp' => 1605005074, 'crdate' => 1599650139, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 128, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:48:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:8:"abstract";N;s:8:"keywords";N;s:11:"description";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'News/Events', 'slug' => '/news', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1709882672, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'News/Events', 'link' => '/news', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 6, 'pid' => 5, 'tstamp' => 1627654361, 'crdate' => 1592376863, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 256, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Investors', 'slug' => '/investors', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Find all relevant investor information at a glance. Latest Investor News · X-FAB Share · Corporate Governance · Financial Reports · Investor Day 2021...', 'no_search' => 0, 'SYS_LASTCHANGED' => 1711471135, 'abstract' => 'Find all relevant investor information at a glance. Latest Investor News · X-FAB Share · Corporate Governance · Financial Reports · Investor Day 2021...', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Investor Relations', 'no_index' => 0, 'no_follow' => 0, 'og_title' => 'X-FAB Investor Relations', 'og_description' => 'Find all relevant investor information at a glance. Latest Investor News · X-FAB Share · Corporate Governance · Financial Reports · Investor Day 2021...', 'og_image' => 1, 'twitter_title' => 'X-FAB Investor Relations', 'twitter_description' => 'Find all relevant investor information at a glance. Latest Investor News · X-FAB Share · Corporate Governance · Financial Reports · Investor Day 2021...', 'twitter_image' => 1, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Investors', 'link' => '/investors', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 22, 'pid' => 5, 'tstamp' => 1602769103, 'crdate' => 1599649419, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 512, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:32:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:3:"url";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Career', 'slug' => '/career', 'doktype' => 3, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => 'https://www.xfabulous.com', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1601965457, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Career', 'link' => 'https://www.xfabulous.com', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 23, 'pid' => 5, 'tstamp' => 1601965457, 'crdate' => 1599649689, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '0', 'sorting' => 640, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:1:{s:6:"hidden";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Tools', 'slug' => '/tools', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1665056387, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Tools', 'link' => '/tools', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 1616, 'pid' => 5, 'tstamp' => 1607431938, 'crdate' => 1607246530, 'cruser_id' => 9, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 672, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:32:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:3:"url";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 9, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'My X-FAB', 'slug' => '/my-xfab-login', 'doktype' => 3, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => 'https://my.xfab.com/', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'My X-FAB', 'link' => 'https://my.xfab.com/', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 24, 'pid' => 5, 'tstamp' => 1701760506, 'crdate' => 1599649699, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 704, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:1:{s:6:"hidden";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Contact', 'slug' => '/contact', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1710902458, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Contact', 'link' => '/contact', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 15, 'pid' => 5, 'tstamp' => 1601965457, 'crdate' => 1592378532, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '0', 'sorting' => 768, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:1:{s:6:"hidden";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Search', 'slug' => '/search', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1632302701, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Search', 'link' => '/search', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0)), 'menuSocket' => array(array('data' => array('uid' => 1622, 'pid' => 7, 'tstamp' => 1607603784, 'crdate' => 1607603716, 'cruser_id' => 65, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 128, 'rowDescription' => '', 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:33:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:13:"shortcut_mode";N;s:8:"shortcut";N;s:8:"abstract";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:6:"target";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 65, 'perms_groupid' => 5, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Sitemap', 'slug' => '/sitemap-2', 'doktype' => 4, 'TSconfig' => '', 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 25, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 1, 'SYS_LASTCHANGED' => 0, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => '', 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => '', 'tx_yoastseo_score_seo' => '', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Sitemap', 'link' => '/sitemap', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 26, 'pid' => 7, 'tstamp' => 1601965457, 'crdate' => 1599649882, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 768, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:48:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:8:"abstract";N;s:8:"keywords";N;s:11:"description";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Imprint', 'slug' => '/imprint', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1681458270, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Imprint', 'link' => '/imprint', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 27, 'pid' => 7, 'tstamp' => 1601965457, 'crdate' => 1599650039, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 1024, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:48:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:8:"abstract";N;s:8:"keywords";N;s:11:"description";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Privacy Statement', 'slug' => '/privacy-statement', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1686650399, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Privacy Statement', 'link' => '/privacy-statement', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0)), 'menuSide' => array(array('data' => array('uid' => 12, 'pid' => 1, 'tstamp' => 1610960241, 'crdate' => 1592377009, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 192, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'About us', 'slug' => '/about-us', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies with a clear focus on automotive, industrial, and medical applications. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits (ICs) and other semiconductor devices for use in their own products or the products of their customers.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1693896583, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Your specialty foundry for the analog world', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'About us', 'link' => '/about-us', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 18, 'pid' => 1, 'tstamp' => 1607633132, 'crdate' => 1599649257, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 224, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Markets', 'slug' => '/markets', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'With our broad range of technologies and unique combination of CMOS and MEMS process capabilities, X-FAB is well equipped to manufacture complex devices that meet the exacting quality requirements of the automotive, industrial and medical industries. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1691165372, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Foundry solutions for key markets: automotive, medical, industrial devices', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'With our broad range of technologies and unique combination of CMOS and MEMS process capabilities we meet the requirements of the automotive, industrial and medical industries. ', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Markets', 'link' => '/markets', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 19, 'pid' => 1, 'tstamp' => 1610955628, 'crdate' => 1599649290, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 240, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Technology', 'slug' => '/technology', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'We offer a wide range of open platform process technologies. We combine advanced modular CMOS and BiCMOS platforms with additional analog functions and modular options. ', 'no_search' => 0, 'SYS_LASTCHANGED' => 1689305484, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Wide range of Semiconductor Technologies', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 1, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Technology', 'link' => '/technology', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 20, 'pid' => 1, 'tstamp' => 1607634716, 'crdate' => 1599649310, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 248, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Manufacturing', 'slug' => '/manufacturing', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'X-FAB has an established track record of over 25 years of experience providing proprietary manufacturing processes and advanced design and engineering support offerings. Excellent service, reliability and first-class technical support – that’s what X-FAB stands for.', 'no_search' => 0, 'SYS_LASTCHANGED' => 1660039460, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => 'Manufacturing solutions from a pure-play foundry', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => 'Manufacturing excellence to make your innovations come to life', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'ok', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Manufacturing', 'link' => '/manufacturing', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0), array('data' => array('uid' => 21, 'pid' => 1, 'tstamp' => 1608040619, 'crdate' => 1599649394, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 252, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:51:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:30:"tx_akt_sitepackage_setmegamenu";N;s:9:"seo_title";N;s:11:"description";N;s:23:"tx_yoastseo_cornerstone";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'perms_userid' => 3, 'perms_groupid' => 2, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 0, 'title' => 'Design Support', 'slug' => '/design-support', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1689305053, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'tx_impexp_origuid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'twitter_card' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_akt_sitepackage_setmegamenu' => 0, 'tx_kiwiaccordion_exclusive' => 1, 'tx_yoastseo_focuskeyword' => null, 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_hide_snippet_preview' => 0, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_focuskeyword_premium' => 0, 'isSpacer' => false), 'title' => 'Design Support', 'link' => '/design-support', 'target' => '', 'active' => 0, 'current' => 0, 'spacer' => 0))))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 102
        $this->setPartialRootPath($conf);
        $this->setExtbaseVariables($conf);
        $this->assignSettings($conf);
        $variables = $this->getContentObjectVariables($conf);
        $variables = $this->contentDataProcessor->process($this->cObj, $conf, $variables);

        $this->view->assignMultiple($variables);

        $this->renderFluidTemplateAssetsIntoPageRenderer();
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->render(array('templateName' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'templateRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Templates/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Templates/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Partials/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Partials/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Layouts/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Layouts/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special.' => array('value.' => array('field' => 'pages')), 'levels' => '3', 'as' => 'menuMain', 'expandAll' => '1', 'includeSpacer' => '0', 'titleField' => 'nav_title // title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'as' => 'image'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('levels' => '5', 'entryLevel' => '2', 'expandAll' => '0', 'includeSpacer' => '0', 'as' => 'menuSub'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '40.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'includeNotInMenu' => '1', 'excludeUidList' => '1', 'as' => 'menuBreadcrumb'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'directory', 'special.' => array('value' => '5'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'menuTop'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '60.' => array('special' => 'directory', 'special.' => array('value' => '7'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'menuSocket'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '70.' => array('special' => 'directory', 'special.' => array('value' => ''), 'levels' => '1', 'includeSpacer' => '0', 'as' => 'menuSide'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '80.' => array('languages' => 'auto', 'as' => 'menuLanguage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '90.' => array('special' => 'directory', 'special.' => array('value' => '9'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'footerLeftSideMenu')), 'settings.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'framework' => 'UiKit', 'rootPid' => '1', 'targetPid' => '15', 'logoFilePath' => 'fileadmin/user_upload/XFAB_Logo_White.svg', 'logoFileWidth' => '140', 'logoFileAltAttr' => 'XFAB Logo', 'logoShrink' => '1', 'topMenuPosition' => 'right', 'mainMenuEntryLevel' => '0', 'mainMenuPosition' => 'right', 'mainMenuSticky' => '1', 'mainMenuMegaExclude' => '', 'mainMenuMegaBackgroundColor' => 'default', 'mainMenuMegaWidth' => 'Navbar', 'showSubMenuInSidebars' => '0', 'socketMenuPosition' => 'right', 'socketMenuSourceID' => '7', 'copyrightFooterText' => 'X-FAB Silicon Foundries SE', 'topMenuSourceID' => '5', 'sideMenuSourceID' => '', 'headerInnerBuild' => 'default', 'headerWidth' => '0', 'headerInnerAlign' => 'left', 'headerOuterBackgroundColor' => 'primary', 'headerTopmenuBackgroundColor' => 'primary', 'headerMainmenuBackgroundColor' => 'primary', 'footerBackgroundColor' => 'muted', 'footerBackgroundInlineColor' => '', 'footerSitemapMenu' => '1', 'footerSitemapExcludePageID' => '', 'socketBackgroundColor' => 'muted', 'socketBackgroundInlineColor' => '', 'showBreadcrumb' => '0', 'showBreadcrumbHomeLink' => '1', 'breadcrumbBackgroundColor' => 'primary', 'newsDetailPid' => '{$plugin.tx_akt_sitepackage.settings.newsDetailPid}', 'socialMediaMenu' => '1', 'facebookPath' => 'https://www.facebook.com/xfab.corporate', 'twitterPath' => 'https://twitter.com/xfab_foundry?lang=de', 'youtubePath' => 'https://www.youtube.com/channel/UCZVqNluNp8W0Ni9CQ0PTvyQ', 'linkedInPath' => 'https://de.linkedin.com/company/x-fab', 'xingPath' => '', 'instagramPath' => '', 'footerContent.' => array('footerContentSourceUID' => '')), 'variables.' => array('contentMain' => 'CONTENT', 'contentMain.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=0')), 'contentFocus' => 'CONTENT', 'contentFocus.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=1')), 'headers' => '< lib.contentElement', 'headers.' => array('templateName' => 'Header'))))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 821
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject), array('templateName' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'templateRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Templates/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Templates/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Partials/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Partials/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Layouts/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Layouts/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special.' => array('value.' => array('field' => 'pages')), 'levels' => '3', 'as' => 'menuMain', 'expandAll' => '1', 'includeSpacer' => '0', 'titleField' => 'nav_title // title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'as' => 'image'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('levels' => '5', 'entryLevel' => '2', 'expandAll' => '0', 'includeSpacer' => '0', 'as' => 'menuSub'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '40.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'includeNotInMenu' => '1', 'excludeUidList' => '1', 'as' => 'menuBreadcrumb'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'directory', 'special.' => array('value' => '5'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'menuTop'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '60.' => array('special' => 'directory', 'special.' => array('value' => '7'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'menuSocket'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '70.' => array('special' => 'directory', 'special.' => array('value' => ''), 'levels' => '1', 'includeSpacer' => '0', 'as' => 'menuSide'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '80.' => array('languages' => 'auto', 'as' => 'menuLanguage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '90.' => array('special' => 'directory', 'special.' => array('value' => '9'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'footerLeftSideMenu')), 'settings.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'framework' => 'UiKit', 'rootPid' => '1', 'targetPid' => '15', 'logoFilePath' => 'fileadmin/user_upload/XFAB_Logo_White.svg', 'logoFileWidth' => '140', 'logoFileAltAttr' => 'XFAB Logo', 'logoShrink' => '1', 'topMenuPosition' => 'right', 'mainMenuEntryLevel' => '0', 'mainMenuPosition' => 'right', 'mainMenuSticky' => '1', 'mainMenuMegaExclude' => '', 'mainMenuMegaBackgroundColor' => 'default', 'mainMenuMegaWidth' => 'Navbar', 'showSubMenuInSidebars' => '0', 'socketMenuPosition' => 'right', 'socketMenuSourceID' => '7', 'copyrightFooterText' => 'X-FAB Silicon Foundries SE', 'topMenuSourceID' => '5', 'sideMenuSourceID' => '', 'headerInnerBuild' => 'default', 'headerWidth' => '0', 'headerInnerAlign' => 'left', 'headerOuterBackgroundColor' => 'primary', 'headerTopmenuBackgroundColor' => 'primary', 'headerMainmenuBackgroundColor' => 'primary', 'footerBackgroundColor' => 'muted', 'footerBackgroundInlineColor' => '', 'footerSitemapMenu' => '1', 'footerSitemapExcludePageID' => '', 'socketBackgroundColor' => 'muted', 'socketBackgroundInlineColor' => '', 'showBreadcrumb' => '0', 'showBreadcrumbHomeLink' => '1', 'breadcrumbBackgroundColor' => 'primary', 'newsDetailPid' => '{$plugin.tx_akt_sitepackage.settings.newsDetailPid}', 'socialMediaMenu' => '1', 'facebookPath' => 'https://www.facebook.com/xfab.corporate', 'twitterPath' => 'https://twitter.com/xfab_foundry?lang=de', 'youtubePath' => 'https://www.youtube.com/channel/UCZVqNluNp8W0Ni9CQ0PTvyQ', 'linkedInPath' => 'https://de.linkedin.com/company/x-fab', 'xingPath' => '', 'instagramPath' => '', 'footerContent.' => array('footerContentSourceUID' => '')), 'variables.' => array('contentMain' => 'CONTENT', 'contentMain.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=0')), 'contentFocus' => 'CONTENT', 'contentFocus.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=1')), 'headers' => '< lib.contentElement', 'headers.' => array('templateName' => 'Header'))))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 737
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'] ?? [] as $className) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'templateRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Templates/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Templates/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Partials/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Partials/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Layouts/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Layouts/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special.' => array('value.' => array('field' => 'pages')), 'levels' => '3', 'as' => 'menuMain', 'expandAll' => '1', 'includeSpacer' => '0', 'titleField' => 'nav_title // title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'as' => 'image'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('levels' => '5', 'entryLevel' => '2', 'expandAll' => '0', 'includeSpacer' => '0', 'as' => 'menuSub'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '40.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'includeNotInMenu' => '1', 'excludeUidList' => '1', 'as' => 'menuBreadcrumb'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'directory', 'special.' => array('value' => '5'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'menuTop'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '60.' => array('special' => 'directory', 'special.' => array('value' => '7'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'menuSocket'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '70.' => array('special' => 'directory', 'special.' => array('value' => ''), 'levels' => '1', 'includeSpacer' => '0', 'as' => 'menuSide'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '80.' => array('languages' => 'auto', 'as' => 'menuLanguage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '90.' => array('special' => 'directory', 'special.' => array('value' => '9'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'footerLeftSideMenu')), 'settings.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'framework' => 'UiKit', 'rootPid' => '1', 'targetPid' => '15', 'logoFilePath' => 'fileadmin/user_upload/XFAB_Logo_White.svg', 'logoFileWidth' => '140', 'logoFileAltAttr' => 'XFAB Logo', 'logoShrink' => '1', 'topMenuPosition' => 'right', 'mainMenuEntryLevel' => '0', 'mainMenuPosition' => 'right', 'mainMenuSticky' => '1', 'mainMenuMegaExclude' => '', 'mainMenuMegaBackgroundColor' => 'default', 'mainMenuMegaWidth' => 'Navbar', 'showSubMenuInSidebars' => '0', 'socketMenuPosition' => 'right', 'socketMenuSourceID' => '7', 'copyrightFooterText' => 'X-FAB Silicon Foundries SE', 'topMenuSourceID' => '5', 'sideMenuSourceID' => '', 'headerInnerBuild' => 'default', 'headerWidth' => '0', 'headerInnerAlign' => 'left', 'headerOuterBackgroundColor' => 'primary', 'headerTopmenuBackgroundColor' => 'primary', 'headerMainmenuBackgroundColor' => 'primary', 'footerBackgroundColor' => 'muted', 'footerBackgroundInlineColor' => '', 'footerSitemapMenu' => '1', 'footerSitemapExcludePageID' => '', 'socketBackgroundColor' => 'muted', 'socketBackgroundInlineColor' => '', 'showBreadcrumb' => '0', 'showBreadcrumbHomeLink' => '1', 'breadcrumbBackgroundColor' => 'primary', 'newsDetailPid' => '{$plugin.tx_akt_sitepackage.settings.newsDetailPid}', 'socialMediaMenu' => '1', 'facebookPath' => 'https://www.facebook.com/xfab.corporate', 'twitterPath' => 'https://twitter.com/xfab_foundry?lang=de', 'youtubePath' => 'https://www.youtube.com/channel/UCZVqNluNp8W0Ni9CQ0PTvyQ', 'linkedInPath' => 'https://de.linkedin.com/company/x-fab', 'xingPath' => '', 'instagramPath' => '', 'footerContent.' => array('footerContentSourceUID' => '')), 'variables.' => array('contentMain' => 'CONTENT', 'contentMain.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=0')), 'contentFocus' => 'CONTENT', 'contentFocus.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=1')), 'headers' => '< lib.contentElement', 'headers.' => array('templateName' => 'Header'))), '10')
in /html/xfab.com/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 683
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && strpos($theKey, '.') === false) {
                $conf = $setup[$theKey . '.'];
                $content .= $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $content;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('typeNum' => '0', 'shortcutIcon' => 'EXT:akt_sitepackage_client_extender/Resources/Public/Images/favicon.ico', 'FLUIDTEMPLATE', '10.' => array('templateName' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'templateRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Templates/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Templates/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Partials/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Partials/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:akt_sitepackage/Resources/Private/Layouts/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Layouts/Page/', 'EXT:akt_sitepackage_client_extender/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special.' => array('value.' => array('field' => 'pages')), 'levels' => '3', 'as' => 'menuMain', 'expandAll' => '1', 'includeSpacer' => '0', 'titleField' => 'nav_title // title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'as' => 'image'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('levels' => '5', 'entryLevel' => '2', 'expandAll' => '0', 'includeSpacer' => '0', 'as' => 'menuSub'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '40.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'includeNotInMenu' => '1', 'excludeUidList' => '1', 'as' => 'menuBreadcrumb'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'directory', 'special.' => array('value' => '5'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'menuTop'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '60.' => array('special' => 'directory', 'special.' => array('value' => '7'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'menuSocket'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '70.' => array('special' => 'directory', 'special.' => array('value' => ''), 'levels' => '1', 'includeSpacer' => '0', 'as' => 'menuSide'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '80.' => array('languages' => 'auto', 'as' => 'menuLanguage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '90.' => array('special' => 'directory', 'special.' => array('value' => '9'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'footerLeftSideMenu')), 'settings.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'framework' => 'UiKit', 'rootPid' => '1', 'targetPid' => '15', 'logoFilePath' => 'fileadmin/user_upload/XFAB_Logo_White.svg', 'logoFileWidth' => '140', 'logoFileAltAttr' => 'XFAB Logo', 'logoShrink' => '1', 'topMenuPosition' => 'right', 'mainMenuEntryLevel' => '0', 'mainMenuPosition' => 'right', 'mainMenuSticky' => '1', 'mainMenuMegaExclude' => '', 'mainMenuMegaBackgroundColor' => 'default', 'mainMenuMegaWidth' => 'Navbar', 'showSubMenuInSidebars' => '0', 'socketMenuPosition' => 'right', 'socketMenuSourceID' => '7', 'copyrightFooterText' => 'X-FAB Silicon Foundries SE', 'topMenuSourceID' => '5', 'sideMenuSourceID' => '', 'headerInnerBuild' => 'default', 'headerWidth' => '0', 'headerInnerAlign' => 'left', 'headerOuterBackgroundColor' => 'primary', 'headerTopmenuBackgroundColor' => 'primary', 'headerMainmenuBackgroundColor' => 'primary', 'footerBackgroundColor' => 'muted', 'footerBackgroundInlineColor' => '', 'footerSitemapMenu' => '1', 'footerSitemapExcludePageID' => '', 'socketBackgroundColor' => 'muted', 'socketBackgroundInlineColor' => '', 'showBreadcrumb' => '0', 'showBreadcrumbHomeLink' => '1', 'breadcrumbBackgroundColor' => 'primary', 'newsDetailPid' => '{$plugin.tx_akt_sitepackage.settings.newsDetailPid}', 'socialMediaMenu' => '1', 'facebookPath' => 'https://www.facebook.com/xfab.corporate', 'twitterPath' => 'https://twitter.com/xfab_foundry?lang=de', 'youtubePath' => 'https://www.youtube.com/channel/UCZVqNluNp8W0Ni9CQ0PTvyQ', 'linkedInPath' => 'https://de.linkedin.com/company/x-fab', 'xingPath' => '', 'instagramPath' => '', 'footerContent.' => array('footerContentSourceUID' => '')), 'variables.' => array('contentMain' => 'CONTENT', 'contentMain.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=0')), 'contentFocus' => 'CONTENT', 'contentFocus.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=1')), 'headers' => '< lib.contentElement', 'headers.' => array('templateName' => 'Header'))), 'meta.' => array('viewport' => 'width=device-width, initial-scale=1', 'robots' => 'index,follow', 'apple-mobile-web-app-capable' => 'no', 'description' => '', 'description.' => array('override.' => array('field' => 'description')), 'author' => '', 'author.' => array('override.' => array('field' => 'author')), 'keywords' => '', 'keywords.' => array('override.' => array('field' => 'keywords')), 'X-UA-Compatible' => 'IE=edge', 'X-UA-Compatible.' => array('attribute' => 'http-equiv'), 'og:title.' => array('attribute' => 'property', 'field' => 'title'), 'og:site_name.' => array('attribute' => 'property', 'data' => 'TSFE:tmpl|setup|sitetitle'), 'og:description' => '', 'og:description.' => array('attribute' => 'property', 'field' => 'description'), 'og:image.' => array('attribute' => 'property', 'stdWrap.' => array('cObject' => 'FILES', 'cObject.' => array('references.' => array('data' => 'levelfield:-1, media, slide'), 'maxItems' => '1', 'renderObj' => 'COA', 'renderObj.' => array('IMG_RESOURCE', '10.' => array('file.' => array('import.' => array('data' => 'file:current:uid'), 'treatIdAsReference' => '1', 'width' => '1280c', 'height' => '720c'), 'stdWrap.' => array('typolink.' => array('parameter.' => array('data' => 'TSFE:lastImgResourceInfo|3'), 'returnLast' => 'url', 'forceAbsoluteUrl' => '1')))))))), 'includeCSSLibs.' => array('akt_sitepackage_layout' => 'EXT:akt_sitepackage/Resources/Public/Css/Framework/UiKit/uikit.min.css'), 'includeCSS.' => array('akt_sitepackage_font' => 'EXT:akt_sitepackage/Resources/Public/Css/Page/akt_sitepackage_font.css', 'akt_sitepackage_default' => 'EXT:akt_sitepackage/Resources/Public/Css/Page/akt_sitepackage_default.css', 'timeline' => 'EXT:akt_sitepackage/Resources/Public/Scss/timeline.scss', 'timeline.' => array('outputdir' => 'EXT:akt_sitepackage/Resources/Public/Scss/timeline-output.css'), 'akt_sitepackage_client_extender_layout' => 'EXT:akt_sitepackage_client_extender/Resources/Public/Scss/layout.scss', 'tooltipster' => 'EXT:akt_servicesearch/Resources/Public/Css/tooltipster.css', 'requestform' => 'EXT:akt_servicesearch/Resources/Public/Css/request-forn.css', 'ckefontawesome' => 'https://use.fontawesome.com/releases/v5.15.2/css/all.css', 'ckefontawesome.' => array('external' => '1', 'if.' => array('isTrue' => '1')), 'akt_pagehits' => 'EXT:akt_pagehits/Resources/Public/Css/akt_pagehits.css', 'tx_aktpardot_registration' => 'EXT:akt_pardot/Resources/Public/Css/tx_aktpardot_registration.css', 'tx_aktlogincode_form' => 'EXT:akt_login_code/Resources/Public/Css/tx-aktlogin-form.css'), 'includeJSLibs.' => array(), 'includeJS.' => array(), 'includeJSFooterlibs.' => array('akt_sitepackage_scripts' => 'EXT:akt_sitepackage/Resources/Public/JavaScript/Libs/jquery-3.3.1.min.js', 'recaptcha' => 'https://www.google.com/recaptcha/api.js?hl='), 'includeJSFooter.' => array('akt_sitepackage_framework_script' => 'EXT:akt_sitepackage/Resources/Public/JavaScript/Framework/UiKit/uikit.min.js', 'akt_sitepackage_framework_script.' => array('forceOnTop' => '1'), 'akt_sitepackage_framework_iconscript' => 'EXT:akt_sitepackage/Resources/Public/JavaScript/Framework/UiKit/uikit-icons.min.js', 'akt_sitepackage_main_script' => 'EXT:akt_sitepackage_client_extender/Resources/Public/JavaScript/Dist/scriptsOverrideSitepackage.js', 'mindshapecookieconsent' => 'EXT:akt_sitepackage_client_extender/Resources/Public/JavaScript/Dist/mindshape_cookie_consent.js', 'akt_sitepackage_client_extender_scripts' => 'EXT:akt_sitepackage_client_extender/Resources/Public/JavaScript/Dist/scripts.js', 'browser_update' => 'EXT:akt_sitepackage_client_extender/Resources/Public/JavaScript/Dist/browser_update.js', 'file100' => 'EXT:akt_servicesearch/Resources/Public/Js/script.js', 'file101' => 'EXT:akt_servicesearch/Resources/Public/Js/jquery.tooltipster.min.js', 'powermailJQueryDatepicker' => 'EXT:powermail/Resources/Public/JavaScript/Libraries/jquery.datetimepicker.min.js', 'powermailJQueryFormValidation' => 'EXT:powermail/Resources/Public/JavaScript/Libraries/parsley.min.js', 'powermailJQueryTabs' => 'EXT:powermail/Resources/Public/JavaScript/Powermail/Tabs.min.js', 'powermailForm' => 'EXT:powermail/Resources/Public/JavaScript/Powermail/Form.min.js', 'tx_aktpardot_registration' => 'EXT:akt_pardot/Resources/Public/JavaScript/tx_aktpardot_registration.js', 'tx_aktlogincode_form' => 'EXT:akt_login_code/Resources/Public/JavaScript/tx_aktlogincode_form.js'), 'TEXT', '1.' => array('value' => ' <div id="googleIframe"></div>'), 'bodyTagCObject' => 'TEXT', 'bodyTagCObject.' => array('field' => 'uid', 'wrap' => '<body id="uk-page-|">'), 'headerData.' => array('TEXT', '5.' => array('noTrimWrap' => '|<title>X-FAB: |</title>|', 'field' => 'seo_title// subtitle // title'), 'TEXT', '27.' => array('value' => ' <link rel="apple-touch-icon" sizes="180x180" href="typo3conf/ext/akt_sitepackage_client_extender/Resources/Public/Icons/Favicon/apple-touch-icon.png"> <link rel="icon" type="image/png" sizes="32x32" href="typo3conf/ext/akt_sitepackage_client_extender/Resources/Public/Icons/Favicon/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="typo3conf/ext/akt_sitepackage_client_extender/Resources/Public/Icons/Favicon/favicon-16x16.png"> <link rel="manifest" href="typo3conf/ext/akt_sitepackage_client_extender/Resources/Public/Icons/Favicon/site.webmanifest"> <link rel="mask-icon" href="typo3conf/ext/akt_sitepackage_client_extender/Resources/Public/Icons/Favicon/safari-pinned-tab.svg" color="#5bbad5"> <meta name="msapplication-TileColor" content="#ffffff"> <meta name="theme-color" content="#ffffff"> <meta name="msapplication-config" content="typo3conf/ext/akt_sitepackage_client_extender/Resources/Public/Icons/Favicon/browserconfig.xml">')), 'jsInline.' => array('TEXT', '1508480348393.' => array('value' => 'function onRecaptchaSubmit() { document.querySelectorAll(\'[data-callback="onRecaptchaSubmit"]\')[0].form.submit(); return false; }', 'if.' => array('isTrue' => '0')))))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 246
     * @return string
     */
    protected function generatePageContent(TypoScriptFrontendController $controller): string
    {
        $pageContent = $controller->cObj->cObjGet($controller->pSetup) ?: '';
        if ($controller->pSetup['wrap'] ?? false) {
            $pageContent = $controller->cObj->wrap($pageContent, $controller->pSetup['wrap']);
        }
        if ($controller->pSetup['stdWrap.'] ?? false) {
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 268
     */
    protected function generatePageContentWithHeader(TypoScriptFrontendController $controller, ?SiteLanguage $siteLanguage): string
    {
        // Generate the page content, this has to be first, as some additional TSFE-related code could have been written
        $pageContent = $this->generatePageContent($controller);
        $pageRenderer = $this->getPageRenderer();
        if ($controller->config['config']['moveJsFromHeaderToFooter'] ?? false) {
            $pageRenderer->enableMoveJsFromHeaderToFooter();
        }
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageContentWithHeader(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController), object(TYPO3\CMS\Core\Site\Entity\SiteLanguage))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 168
            // If 'disableAllHeaderCode' is set, all the header-code is discarded
            if ($controller->config['config']['disableAllHeaderCode'] ?? false) {
                $controller->content = $this->generatePageContent($controller);
            } else {
                $controller->content = $this->generatePageContentWithHeader($controller, $request->getAttribute('language', null));
            }

            $this->timeTracker->pull($this->timeTracker->LR ? $controller->content : '');
            $this->timeTracker->decStackPointer();
at TYPO3\CMS\Frontend\Http\RequestHandler->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/OutputCompression.php line 46
        // Throw away all output that may have happened during bootstrapping by weird extensions
        ob_clean();
        // Initialize output compression if configured
        $this->initializeOutputCompression();
        return $handler->handle($request);
    }

    /**
     * Initialize output compression if configured
at TYPO3\CMS\Frontend\Middleware\OutputCompression->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(TYPO3\CMS\Frontend\Http\RequestHandler))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3conf/ext/sourceopt/Classes/Middleware/CleanHtmlMiddleware.php line 39
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);

        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
at HTML\Sourceopt\Middleware\CleanHtmlMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3conf/ext/typoscript_rendering/Classes/Middleware/TypoScriptRenderingMiddleware.php line 43
    {
        $frontendController = $GLOBALS['TSFE'];
        $requestedContentType = $frontendController->config['config']['contentType'] ?? self::defaultContentType;
        if (!$frontendController->isGeneratePage() || !isset($request->getQueryParams()[self::argumentNamespace])) {
            return $this->amendContentType($handler->handle($request), $requestedContentType);
        }
        $this->ensureRequiredEnvironment();

        $frontendController->config['config']['debug'] = 0;
at Helhum\TyposcriptRendering\Middleware\TypoScriptRenderingMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelDataPersister.php line 44
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && $GLOBALS['TSFE']->isOutputting()
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelDataPersister->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelRenderer.php line 46
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && $GLOBALS['TSFE']->isOutputting()
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelRenderer->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/ContentLengthResponseHeader.php line 45
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && $GLOBALS['TSFE']->isOutputting()) {
at TYPO3\CMS\Frontend\Middleware\ContentLengthResponseHeader->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/ShortcutAndMountPointRedirect.php line 65
                return new RedirectResponse($externalUrl, 303);
            }
        }

        return $handler->handle($request);
    }

    protected function getRedirectUri(ServerRequestInterface $request): ?string
    {
at TYPO3\CMS\Frontend\Middleware\ShortcutAndMountPointRedirect->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/PrepareTypoScriptFrontendRendering.php line 118
                GeneralUtility::makeInstance($className)->checkDataSubmission($this->controller);
            }
        }

        return $handler->handle($request);
    }

    /**
     * Small helper function to convert charsets for arrays to UTF-8
at TYPO3\CMS\Frontend\Middleware\PrepareTypoScriptFrontendRendering->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/PageArgumentValidator.php line 99
                    ['code' => PageAccessFailureReasons::CACHEHASH_COMPARISON_FAILED]
                );
            }
        }
        return $handler->handle($request);
    }

    /**
     * Calculates a hash string based on additional parameters in the url.
at TYPO3\CMS\Frontend\Middleware\PageArgumentValidator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/MaintenanceMode.php line 53
        ) {
            return GeneralUtility::makeInstance(ErrorController::class)->unavailableAction($request, 'This page is temporarily unavailable.');
        }
        // Continue the regular stack if no maintenance mode is active
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\MaintenanceMode->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/PageResolver.php line 171
            }
            $this->controller->determineId();
        }

        return $handler->handle($request);
    }

    /**
     * Provides ways to bypass the '?id=[xxx]&type=[xx]' format, using either PATH_INFO or Server Rewrites
at TYPO3\CMS\Frontend\Middleware\PageResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/PreviewSimulator.php line 62
            $showHiddenRecords = ($this->context->hasAspect('visibility') ? $this->context->getAspect('visibility')->includeHidden() : false);
            $GLOBALS['TSFE']->fePreview = ($simulatingDate || $simulatingGroup || $showHiddenRecords);
        }

        return $handler->handle($request);
    }

    /**
     * Simulate dates for preview functionality
at TYPO3\CMS\Frontend\Middleware\PreviewSimulator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/redirects/Classes/Http/Middleware/RedirectHandler.php line 70
                return $response;
            }
        }

        return $handler->handle($request);
    }

    /**
     * Creates a PSR-7 compatible Response object
at TYPO3\CMS\Redirects\Http\Middleware\RedirectHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/StaticRouteResolver.php line 62

                return new HtmlResponse($content, 200, ['Content-Type' => $contentType]);
            }
        }
        return $handler->handle($request);
    }

    /**
     * Find the proper configuration for the static route in the static route configuration. Mainly:
at TYPO3\CMS\Frontend\Middleware\StaticRouteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3conf/ext/akt_login_code/Classes/Middleware/AjaxRoutes.php line 102
                return $response;
            }
        }

        return $handler->handle($request);
    }

    /**
     * @param $email
at Akt\AktLoginCode\Middleware\AjaxRoutes->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/SiteBaseRedirectResolver.php line 86
                $uri = $requestedUri->withPath(rtrim($requestedUri->getPath(), '/'));
                return new RedirectResponse($uri, 307);
            }
        }
        return $handler->handle($request);
    }
    /**
     * Checks if the language is allowed in Frontend, if not, check if there is valid BE user
     *
at TYPO3\CMS\Frontend\Middleware\SiteBaseRedirectResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelInitiator.php line 58
            $beUser = $GLOBALS['BE_USER'];
            $beUser->adminPanel = GeneralUtility::makeInstance(AdminPanelView::class);
            $beUser->extAdmEnabled = true;
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelInitiator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/SiteResolver.php line 68
        // At this point, we later get further route modifiers
        // for bw-compat we update $GLOBALS[TYPO3_REQUEST] to be used later in TSFE.
        $GLOBALS['TYPO3_REQUEST'] = $request;

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\SiteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3conf/ext/secure_downloads/Classes/Middleware/FileDeliveryMiddleware.php line 58
            [$jwt, $basePath] = explode('/', $cleanPath);
            return (new FileDelivery($jwt))->deliver($request);
        }

        return $handler->handle($request);
    }

    public function isResponsible(ServerRequestInterface $request)
    {
at Bitmotion\SecureDownloads\Middleware\FileDeliveryMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/adminpanel/Classes/Middleware/SqlLogging.php line 49
            $connectionPool = GeneralUtility::makeInstance(ConnectionPool::class);
            $connection = $connectionPool->getConnectionByName(ConnectionPool::DEFAULT_CONNECTION_NAME);
            $connection->getConfiguration()->setSQLLogger(GeneralUtility::makeInstance(DoctrineSqlLogger::class));
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Adminpanel\Middleware\SqlLogging->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/BackendUserAuthenticator.php line 95
            Bootstrap::loadExtTables();
            $this->setBackendUserAspect(GeneralUtility::makeInstance(Context::class), $GLOBALS['BE_USER']);
        }

        return $handler->handle($request);
    }

    /**
     * Creates the backend user object and returns it.
at TYPO3\CMS\Frontend\Middleware\BackendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/FrontendUserAuthenticator.php line 79

        // Register the frontend user as aspect
        $this->setFrontendUserAspect(GeneralUtility::makeInstance(Context::class), $frontendUser);

        return $handler->handle($request);
    }

    /**
     * It's possible to transfer a frontend user session via a GET/POST parameter 'FE_SESSION_KEY'.
at TYPO3\CMS\Frontend\Middleware\FrontendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/TypoScriptFrontendInitialization.php line 90
                GeneralUtility::callUserFunction($_funcRef, $_params, $GLOBALS['TSFE']);
            }
        }

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\TypoScriptFrontendInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3conf/ext/yoast_seo/Classes/Middleware/PageRequestMiddleware.php line 32
        if (YoastRequestHash::isValid($request->getServerParams())) {
            $context = GeneralUtility::makeInstance(Context::class);
            $context->setAspect('visibility', new VisibilityAspect(true));
        }
        return $handler->handle($request);
    }
}
at YoastSeoForTypo3\YoastSeo\Middleware\PageRequestMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/EidHandler.php line 50
    {
        $eID = $request->getParsedBody()['eID'] ?? $request->getQueryParams()['eID'] ?? null;

        if ($eID === null) {
            return $handler->handle($request);
        }

        // Remove any output produced until now
        ob_clean();
at TYPO3\CMS\Frontend\Middleware\EidHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/PreprocessRequestHook.php line 57
                $hookParameters = [];
                GeneralUtility::callUserFunction($hookFunction, $hookParameters, $hookParameters);
            }
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\PreprocessRequestHook->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/core/Classes/Middleware/NormalizedParamsAttribute.php line 58
        // refactored to have ServerRequest object available where it is needed. This global will be
        // deprecated then and removed.
        $GLOBALS['TYPO3_REQUEST'] = $request;

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Core\Middleware\NormalizedParamsAttribute->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Middleware/TimeTrackerInitialization.php line 49
        );
        $timeTracker->start();
        $timeTracker->push('');

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\TimeTrackerInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$97b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 67
     * @return ResponseInterface
     */
    public function handle(ServerRequestInterface $request): ResponseInterface
    {
        return $this->tip->handle($request);
    }

    /**
     * Seed the middleware stack with the inner request handler
at TYPO3\CMS\Core\Http\MiddlewareDispatcher->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/AbstractApplication.php line 108
    {
        $requestHandler = GeneralUtility::makeInstance($this->requestHandler);
        $dispatcher = $this->createMiddlewareDispatcher($requestHandler);

        return $dispatcher->handle($request);
    }

    /**
     * Set up the application and shut it down afterwards
at TYPO3\CMS\Core\Http\AbstractApplication->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/frontend/Classes/Http/Application.php line 69
        if (!$this->checkIfEssentialConfigurationExists()) {
            return $this->installToolRedirect();
        }
        $this->initializeContext();
        return parent::handle($request);
    }

    /**
     * Check if LocalConfiguration.php and PackageStates.php exist
at TYPO3\CMS\Frontend\Http\Application->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/xfab.com/public/typo3/sysext/core/Classes/Http/AbstractApplication.php line 120
    final public function run(callable $execute = null)
    {
        try {
            $response = $this->handle(
                \TYPO3\CMS\Core\Http\ServerRequestFactory::fromGlobals()
            );
            if ($execute !== null) {
                call_user_func($execute);
            }
at TYPO3\CMS\Core\Http\AbstractApplication->run()
in /html/xfab.com/public/index.php line 24
// Set up the application for the frontend
call_user_func(function () {
    $classLoader = require dirname(__DIR__).'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});
at {closure}()
in /html/xfab.com/public/index.php line 25
call_user_func(function () {
    $classLoader = require dirname(__DIR__).'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});