diff --git a/core/includes/install.core.inc b/core/includes/install.core.inc
index cfc0497..2fbd1d9 100644
--- a/core/includes/install.core.inc
+++ b/core/includes/install.core.inc
@@ -24,6 +24,7 @@
 use Drupal\Core\StreamWrapper\PublicStream;
 use Drupal\Core\Extension\ExtensionDiscovery;
 use Drupal\Core\DependencyInjection\ContainerBuilder;
+use Drupal\Core\Config\FileStorage;
 use Drupal\Core\Url;
 use Drupal\language\Entity\ConfigurableLanguage;
 use Symfony\Cmf\Component\Routing\RouteObjectInterface;
@@ -190,6 +191,8 @@ function install_state_defaults() {
     'completed_task' => NULL,
     // TRUE when there are valid config directories.
     'config_verified' => FALSE,
+    // TRUE when there is existing configuration in the default directory.
+    'config_existing' => FALSE,
     // TRUE when there is a valid database connection.
     'database_verified' => FALSE,
     // TRUE if database is empty & ready to install.
@@ -416,6 +419,20 @@ function install_begin_request($class_loader, &$install_state) {
   // If Drupal is being installed behind a proxy, configure the request.
   ReverseProxyMiddleware::setSettingsOnRequest($request, Settings::getInstance());
 
+  // Determine whether base system services are ready to operate.
+  if ($install_state['config_verified']) {
+    // Reading from the config store is possible after the kernel is booted.
+    $storage = new FileStorage($sync_directory);
+    $existing_extensions = $storage->read('core.extension');
+    if (!empty($existing_extensions)) {
+      $install_state['config_existing'] = TRUE;
+      $install_state['parameters']['profile'] = $existing_extensions['profile'];
+      if (isset($existing_extensions['langcode'])) {
+        $install_state['parameters']['langcode'] = $existing_extensions['langcode'];
+      }
+    }
+  }
+
   // Register the file translation service.
   if (isset($GLOBALS['config']['locale.settings']['translation']['path'])) {
     $directory = $GLOBALS['config']['locale.settings']['translation']['path'];
@@ -766,13 +783,31 @@ function install_tasks($install_state) {
     'install_bootstrap_full' => [
       'run' => INSTALL_TASK_RUN_IF_REACHED,
     ],
+    // Install modules and themes on first site install.
     'install_profile_modules' => [
       'display_name' => t('Install site'),
+      'display' => !$install_state['config_existing'],
       'type' => 'batch',
+      'run' => !$install_state['config_existing'] ? INSTALL_TASK_RUN_IF_NOT_COMPLETED : INSTALL_TASK_SKIP,
     ],
     'install_profile_themes' => [
+      'run' => !$install_state['config_existing'] ? INSTALL_TASK_RUN_IF_NOT_COMPLETED : INSTALL_TASK_SKIP,
+    ],
+    // Install the modules and themes via synchronisation.
+    'install_set_existing_site_uuid' => [
+      'run' => $install_state['config_existing'] ? INSTALL_TASK_RUN_IF_NOT_COMPLETED : INSTALL_TASK_SKIP,
+    ],
+    'install_initial_config_sync' => [
+      'display_name' => t('Install site'),
+      'display' => $install_state['config_existing'],
+      'type' => 'batch',
+      'run' => $install_state['config_existing'] ? INSTALL_TASK_RUN_IF_NOT_COMPLETED : INSTALL_TASK_SKIP,
+    ],
+    'install_extra_profile_modules' => [
+      'run' => $install_state['config_existing'] ? INSTALL_TASK_RUN_IF_NOT_COMPLETED : INSTALL_TASK_SKIP,
     ],
     'install_install_profile' => [
+      'run' => !$install_state['config_existing'] ? INSTALL_TASK_RUN_IF_NOT_COMPLETED : INSTALL_TASK_SKIP,
     ],
     'install_import_translations' => [
       'display_name' => t('Set up translations'),
@@ -782,8 +817,17 @@ function install_tasks($install_state) {
     ],
     'install_configure_form' => [
       'display_name' => t('Configure site'),
+      'display' => !$install_state['config_existing'],
       'type' => 'form',
       'function' => 'Drupal\Core\Installer\Form\SiteConfigureForm',
+      'run' => !$install_state['config_existing'] ? INSTALL_TASK_RUN_IF_NOT_COMPLETED : INSTALL_TASK_SKIP,
+    ],
+    'install_admin_account_form' => [
+      'display_name' => t('Configure administrator account'),
+      'display' => $install_state['config_existing'],
+      'type' => 'form',
+      'function' => 'Drupal\Core\Installer\Form\SiteAdminForm',
+      'run' => $install_state['config_existing'] ? INSTALL_TASK_RUN_IF_NOT_COMPLETED : INSTALL_TASK_SKIP,
     ],
   ];
 
@@ -813,6 +857,12 @@ function install_tasks($install_state) {
       'type' => 'batch',
       'run' => $needs_translations ? INSTALL_TASK_RUN_IF_NOT_COMPLETED : INSTALL_TASK_SKIP,
     ],
+    'install_finish_config_sync' => [
+      'display_name' => t('Finish configuration synchronisation'),
+      'display' => $install_state['config_existing'],
+      'type' => 'batch',
+      'run' => $install_state['config_existing'] ? INSTALL_TASK_RUN_IF_NOT_COMPLETED : INSTALL_TASK_SKIP,
+    ],
     'install_finished' => [
     ],
   ];
@@ -1025,6 +1075,10 @@ function install_verify_requirements(&$install_state) {
   // Verify existence of all required modules.
   $requirements += drupal_verify_profile($install_state);
 
+  if ($install_state['config_existing']) {
+
+  }
+
   return install_display_requirements($install_state, $requirements);
 }
 
@@ -1569,15 +1623,29 @@ function install_profile_themes(&$install_state) {
  *   An array of information about the current installation state.
  */
 function install_install_profile(&$install_state) {
+
+  if ($install_state['config_existing']) {
+    \Drupal::service('config.installer')
+      ->setSyncing(TRUE)
+      ->setSourceStorage(\Drupal::service('config.storage.sync'));
+  }
+
+  // Install the profile.
   \Drupal::service('module_installer')->install([drupal_get_profile()], FALSE);
-  // Install all available optional config. During installation the module order
-  // is determined by dependencies. If there are no dependencies between modules
-  // then the order in which they are installed is dependent on random factors
-  // like PHP version. Optional configuration therefore might or might not be
-  // created depending on this order. Ensuring that we have installed all of the
-  // optional configuration whose dependencies can be met at this point removes
-  // any disparities that this creates.
-  \Drupal::service('config.installer')->installOptionalConfig();
+
+  if ($install_state['config_existing']) {
+    // Install all available optional config. During installation the module order
+    // is determined by dependencies. If there are no dependencies between modules
+    // then the order in which they are installed is dependent on random factors
+    // like PHP version. Optional configuration therefore might or might not be
+    // created depending on this order. Ensuring that we have installed all of the
+    // optional configuration whose dependencies can be met at this point removes
+    // any disparities that this creates.
+    \Drupal::service('config.installer')->installOptionalConfig();
+  }
+  else {
+    module_set_weight(drupal_get_profile(), 1000);
+  }
 
   // Ensure that the install profile's theme is used.
   // @see _drupal_maintenance_theme()
@@ -1752,6 +1820,87 @@ function install_finish_translations(&$install_state) {
   return $batches;
 }
 
+
+function install_set_existing_site_uuid(&$install_state) {
+  $system_site = _install_read_sync_config('system.site');
+  \Drupal::configFactory()->getEditable('system.site')->set('uuid', $system_site['uuid'])->save();
+}
+
+function install_verify_existing_config(&$install_state) {
+
+}
+
+
+function install_initial_config_sync(&$install_state) {
+  /** @var \Drupal\Core\Config\StorageInterface $sync_storage */
+  $sync_storage = \Drupal::service('config.storage.sync');
+  $storage = new \Drupal\Core\Config\StorageReplaceDataWrapper($sync_storage);
+  $extensions = $sync_storage->read('core.extension');
+
+  $listing = new \Drupal\Core\Extension\ExtensionDiscovery(\Drupal::root());
+  $listing->setProfileDirectories([]);
+  $profiles = $listing->scan('profile');
+
+  // Exclude profiles since we need to install their missing dependencies.
+  $extensions['module'] = array_diff_key($extensions['module'], $profiles);
+  $extensions['module'] = module_config_sort($extensions['module']);
+
+  $storage->replaceData('core.extension', $extensions);
+
+  return _install_config_sync($storage);
+}
+
+function install_finish_config_sync(&$install_state) {
+  return _install_config_sync(\Drupal::service('config.storage.sync'));
+}
+
+function _install_config_sync($storage) {
+  $batches = [];
+  $storage_comparer = new \Drupal\Core\Config\StorageComparer(
+    $storage,
+    \Drupal::service('config.storage'),
+    \Drupal::service('config.manager')
+  );
+
+  $config_importer = new \Drupal\Core\Config\ConfigImporter(
+    $storage_comparer,
+    \Drupal::service('event_dispatcher'),
+    \Drupal::service('config.manager'),
+    \Drupal::lock(),
+    \Drupal::service('config.typed'),
+    \Drupal::moduleHandler(),
+    \Drupal::service('module_installer'),
+    \Drupal::service('theme_handler'),
+    \Drupal::service('string_translation')
+  );
+
+  $sync_steps = $config_importer->initialize();
+  $batch = [
+    'operations' => [],
+    'finished' => ['\Drupal\Core\Config\ConfigImporter', 'finishBatch'],
+    'title' => t('Synchronizing configuration'),
+    'init_message' => t('Starting configuration synchronization.'),
+    'progress_message' => t('Completed step @current of @total.'),
+    'error_message' => t('Configuration synchronization has encountered an error.'),
+  ];
+  foreach ($sync_steps as $sync_step) {
+    $batch['operations'][] = [['\Drupal\Core\Config\ConfigImporter', 'processBatch'], [$config_importer, $sync_step]];
+  }
+  $batches[] = $batch;
+  return $batches;
+}
+
+
+function install_extra_profile_modules(&$install_state) {
+
+  // Not batching to install the profiles dependencies since most of them will
+  // be installed via the config sync.
+  $module_installer = \Drupal::getContainer()->get('module_installer');
+  $module_installer->install($install_state['profile_info']['dependencies']);
+
+}
+
+
 /**
  * Performs final installation steps and displays a 'finished' page.
  *
@@ -2217,3 +2366,12 @@ function install_write_profile($install_state) {
     throw new InstallProfileMismatchException($install_state['parameters']['profile'], $settings_profile, $settings_path, \Drupal::translation());
   }
 }
+
+/**
+ * @param $name
+ * @return array|bool|mixed|null|string
+ */
+function _install_read_sync_config($name) {
+  $storage = new FileStorage(config_get_config_directory(CONFIG_SYNC_DIRECTORY));
+  return $storage->read($name);
+}
diff --git a/core/lib/Drupal/Core/Config/ConfigImporter.php b/core/lib/Drupal/Core/Config/ConfigImporter.php
index 06fed4b..45e4a0a 100644
--- a/core/lib/Drupal/Core/Config/ConfigImporter.php
+++ b/core/lib/Drupal/Core/Config/ConfigImporter.php
@@ -1046,4 +1046,59 @@ protected function reInjectMe() {
     }
   }
 
+
+  /**
+   * Processes the config import batch and persists the importer.
+   *
+   * @param \Drupal\Core\Config\ConfigImporter $config_importer
+   *   The batch config importer object to persist.
+   * @param string $sync_step
+   *   The synchronization step to do.
+   * @param array $context
+   *   The batch context.
+   */
+  public static function processBatch(ConfigImporter $config_importer, $sync_step, &$context) {
+    if (!isset($context['sandbox']['config_importer'])) {
+      $context['sandbox']['config_importer'] = $config_importer;
+    }
+
+    $config_importer = $context['sandbox']['config_importer'];
+    $config_importer->doSyncStep($sync_step, $context);
+    if ($errors = $config_importer->getErrors()) {
+      if (!isset($context['results']['errors'])) {
+        $context['results']['errors'] = [];
+      }
+      $context['results']['errors'] += $errors;
+    }
+  }
+
+  /**
+   * Finish batch.
+   *
+   * This function is a static function to avoid serializing the ConfigSync
+   * object unnecessarily.
+   */
+  public static function finishBatch($success, $results, $operations) {
+    if ($success) {
+      if (!empty($results['errors'])) {
+        foreach ($results['errors'] as $error) {
+          drupal_set_message($error, 'error');
+          \Drupal::logger('config_sync')->error($error);
+        }
+        drupal_set_message(\Drupal::translation()->translate('The configuration was imported with errors.'), 'warning');
+      }
+      else {
+        drupal_set_message(\Drupal::translation()->translate('The configuration was imported successfully.'));
+      }
+    }
+    else {
+      // An error occurred.
+      // $operations contains the operations that remained unprocessed.
+      $error_operation = reset($operations);
+      $message = \Drupal::translation()->translate('An error occurred while processing %error_operation with arguments: @arguments', ['%error_operation' => $error_operation[0], '@arguments' => print_r($error_operation[1], TRUE)]);
+      drupal_set_message($message, 'error');
+    }
+  }
+
+
 }
diff --git a/core/lib/Drupal/Core/Config/StorageReplaceDataWrapper.php b/core/lib/Drupal/Core/Config/StorageReplaceDataWrapper.php
new file mode 100644
index 0000000..0bfa9fe
--- /dev/null
+++ b/core/lib/Drupal/Core/Config/StorageReplaceDataWrapper.php
@@ -0,0 +1,202 @@
+<?php
+
+namespace Drupal\Core\Config;
+
+use Drupal\Core\DependencyInjection\DependencySerializationTrait;
+
+/**
+ * Wraps a configuration storage to allow replacing specific configuration data.
+ */
+class StorageReplaceDataWrapper implements StorageInterface {
+  use DependencySerializationTrait;
+
+  /**
+   * The configuration storage to be wrapped.
+   *
+   * @var \Drupal\Core\Config\StorageInterface
+   */
+  protected $storage;
+
+  /**
+   * The configuration replacement data, keyed by configuration object name.
+   *
+   * @var array
+   */
+  protected $replacementData = [];
+
+  /**
+   * The storage collection.
+   *
+   * @var string
+   */
+  protected $collection;
+
+  /**
+   * Constructs a new StorageReplaceDataWrapper.
+   *
+   * @param \Drupal\Core\Config\StorageInterface $storage
+   *   A configuration storage to be used to read and write configuration.
+   * @param string $collection
+   *   (optional) The collection to store configuration in. Defaults to the
+   *   default collection.
+   */
+  public function __construct(StorageInterface $storage, $collection = StorageInterface::DEFAULT_COLLECTION) {
+    $this->storage = $storage;
+    $this->collection = $collection;
+    $this->replacementData[$collection] = [];
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function exists($name) {
+    return isset($this->replacementData[$this->collection][$name]) || $this->storage->exists($name);
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function read($name) {
+    if (isset($this->replacementData[$this->collection][$name])) {
+      return $this->replacementData[$this->collection][$name];
+    }
+    return $this->storage->read($name);
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function readMultiple(array $names) {
+    $data = $this->storage->readMultiple(($names));
+    foreach ($names as $name) {
+      if (isset($this->replacementData[$this->collection][$name])) {
+        $data[$name] = $this->replacementData[$this->collection][$name];
+      }
+    }
+    return $data;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function write($name, array $data) {
+    if (isset($this->replacementData[$this->collection][$name])) {
+      unset($this->replacementData[$this->collection][$name]);
+    }
+    return $this->storage->write($name, $data);
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function delete($name) {
+    if (isset($this->replacementData[$this->collection][$name])) {
+      unset($this->replacementData[$this->collection][$name]);
+    }
+    return $this->storage->delete($name);
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function rename($name, $new_name) {
+    if (isset($this->replacementData[$this->collection][$name])) {
+      $this->replacementData[$this->collection][$new_name] = $this->replacementData[$this->collection][$name];
+      unset($this->replacementData[$this->collection][$name]);
+    }
+    return $this->storage->rename($name, $new_name);
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function encode($data) {
+    return $this->storage->encode($data);
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function decode($raw) {
+    return $this->storage->decode($raw);
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function listAll($prefix = '') {
+    $names = $this->storage->listAll($prefix);
+    $additional_names = [];
+    if ($prefix === '') {
+      $additional_names = array_keys($this->replacementData[$this->collection]);
+    }
+    else {
+      foreach (array_keys($this->replacementData[$this->collection]) as $name) {
+        if (strpos($name, $prefix) === 0) {
+          $additional_names[] = $name;
+        }
+      }
+    }
+    if (!empty($additional_names)) {
+      $names = array_unique(array_merge($names, $additional_names));
+    }
+    return $names;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function deleteAll($prefix = '') {
+    if ($prefix === '') {
+      $this->replacementData[$this->collection] = [];
+    }
+    else {
+      foreach (array_keys($this->replacementData[$this->collection]) as $name) {
+        if (strpos($name, $prefix) === 0) {
+          unset($this->replacementData[$this->collection][$name]);
+        }
+      }
+    }
+    return $this->storage->deleteAll($prefix);
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function createCollection($collection) {
+    return new static(
+      $this->storage->createCollection($collection),
+      $collection
+    );
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getAllCollectionNames() {
+    return $this->storage->getAllCollectionNames();
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getCollectionName() {
+    return $this->collection;
+  }
+
+  /**
+   * Replaces the configuration object data with the supplied data.
+   *
+   * @param $name
+   *   The configuration object name whose data to replace.
+   * @param array $data
+   *   The configuration data.
+   *
+   * @return $this
+   */
+  public function replaceData($name, array $data) {
+    $this->replacementData[$this->collection][$name] = $data;
+    return $this;
+  }
+
+}
diff --git a/core/lib/Drupal/Core/Installer/Form/SiteAdminForm.php b/core/lib/Drupal/Core/Installer/Form/SiteAdminForm.php
new file mode 100644
index 0000000..3e79bea
--- /dev/null
+++ b/core/lib/Drupal/Core/Installer/Form/SiteAdminForm.php
@@ -0,0 +1,130 @@
+<?php
+
+namespace Drupal\Core\Installer\Form;
+
+use Drupal\Core\Form\FormBase;
+use Drupal\Core\Form\FormStateInterface;
+use Drupal\Core\State\StateInterface;
+use Drupal\user\UserStorageInterface;
+use Symfony\Component\DependencyInjection\ContainerInterface;
+
+/**
+ * Provides the site configuration form.
+ */
+class SiteAdminForm extends FormBase {
+
+  /**
+   * The user storage.
+   *
+   * @var \Drupal\user\UserStorageInterface
+   */
+  protected $userStorage;
+
+  /**
+   * The state service.
+   *
+   * @var \Drupal\Core\State\StateInterface
+   */
+  protected $state;
+
+  /**
+   * Constructs a new SiteConfigureForm.
+   *
+   * @param \Drupal\user\UserStorageInterface $user_storage
+   *   The user storage.
+   * @param \Drupal\Core\State\StateInterface $state
+   *   The state service.
+   */
+  public function __construct(UserStorageInterface $user_storage, StateInterface $state) {
+    $this->userStorage = $user_storage;
+    $this->state = $state;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public static function create(ContainerInterface $container) {
+    return new static(
+      $container->get('entity.manager')->getStorage('user'),
+      $container->get('state')
+    );
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getFormId() {
+    return 'install_admin_account_form';
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function buildForm(array $form, FormStateInterface $form_state) {
+    $form['#title'] = $this->t('Configure administrator account');
+
+    $form['admin_account'] = [
+      '#type' => 'fieldgroup',
+      '#title' => $this->t('Site maintenance account'),
+    ];
+    $form['admin_account']['account']['name'] = [
+      '#type' => 'textfield',
+      '#title' => $this->t('Username'),
+      '#maxlength' => USERNAME_MAX_LENGTH,
+      '#description' => $this->t("Several special characters are allowed, including space, period (.), hyphen (-), apostrophe ('), underscore (_), and the @ sign."),
+      '#required' => TRUE,
+      '#attributes' => ['class' => ['username']],
+    ];
+    $form['admin_account']['account']['pass'] = [
+      '#type' => 'password_confirm',
+      '#required' => TRUE,
+      '#size' => 25,
+    ];
+    $form['admin_account']['account']['#tree'] = TRUE;
+    $form['admin_account']['account']['mail'] = [
+      '#type' => 'email',
+      '#title' => $this->t('Email address'),
+      '#required' => TRUE,
+    ];
+
+    $form['actions'] = ['#type' => 'actions'];
+    $form['actions']['submit'] = [
+      '#type' => 'submit',
+      '#value' => $this->t('Save and continue'),
+      '#weight' => 15,
+      '#button_type' => 'primary',
+    ];
+
+    return $form;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function validateForm(array &$form, FormStateInterface $form_state) {
+    if ($error = user_validate_name($form_state->getValue(['account', 'name']))) {
+      $form_state->setErrorByName('account][name', $error);
+    }
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function submitForm(array &$form, FormStateInterface $form_state) {
+    $account_values = $form_state->getValue('account');
+
+    // We precreated user 1 with placeholder values. Let's save the real values.
+    $account = $this->userStorage->load(1);
+    $account->init = $account->mail = $account_values['mail'];
+    $account->roles = $account->getRoles();
+    $account->activate();
+    $account->timezone = $form_state->getValue('date_default_timezone');
+    $account->pass = $account_values['pass'];
+    $account->name = $account_values['name'];
+    $account->save();
+
+    // Record when this install ran.
+    $this->state->set('install_time', $_SERVER['REQUEST_TIME']);
+  }
+
+}
diff --git a/core/modules/config/src/Form/ConfigSingleImportForm.php b/core/modules/config/src/Form/ConfigSingleImportForm.php
index fcb3883..704e986 100644
--- a/core/modules/config/src/Form/ConfigSingleImportForm.php
+++ b/core/modules/config/src/Form/ConfigSingleImportForm.php
@@ -3,7 +3,7 @@
 namespace Drupal\config\Form;
 
 use Drupal\Component\Serialization\Exception\InvalidDataTypeException;
-use Drupal\config\StorageReplaceDataWrapper;
+use Drupal\Core\Config\StorageReplaceDataWrapper;
 use Drupal\Core\Config\ConfigImporter;
 use Drupal\Core\Config\ConfigImporterException;
 use Drupal\Core\Config\ConfigManagerInterface;
diff --git a/core/modules/config/src/Form/ConfigSync.php b/core/modules/config/src/Form/ConfigSync.php
index fe1b2e4..3b59b76 100644
--- a/core/modules/config/src/Form/ConfigSync.php
+++ b/core/modules/config/src/Form/ConfigSync.php
@@ -335,15 +335,14 @@ public function submitForm(array &$form, FormStateInterface $form_state) {
         $sync_steps = $config_importer->initialize();
         $batch = [
           'operations' => [],
-          'finished' => [get_class($this), 'finishBatch'],
+          'finished' => ['\Drupal\Core\Config\ConfigImporter', 'finishBatch'],
           'title' => t('Synchronizing configuration'),
           'init_message' => t('Starting configuration synchronization.'),
           'progress_message' => t('Completed step @current of @total.'),
           'error_message' => t('Configuration synchronization has encountered an error.'),
-          'file' => __DIR__ . '/../../config.admin.inc',
         ];
         foreach ($sync_steps as $sync_step) {
-          $batch['operations'][] = [[get_class($this), 'processBatch'], [$config_importer, $sync_step]];
+          $batch['operations'][] = [['\Drupal\Core\Config\ConfigImporter', 'processBatch'], [$config_importer, $sync_step]];
         }
 
         batch_set($batch);
@@ -367,20 +366,11 @@ public function submitForm(array &$form, FormStateInterface $form_state) {
    *   The synchronization step to do.
    * @param array $context
    *   The batch context.
+   *
+   * @deprecated
    */
   public static function processBatch(ConfigImporter $config_importer, $sync_step, &$context) {
-    if (!isset($context['sandbox']['config_importer'])) {
-      $context['sandbox']['config_importer'] = $config_importer;
-    }
-
-    $config_importer = $context['sandbox']['config_importer'];
-    $config_importer->doSyncStep($sync_step, $context);
-    if ($errors = $config_importer->getErrors()) {
-      if (!isset($context['results']['errors'])) {
-        $context['results']['errors'] = [];
-      }
-      $context['results']['errors'] += $errors;
-    }
+    ConfigImporter::processBatch($config_importer, $sync_step, $context);
   }
 
   /**
@@ -388,27 +378,11 @@ public static function processBatch(ConfigImporter $config_importer, $sync_step,
    *
    * This function is a static function to avoid serializing the ConfigSync
    * object unnecessarily.
+   *
+   * @deprecated
    */
   public static function finishBatch($success, $results, $operations) {
-    if ($success) {
-      if (!empty($results['errors'])) {
-        foreach ($results['errors'] as $error) {
-          drupal_set_message($error, 'error');
-          \Drupal::logger('config_sync')->error($error);
-        }
-        drupal_set_message(\Drupal::translation()->translate('The configuration was imported with errors.'), 'warning');
-      }
-      else {
-        drupal_set_message(\Drupal::translation()->translate('The configuration was imported successfully.'));
-      }
-    }
-    else {
-      // An error occurred.
-      // $operations contains the operations that remained unprocessed.
-      $error_operation = reset($operations);
-      $message = \Drupal::translation()->translate('An error occurred while processing %error_operation with arguments: @arguments', ['%error_operation' => $error_operation[0], '@arguments' => print_r($error_operation[1], TRUE)]);
-      drupal_set_message($message, 'error');
-    }
+    ConfigImporter::finishBatch($success, $results, $operations);
   }
 
 }
diff --git a/core/modules/config/src/StorageReplaceDataWrapper.php b/core/modules/config/src/StorageReplaceDataWrapper.php
index 91c3a7c..af524cb 100644
--- a/core/modules/config/src/StorageReplaceDataWrapper.php
+++ b/core/modules/config/src/StorageReplaceDataWrapper.php
@@ -2,202 +2,13 @@
 
 namespace Drupal\config;
 
-use Drupal\Core\Config\StorageInterface;
-use Drupal\Core\DependencyInjection\DependencySerializationTrait;
+use Drupal\Core\Config\StorageReplaceDataWrapper as NewStorageReplaceDataWrapper;
 
 /**
  * Wraps a configuration storage to allow replacing specific configuration data.
+ *
+ * @deprecated
  */
-class StorageReplaceDataWrapper implements StorageInterface {
-  use DependencySerializationTrait;
-
-  /**
-   * The configuration storage to be wrapped.
-   *
-   * @var \Drupal\Core\Config\StorageInterface
-   */
-  protected $storage;
-
-  /**
-   * The configuration replacement data, keyed by configuration object name.
-   *
-   * @var array
-   */
-  protected $replacementData = [];
-
-  /**
-   * The storage collection.
-   *
-   * @var string
-   */
-  protected $collection;
-
-  /**
-   * Constructs a new StorageReplaceDataWrapper.
-   *
-   * @param \Drupal\Core\Config\StorageInterface $storage
-   *   A configuration storage to be used to read and write configuration.
-   * @param string $collection
-   *   (optional) The collection to store configuration in. Defaults to the
-   *   default collection.
-   */
-  public function __construct(StorageInterface $storage, $collection = StorageInterface::DEFAULT_COLLECTION) {
-    $this->storage = $storage;
-    $this->collection = $collection;
-    $this->replacementData[$collection] = [];
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function exists($name) {
-    return isset($this->replacementData[$this->collection][$name]) || $this->storage->exists($name);
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function read($name) {
-    if (isset($this->replacementData[$this->collection][$name])) {
-      return $this->replacementData[$this->collection][$name];
-    }
-    return $this->storage->read($name);
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function readMultiple(array $names) {
-    $data = $this->storage->readMultiple(($names));
-    foreach ($names as $name) {
-      if (isset($this->replacementData[$this->collection][$name])) {
-        $data[$name] = $this->replacementData[$this->collection][$name];
-      }
-    }
-    return $data;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function write($name, array $data) {
-    if (isset($this->replacementData[$this->collection][$name])) {
-      unset($this->replacementData[$this->collection][$name]);
-    }
-    return $this->storage->write($name, $data);
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function delete($name) {
-    if (isset($this->replacementData[$this->collection][$name])) {
-      unset($this->replacementData[$this->collection][$name]);
-    }
-    return $this->storage->delete($name);
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function rename($name, $new_name) {
-    if (isset($this->replacementData[$this->collection][$name])) {
-      $this->replacementData[$this->collection][$new_name] = $this->replacementData[$this->collection][$name];
-      unset($this->replacementData[$this->collection][$name]);
-    }
-    return $this->storage->rename($name, $new_name);
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function encode($data) {
-    return $this->storage->encode($data);
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function decode($raw) {
-    return $this->storage->decode($raw);
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function listAll($prefix = '') {
-    $names = $this->storage->listAll($prefix);
-    $additional_names = [];
-    if ($prefix === '') {
-      $additional_names = array_keys($this->replacementData[$this->collection]);
-    }
-    else {
-      foreach (array_keys($this->replacementData[$this->collection]) as $name) {
-        if (strpos($name, $prefix) === 0) {
-          $additional_names[] = $name;
-        }
-      }
-    }
-    if (!empty($additional_names)) {
-      $names = array_unique(array_merge($names, $additional_names));
-    }
-    return $names;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function deleteAll($prefix = '') {
-    if ($prefix === '') {
-      $this->replacementData[$this->collection] = [];
-    }
-    else {
-      foreach (array_keys($this->replacementData[$this->collection]) as $name) {
-        if (strpos($name, $prefix) === 0) {
-          unset($this->replacementData[$this->collection][$name]);
-        }
-      }
-    }
-    return $this->storage->deleteAll($prefix);
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function createCollection($collection) {
-    return new static(
-      $this->storage->createCollection($collection),
-      $collection
-    );
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function getAllCollectionNames() {
-    return $this->storage->getAllCollectionNames();
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function getCollectionName() {
-    return $this->collection;
-  }
-
-  /**
-   * Replaces the configuration object data with the supplied data.
-   *
-   * @param $name
-   *   The configuration object name whose data to replace.
-   * @param array $data
-   *   The configuration data.
-   *
-   * @return $this
-   */
-  public function replaceData($name, array $data) {
-    $this->replacementData[$this->collection][$name] = $data;
-    return $this;
-  }
+class StorageReplaceDataWrapper extends NewStorageReplaceDataWrapper {
 
 }
diff --git a/core/modules/system/src/Tests/Installer/ConfigInstallerEnSecondTest.php b/core/modules/system/src/Tests/Installer/ConfigInstallerEnSecondTest.php
new file mode 100644
index 0000000..c84e225
--- /dev/null
+++ b/core/modules/system/src/Tests/Installer/ConfigInstallerEnSecondTest.php
@@ -0,0 +1,69 @@
+<?php
+
+namespace Drupal\system\Tests\Installer;
+
+use Drupal\language\Entity\ConfigurableLanguage;
+
+/**
+ * Tests the config installer profile by uploading a tarball.
+ *
+ * @group ConfigInstaller
+ */
+class ConfigInstallerEnSecondTest extends ConfigInstallerTestBase {
+
+  /**
+   * Ensures that the user page is available after installation.
+   */
+  public function testInstaller() {
+    // Do assertions from parent.
+    require_once \Drupal::root() . '/core/includes/install.inc';
+    $this->assertRaw(t('Congratulations, you installed @drupal fr!', [
+      '@drupal' => drupal_install_profile_distribution_name(),
+    ]));
+    // Even though we began the install in English the configuration is French
+    // so that takes precedence.
+    $this->assertEqual('fr', \Drupal::config('system.site')->get('default_langcode'));
+    $this->assertTrue(ConfigurableLanguage::load('en'), "The language 'en' exists");
+    $this->assertTrue(\Drupal::service('language_manager')->isMultilingual());
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUpLanguage() {
+    // Place custom local translations in the translations directory so that we
+    // don't go and translate everything.
+    mkdir(DRUPAL_ROOT . '/' . $this->siteDirectory . '/files/translations', 0777, TRUE);
+    file_put_contents(DRUPAL_ROOT . '/' . $this->siteDirectory . '/files/translations/drupal-8.0.0.fr.po', $this->getPo('fr'));
+
+    parent::setUpLanguage();
+  }
+
+  /**
+   * Returns the string for the test .po file.
+   *
+   * @param string $langcode
+   *   The language code.
+   *
+   * @return string
+   *   Contents for the test .po file.
+   */
+  protected function getPo($langcode) {
+    return <<<ENDPO
+msgid ""
+msgstr ""
+
+msgid "Congratulations, you installed @drupal!"
+msgstr "Congratulations, you installed @drupal $langcode!"
+ENDPO;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function getTarball() {
+    // Exported configuration after a minimal profile install in French.
+    return $this->versionTarball('english-second.tar.gz');
+  }
+
+}
diff --git a/core/modules/system/src/Tests/Installer/ConfigInstallerFrDirectorySyncTest.php b/core/modules/system/src/Tests/Installer/ConfigInstallerFrDirectorySyncTest.php
new file mode 100644
index 0000000..d523b80
--- /dev/null
+++ b/core/modules/system/src/Tests/Installer/ConfigInstallerFrDirectorySyncTest.php
@@ -0,0 +1,67 @@
+<?php
+
+namespace Drupal\system\Tests\Installer;
+
+/**
+ * Tests the config installer profile by linking to a directory.
+ *
+ * Note this test requires access to localise.drupal.org. Not managed to break
+ * it any other way.
+ *
+ * @group ConfigInstaller
+ */
+class ConfigInstallerFrDirectorySyncTest extends ConfigInstallerTestBase {
+
+  /**
+   * The directory where the configuration to install is stored.
+   *
+   * @var string
+   */
+  protected $syncDir;
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp() {
+    $this->syncDir = 'public://' . $this->randomMachineName(128);
+    parent::setUp();
+  }
+
+  /**
+   * Submit the config_installer_site_configure_form.
+   *
+   * @see \Drupal\config_installer\Form\SiteConfigureForm
+   */
+  protected function setUpInstallConfigureForm() {
+    $params = $this->parameters['forms']['install_configure_form'];
+    unset($params['site_name']);
+    unset($params['site_mail']);
+    unset($params['update_status_module']);
+    $edit = $this->translatePostValues($params);
+    $this->drupalPostForm(NULL, $edit, 'Enregistrer et continuer');
+  }
+
+  /**
+   * Ensures that the user page is available after installation.
+   */
+  public function testInstaller() {
+    // Do assertions from parent.
+    require_once \Drupal::root() . '/core/includes/install.inc';
+    $this->assertText('Félicitations, vous avez installé');
+    $this->assertText(drupal_install_profile_distribution_name());
+
+    // Even though we began the install in English the configuration is French
+    // so that takes precedence.
+    $this->assertEqual('fr', \Drupal::config('system.site')->get('default_langcode'));
+    $this->assertFalse(\Drupal::service('language_manager')->isMultilingual());
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function getTarball() {
+    // Exported configuration after a minimal profile install in French.
+    return $this->versionTarball('missing-language-entity.tar.gz');
+  }
+
+}
diff --git a/core/modules/system/src/Tests/Installer/ConfigInstallerNoDependenciesProfile.php b/core/modules/system/src/Tests/Installer/ConfigInstallerNoDependenciesProfile.php
new file mode 100644
index 0000000..6e4151c
--- /dev/null
+++ b/core/modules/system/src/Tests/Installer/ConfigInstallerNoDependenciesProfile.php
@@ -0,0 +1,37 @@
+<?php
+
+namespace Drupal\system\Tests\Installer;
+
+use Drupal\Component\Serialization\Yaml;
+use Drupal\Core\Archiver\ArchiveTar;
+use Drupal\Core\Config\FileStorage;
+
+/**
+ * Tests the config installer profile with a profile with no dependencies.
+ *
+ * @group ConfigInstaller
+ */
+class ConfigInstallerNoDependenciesProfile extends ConfigInstallerTestBase {
+
+  protected function setUp() {
+    $this->info = [
+      'type' => 'profile',
+      'core' => \Drupal::CORE_COMPATIBILITY,
+      'name' => 'Profile with no dependencies',
+    ];
+    // File API functions are not available yet.
+    $path = $this->siteDirectory . '/profiles/no_dependencies_profile';
+    mkdir($path, 0777, TRUE);
+    file_put_contents("$path/no_dependencies_profile.info.yml", Yaml::encode($this->info));
+
+    parent::setUp();
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function getTarball() {
+    return $this->versionTarball('no_dependencies_profile.tar.gz');
+  }
+
+}
diff --git a/core/modules/system/src/Tests/Installer/ConfigInstallerSyncTest.php b/core/modules/system/src/Tests/Installer/ConfigInstallerSyncTest.php
new file mode 100644
index 0000000..02c07ac
--- /dev/null
+++ b/core/modules/system/src/Tests/Installer/ConfigInstallerSyncTest.php
@@ -0,0 +1,56 @@
+<?php
+
+namespace Drupal\system\Tests\Installer;
+
+use Drupal\Core\Config\FileStorage;
+
+/**
+ * Tests the config installer profile by having files in a sync directory.
+ *
+ * @group ConfigInstaller
+ */
+class ConfigInstallerSyncTest extends ConfigInstallerTestBase {
+
+  /**
+   * The directory where the configuration to install is stored.
+   *
+   * @var string
+   */
+  protected $syncDir;
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp() {
+    $this->syncDir = 'public://' . $this->randomMachineName(128);
+    parent::setUp();
+  }
+
+  /**
+   * Ensures that the user page is available after installation.
+   */
+  public function testInstaller() {
+    // Do assertions from parent.
+    parent::testInstaller();
+
+    // Do assertions specific to test.
+//    $this->assertEqual(drupal_realpath($this->syncDir), config_get_config_directory(CONFIG_SYNC_DIRECTORY), 'The sync directory has been updated during the installation.');
+//    $this->assertEqual(USER_REGISTER_ADMINISTRATORS_ONLY, \Drupal::config('user.settings')->get('register'), 'Ensure standard_install() does not overwrite user.settings::register.');
+//    $this->assertEqual([], \Drupal::entityDefinitionUpdateManager()->getChangeSummary(), 'There are no entity or field definition updates.');
+  }
+
+//  /**
+//   * {@inheritdoc}
+//   */
+//  protected function setUpLanguage() {
+//    parent::setUpLanguage();
+//
+//    // Change the user.settings::register so that we can test that
+//    // standard_install() does not override it.
+//    $sync = new FileStorage($this->syncDir);
+//    $user_settings = $sync->read('user.settings');
+//    $user_settings['register'] = USER_REGISTER_ADMINISTRATORS_ONLY;
+//    $sync->write('user.settings', $user_settings);
+//  }
+
+}
diff --git a/core/modules/system/src/Tests/Installer/ConfigInstallerTestBase.php b/core/modules/system/src/Tests/Installer/ConfigInstallerTestBase.php
new file mode 100644
index 0000000..8c51afe
--- /dev/null
+++ b/core/modules/system/src/Tests/Installer/ConfigInstallerTestBase.php
@@ -0,0 +1,223 @@
+<?php
+
+namespace Drupal\system\Tests\Installer;
+
+use Drupal\config\Controller\ConfigController;
+use Drupal\Core\Archiver\ArchiveTar;
+use Drupal\Core\Config\StorageComparer;
+use Drupal\Core\DrupalKernel;
+use Drupal\Core\Extension\ExtensionDiscovery;
+use Drupal\Core\Site\Settings;
+use Drupal\simpletest\InstallerTestBase;
+use Symfony\Component\HttpFoundation\Request;
+
+/**
+ * Provides functionality for testing the config_installer profile.
+ */
+abstract class ConfigInstallerTestBase extends InstallerTestBase {
+
+  /**
+   * The installation profile to install.
+   *
+   * @var string
+   */
+  protected $profile = '';
+
+  /**
+   * The directory where the configuration to install is stored.
+   *
+   * @var string
+   */
+  protected $syncDir;
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp() {
+    // Use the kernel to find the site path because the site.path service should
+    // not be available at this point in the install process.
+    $site_path = DrupalKernel::findSitePath(Request::createFromGlobals());
+    // Pre-configure config directories.
+    $this->settings['config_directories'] = [
+      CONFIG_SYNC_DIRECTORY => (object) [
+        'value' => $site_path . '/files/config/' . $this->randomMachineName(128),
+        'required' => TRUE,
+      ],
+    ];
+    $this->syncDir = $this->settings['config_directories'][CONFIG_SYNC_DIRECTORY]->value;
+    mkdir($this->syncDir, 0777, TRUE);
+
+    // Extract the tarball into the sync directory.
+    $this->extractTarball($this->getTarball(), $this->syncDir);
+
+    parent::setUp();
+
+    // Drupal is installed perform some basic assertions that all
+    // config_installer tests need.
+    if ($this->isInstalled) {
+      // Ensure the test environment has the latest container.
+      $this->rebuildAll();
+
+      $sync = \Drupal::service('config.storage.sync');
+      $sync_core_extension = $sync->read('core.extension');
+      // Ensure that the correct install profile is active.
+      $this->assertEqual($sync_core_extension['profile'], \Drupal::installProfile());
+      // Ensure that the configuration has been completely synced.
+      $this->assertNoSynDifferences();
+    }
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUpProfile() {
+    // No profile is selected when installing existing configuration.
+  }
+
+
+  /**
+   * Ensures that the user page is available after installation.
+   */
+  public function testInstaller() {
+    $this->assertUrl('user/1');
+    $this->assertResponse(200);
+    // Confirm that we are logged-in after installation.
+    $this->assertText($this->rootUser->getUsername());
+
+    // @todo hmmm this message is wrong!
+    // Verify that the confirmation message appears.
+    require_once \Drupal::root() . '/core/includes/install.inc';
+    $this->assertRaw(t('Congratulations, you installed @drupal!', [
+      '@drupal' => drupal_install_profile_distribution_name(),
+    ]));
+  }
+
+  /**
+   * Overrides method.
+   *
+   * We have several forms to navigate through.
+   */
+  protected function setUpSite() {
+    // Recreate the container so that we can simulate the submission of the
+    // SyncConfigureForm after the full bootstrap has occurred. Without out this
+    // drupal_realpath() does not work so uploading files through
+    // WebTestBase::postForm() is impossible.
+    $request = Request::createFromGlobals();
+    $class_loader = require $this->container->get('app.root') . '/vendor/autoload.php';
+    Settings::initialize($this->container->get('app.root'), DrupalKernel::findSitePath($request), $class_loader);
+    foreach ($GLOBALS['config_directories'] as $type => $path) {
+      $this->configDirectories[$type] = $path;
+    }
+    $this->kernel = DrupalKernel::createFromRequest($request, $class_loader, 'prod', FALSE);
+    $this->kernel->prepareLegacyRequest($request);
+    $this->container = $this->kernel->getContainer();
+
+    $this->setUpInstallConfigureForm();
+    // If we've got to this point the site is installed using the regular
+    // installation workflow.
+    $this->isInstalled = TRUE;
+  }
+
+  /**
+   * Submit the config_installer_site_configure_form.
+   *
+   * @see \Drupal\config_installer\Form\SiteConfigureForm
+   */
+  protected function setUpInstallConfigureForm() {
+    $params = $this->parameters['forms']['install_configure_form'];
+    unset($params['site_name']);
+    unset($params['site_mail']);
+    unset($params['update_status_module']);
+    $edit = $this->translatePostValues($params);
+    $this->drupalPostForm(NULL, $edit, $this->translations['Save and continue']);
+  }
+
+  /**
+   * Gets the tarball for testing.
+   *
+   * @var string
+   */
+  protected function getTarball() {
+    // Exported configuration after a minimal profile install.
+    return $this->versionTarball('minimal.tar.gz');
+  }
+
+  /**
+   * Gets a tarball for the right version of Drupal.
+   *
+   * @param $tarball
+   *   The tarball filename.
+   *
+   * @return string
+   *   The fullpath to the tarball.
+   */
+  protected function versionTarball($tarball) {
+    $site_path = DrupalKernel::findSitePath(Request::createFromGlobals());
+    include_once $site_path . '/../../..' . '/core/includes/install.core.inc';
+
+    $version = _install_get_version_info(\Drupal::VERSION);
+    $versioned_file = __DIR__ . '/Fixtures/' . $version['major'] . '.' . $version['minor'] . '/' . $tarball;
+    if (file_exists($versioned_file)) {
+      return $versioned_file;
+    }
+    return __DIR__ . '/Fixtures/' . $tarball;
+  }
+
+  /**
+   * Extracts a tarball to a directory.
+   *
+   * @param string $tarball_path
+   *   The path to a tarball to extract.
+   * @param string $directory
+   *   The directory to extract to.
+   *
+   * @return string[]
+   *   The list files extracted.
+   */
+  protected function extractTarball($tarball_path, $directory) {
+    $archiver = new ArchiveTar($tarball_path, 'gz');
+    $files = [];
+    $list = $archiver->listContent();
+    if (is_array($list)) {
+      /** @var array $list */
+      foreach ($list as $file) {
+        $files[] = $file['filename'];
+      }
+    }
+    $archiver->extractList($files, $directory);
+    return $files;
+  }
+
+  /**
+   * Ensures that the sync and active configuration match.
+   *
+   * @return bool
+   *   TRUE if sync and active configuration match, FALSE if not.
+   */
+  protected function assertNoSynDifferences() {
+    $sync = $this->container->get('config.storage.sync');
+    $active = $this->container->get('config.storage');
+    // Ensure that we have no configuration changes to import.
+    $storage_comparer = new StorageComparer(
+      $sync,
+      $active,
+      $this->container->get('config.manager')
+    );
+    $changelist = $storage_comparer->createChangelist()->getChangelist();
+    // system.mail is changed by \Drupal\simpletest\InstallerTestBase::setUp()
+    // this is a good idea because it prevents tests emailling.
+    $key = array_search('system.mail', $changelist['update'], TRUE);
+    if ($key !== FALSE) {
+      unset($changelist['update'][$key]);
+    }
+    $return = $this->assertIdentical($changelist, $storage_comparer->getEmptyChangelist());
+    // Output proper diffs.
+    $controller = ConfigController::create($this->container);
+    foreach ($changelist['update'] as $config_name) {
+      $diff = $controller->diff($config_name);
+      $this->verbose(\Drupal::service('renderer')->renderPlain($diff));
+    }
+    return $return;
+  }
+
+}
diff --git a/core/modules/system/src/Tests/Installer/Fixtures/broken.tar.gz b/core/modules/system/src/Tests/Installer/Fixtures/broken.tar.gz
new file mode 100644
index 0000000..57f89ed
--- /dev/null
+++ b/core/modules/system/src/Tests/Installer/Fixtures/broken.tar.gz
@@ -0,0 +1 @@
+broken
diff --git a/core/modules/system/src/Tests/Installer/Fixtures/empty.tar.gz b/core/modules/system/src/Tests/Installer/Fixtures/empty.tar.gz
new file mode 100644
index 0000000..e69de29
diff --git a/core/modules/system/src/Tests/Installer/Fixtures/english-second.tar.gz b/core/modules/system/src/Tests/Installer/Fixtures/english-second.tar.gz
new file mode 100644
index 0000000..e3e373a
--- /dev/null
+++ b/core/modules/system/src/Tests/Installer/Fixtures/english-second.tar.gz
@@ -0,0 +1,992 @@
+block.block.stark_admin.yml                                                                         000664  000106  000024  00000000756 13054536357 016417  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: d5130461-17cd-44ea-8807-70ab006f5863
+langcode: fr
+status: true
+dependencies:
+  config:
+    - system.menu.admin
+  module:
+    - system
+  theme:
+    - stark
+_core:
+  default_config_hash: DWAB7HaAfAJerAmyT8B2K-6qxicu9n0PcKVpDr--N4c
+id: stark_admin
+theme: stark
+region: sidebar_first
+weight: 1
+provider: null
+plugin: 'system_menu_block:admin'
+settings:
+  id: 'system_menu_block:admin'
+  label: Administration
+  provider: system
+  label_display: visible
+  level: 1
+  depth: 0
+visibility: {  }
+                  block.block.stark_branding.yml                                                                      000664  000106  000024  00000000754 13054536357 017111  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: fe69f09b-51ed-4a2a-8018-dd2338569db6
+langcode: fr
+status: true
+dependencies:
+  module:
+    - system
+  theme:
+    - stark
+_core:
+  default_config_hash: fRKXNB91UxDvEMkzCR8ZBsawfC6Fqbme2gtobei3gu4
+id: stark_branding
+theme: stark
+region: header
+weight: 0
+provider: null
+plugin: system_branding_block
+settings:
+  id: system_branding_block
+  label: 'Marque du site'
+  provider: system
+  label_display: '0'
+  use_site_logo: true
+  use_site_name: true
+  use_site_slogan: true
+visibility: {  }
+                    block.block.stark_local_actions.yml                                                                 000664  000106  000024  00000000652 13054536357 020134  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 4629e153-f994-4786-a07e-12ac07a8264f
+langcode: fr
+status: true
+dependencies:
+  theme:
+    - stark
+_core:
+  default_config_hash: PffmQ-ABSz5tFjWmVsR7NesunDnEivvopnJnBjl8KNE
+id: stark_local_actions
+theme: stark
+region: content
+weight: -10
+provider: null
+plugin: local_actions_block
+settings:
+  id: local_actions_block
+  label: 'Actions d''administration principales'
+  provider: core
+  label_display: '0'
+visibility: {  }
+                                                                                      block.block.stark_local_tasks.yml                                                                   000664  000106  000024  00000000646 13054536357 017624  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 26c5aa30-6acd-4a44-b004-02636be173f4
+langcode: fr
+status: true
+dependencies:
+  theme:
+    - stark
+_core:
+  default_config_hash: c-06bbElRY5sKmglk74ppgTW93Et4-EJFyNiUZMb8JY
+id: stark_local_tasks
+theme: stark
+region: content
+weight: -20
+provider: null
+plugin: local_tasks_block
+settings:
+  id: local_tasks_block
+  label: Onglets
+  provider: core
+  label_display: '0'
+  primary: true
+  secondary: true
+visibility: {  }
+                                                                                          block.block.stark_login.yml                                                                         000664  000106  000024  00000000651 13054536357 016431  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 0f9cbbd5-97e7-4ca4-ba2c-289ecb571e6c
+langcode: fr
+status: true
+dependencies:
+  module:
+    - user
+  theme:
+    - stark
+_core:
+  default_config_hash: 4QlSnWBcxxKMIFRM8sbu_MjSkcp3NjGgnVrc-lynQHI
+id: stark_login
+theme: stark
+region: sidebar_first
+weight: 0
+provider: null
+plugin: user_login_block
+settings:
+  id: user_login_block
+  label: 'Connexion utilisateur'
+  provider: user
+  label_display: visible
+visibility: {  }
+                                                                                       block.block.stark_messages.yml                                                                      000664  000106  000024  00000000661 13054536357 017131  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: c0f47749-9499-4f46-98e2-eb86cb15b342
+langcode: fr
+status: true
+dependencies:
+  module:
+    - system
+  theme:
+    - stark
+_core:
+  default_config_hash: 5MNdk3fpMKx_xxBTcz2T11DL4XEU1H5SgHl8BsYdFsA
+id: stark_messages
+theme: stark
+region: highlighted
+weight: 0
+provider: null
+plugin: system_messages_block
+settings:
+  id: system_messages_block
+  label: 'Messages de statut'
+  provider: system
+  label_display: '0'
+visibility: {  }
+                                                                               block.block.stark_page_title.yml                                                                    000664  000106  000024  00000000611 13054536357 017432  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 7cbcee9e-77c5-4fad-9e42-96881ed1efa2
+langcode: fr
+status: true
+dependencies:
+  theme:
+    - stark
+_core:
+  default_config_hash: 8yptDf6WrXxeyevUz4nP5vfr7BtxQqCBMninhV2IJ1g
+id: stark_page_title
+theme: stark
+region: content
+weight: -30
+provider: null
+plugin: page_title_block
+settings:
+  id: page_title_block
+  label: 'Titre de page'
+  provider: core
+  label_display: '0'
+visibility: {  }
+                                                                                                                       block.block.stark_tools.yml                                                                         000664  000106  000024  00000000746 13054536357 016466  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 493dedbd-56b6-4c63-8d5a-2f66182fe896
+langcode: fr
+status: true
+dependencies:
+  config:
+    - system.menu.tools
+  module:
+    - system
+  theme:
+    - stark
+_core:
+  default_config_hash: xCOijLdB1-UgXxQ9a0D1_pd8vxNEhfMnxXZc8jYhHjs
+id: stark_tools
+theme: stark
+region: sidebar_first
+weight: 0
+provider: null
+plugin: 'system_menu_block:tools'
+settings:
+  id: 'system_menu_block:tools'
+  label: Outils
+  provider: system
+  label_display: visible
+  level: 1
+  depth: 0
+visibility: {  }
+                          core.date_format.fallback.yml                                                                       000664  000106  000024  00000000367 13054536357 016711  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: cab96e74-8124-46d9-a33a-849c56faf76d
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: 7klS5IWXrwzVaPpYZFAs6wcx8U2FF1X73OfrtTsvuvE
+id: fallback
+label: 'Format de date de repli'
+locked: true
+pattern: 'D, m/d/Y - H:i'
+                                                                                                                                                                                                                                                                         core.date_format.html_date.yml                                                                      000664  000106  000024  00000000337 13054536357 017110  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 1c371943-fe2c-4dbd-8ee9-b49d277f5ca6
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: EOQltUQPmgc6UQ2rcJ4Xi_leCEJj5ui0TR-12duS-Tk
+id: html_date
+label: 'Date HTML'
+locked: true
+pattern: Y-m-d
+                                                                                                                                                                                                                                                                                                 core.date_format.html_datetime.yml                                                                  000664  000106  000024  00000000366 13054536357 017771  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: b3a41a71-b10d-4e75-92e2-6fbbc95e0f84
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: jxfClwZIRXIdcvMrE--WkcZxDGUVoOIE3Sm2NRZlFuE
+id: html_datetime
+label: 'Date et heure HTML'
+locked: true
+pattern: 'Y-m-d\TH:i:sO'
+                                                                                                                                                                                                                                                                          core.date_format.html_month.yml                                                                     000664  000106  000024  00000000336 13054536357 017317  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: c7c388e6-3c0e-4540-a295-c41141265b65
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: Z7KuCUwM_WdTNvLcoltuX3_8d-s-8FZkTN6KgNwF0eM
+id: html_month
+label: 'Mois HTML'
+locked: true
+pattern: Y-m
+                                                                                                                                                                                                                                                                                                  core.date_format.html_time.yml                                                                      000664  000106  000024  00000000342 13054536357 017125  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: fd65a0f4-6725-44a7-bdd5-ed4aaf16d16f
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: M7yqicYkU36hRy5p9drAaGBBihhUD1OyujFrAaQ93ZE
+id: html_time
+label: 'Heure HTML'
+locked: true
+pattern: 'H:i:s'
+                                                                                                                                                                                                                                                                                              core.date_format.html_week.yml                                                                      000664  000106  000024  00000000342 13054536357 017122  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 23093662-5124-4177-9ac7-6526d2f01972
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: wKD4WsoV_wFgv2vgI4mcAAFSIzrye17ykzdwrnApkfY
+id: html_week
+label: 'Semaine HTML'
+locked: true
+pattern: Y-\WW
+                                                                                                                                                                                                                                                                                              core.date_format.html_year.yml                                                                      000664  000106  000024  00000000337 13054536357 017133  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 69cb70fa-6efa-4b5c-8113-c8f75867eb83
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: OjekiQuX9RbVQ2_8jOHBL94RgYLePqX7wpfNGgcQzrk
+id: html_year
+label: 'Année HTML'
+locked: true
+pattern: 'Y'
+                                                                                                                                                                                                                                                                                                 core.date_format.html_yearless_date.yml                                                             000664  000106  000024  00000000362 13054536357 021015  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 1c6982e1-f5a9-4b64-af5d-e23ddfcbe41e
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: 5VpawMrKPEPCkoO4YpPa0TDFO2dgiIHfTziJtwlmUxc
+id: html_yearless_date
+label: 'Date HTML sans année'
+locked: true
+pattern: m-d
+                                                                                                                                                                                                                                                                              core.date_format.long.yml                                                                           000664  000106  000024  00000000363 13054536357 016105  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 4368de4f-8562-4c3c-bc35-2f8c54d5a9b5
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: og8sWXhBuHbLMw3CoiBEZjgqSyhFBFmcbUW_wLcfNbo
+id: long
+label: 'Date longue par défaut'
+locked: false
+pattern: 'l j F Y - H:i'
+                                                                                                                                                                                                                                                                             core.date_format.medium.yml                                                                         000664  000106  000024  00000000366 13054536357 016431  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: f28aa98d-2021-4ba6-86d0-d96ee034a38f
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: nzL5d024NjXIX_8TlT6uFAu973lmfkmHklJC-2i9rAE
+id: medium
+label: 'Date moyenne par défaut'
+locked: false
+pattern: 'D d/m/Y - H:i'
+                                                                                                                                                                                                                                                                          core.date_format.short.yml                                                                          000664  000106  000024  00000000362 13054536357 016304  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 643a05fb-a82c-4679-88b6-6d2529551bd4
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: AlzeyytA8InBgxIG9H2UDJYs3CG98Zj6yRsDKmlbZwA
+id: short
+label: 'Date courte par défaut'
+locked: false
+pattern: 'd/m/Y - H:i'
+                                                                                                                                                                                                                                                                              core.entity_form_mode.user.register.yml                                                             000664  000106  000024  00000000374 13054536357 021027  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 4b9529b5-dd9a-43f1-b725-782776651c79
+langcode: fr
+status: true
+dependencies:
+  module:
+    - user
+_core:
+  default_config_hash: flXhTcp55yLcyy7ZLOhPGKGZobZQJdkAFVWV3LseiuI
+id: user.register
+label: 'S''inscrire'
+targetEntityType: user
+cache: true
+                                                                                                                                                                                                                                                                    core.entity_view_mode.node.full.yml                                                                 000664  000106  000024  00000000375 13054536357 020124  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 348ee81d-5040-4a96-a03b-e8e0f2f0840f
+langcode: fr
+status: false
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: ElrtInxGjZd7GaapJ5O9n-ugi2hG2IxFivtgn0tHOsk
+id: node.full
+label: 'Contenu complet'
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                                                                                   core.entity_view_mode.node.rss.yml                                                                  000664  000106  000024  00000000356 13054536357 017770  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: c6c537bf-f31b-401c-870a-3344f601e61e
+langcode: fr
+status: false
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: vlYzr-rp2f9NMp-Qlr4sFjlqRq-90mco5-afLNGwCrU
+id: node.rss
+label: RSS
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                                                                                                  core.entity_view_mode.node.search_index.yml                                                         000664  000106  000024  00000000410 13054536357 021604  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 44695a09-0c72-48ca-8487-0fdc3dae6623
+langcode: fr
+status: false
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: fVFfJv_GzBRE-wpRHbfD5a3VjnhbEOXG6lvRd3uaccY
+id: node.search_index
+label: 'Index de recherche'
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                                                                        core.entity_view_mode.node.search_result.yml                                                        000664  000106  000024  00000000473 13054536357 022024  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 34758fe9-d464-4335-9ac2-4b8050bcf565
+langcode: fr
+status: false
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: 6GCOQ-jP2RbdbHA5YWQ6bT8CfGbqrBYKOSC_XY4E3ZM
+id: node.search_result
+label: 'Effectuer une recherche en mettant en évidence les données saisies'
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                     core.entity_view_mode.node.teaser.yml                                                               000664  000106  000024  00000000365 13054536357 020444  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: fdf099ef-45f7-4313-bdf8-de8550e8b1ee
+langcode: fr
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: Mz9qWr1kUYK0mjRAGDsr5XS6PvtZ24en_7ndt-pyWe4
+id: node.teaser
+label: Accroche
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                                                                                           core.entity_view_mode.user.compact.yml                                                              000664  000106  000024  00000000365 13054536357 020640  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 5dc6a66b-2142-43b8-9368-9b65264ef371
+langcode: fr
+status: true
+dependencies:
+  module:
+    - user
+_core:
+  default_config_hash: 71CSAr_LNPcgu6D6jI4INl1KATkahmeyUFBETAWya8g
+id: user.compact
+label: Compact
+targetEntityType: user
+cache: true
+                                                                                                                                                                                                                                                                           core.entity_view_mode.user.full.yml                                                                 000664  000106  000024  00000000400 13054536357 020142  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: ec45ec97-c636-4fa3-9ab0-3cea3409cbda
+langcode: fr
+status: false
+dependencies:
+  module:
+    - user
+_core:
+  default_config_hash: mQIF_foYjmnVSr9MpcD4CTaJE_FpO1AyDd_DskztGhM
+id: user.full
+label: 'Compte utilisateur'
+targetEntityType: user
+cache: true
+                                                                                                                                                                                                                                                                core.extension.yml                                                                                  000664  000106  000024  00000000501 13054536357 014670  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         module:
+  block: 0
+  config: 0
+  dblog: 0
+  dynamic_page_cache: 0
+  field: 0
+  file: 0
+  filter: 0
+  language: 0
+  locale: 0
+  node: 0
+  page_cache: 0
+  system: 0
+  text: 0
+  user: 0
+  minimal: 1000
+theme:
+  stark: 0
+_core:
+  default_config_hash: m2GVq11UAOVuNgj8x0t5fMOPujpvQQ_zxLoaly1BMEU
+langcode: fr
+profile: minimal
+                                                                                                                                                                                               core.menu.static_menu_link_overrides.yml                                                            000664  000106  000024  00000000151 13054536357 021232  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         definitions: {  }
+_core:
+  default_config_hash: jdY7AU0tU-QsjmiOw3W8vwpYMb-By--_MSFgbqKUTYM
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                                       dblog.settings.yml                                                                                  000664  000106  000024  00000000147 13054536357 014661  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         row_limit: 1000
+_core:
+  default_config_hash: e883aGsrt1wFrsydlYU584PZONCSfRy0DtkZ9KzHb58
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                                         field.settings.yml                                                                                  000664  000106  000024  00000000154 13054536357 014653  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         purge_batch_size: 50
+_core:
+  default_config_hash: nJk0TAQBzlNo52ehiHI7bIEPLGi0BYqZvPdEn7Chfu0
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                                    field.storage.node.body.yml                                                                         000664  000106  000024  00000000623 13054536357 016340  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: cfab7446-bd70-49d3-91cc-5c8f5f0e22f5
+langcode: fr
+status: true
+dependencies:
+  module:
+    - node
+    - text
+_core:
+  default_config_hash: EBUo7qOWqaiZaQ_RC9sLY5IoDKphS34v77VIHSACmVY
+id: node.body
+field_name: body
+entity_type: node
+type: text_with_summary
+settings: {  }
+module: text
+locked: false
+cardinality: 1
+translatable: true
+indexes: {  }
+persist_with_no_fields: true
+custom_storage: false
+                                                                                                             file.settings.yml                                                                                   000664  000106  000024  00000000257 13054536357 014513  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         description:
+  type: textfield
+  length: 128
+icon:
+  directory: core/modules/file/icons
+_core:
+  default_config_hash: 8LI-1XgwLt9hYRns_7c81S632d6JhdqXKs4vDheaG6E
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                 filter.format.plain_text.yml                                                                        000664  000106  000024  00000001101 13054536357 016644  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 3901b5cf-379c-48f0-8640-ae27f127254f
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: NIKBt6kw_uPhNI0qtR2DnRf7mSOgAQdx7Q94SKMjXbQ
+name: 'Texte brut'
+format: plain_text
+weight: 10
+filters:
+  filter_html_escape:
+    id: filter_html_escape
+    provider: filter
+    status: true
+    weight: -10
+    settings: {  }
+  filter_url:
+    id: filter_url
+    provider: filter
+    status: true
+    weight: 0
+    settings:
+      filter_url_length: 72
+  filter_autop:
+    id: filter_autop
+    provider: filter
+    status: true
+    weight: 0
+    settings: {  }
+                                                                                                                                                                                                                                                                                                                                                                                                                                                               filter.settings.yml                                                                                 000664  000106  000024  00000000226 13054536357 015055  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         fallback_format: plain_text
+always_show_fallback_choice: false
+_core:
+  default_config_hash: FiPjM3WdB__ruFA7B6TLwni_UcZbmek5G4b2dxQItxA
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                          language.entity.en.yml                                                                              000664  000106  000024  00000000225 13054536357 015427  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 62fa8a4a-d3d4-4882-8afd-4420617522e2
+langcode: fr
+status: true
+dependencies: {  }
+id: en
+label: English
+direction: ltr
+weight: 2
+locked: false
+                                                                                                                                                                                                                                                                                                                                                                           language.entity.fr.yml                                                                              000664  000106  000024  00000000224 13054536357 015433  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 11899ac9-bfe6-4947-b587-033d21261f03
+langcode: fr
+status: true
+dependencies: {  }
+id: fr
+label: French
+direction: ltr
+weight: 0
+locked: false
+                                                                                                                                                                                                                                                                                                                                                                            language.entity.und.yml                                                                             000664  000106  000024  00000000350 13054536357 015612  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: fd47d244-c695-47c1-9b88-896dfbc70eb0
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: eNX6lLCKDaY83nCMh20My---y03KbiFlv802DKCCpvg
+id: und
+label: 'Non spécifié'
+direction: ltr
+weight: 3
+locked: true
+                                                                                                                                                                                                                                                                                        language.entity.zxx.yml                                                                             000664  000106  000024  00000000350 13054536357 015655  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: f3e79286-85bd-4ec6-ac6f-ac28aba80fb1
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: 35CefWbnzaiytcg3acexxz_GTvuwIjYd_ZTcmmR-tXA
+id: zxx
+label: 'Non applicable'
+direction: ltr
+weight: 4
+locked: true
+                                                                                                                                                                                                                                                                                        language.mappings.yml                                                                               000664  000106  000024  00000000372 13054536357 015333  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         map:
+  'no': nb
+  pt: pt-pt
+  zh: zh-hans
+  zh-tw: zh-hant
+  zh-hk: zh-hant
+  zh-mo: zh-hant
+  zh-cht: zh-hant
+  zh-cn: zh-hans
+  zh-sg: zh-hans
+  zh-chs: zh-hans
+_core:
+  default_config_hash: EMWe7Yu4Q5eD-NUfNuQAWGBvYUNZPIinztEtONSmsDc
+langcode: fr
+                                                                                                                                                                                                                                                                      language.negotiation.yml                                                                            000664  000106  000024  00000000364 13054536357 016036  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         session:
+  parameter: language
+url:
+  source: path_prefix
+  prefixes:
+    fr: ''
+    en: en
+  domains:
+    fr: ''
+    en: ''
+selected_langcode: site_default
+_core:
+  default_config_hash: uEePITI9tV6WqzmsTb7MfPCi5yPWXSxAN1xeLcYFQbM
+langcode: fr
+                                                                                                                                                                                                                                                                            language.types.yml                                                                                  000664  000106  000024  00000000623 13054536357 014660  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         all:
+  - language_interface
+  - language_content
+  - language_url
+configurable:
+  - language_interface
+negotiation:
+  language_content:
+    enabled:
+      language-interface: 0
+  language_url:
+    enabled:
+      language-url: 0
+      language-url-fallback: 1
+  language_interface:
+    enabled:
+      language-url: 0
+_core:
+  default_config_hash: dqouFqVseNJNvEjsoYKxbinFOITuCxYhi4y2OTNQP_8
+langcode: fr
+                                                                                                             locale.settings.yml                                                                                 000664  000106  000024  00000001024 13054536357 015024  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         cache_strings: true
+translate_english: false
+javascript:
+  directory: languages
+translation:
+  use_source: remote_and_local
+  default_filename: '%project-%version.%language.po'
+  default_server_pattern: 'http://ftp.drupal.org/files/translations/%core/%project/%project-%version.%language.po'
+  overwrite_customized: false
+  overwrite_not_customized: true
+  update_interval_days: 0
+  path: sites/default/files/translations
+  import_enabled: true
+_core:
+  default_config_hash: Lqw8pAQIfr4sRSts2RRWG97eNG6vRT7FhqF_b5COPGk
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            node.settings.yml                                                                                   000664  000106  000024  00000000156 13054536357 014517  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         use_admin_theme: false
+_core:
+  default_config_hash: 2OMXCScXUOLSYID9-phjO4q36nnnaMWNUlDxEqZzG1U
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                                  system.action.node_delete_action.yml                                                                000664  000106  000024  00000000441 13054536357 020333  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 72b8a6fb-3f3d-4b8d-bf66-b12f0e6fd41a
+langcode: fr
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: Zx0jD1Klh5tZaGJy8uOeR_2MCu9FDM4xg7TaUJUEbkI
+id: node_delete_action
+label: 'Supprimer le contenu'
+type: node
+plugin: node_delete_action
+configuration: {  }
+                                                                                                                                                                                                                               system.action.node_make_sticky_action.yml                                                           000664  000106  000024  00000000476 13054536357 021404  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: c35b52c2-7be2-4e5c-9029-7ea2a34006c0
+langcode: fr
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: sOb26JSy3fGpWkvR0WYN6_hMqj_6d1rvbvrkzp1yya0
+id: node_make_sticky_action
+label: 'Épingler un contenu en haut des listes'
+type: node
+plugin: node_make_sticky_action
+configuration: {  }
+                                                                                                                                                                                                  system.action.node_make_unsticky_action.yml                                                         000664  000106  000024  00000000500 13054536357 021733  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: ec3f962d-2a26-449d-87ab-875d2d295a84
+langcode: fr
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: lDM9mvIGAu8Sw8rt-uCO4Sr7yX5VPrDPxYcawkbKd6k
+id: node_make_unsticky_action
+label: 'Retirer un contenu du haut des listes'
+type: node
+plugin: node_make_unsticky_action
+configuration: {  }
+                                                                                                                                                                                                system.action.node_promote_action.yml                                                               000664  000106  000024  00000000467 13054536357 020566  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 04d4419d-05a0-4d58-b13c-569b7b363aca
+langcode: fr
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: N0RDBTqiK4dKoN4p4oW2j0SGWycdHyALUe9M-Ofp89U
+id: node_promote_action
+label: 'Promouvoir un contenu en page d''accueil'
+type: node
+plugin: node_promote_action
+configuration: {  }
+                                                                                                                                                                                                         system.action.node_publish_action.yml                                                               000664  000106  000024  00000000441 13054536357 020537  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 225aa914-955f-42b5-afb5-29bebdf7da0c
+langcode: fr
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: lsQkbo4njZ-Q_oGKCPGXGWFjWF1I7QpgA6m-t9rcRoA
+id: node_publish_action
+label: 'Publier un contenu'
+type: node
+plugin: node_publish_action
+configuration: {  }
+                                                                                                                                                                                                                               system.action.node_save_action.yml                                                                  000664  000106  000024  00000000437 13054536357 020034  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 5fab3c5f-a565-4a98-9d19-abd993681fcc
+langcode: fr
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: U9HspszLxcw6pZmRacFa6yDbbheyMN-We4fPbrWWHGg
+id: node_save_action
+label: 'Enregistrer un contenu'
+type: node
+plugin: node_save_action
+configuration: {  }
+                                                                                                                                                                                                                                 system.action.node_unpromote_action.yml                                                             000664  000106  000024  00000000473 13054536357 021126  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 9e0b66b9-b346-48f6-9fc1-a0aa425982ad
+langcode: fr
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: JBptjnfuOMtsdKygklXxoOgeOCTMtQxlkymjnnj-cC0
+id: node_unpromote_action
+label: 'Retirer un contenu de la page d''accueil'
+type: node
+plugin: node_unpromote_action
+configuration: {  }
+                                                                                                                                                                                                     system.action.node_unpublish_action.yml                                                             000664  000106  000024  00000000450 13054536357 021102  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: e74d50cb-e8aa-422e-b072-6fcc64e3cbb6
+langcode: fr
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: gGQXiSspwGl0lyOS6w_HCPpvGAPDciqDNLFwWOydVtI
+id: node_unpublish_action
+label: 'Dépublier un contenu'
+type: node
+plugin: node_unpublish_action
+configuration: {  }
+                                                                                                                                                                                                                        system.action.user_block_user_action.yml                                                            000664  000106  000024  00000000502 13054536360 021242  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: a92f3df9-60bd-4d83-abc7-bea00d7724e9
+langcode: fr
+status: true
+dependencies:
+  module:
+    - user
+_core:
+  default_config_hash: DyypzTfThX10FFQw-399qPfEbLLyrhXgQrKPVsmAoJ4
+id: user_block_user_action
+label: 'Bloquer le(s) utilisateur(s) sélectionné(s)'
+type: user
+plugin: user_block_user_action
+configuration: {  }
+                                                                                                                                                                                              system.action.user_cancel_user_action.yml                                                           000664  000106  000024  00000000507 13054536360 021402  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 7a51267b-20d2-42e3-ab5f-1fadb2eba741
+langcode: fr
+status: true
+dependencies:
+  module:
+    - user
+_core:
+  default_config_hash: nvrL9bFilzBvm2bjO9rQnFDpBA7dBBUjShSSt6NS-DU
+id: user_cancel_user_action
+label: 'Annuler l''(les) utilisateur(s) sélectionné(s)'
+type: user
+plugin: user_cancel_user_action
+configuration: {  }
+                                                                                                                                                                                         system.action.user_unblock_user_action.yml                                                          000664  000106  000024  00000000511 13054536360 021605  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 5fedfcc5-1b23-4207-8d35-1ebe48348723
+langcode: fr
+status: true
+dependencies:
+  module:
+    - user
+_core:
+  default_config_hash: SPsUXsR3Rc8d1y3gewzaAKWa1ncea_ywXX3f7LTn7k0
+id: user_unblock_user_action
+label: 'Débloquer le(s) utilisateur(s) sélectionné(s)'
+type: user
+plugin: user_unblock_user_action
+configuration: {  }
+                                                                                                                                                                                       system.authorize.yml                                                                                000664  000106  000024  00000000162 13054536360 015257  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         filetransfer_default: null
+_core:
+  default_config_hash: z63ds8M4zPrylEgFRkRcOlfcsXWwfITzjD4cj1kRdfg
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                              system.cron.yml                                                                                     000664  000106  000024  00000000252 13054536360 014206  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         threshold:
+  requirements_warning: 172800
+  requirements_error: 1209600
+_core:
+  default_config_hash: 05U0n1_8zHYzxEFSWjyHCWuJyhdez2a6Z_aTIXin04E
+langcode: fr
+logging: 1
+                                                                                                                                                                                                                                                                                                                                                      system.date.yml                                                                                     000664  000106  000024  00000000334 13054536360 014163  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         country:
+  default: ''
+first_day: 0
+timezone:
+  default: Europe/Zurich
+  user:
+    configurable: true
+    warn: false
+    default: 0
+_core:
+  default_config_hash: V9UurX2GPT05NWKG9f2GWQqFG2TRG8vczidwjpy7Woo
+langcode: fr
+                                                                                                                                                                                                                                                                                                    system.diff.yml                                                                                     000664  000106  000024  00000000207 13054536360 014155  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         context:
+  lines_leading: 2
+  lines_trailing: 2
+_core:
+  default_config_hash: 1WanmaEhxW_vM8_5Ktsdntj8MaO9UBHXg0lN603PsWM
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                         system.file.yml                                                                                     000664  000106  000024  00000000301 13054536360 014157  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         allow_insecure_uploads: false
+default_scheme: public
+path:
+  temporary: /tmp
+temporary_maximum_age: 21600
+_core:
+  default_config_hash: t48gCU9DzYfjb3bAOIqHLzhL0ChBlXh6_5B5Pyo9t8g
+langcode: fr
+                                                                                                                                                                                                                                                                                                                               system.image.gd.yml                                                                                 000664  000106  000024  00000000150 13054536360 014715  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         jpeg_quality: 75
+_core:
+  default_config_hash: eNXaHfkJJUThHeF0nvkoXyPLRrKYGxgHRjORvT4F5rQ
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                                        system.image.yml                                                                                    000664  000106  000024  00000000143 13054536360 014326  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         toolkit: gd
+_core:
+  default_config_hash: durWHaKeBaq4d9Wpi4RqwADj1OufDepcnJuhVLmKN24
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                                             system.logging.yml                                                                                  000664  000106  000024  00000000151 13054536360 014671  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         error_level: hide
+_core:
+  default_config_hash: u3-njszl92FaxjrCMiq0yDcjAfcdx72w1zT1O9dx6aA
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                                       system.mail.yml                                                                                     000664  000106  000024  00000000166 13054536360 014173  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         interface:
+  default: php_mail
+_core:
+  default_config_hash: rYgt7uhPafP2ngaN_ZUPFuyI4KdE0zU868zLNSlzKoE
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                          system.maintenance.yml                                                                              000664  000106  000024  00000000304 13054536360 015525  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         message: '@site est en cours de maintenance. Nous serons de retour très bientôt. Merci de votre patience.'
+langcode: fr
+_core:
+  default_config_hash: Z5MXifrF77GEAgx0GQ6iWT8wStjFuY8BD9OruofWTJ8
+                                                                                                                                                                                                                                                                                                                            system.menu.account.yml                                                                             000664  000106  000024  00000000442 13054536360 015645  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 38639cc9-71fa-4e5a-8f78-65d5fed6f943
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: M_Bh81osDyUQ4wV0GgU_NdBNqkzM87sLxjaCdFj9mnw
+id: account
+label: 'Menu du compte de l''utilisateur'
+description: 'Liens associés au compte utilisateur courant'
+locked: true
+                                                                                                                                                                                                                              system.menu.admin.yml                                                                               000664  000106  000024  00000000402 13054536360 015275  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: f8d32968-b3d6-4d1a-b53e-057a28c55d6b
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: sapEi2YDGoI9yQIT_WgIV2vUdQ6DScH0V3fAyTadAL0
+id: admin
+label: Administration
+description: 'Liens des tâches d''administration'
+locked: true
+                                                                                                                                                                                                                                                              system.menu.footer.yml                                                                              000664  000106  000024  00000000401 13054536360 015502  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 3e603ce7-a611-4a12-83f2-2f73132d7317
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: 7yrlW5z9zdg2eBucB2GPqXKSMQfH9lSRSO4DbWF7AFc
+id: footer
+label: 'Pied de page'
+description: 'Liens d''informations sur le site'
+locked: true
+                                                                                                                                                                                                                                                               system.menu.main.yml                                                                                000664  000106  000024  00000000377 13054536360 015144  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 614666ba-b3c3-47b0-b552-2573f5ac13c7
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: Q2Ra3jfoIVk0f3SjxJX61byRQFVBAbpzYDQOiY-kno8
+id: main
+label: 'Navigation principale'
+description: 'Liens de section du site'
+locked: true
+                                                                                                                                                                                                                                                                 system.menu.tools.yml                                                                               000664  000106  000024  00000000427 13054536360 015354  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 12e2f9e3-6240-4ff6-a6f9-f3c73cfe763c
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: BCM-vV1zzRaLHN18dqAR_CuGOj8AFJvTx7BKl_8Gcxc
+id: tools
+label: Outils
+description: 'Liens outils de l''utilisateur, souvent ajoutés par des modules'
+locked: true
+                                                                                                                                                                                                                                         system.performance.yml                                                                              000664  000106  000024  00000001043 13054536360 015545  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         cache:
+  page:
+    max_age: 0
+css:
+  preprocess: true
+  gzip: true
+fast_404:
+  enabled: true
+  paths: '/\.(?:txt|png|gif|jpe?g|css|js|ico|swf|flv|cgi|bat|pl|dll|exe|asp)$/i'
+  exclude_paths: '/\/(?:styles|imagecache)\//'
+  html: '<!DOCTYPE html><html><head><title>404 Not Found</title></head><body><h1>Not Found</h1><p>The requested URL "@path" was not found on this server.</p></body></html>'
+js:
+  preprocess: true
+  gzip: true
+stale_file_threshold: 2592000
+_core:
+  default_config_hash: b2cssrj-lOmATIbdehfCqfCFgVR0qCdxxWhwqa2KBVQ
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             system.rss.yml                                                                                      000664  000106  000024  00000000226 13054536360 014055  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         channel:
+  description: ''
+items:
+  limit: 10
+  view_mode: rss
+langcode: fr
+_core:
+  default_config_hash: TlH7NNk46phfxu1mSUfwg1C0YqaGsUCeD4l9JQnQlDU
+                                                                                                                                                                                                                                                                                                                                                                          system.site.yml                                                                                     000664  000106  000024  00000000447 13054536360 014217  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: fee0023f-726f-4c51-9d55-7f1e0d973062
+name: Drupal
+mail: admin@example.com
+slogan: ''
+page:
+  403: ''
+  404: ''
+  front: /user/login
+admin_compact_mode: false
+weight_select_max: 100
+langcode: fr
+default_langcode: fr
+_core:
+  default_config_hash: AyT9s8OUcclfALRE_imByOMgtZ19eOlqdF6zI3p7yqo
+                                                                                                                                                                                                                         system.theme.global.yml                                                                             000664  000106  000024  00000000521 13054536360 015605  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         favicon:
+  mimetype: image/vnd.microsoft.icon
+  path: ''
+  url: ''
+  use_default: true
+features:
+  comment_user_picture: true
+  comment_user_verification: true
+  favicon: true
+  node_user_picture: false
+logo:
+  path: ''
+  url: ''
+  use_default: true
+_core:
+  default_config_hash: 9rAU4Pku7eMBQxauQqAgjzlcicFZ2As6zEa6zvTlCB8
+langcode: fr
+                                                                                                                                                                               system.theme.yml                                                                                    000664  000106  000024  00000000160 13054536360 014345  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         admin: ''
+default: stark
+_core:
+  default_config_hash: 6lQ55NXM9ysybMQ6NzJj4dtiQ1dAkOYxdDompa-r_kk
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                                text.settings.yml                                                                                   000664  000106  000024  00000000163 13054536360 014546  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         default_summary_length: 600
+_core:
+  default_config_hash: Bkewb77RBOK3_aXMPsp8p87gbc03NvmC5gBLzPl7hVA
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                             user.flood.yml                                                                                      000664  000106  000024  00000000245 13054536360 014004  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uid_only: false
+ip_limit: 50
+ip_window: 3600
+user_limit: 5
+user_window: 21600
+_core:
+  default_config_hash: UYfMzeP1S8jKm9PSvxf7nQNe8DsNS-3bc2WSNNXBQWs
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                           user.mail.yml                                                                                       000664  000106  000024  00000011047 13054536360 013625  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         cancel_confirm:
+  body: "[user:display-name],\r\n\r\nUne demande de suppression de votre compte sur [site:name] a été faite.\r\n\r\nVous pouvez maintenant supprimer votre compte sur [site:url-brief] en cliquant sur le lien ci-dessous ou en le copiant dans votre navigateur : \r\n\r\n[user:cancel-url]\r\n\r\nA NOTER : La suppression de votre compte est définitive.\r\n\r\nCe lien expirera dans un jour et aucune action ne sera lancée s'il n'est pas utilisé.\r\n\r\n--  L'équipe de [site:name]"
+  subject: 'Demande d''annulation du compte [user:display-name] sur [site:name]'
+password_reset:
+  body: "[user:display-name],\r\n\r\nUne demande de réinitialisation de votre mot de passe pour votre compte a été faite sur [site:name].\r\n\r\nVous pouvez maintenant vous connecter en cliquant sur le lien ci-dessous ou en le copiant dans votre navigateur : \r\n\r\n[user:one-time-login-url]\r\n\r\nCe lien ne peut être utilisé qu'une seule fois pour vous connecter et vous mènera à la page pour changer votre mot de passe. Il expirera dans un jour et rien ne se passera s'il n'est pas utilisé.\r\n\r\n--  L'équipe de [site:name]"
+  subject: 'Modification des informations de connexion pour [user:display-name] sur [site:name]'
+register_admin_created:
+  body: "[user:display-name],\r\n\r\nUn administrateur sur [site:name] a créé un compte pour vous. Vous pouvez maintenant vous connecter en utilisant le lien ci-dessous ou en le copiant dans votre navigateur : \r\n\r\n[user:one-time-login-url]\r\n\r\nCe lien ne peut être utilisé qu'une seule fois pour vous connecter et vous redirigera vers la page où vous pourrez choisir votre mot de passe.\r\n\r\nAprès avoir choisi votre mot de passe, vous pourrez vous connecter sur [site:login-url] en utilisant : \r\n\r\nnom d'utilisateur : [user:name]\r\nmot de passe : Votre mot de passe\r\n\r\n--  L'équipe de [site:name]"
+  subject: 'Un administrateur a créé un compte pour vous sur [site:name]'
+register_no_approval_required:
+  body: "[user:display-name],\r\n\r\nNous vous remercions pour votre inscription sur [site:name]. Vous pouvez maintenant vous connecter en utilisant le lien ci-dessous ou en le copiant dans votre navigateur : \r\n\r\n[user:one-time-login-url]\r\n\r\nCe lien ne peut être utilisé qu'une seule fois et vous redirigera vers une page où vous pourrez choisir votre mot de passe.\r\n\r\nAprès avoir choisi votre mot de passe, vous pourrez vous connecter sur [site:login-url] en utilisant : \r\n\r\nNom d'utilisateur : [user:name]\r\nmot de passe : Votre mot de passe\r\n\r\n--  L'équipe de [site:name]"
+  subject: 'Détails du compte [user:display-name] sur [site:name]'
+register_pending_approval:
+  body: "[user:display-name],\r\n\r\nNous vous remercions pour votre demande d'inscription sur [site:name]. Votre demande est actuellement en cours de validation. Une fois la validation faite, vous recevrez un autre courriel de confirmation contenant les informations vous permettant de vous connecter, choisir votre mot de passe ainsi que d'autres détails.\r\n\r\n\r\n--  L'équipe de [site:name]"
+  subject: 'Détails du compte [user:display-name] sur [site:name] (en attente de validation d''un administrateur)'
+register_pending_approval_admin:
+  body: "[user:display-name] a fait une demande de compte.\r\n\r\n[user:edit-url]"
+  subject: 'Détails du compte [user:display-name] sur [site:name] (en attente de validation d''un administrateur)'
+status_activated:
+  body: "[user:display-name],\r\n\r\nVotre compte sur [site:name] a été activé.\r\n\r\nVous pouvez maintenant vous connecter en cliquant sur le lien ci-dessous ou en le copiant dans votre navigateur : \r\n\r\n[user:one-time-login-url]\r\n\r\nCe lien ne peut être utilisé qu'une seule fois et vous redirigera vers une page où vous pourrez choisir votre mot de passe.\r\n\r\nAprès avoir choisi votre mot de passe, vous pourrez vous connecter sur [site:login-url] en utilisant :\r\n\r\nnom d'utilisateur : [user:account-name]\r\nmot de passe : Votre mot de passe\r\n\r\n--  L'équipe de [site:name]"
+  subject: 'Détails du compte [user:display-name] sur [site:name] (validé)'
+status_blocked:
+  body: "[user:display-name],\r\n\r\nVotre compte sur [site:name] a été bloqué.\r\n\r\n-- L'équipe [site:name]"
+  subject: 'Détails du compte [user:display-name] sur [site:name] (bloqué)'
+status_canceled:
+  body: "[user:display-name],\r\n\r\nVotre compte sur [site:name] a été annulé.\r\n\r\n--  L'équipe de [site:name]"
+  subject: 'Détails du compte [user:display-name] sur [site:name] (annulé)'
+langcode: fr
+_core:
+  default_config_hash: m4J3ROov32OEquRYGLbx3SpdDGuqx9l_zJtNvihqdCg
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         user.role.anonymous.yml                                                                             000664  000106  000024  00000000411 13054536360 015664  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 75c785a5-01b0-4513-b2dd-6d602cd68e98
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: j5zLMOdJBqC0bMvSdth5UebkprJB8g_2FXHqhfpJzow
+id: anonymous
+label: 'Utilisateur anonyme'
+weight: 0
+is_admin: false
+permissions:
+  - 'access content'
+                                                                                                                                                                                                                                                       user.role.authenticated.yml                                                                         000664  000106  000024  00000000422 13054536360 016460  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: f8f303b6-0366-47cb-8e09-230946100550
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: dJ0L2DNSj5q6XVZAGsuVDpJTh5UeYkIPwKrUOOpr8YI
+id: authenticated
+label: 'Utilisateur authentifié'
+weight: 1
+is_admin: false
+permissions:
+  - 'access content'
+                                                                                                                                                                                                                                              user.settings.yml                                                                                   000664  000106  000024  00000000734 13054536360 014544  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         anonymous: Anonyme
+verify_mail: true
+notify:
+  cancel_confirm: true
+  password_reset: true
+  status_activated: true
+  status_blocked: false
+  status_canceled: false
+  register_admin_created: true
+  register_no_approval_required: true
+  register_pending_approval: true
+register: visitors_admin_approval
+cancel_method: user_cancel_block
+password_reset_timeout: 86400
+password_strength: true
+langcode: fr
+_core:
+  default_config_hash: r4kwhOM0IWXVMUZDz744Yc16EOh37ZhYbA8kGOhSmLk
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
\ No newline at end of file
diff --git a/core/modules/system/src/Tests/Installer/Fixtures/minimal-fr.tar.gz b/core/modules/system/src/Tests/Installer/Fixtures/minimal-fr.tar.gz
new file mode 100644
index 0000000..584ad5f
--- /dev/null
+++ b/core/modules/system/src/Tests/Installer/Fixtures/minimal-fr.tar.gz
@@ -0,0 +1,980 @@
+block.block.stark_admin.yml                                                                         000664  000106  000024  00000000756 13054304353 016404  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 4099abca-6c2b-4910-9d01-1ace9af89258
+langcode: fr
+status: true
+dependencies:
+  config:
+    - system.menu.admin
+  module:
+    - system
+  theme:
+    - stark
+_core:
+  default_config_hash: DWAB7HaAfAJerAmyT8B2K-6qxicu9n0PcKVpDr--N4c
+id: stark_admin
+theme: stark
+region: sidebar_first
+weight: 1
+provider: null
+plugin: 'system_menu_block:admin'
+settings:
+  id: 'system_menu_block:admin'
+  label: Administration
+  provider: system
+  label_display: visible
+  level: 1
+  depth: 0
+visibility: {  }
+                  block.block.stark_branding.yml                                                                      000664  000106  000024  00000000753 13054304353 017075  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: c2bfe798-82f8-4e1d-bf00-a31f390f7c37
+langcode: fr
+status: true
+dependencies:
+  module:
+    - system
+  theme:
+    - stark
+_core:
+  default_config_hash: fRKXNB91UxDvEMkzCR8ZBsawfC6Fqbme2gtobei3gu4
+id: stark_branding
+theme: stark
+region: header
+weight: 0
+provider: null
+plugin: system_branding_block
+settings:
+  id: system_branding_block
+  label: 'Site branding'
+  provider: system
+  label_display: '0'
+  use_site_logo: true
+  use_site_name: true
+  use_site_slogan: true
+visibility: {  }
+                     block.block.stark_local_actions.yml                                                                 000664  000106  000024  00000000632 13054304353 020117  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 4cb12160-9735-4967-9f02-2c7e35e4a23d
+langcode: fr
+status: true
+dependencies:
+  theme:
+    - stark
+_core:
+  default_config_hash: PffmQ-ABSz5tFjWmVsR7NesunDnEivvopnJnBjl8KNE
+id: stark_local_actions
+theme: stark
+region: content
+weight: -10
+provider: null
+plugin: local_actions_block
+settings:
+  id: local_actions_block
+  label: 'Primary admin actions'
+  provider: core
+  label_display: '0'
+visibility: {  }
+                                                                                                      block.block.stark_local_tasks.yml                                                                   000664  000106  000024  00000000646 13054304353 017611  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: e79060e5-a9be-42ae-be00-cb100a781cff
+langcode: fr
+status: true
+dependencies:
+  theme:
+    - stark
+_core:
+  default_config_hash: c-06bbElRY5sKmglk74ppgTW93Et4-EJFyNiUZMb8JY
+id: stark_local_tasks
+theme: stark
+region: content
+weight: -20
+provider: null
+plugin: local_tasks_block
+settings:
+  id: local_tasks_block
+  label: Onglets
+  provider: core
+  label_display: '0'
+  primary: true
+  secondary: true
+visibility: {  }
+                                                                                          block.block.stark_login.yml                                                                         000664  000106  000024  00000000651 13054304353 016416  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 6415d68d-116b-4fea-9500-0e136b766c1a
+langcode: fr
+status: true
+dependencies:
+  module:
+    - user
+  theme:
+    - stark
+_core:
+  default_config_hash: 4QlSnWBcxxKMIFRM8sbu_MjSkcp3NjGgnVrc-lynQHI
+id: stark_login
+theme: stark
+region: sidebar_first
+weight: 0
+provider: null
+plugin: user_login_block
+settings:
+  id: user_login_block
+  label: 'Connexion utilisateur'
+  provider: user
+  label_display: visible
+visibility: {  }
+                                                                                       block.block.stark_messages.yml                                                                      000664  000106  000024  00000000656 13054304353 017122  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 104fa967-4411-4511-8c07-7c3b1410e35d
+langcode: fr
+status: true
+dependencies:
+  module:
+    - system
+  theme:
+    - stark
+_core:
+  default_config_hash: 5MNdk3fpMKx_xxBTcz2T11DL4XEU1H5SgHl8BsYdFsA
+id: stark_messages
+theme: stark
+region: highlighted
+weight: 0
+provider: null
+plugin: system_messages_block
+settings:
+  id: system_messages_block
+  label: 'Status messages'
+  provider: system
+  label_display: '0'
+visibility: {  }
+                                                                                  block.block.stark_page_title.yml                                                                    000664  000106  000024  00000000611 13054304353 017417  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 8499345b-9e56-4b8a-a402-2c61e23b74e5
+langcode: fr
+status: true
+dependencies:
+  theme:
+    - stark
+_core:
+  default_config_hash: 8yptDf6WrXxeyevUz4nP5vfr7BtxQqCBMninhV2IJ1g
+id: stark_page_title
+theme: stark
+region: content
+weight: -30
+provider: null
+plugin: page_title_block
+settings:
+  id: page_title_block
+  label: 'Titre de page'
+  provider: core
+  label_display: '0'
+visibility: {  }
+                                                                                                                       block.block.stark_tools.yml                                                                         000664  000106  000024  00000000746 13054304353 016453  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: aaf4e75e-a26e-4fda-9c00-da1e7fe54694
+langcode: fr
+status: true
+dependencies:
+  config:
+    - system.menu.tools
+  module:
+    - system
+  theme:
+    - stark
+_core:
+  default_config_hash: xCOijLdB1-UgXxQ9a0D1_pd8vxNEhfMnxXZc8jYhHjs
+id: stark_tools
+theme: stark
+region: sidebar_first
+weight: 0
+provider: null
+plugin: 'system_menu_block:tools'
+settings:
+  id: 'system_menu_block:tools'
+  label: Outils
+  provider: system
+  label_display: visible
+  level: 1
+  depth: 0
+visibility: {  }
+                          core.date_format.fallback.yml                                                                       000664  000106  000024  00000000367 13054304353 016676  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 8bbce291-b1bd-4ab3-a005-5c34ddcca074
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: 7klS5IWXrwzVaPpYZFAs6wcx8U2FF1X73OfrtTsvuvE
+id: fallback
+label: 'Format de date de repli'
+locked: true
+pattern: 'D, m/d/Y - H:i'
+                                                                                                                                                                                                                                                                         core.date_format.html_date.yml                                                                      000664  000106  000024  00000000337 13054304353 017075  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: cb802705-d956-4cdb-aa06-6bdc0fa71088
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: EOQltUQPmgc6UQ2rcJ4Xi_leCEJj5ui0TR-12duS-Tk
+id: html_date
+label: 'Date HTML'
+locked: true
+pattern: Y-m-d
+                                                                                                                                                                                                                                                                                                 core.date_format.html_datetime.yml                                                                  000664  000106  000024  00000000366 13054304353 017756  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 24aed910-c9cd-49a4-8900-a9855acb14a9
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: jxfClwZIRXIdcvMrE--WkcZxDGUVoOIE3Sm2NRZlFuE
+id: html_datetime
+label: 'Date et heure HTML'
+locked: true
+pattern: 'Y-m-d\TH:i:sO'
+                                                                                                                                                                                                                                                                          core.date_format.html_month.yml                                                                     000664  000106  000024  00000000336 13054304353 017304  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 2752d024-5686-42db-8e14-2005ce4894ce
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: Z7KuCUwM_WdTNvLcoltuX3_8d-s-8FZkTN6KgNwF0eM
+id: html_month
+label: 'Mois HTML'
+locked: true
+pattern: Y-m
+                                                                                                                                                                                                                                                                                                  core.date_format.html_time.yml                                                                      000664  000106  000024  00000000342 13054304353 017112  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 4daa06b3-d1ea-4039-b204-4a5ff4f2bc4a
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: M7yqicYkU36hRy5p9drAaGBBihhUD1OyujFrAaQ93ZE
+id: html_time
+label: 'Heure HTML'
+locked: true
+pattern: 'H:i:s'
+                                                                                                                                                                                                                                                                                              core.date_format.html_week.yml                                                                      000664  000106  000024  00000000342 13054304353 017107  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 0c159618-98e4-4fdd-a115-211b2ae94a20
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: wKD4WsoV_wFgv2vgI4mcAAFSIzrye17ykzdwrnApkfY
+id: html_week
+label: 'Semaine HTML'
+locked: true
+pattern: Y-\WW
+                                                                                                                                                                                                                                                                                              core.date_format.html_year.yml                                                                      000664  000106  000024  00000000337 13054304353 017120  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 146f75ed-2bab-499d-8800-fd2828d3847f
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: OjekiQuX9RbVQ2_8jOHBL94RgYLePqX7wpfNGgcQzrk
+id: html_year
+label: 'Année HTML'
+locked: true
+pattern: 'Y'
+                                                                                                                                                                                                                                                                                                 core.date_format.html_yearless_date.yml                                                             000664  000106  000024  00000000362 13054304353 021002  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 658c9c3c-9d02-4893-be02-2a65056007a4
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: 5VpawMrKPEPCkoO4YpPa0TDFO2dgiIHfTziJtwlmUxc
+id: html_yearless_date
+label: 'Date HTML sans année'
+locked: true
+pattern: m-d
+                                                                                                                                                                                                                                                                              core.date_format.long.yml                                                                           000664  000106  000024  00000000363 13054304353 016072  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 29638fa5-f19b-41ac-9200-b6ae27bbeb2c
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: og8sWXhBuHbLMw3CoiBEZjgqSyhFBFmcbUW_wLcfNbo
+id: long
+label: 'Date longue par défaut'
+locked: false
+pattern: 'l j F Y - H:i'
+                                                                                                                                                                                                                                                                             core.date_format.medium.yml                                                                         000664  000106  000024  00000000366 13054304353 016416  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: e50eff5a-7308-4fad-9006-6e0be25a9e03
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: nzL5d024NjXIX_8TlT6uFAu973lmfkmHklJC-2i9rAE
+id: medium
+label: 'Date moyenne par défaut'
+locked: false
+pattern: 'D d/m/Y - H:i'
+                                                                                                                                                                                                                                                                          core.date_format.short.yml                                                                          000664  000106  000024  00000000362 13054304353 016271  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: db8d02be-e494-4468-8f00-ca39778d85f9
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: AlzeyytA8InBgxIG9H2UDJYs3CG98Zj6yRsDKmlbZwA
+id: short
+label: 'Date courte par défaut'
+locked: false
+pattern: 'd/m/Y - H:i'
+                                                                                                                                                                                                                                                                              core.entity_form_mode.user.register.yml                                                             000664  000106  000024  00000000374 13054304353 021014  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 1bae4e75-fccf-479b-b307-7b4603853762
+langcode: fr
+status: true
+dependencies:
+  module:
+    - user
+_core:
+  default_config_hash: flXhTcp55yLcyy7ZLOhPGKGZobZQJdkAFVWV3LseiuI
+id: user.register
+label: 'S''inscrire'
+targetEntityType: user
+cache: true
+                                                                                                                                                                                                                                                                    core.entity_view_mode.node.full.yml                                                                 000664  000106  000024  00000000375 13054304353 020111  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: e5e9424e-7769-4de4-8d50-80cc9518cc0c
+langcode: fr
+status: false
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: ElrtInxGjZd7GaapJ5O9n-ugi2hG2IxFivtgn0tHOsk
+id: node.full
+label: 'Contenu complet'
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                                                                                   core.entity_view_mode.node.rss.yml                                                                  000664  000106  000024  00000000356 13054304353 017755  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: f7627d5b-5b19-48a8-914c-768ae3200c59
+langcode: fr
+status: false
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: vlYzr-rp2f9NMp-Qlr4sFjlqRq-90mco5-afLNGwCrU
+id: node.rss
+label: RSS
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                                                                                                  core.entity_view_mode.node.search_index.yml                                                         000664  000106  000024  00000000410 13054304353 021571  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: ef450341-391b-41c6-9708-08f9babfbca2
+langcode: fr
+status: false
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: fVFfJv_GzBRE-wpRHbfD5a3VjnhbEOXG6lvRd3uaccY
+id: node.search_index
+label: 'Index de recherche'
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                                                                        core.entity_view_mode.node.search_result.yml                                                        000664  000106  000024  00000000473 13054304353 022011  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 9ef1145e-6773-4e0e-8700-aed098972522
+langcode: fr
+status: false
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: 6GCOQ-jP2RbdbHA5YWQ6bT8CfGbqrBYKOSC_XY4E3ZM
+id: node.search_result
+label: 'Effectuer une recherche en mettant en évidence les données saisies'
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                     core.entity_view_mode.node.teaser.yml                                                               000664  000106  000024  00000000365 13054304353 020431  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 1b75e6fa-d63c-4f33-a800-cb612493902b
+langcode: fr
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: Mz9qWr1kUYK0mjRAGDsr5XS6PvtZ24en_7ndt-pyWe4
+id: node.teaser
+label: Accroche
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                                                                                           core.entity_view_mode.user.compact.yml                                                              000664  000106  000024  00000000365 13054304353 020625  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 5b2ee0e1-7a5c-4e79-a000-0b219154541e
+langcode: fr
+status: true
+dependencies:
+  module:
+    - user
+_core:
+  default_config_hash: 71CSAr_LNPcgu6D6jI4INl1KATkahmeyUFBETAWya8g
+id: user.compact
+label: Compact
+targetEntityType: user
+cache: true
+                                                                                                                                                                                                                                                                           core.entity_view_mode.user.full.yml                                                                 000664  000106  000024  00000000400 13054304353 020127  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 2ba4a2da-a107-430f-9a46-70e829fb87cb
+langcode: fr
+status: false
+dependencies:
+  module:
+    - user
+_core:
+  default_config_hash: mQIF_foYjmnVSr9MpcD4CTaJE_FpO1AyDd_DskztGhM
+id: user.full
+label: 'Compte utilisateur'
+targetEntityType: user
+cache: true
+                                                                                                                                                                                                                                                                core.extension.yml                                                                                  000664  000106  000024  00000000465 13054304353 014666  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         module:
+  block: 0
+  dblog: 0
+  dynamic_page_cache: 0
+  field: 0
+  file: 0
+  filter: 0
+  language: 0
+  locale: 0
+  node: 0
+  page_cache: 0
+  system: 0
+  text: 0
+  user: 0
+  minimal: 1000
+theme:
+  stark: 0
+_core:
+  default_config_hash: m2GVq11UAOVuNgj8x0t5fMOPujpvQQ_zxLoaly1BMEU
+langcode: fr
+profile: minimal
+                                                                                                                                                                                                           core.menu.static_menu_link_overrides.yml                                                            000664  000106  000024  00000000151 13054304353 021217  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         definitions: {  }
+_core:
+  default_config_hash: jdY7AU0tU-QsjmiOw3W8vwpYMb-By--_MSFgbqKUTYM
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                                       dblog.settings.yml                                                                                  000664  000106  000024  00000000147 13054304353 014646  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         row_limit: 1000
+_core:
+  default_config_hash: e883aGsrt1wFrsydlYU584PZONCSfRy0DtkZ9KzHb58
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                                         field.settings.yml                                                                                  000664  000106  000024  00000000154 13054304353 014640  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         purge_batch_size: 50
+_core:
+  default_config_hash: nJk0TAQBzlNo52ehiHI7bIEPLGi0BYqZvPdEn7Chfu0
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                                    field.storage.node.body.yml                                                                         000664  000106  000024  00000000623 13054304353 016325  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 3df3b7e9-bf7a-4c9e-bb00-fd6eeff0e99e
+langcode: fr
+status: true
+dependencies:
+  module:
+    - node
+    - text
+_core:
+  default_config_hash: EBUo7qOWqaiZaQ_RC9sLY5IoDKphS34v77VIHSACmVY
+id: node.body
+field_name: body
+entity_type: node
+type: text_with_summary
+settings: {  }
+module: text
+locked: false
+cardinality: 1
+translatable: true
+indexes: {  }
+persist_with_no_fields: true
+custom_storage: false
+                                                                                                             file.settings.yml                                                                                   000664  000106  000024  00000000257 13054304353 014500  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         description:
+  type: textfield
+  length: 128
+icon:
+  directory: core/modules/file/icons
+_core:
+  default_config_hash: 8LI-1XgwLt9hYRns_7c81S632d6JhdqXKs4vDheaG6E
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                 filter.format.plain_text.yml                                                                        000664  000106  000024  00000001101 13054304353 016631  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 2295982d-5271-4249-b708-8a1acf01150c
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: NIKBt6kw_uPhNI0qtR2DnRf7mSOgAQdx7Q94SKMjXbQ
+name: 'Texte brut'
+format: plain_text
+weight: 10
+filters:
+  filter_html_escape:
+    id: filter_html_escape
+    provider: filter
+    status: true
+    weight: -10
+    settings: {  }
+  filter_url:
+    id: filter_url
+    provider: filter
+    status: true
+    weight: 0
+    settings:
+      filter_url_length: 72
+  filter_autop:
+    id: filter_autop
+    provider: filter
+    status: true
+    weight: 0
+    settings: {  }
+                                                                                                                                                                                                                                                                                                                                                                                                                                                               filter.settings.yml                                                                                 000664  000106  000024  00000000226 13054304353 015042  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         fallback_format: plain_text
+always_show_fallback_choice: false
+_core:
+  default_config_hash: FiPjM3WdB__ruFA7B6TLwni_UcZbmek5G4b2dxQItxA
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                          language.entity.fr.yml                                                                              000664  000106  000024  00000000224 13054304353 015420  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: d375678a-a1c5-41d7-ae1a-2621ca48c580
+langcode: fr
+status: true
+dependencies: {  }
+id: fr
+label: French
+direction: ltr
+weight: 0
+locked: false
+                                                                                                                                                                                                                                                                                                                                                                            language.entity.und.yml                                                                             000664  000106  000024  00000000350 13054304353 015577  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 22d23135-156a-4f35-a600-ada6d4a86b2f
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: eNX6lLCKDaY83nCMh20My---y03KbiFlv802DKCCpvg
+id: und
+label: 'Non spécifié'
+direction: ltr
+weight: 2
+locked: true
+                                                                                                                                                                                                                                                                                        language.entity.zxx.yml                                                                             000664  000106  000024  00000000350 13054304353 015642  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 0231b546-e6c8-4329-bd00-0ddf1dca63dd
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: 35CefWbnzaiytcg3acexxz_GTvuwIjYd_ZTcmmR-tXA
+id: zxx
+label: 'Non applicable'
+direction: ltr
+weight: 3
+locked: true
+                                                                                                                                                                                                                                                                                        language.mappings.yml                                                                               000664  000106  000024  00000000372 13054304353 015320  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         map:
+  'no': nb
+  pt: pt-pt
+  zh: zh-hans
+  zh-tw: zh-hant
+  zh-hk: zh-hant
+  zh-mo: zh-hant
+  zh-cht: zh-hant
+  zh-cn: zh-hans
+  zh-sg: zh-hans
+  zh-chs: zh-hans
+_core:
+  default_config_hash: EMWe7Yu4Q5eD-NUfNuQAWGBvYUNZPIinztEtONSmsDc
+langcode: fr
+                                                                                                                                                                                                                                                                      language.negotiation.yml                                                                            000664  000106  000024  00000000336 13054304353 016022  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         session:
+  parameter: language
+url:
+  source: path_prefix
+  prefixes:
+    fr: ''
+  domains:
+    fr: ''
+selected_langcode: site_default
+_core:
+  default_config_hash: uEePITI9tV6WqzmsTb7MfPCi5yPWXSxAN1xeLcYFQbM
+langcode: fr
+                                                                                                                                                                                                                                                                                                  language.types.yml                                                                                  000664  000106  000024  00000000623 13054304353 014645  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         all:
+  - language_interface
+  - language_content
+  - language_url
+configurable:
+  - language_interface
+negotiation:
+  language_content:
+    enabled:
+      language-interface: 0
+  language_url:
+    enabled:
+      language-url: 0
+      language-url-fallback: 1
+  language_interface:
+    enabled:
+      language-url: 0
+_core:
+  default_config_hash: dqouFqVseNJNvEjsoYKxbinFOITuCxYhi4y2OTNQP_8
+langcode: fr
+                                                                                                             locale.settings.yml                                                                                 000664  000106  000024  00000001025 13054304353 015012  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         cache_strings: true
+translate_english: false
+javascript:
+  directory: languages
+translation:
+  use_source: remote_and_local
+  default_filename: '%project-%version.%language.po'
+  default_server_pattern: 'http://ftp.drupal.org/files/translations/%core/%project/%project-%version.%language.po'
+  overwrite_customized: false
+  overwrite_not_customized: true
+  update_interval_days: 0
+  path: sites/default/files/translations
+  import_enabled: false
+_core:
+  default_config_hash: Lqw8pAQIfr4sRSts2RRWG97eNG6vRT7FhqF_b5COPGk
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           node.settings.yml                                                                                   000664  000106  000024  00000000156 13054304353 014504  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         use_admin_theme: false
+_core:
+  default_config_hash: 2OMXCScXUOLSYID9-phjO4q36nnnaMWNUlDxEqZzG1U
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                                  system.action.node_delete_action.yml                                                                000664  000106  000024  00000000441 13054304353 020320  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 0d217e01-8a3a-4bb5-9d00-c6b3a56c4971
+langcode: fr
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: Zx0jD1Klh5tZaGJy8uOeR_2MCu9FDM4xg7TaUJUEbkI
+id: node_delete_action
+label: 'Supprimer le contenu'
+type: node
+plugin: node_delete_action
+configuration: {  }
+                                                                                                                                                                                                                               system.action.node_make_sticky_action.yml                                                           000664  000106  000024  00000000476 13054304353 021371  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 28c0ad92-c76c-441e-8558-883cf3b54145
+langcode: fr
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: sOb26JSy3fGpWkvR0WYN6_hMqj_6d1rvbvrkzp1yya0
+id: node_make_sticky_action
+label: 'Épingler un contenu en haut des listes'
+type: node
+plugin: node_make_sticky_action
+configuration: {  }
+                                                                                                                                                                                                  system.action.node_make_unsticky_action.yml                                                         000664  000106  000024  00000000500 13054304353 021720  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: f4e16ab8-5678-4b06-b700-cce617ea361c
+langcode: fr
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: lDM9mvIGAu8Sw8rt-uCO4Sr7yX5VPrDPxYcawkbKd6k
+id: node_make_unsticky_action
+label: 'Retirer un contenu du haut des listes'
+type: node
+plugin: node_make_unsticky_action
+configuration: {  }
+                                                                                                                                                                                                system.action.node_promote_action.yml                                                               000664  000106  000024  00000000467 13054304353 020553  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 143de3b8-7b89-4a59-a709-9a3bc8ab7252
+langcode: fr
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: N0RDBTqiK4dKoN4p4oW2j0SGWycdHyALUe9M-Ofp89U
+id: node_promote_action
+label: 'Promouvoir un contenu en page d''accueil'
+type: node
+plugin: node_promote_action
+configuration: {  }
+                                                                                                                                                                                                         system.action.node_publish_action.yml                                                               000664  000106  000024  00000000441 13054304353 020524  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: cb8d6c4f-4822-435c-9f07-7c0e9412c2bf
+langcode: fr
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: lsQkbo4njZ-Q_oGKCPGXGWFjWF1I7QpgA6m-t9rcRoA
+id: node_publish_action
+label: 'Publier un contenu'
+type: node
+plugin: node_publish_action
+configuration: {  }
+                                                                                                                                                                                                                               system.action.node_save_action.yml                                                                  000664  000106  000024  00000000437 13054304353 020021  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: c7adaa40-d8be-4aa2-8300-a45d43e44069
+langcode: fr
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: U9HspszLxcw6pZmRacFa6yDbbheyMN-We4fPbrWWHGg
+id: node_save_action
+label: 'Enregistrer un contenu'
+type: node
+plugin: node_save_action
+configuration: {  }
+                                                                                                                                                                                                                                 system.action.node_unpromote_action.yml                                                             000664  000106  000024  00000000473 13054304353 021113  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 4784ce4c-ba6d-4f98-a800-d0e8a086e359
+langcode: fr
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: JBptjnfuOMtsdKygklXxoOgeOCTMtQxlkymjnnj-cC0
+id: node_unpromote_action
+label: 'Retirer un contenu de la page d''accueil'
+type: node
+plugin: node_unpromote_action
+configuration: {  }
+                                                                                                                                                                                                     system.action.node_unpublish_action.yml                                                             000664  000106  000024  00000000450 13054304353 021067  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 256a4725-c261-4e0e-a700-d79c1e691f98
+langcode: fr
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: gGQXiSspwGl0lyOS6w_HCPpvGAPDciqDNLFwWOydVtI
+id: node_unpublish_action
+label: 'Dépublier un contenu'
+type: node
+plugin: node_unpublish_action
+configuration: {  }
+                                                                                                                                                                                                                        system.action.user_block_user_action.yml                                                            000664  000106  000024  00000000502 13054304353 021235  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 1711b974-e4de-4386-9c00-a17698cd0ce1
+langcode: fr
+status: true
+dependencies:
+  module:
+    - user
+_core:
+  default_config_hash: DyypzTfThX10FFQw-399qPfEbLLyrhXgQrKPVsmAoJ4
+id: user_block_user_action
+label: 'Bloquer le(s) utilisateur(s) sélectionné(s)'
+type: user
+plugin: user_block_user_action
+configuration: {  }
+                                                                                                                                                                                              system.action.user_cancel_user_action.yml                                                           000664  000106  000024  00000000507 13054304353 021375  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 9fd6971b-4766-4d54-890f-150bf8c41145
+langcode: fr
+status: true
+dependencies:
+  module:
+    - user
+_core:
+  default_config_hash: nvrL9bFilzBvm2bjO9rQnFDpBA7dBBUjShSSt6NS-DU
+id: user_cancel_user_action
+label: 'Annuler l''(les) utilisateur(s) sélectionné(s)'
+type: user
+plugin: user_cancel_user_action
+configuration: {  }
+                                                                                                                                                                                         system.action.user_unblock_user_action.yml                                                          000664  000106  000024  00000000511 13054304353 021600  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 764fb029-8c00-4efc-a207-7a31bde0798c
+langcode: fr
+status: true
+dependencies:
+  module:
+    - user
+_core:
+  default_config_hash: SPsUXsR3Rc8d1y3gewzaAKWa1ncea_ywXX3f7LTn7k0
+id: user_unblock_user_action
+label: 'Débloquer le(s) utilisateur(s) sélectionné(s)'
+type: user
+plugin: user_unblock_user_action
+configuration: {  }
+                                                                                                                                                                                       system.authorize.yml                                                                                000664  000106  000024  00000000162 13054304353 015252  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         filetransfer_default: null
+_core:
+  default_config_hash: z63ds8M4zPrylEgFRkRcOlfcsXWwfITzjD4cj1kRdfg
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                              system.cron.yml                                                                                     000664  000106  000024  00000000252 13054304353 014201  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         threshold:
+  requirements_warning: 172800
+  requirements_error: 1209600
+_core:
+  default_config_hash: 05U0n1_8zHYzxEFSWjyHCWuJyhdez2a6Z_aTIXin04E
+langcode: fr
+logging: 1
+                                                                                                                                                                                                                                                                                                                                                      system.date.yml                                                                                     000664  000106  000024  00000000334 13054304353 014156  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         country:
+  default: ''
+first_day: 0
+timezone:
+  default: Europe/Zurich
+  user:
+    configurable: true
+    warn: false
+    default: 0
+_core:
+  default_config_hash: V9UurX2GPT05NWKG9f2GWQqFG2TRG8vczidwjpy7Woo
+langcode: fr
+                                                                                                                                                                                                                                                                                                    system.diff.yml                                                                                     000664  000106  000024  00000000207 13054304353 014150  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         context:
+  lines_leading: 2
+  lines_trailing: 2
+_core:
+  default_config_hash: 1WanmaEhxW_vM8_5Ktsdntj8MaO9UBHXg0lN603PsWM
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                         system.file.yml                                                                                     000664  000106  000024  00000000301 13054304353 014152  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         allow_insecure_uploads: false
+default_scheme: public
+path:
+  temporary: /tmp
+temporary_maximum_age: 21600
+_core:
+  default_config_hash: t48gCU9DzYfjb3bAOIqHLzhL0ChBlXh6_5B5Pyo9t8g
+langcode: fr
+                                                                                                                                                                                                                                                                                                                               system.image.gd.yml                                                                                 000664  000106  000024  00000000150 13054304353 014710  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         jpeg_quality: 75
+_core:
+  default_config_hash: eNXaHfkJJUThHeF0nvkoXyPLRrKYGxgHRjORvT4F5rQ
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                                        system.image.yml                                                                                    000664  000106  000024  00000000143 13054304353 014321  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         toolkit: gd
+_core:
+  default_config_hash: durWHaKeBaq4d9Wpi4RqwADj1OufDepcnJuhVLmKN24
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                                             system.logging.yml                                                                                  000664  000106  000024  00000000151 13054304353 014664  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         error_level: hide
+_core:
+  default_config_hash: u3-njszl92FaxjrCMiq0yDcjAfcdx72w1zT1O9dx6aA
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                                       system.mail.yml                                                                                     000664  000106  000024  00000000166 13054304353 014166  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         interface:
+  default: php_mail
+_core:
+  default_config_hash: rYgt7uhPafP2ngaN_ZUPFuyI4KdE0zU868zLNSlzKoE
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                          system.maintenance.yml                                                                              000664  000106  000024  00000000304 13054304353 015520  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         message: '@site est en cours de maintenance. Nous serons de retour très bientôt. Merci de votre patience.'
+langcode: fr
+_core:
+  default_config_hash: Z5MXifrF77GEAgx0GQ6iWT8wStjFuY8BD9OruofWTJ8
+                                                                                                                                                                                                                                                                                                                            system.menu.account.yml                                                                             000664  000106  000024  00000000442 13054304353 015640  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: dcc34e26-58e1-41eb-b300-a643f80760d0
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: M_Bh81osDyUQ4wV0GgU_NdBNqkzM87sLxjaCdFj9mnw
+id: account
+label: 'Menu du compte de l''utilisateur'
+description: 'Liens associés au compte utilisateur courant'
+locked: true
+                                                                                                                                                                                                                              system.menu.admin.yml                                                                               000664  000106  000024  00000000402 13054304353 015270  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: e522afba-7524-496a-a701-0140d52f690d
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: sapEi2YDGoI9yQIT_WgIV2vUdQ6DScH0V3fAyTadAL0
+id: admin
+label: Administration
+description: 'Liens des tâches d''administration'
+locked: true
+                                                                                                                                                                                                                                                              system.menu.footer.yml                                                                              000664  000106  000024  00000000401 13054304353 015475  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 2e0922fb-0935-4d3e-9516-223c777e2c90
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: 7yrlW5z9zdg2eBucB2GPqXKSMQfH9lSRSO4DbWF7AFc
+id: footer
+label: 'Pied de page'
+description: 'Liens d''informations sur le site'
+locked: true
+                                                                                                                                                                                                                                                               system.menu.main.yml                                                                                000664  000106  000024  00000000377 13054304353 015137  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 10496e2c-9ce6-4166-9d03-3d364dfb11d3
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: Q2Ra3jfoIVk0f3SjxJX61byRQFVBAbpzYDQOiY-kno8
+id: main
+label: 'Navigation principale'
+description: 'Liens de section du site'
+locked: true
+                                                                                                                                                                                                                                                                 system.menu.tools.yml                                                                               000664  000106  000024  00000000427 13054304353 015347  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: bddbafa2-6eac-42e3-8f53-83b304d5e523
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: BCM-vV1zzRaLHN18dqAR_CuGOj8AFJvTx7BKl_8Gcxc
+id: tools
+label: Outils
+description: 'Liens outils de l''utilisateur, souvent ajoutés par des modules'
+locked: true
+                                                                                                                                                                                                                                         system.performance.yml                                                                              000664  000106  000024  00000001043 13054304353 015540  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         cache:
+  page:
+    max_age: 0
+css:
+  preprocess: true
+  gzip: true
+fast_404:
+  enabled: true
+  paths: '/\.(?:txt|png|gif|jpe?g|css|js|ico|swf|flv|cgi|bat|pl|dll|exe|asp)$/i'
+  exclude_paths: '/\/(?:styles|imagecache)\//'
+  html: '<!DOCTYPE html><html><head><title>404 Not Found</title></head><body><h1>Not Found</h1><p>The requested URL "@path" was not found on this server.</p></body></html>'
+js:
+  preprocess: true
+  gzip: true
+stale_file_threshold: 2592000
+_core:
+  default_config_hash: b2cssrj-lOmATIbdehfCqfCFgVR0qCdxxWhwqa2KBVQ
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             system.rss.yml                                                                                      000664  000106  000024  00000000226 13054304353 014050  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         channel:
+  description: ''
+items:
+  limit: 10
+  view_mode: rss
+langcode: fr
+_core:
+  default_config_hash: TlH7NNk46phfxu1mSUfwg1C0YqaGsUCeD4l9JQnQlDU
+                                                                                                                                                                                                                                                                                                                                                                          system.site.yml                                                                                     000664  000106  000024  00000000447 13054304353 014212  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: d9f3fb28-13a8-418e-8300-de377f6162be
+name: Drupal
+mail: admin@example.com
+slogan: ''
+page:
+  403: ''
+  404: ''
+  front: /user/login
+admin_compact_mode: false
+weight_select_max: 100
+langcode: fr
+default_langcode: fr
+_core:
+  default_config_hash: yXadRE77Va-G6dxhd2kPYapAvbnSvTF6hO4oXiOEynI
+                                                                                                                                                                                                                         system.theme.global.yml                                                                             000664  000106  000024  00000000521 13054304353 015600  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         favicon:
+  mimetype: image/vnd.microsoft.icon
+  path: ''
+  url: ''
+  use_default: true
+features:
+  comment_user_picture: true
+  comment_user_verification: true
+  favicon: true
+  node_user_picture: false
+logo:
+  path: ''
+  url: ''
+  use_default: true
+_core:
+  default_config_hash: 9rAU4Pku7eMBQxauQqAgjzlcicFZ2As6zEa6zvTlCB8
+langcode: fr
+                                                                                                                                                                               system.theme.yml                                                                                    000664  000106  000024  00000000160 13054304353 014340  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         admin: ''
+default: stark
+_core:
+  default_config_hash: 6lQ55NXM9ysybMQ6NzJj4dtiQ1dAkOYxdDompa-r_kk
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                                text.settings.yml                                                                                   000664  000106  000024  00000000163 13054304353 014541  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         default_summary_length: 600
+_core:
+  default_config_hash: Bkewb77RBOK3_aXMPsp8p87gbc03NvmC5gBLzPl7hVA
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                             user.flood.yml                                                                                      000664  000106  000024  00000000245 13054304353 013777  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uid_only: false
+ip_limit: 50
+ip_window: 3600
+user_limit: 5
+user_window: 21600
+_core:
+  default_config_hash: UYfMzeP1S8jKm9PSvxf7nQNe8DsNS-3bc2WSNNXBQWs
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                           user.mail.yml                                                                                       000664  000106  000024  00000011047 13054304353 013620  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         cancel_confirm:
+  body: "[user:display-name],\r\n\r\nUne demande de suppression de votre compte sur [site:name] a été faite.\r\n\r\nVous pouvez maintenant supprimer votre compte sur [site:url-brief] en cliquant sur le lien ci-dessous ou en le copiant dans votre navigateur : \r\n\r\n[user:cancel-url]\r\n\r\nA NOTER : La suppression de votre compte est définitive.\r\n\r\nCe lien expirera dans un jour et aucune action ne sera lancée s'il n'est pas utilisé.\r\n\r\n--  L'équipe de [site:name]"
+  subject: 'Demande d''annulation du compte [user:display-name] sur [site:name]'
+password_reset:
+  body: "[user:display-name],\r\n\r\nUne demande de réinitialisation de votre mot de passe pour votre compte a été faite sur [site:name].\r\n\r\nVous pouvez maintenant vous connecter en cliquant sur le lien ci-dessous ou en le copiant dans votre navigateur : \r\n\r\n[user:one-time-login-url]\r\n\r\nCe lien ne peut être utilisé qu'une seule fois pour vous connecter et vous mènera à la page pour changer votre mot de passe. Il expirera dans un jour et rien ne se passera s'il n'est pas utilisé.\r\n\r\n--  L'équipe de [site:name]"
+  subject: 'Modification des informations de connexion pour [user:display-name] sur [site:name]'
+register_admin_created:
+  body: "[user:display-name],\r\n\r\nUn administrateur sur [site:name] a créé un compte pour vous. Vous pouvez maintenant vous connecter en utilisant le lien ci-dessous ou en le copiant dans votre navigateur : \r\n\r\n[user:one-time-login-url]\r\n\r\nCe lien ne peut être utilisé qu'une seule fois pour vous connecter et vous redirigera vers la page où vous pourrez choisir votre mot de passe.\r\n\r\nAprès avoir choisi votre mot de passe, vous pourrez vous connecter sur [site:login-url] en utilisant : \r\n\r\nnom d'utilisateur : [user:name]\r\nmot de passe : Votre mot de passe\r\n\r\n--  L'équipe de [site:name]"
+  subject: 'Un administrateur a créé un compte pour vous sur [site:name]'
+register_no_approval_required:
+  body: "[user:display-name],\r\n\r\nNous vous remercions pour votre inscription sur [site:name]. Vous pouvez maintenant vous connecter en utilisant le lien ci-dessous ou en le copiant dans votre navigateur : \r\n\r\n[user:one-time-login-url]\r\n\r\nCe lien ne peut être utilisé qu'une seule fois et vous redirigera vers une page où vous pourrez choisir votre mot de passe.\r\n\r\nAprès avoir choisi votre mot de passe, vous pourrez vous connecter sur [site:login-url] en utilisant : \r\n\r\nNom d'utilisateur : [user:name]\r\nmot de passe : Votre mot de passe\r\n\r\n--  L'équipe de [site:name]"
+  subject: 'Détails du compte [user:display-name] sur [site:name]'
+register_pending_approval:
+  body: "[user:display-name],\r\n\r\nNous vous remercions pour votre demande d'inscription sur [site:name]. Votre demande est actuellement en cours de validation. Une fois la validation faite, vous recevrez un autre courriel de confirmation contenant les informations vous permettant de vous connecter, choisir votre mot de passe ainsi que d'autres détails.\r\n\r\n\r\n--  L'équipe de [site:name]"
+  subject: 'Détails du compte [user:display-name] sur [site:name] (en attente de validation d''un administrateur)'
+register_pending_approval_admin:
+  body: "[user:display-name] a fait une demande de compte.\r\n\r\n[user:edit-url]"
+  subject: 'Détails du compte [user:display-name] sur [site:name] (en attente de validation d''un administrateur)'
+status_activated:
+  body: "[user:display-name],\r\n\r\nVotre compte sur [site:name] a été activé.\r\n\r\nVous pouvez maintenant vous connecter en cliquant sur le lien ci-dessous ou en le copiant dans votre navigateur : \r\n\r\n[user:one-time-login-url]\r\n\r\nCe lien ne peut être utilisé qu'une seule fois et vous redirigera vers une page où vous pourrez choisir votre mot de passe.\r\n\r\nAprès avoir choisi votre mot de passe, vous pourrez vous connecter sur [site:login-url] en utilisant :\r\n\r\nnom d'utilisateur : [user:account-name]\r\nmot de passe : Votre mot de passe\r\n\r\n--  L'équipe de [site:name]"
+  subject: 'Détails du compte [user:display-name] sur [site:name] (validé)'
+status_blocked:
+  body: "[user:display-name],\r\n\r\nVotre compte sur [site:name] a été bloqué.\r\n\r\n-- L'équipe [site:name]"
+  subject: 'Détails du compte [user:display-name] sur [site:name] (bloqué)'
+status_canceled:
+  body: "[user:display-name],\r\n\r\nVotre compte sur [site:name] a été annulé.\r\n\r\n--  L'équipe de [site:name]"
+  subject: 'Détails du compte [user:display-name] sur [site:name] (annulé)'
+langcode: fr
+_core:
+  default_config_hash: r_VG2AQN5andXmmy8cQAYj1i9OinO1B4ia9al1ZKAvE
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         user.role.anonymous.yml                                                                             000664  000106  000024  00000000411 13054304353 015657  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: dbe008ac-4f6f-4352-8d00-c587112a1512
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: j5zLMOdJBqC0bMvSdth5UebkprJB8g_2FXHqhfpJzow
+id: anonymous
+label: 'Utilisateur anonyme'
+weight: 0
+is_admin: false
+permissions:
+  - 'access content'
+                                                                                                                                                                                                                                                       user.role.authenticated.yml                                                                         000664  000106  000024  00000000422 13054304353 016453  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 15a8db67-c21d-4e32-bd00-b23f3a923d5f
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: dJ0L2DNSj5q6XVZAGsuVDpJTh5UeYkIPwKrUOOpr8YI
+id: authenticated
+label: 'Utilisateur authentifié'
+weight: 1
+is_admin: false
+permissions:
+  - 'access content'
+                                                                                                                                                                                                                                              user.settings.yml                                                                                   000664  000106  000024  00000000734 13054304353 014537  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         anonymous: Anonyme
+verify_mail: true
+notify:
+  cancel_confirm: true
+  password_reset: true
+  status_activated: true
+  status_blocked: false
+  status_canceled: false
+  register_admin_created: true
+  register_no_approval_required: true
+  register_pending_approval: true
+register: visitors_admin_approval
+cancel_method: user_cancel_block
+password_reset_timeout: 86400
+password_strength: true
+langcode: fr
+_core:
+  default_config_hash: r4kwhOM0IWXVMUZDz744Yc16EOh37ZhYbA8kGOhSmLk
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
\ No newline at end of file
diff --git a/core/modules/system/src/Tests/Installer/Fixtures/minimal-validation-fail.tar.gz b/core/modules/system/src/Tests/Installer/Fixtures/minimal-validation-fail.tar.gz
new file mode 100644
index 0000000..1f5bb62
--- /dev/null
+++ b/core/modules/system/src/Tests/Installer/Fixtures/minimal-validation-fail.tar.gz
@@ -0,0 +1,738 @@
+block.block.stark_admin.yml                                                                         000600  000765  000024  00000000644 12605753577 016370  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 1fffab29-a09f-4d56-9500-a032c13b918e
+langcode: en
+status: true
+dependencies:
+  config:
+    - system.menu.admin
+  module:
+    - system
+  theme:
+    - stark
+id: stark_admin
+theme: stark
+region: sidebar_first
+weight: 1
+provider: null
+plugin: 'system_menu_block:admin'
+settings:
+  id: 'system_menu_block:admin'
+  label: Administration
+  provider: system
+  label_display: visible
+  level: 1
+  depth: 0
+visibility: {  }
+                                                                                            block.block.stark_branding.yml                                                                      000600  000765  000024  00000000641 12605753577 017061  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: c3c95156-f467-442a-8d24-36338014303f
+langcode: en
+status: true
+dependencies:
+  module:
+    - system
+  theme:
+    - stark
+id: stark_branding
+theme: stark
+region: header
+weight: 0
+provider: null
+plugin: system_branding_block
+settings:
+  id: system_branding_block
+  label: 'Site branding'
+  provider: system
+  label_display: '0'
+  use_site_logo: true
+  use_site_name: true
+  use_site_slogan: true
+visibility: {  }
+                                                                                               block.block.stark_local_actions.yml                                                                 000600  000765  000024  00000000520 12605753577 020103  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 831af4da-167f-4e9a-aa00-c169fb6f66bc
+langcode: en
+status: true
+dependencies:
+  theme:
+    - stark
+id: stark_local_actions
+theme: stark
+region: content
+weight: -10
+provider: null
+plugin: local_actions_block
+settings:
+  id: local_actions_block
+  label: 'Primary admin actions'
+  provider: core
+  label_display: '0'
+visibility: {  }
+                                                                                                                                                                                block.block.stark_local_tasks.yml                                                                   000600  000765  000024  00000000531 12605753577 017572  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 17bb1521-9e73-4ffd-905e-940778b38d08
+langcode: en
+status: true
+dependencies:
+  theme:
+    - stark
+id: stark_local_tasks
+theme: stark
+region: content
+weight: -20
+provider: null
+plugin: local_tasks_block
+settings:
+  id: local_tasks_block
+  label: Tabs
+  provider: core
+  label_display: '0'
+  primary: true
+  secondary: true
+visibility: {  }
+                                                                                                                                                                       block.block.stark_login.yml                                                                         000600  000765  000024  00000000524 12605753577 016405  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: f90e601c-5b18-443d-b432-50305c44d636
+langcode: en
+status: true
+dependencies:
+  module:
+    - user
+  theme:
+    - stark
+id: stark_login
+theme: stark
+region: sidebar_first
+weight: 0
+provider: null
+plugin: user_login_block
+settings:
+  id: user_login_block
+  label: 'User login'
+  provider: user
+  label_display: visible
+visibility: {  }
+                                                                                                                                                                            block.block.stark_messages.yml                                                                      000600  000765  000024  00000000544 12605753577 017106  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 884da769-67b7-4b33-ac00-0b933a7bd1b2
+langcode: en
+status: true
+dependencies:
+  module:
+    - system
+  theme:
+    - stark
+id: stark_messages
+theme: stark
+region: highlighted
+weight: 0
+provider: null
+plugin: system_messages_block
+settings:
+  id: system_messages_block
+  label: 'Status messages'
+  provider: system
+  label_display: '0'
+visibility: {  }
+                                                                                                                                                            block.block.stark_page_title.yml                                                                    000600  000765  000024  00000000474 12605753577 017416  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: d8be7ae7-e613-44cf-a101-1d488ff4b20c
+langcode: en
+status: true
+dependencies:
+  theme:
+    - stark
+id: stark_page_title
+theme: stark
+region: content
+weight: -30
+provider: null
+plugin: page_title_block
+settings:
+  id: page_title_block
+  label: 'Page title'
+  provider: core
+  label_display: '0'
+visibility: {  }
+                                                                                                                                                                                                    block.block.stark_tools.yml                                                                         000600  000765  000024  00000000633 12605753577 016436  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: e138e13c-cbd1-445e-9800-d27de4500b69
+langcode: en
+status: true
+dependencies:
+  config:
+    - system.menu.tools
+  module:
+    - system
+  theme:
+    - stark
+id: stark_tools
+theme: stark
+region: sidebar_first
+weight: 0
+provider: null
+plugin: 'system_menu_block:tools'
+settings:
+  id: 'system_menu_block:tools'
+  label: Tools
+  provider: system
+  label_display: visible
+  level: 1
+  depth: 0
+visibility: {  }
+                                                                                                     core.date_format.fallback.yml                                                                       000600  000765  000024  00000000252 12605753577 016657  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: f131a142-053f-4d66-9f00-d6e9ea7d18de
+langcode: en
+status: true
+dependencies: {  }
+id: fallback
+label: 'Fallback date format'
+locked: true
+pattern: 'D, m/d/Y - H:i'
+                                                                                                                                                                                                                                                                                                                                                      core.date_format.html_date.yml                                                                      000600  000765  000024  00000000225 12605753577 017061  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: d016cccc-0434-4d55-a704-4bae81d008cd
+langcode: en
+status: true
+dependencies: {  }
+id: html_date
+label: 'HTML Date'
+locked: true
+pattern: Y-m-d
+                                                                                                                                                                                                                                                                                                                                                                           core.date_format.html_datetime.yml                                                                  000600  000765  000024  00000000247 12605753577 017744  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 6a25bd7a-2d95-4b4c-8809-9a2fc6dec805
+langcode: en
+status: true
+dependencies: {  }
+id: html_datetime
+label: 'HTML Datetime'
+locked: true
+pattern: 'Y-m-d\TH:i:sO'
+                                                                                                                                                                                                                                                                                                                                                         core.date_format.html_month.yml                                                                     000600  000765  000024  00000000225 12605753577 017271  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 57283453-7d3e-4e9a-b103-038f576fa5ad
+langcode: en
+status: true
+dependencies: {  }
+id: html_month
+label: 'HTML Month'
+locked: true
+pattern: Y-m
+                                                                                                                                                                                                                                                                                                                                                                           core.date_format.html_time.yml                                                                      000600  000765  000024  00000000227 12605753577 017104  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 3e0e36ab-c222-4425-ac62-98bf3bc84062
+langcode: en
+status: true
+dependencies: {  }
+id: html_time
+label: 'HTML Time'
+locked: true
+pattern: 'H:i:s'
+                                                                                                                                                                                                                                                                                                                                                                         core.date_format.html_week.yml                                                                      000600  000765  000024  00000000225 12605753577 017077  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: a26062c8-4fa9-471f-8900-c63c0f16a4c8
+langcode: en
+status: true
+dependencies: {  }
+id: html_week
+label: 'HTML Week'
+locked: true
+pattern: Y-\WW
+                                                                                                                                                                                                                                                                                                                                                                           core.date_format.html_year.yml                                                                      000600  000765  000024  00000000223 12605753577 017102  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: a9e6e4b1-483d-4d5f-a500-ac7e0c898942
+langcode: en
+status: true
+dependencies: {  }
+id: html_year
+label: 'HTML Year'
+locked: true
+pattern: 'Y'
+                                                                                                                                                                                                                                                                                                                                                                             core.date_format.html_yearless_date.yml                                                             000600  000765  000024  00000000245 12605753577 020772  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: bce741ce-3021-4547-801b-2778b9dcece0
+langcode: en
+status: true
+dependencies: {  }
+id: html_yearless_date
+label: 'HTML Yearless date'
+locked: true
+pattern: m-d
+                                                                                                                                                                                                                                                                                                                                                           core.date_format.long.yml                                                                           000600  000765  000024  00000000245 12605753577 016061  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 59739200-cedb-4f64-9163-99ebe46f07b3
+langcode: en
+status: true
+dependencies: {  }
+id: long
+label: 'Default long date'
+locked: false
+pattern: 'l, F j, Y - H:i'
+                                                                                                                                                                                                                                                                                                                                                           core.date_format.medium.yml                                                                         000600  000765  000024  00000000250 12605753577 016376  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 68de5c0d-a998-4e45-934a-74a7c1c94714
+langcode: en
+status: true
+dependencies: {  }
+id: medium
+label: 'Default medium date'
+locked: false
+pattern: 'D, m/d/Y - H:i'
+                                                                                                                                                                                                                                                                                                                                                        core.date_format.short.yml                                                                          000600  000765  000024  00000000243 12605753577 016257  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 656f532b-ec6f-4bd1-ac00-ebef1b4487e4
+langcode: en
+status: true
+dependencies: {  }
+id: short
+label: 'Default short date'
+locked: false
+pattern: 'm/d/Y - H:i'
+                                                                                                                                                                                                                                                                                                                                                             core.entity_form_mode.user.register.yml                                                             000600  000765  000024  00000000255 12605753577 021002  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 5a540561-372e-48ce-9703-3edca8a17072
+langcode: en
+status: true
+dependencies:
+  module:
+    - user
+id: user.register
+label: Register
+targetEntityType: user
+cache: true
+                                                                                                                                                                                                                                                                                                                                                   core.entity_view_mode.node.full.yml                                                                 000600  000765  000024  00000000260 12605753577 020072  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 5a0db7ce-e3fd-4104-b82c-4458bc5747b0
+langcode: en
+status: false
+dependencies:
+  module:
+    - node
+id: node.full
+label: 'Full content'
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                                                                                                                                                                core.entity_view_mode.node.rss.yml                                                                  000600  000765  000024  00000000244 12605753577 017741  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: dcc2c917-25b8-4a2e-9b16-2243a33cca0e
+langcode: en
+status: false
+dependencies:
+  module:
+    - node
+id: node.rss
+label: RSS
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                                                                                                                                                                            core.entity_view_mode.node.search_index.yml                                                         000600  000765  000024  00000000270 12605753577 021565  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: a6aa43bf-78b3-423d-a500-ed7602ff1b73
+langcode: en
+status: false
+dependencies:
+  module:
+    - node
+id: node.search_index
+label: 'Search index'
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                                                                                                                                                        core.entity_view_mode.node.search_result.yml                                                        000600  000765  000024  00000000315 12605753577 021774  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 4d2c441d-1aba-444a-9805-0529d268b38d
+langcode: en
+status: false
+dependencies:
+  module:
+    - node
+id: node.search_result
+label: 'Search result highlighting input'
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                                                                                                                                   core.entity_view_mode.node.teaser.yml                                                               000600  000765  000024  00000000251 12605753577 020413  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: cf430c84-021d-4680-9722-34974071e308
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+id: node.teaser
+label: Teaser
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                                                                                                                                                                       core.entity_view_mode.user.compact.yml                                                              000600  000765  000024  00000000253 12605753577 020611  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 655da7e3-c039-4e24-aa04-4cbf99a5a8a5
+langcode: en
+status: true
+dependencies:
+  module:
+    - user
+id: user.compact
+label: Compact
+targetEntityType: user
+cache: true
+                                                                                                                                                                                                                                                                                                                                                     core.entity_view_mode.user.full.yml                                                                 000600  000765  000024  00000000260 12605753577 020123  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: bf81ffba-0962-45f4-b206-6f39750f3f6b
+langcode: en
+status: false
+dependencies:
+  module:
+    - user
+id: user.full
+label: 'User account'
+targetEntityType: user
+cache: true
+                                                                                                                                                                                                                                                                                                                                                core.extension.yml                                                                                  000600  000765  000024  00000000355 13054311470 014631  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         module:
+  block: 0
+  config: 0
+  dblog: 0
+  dynamic_page_cache: 0
+  field: 0
+  file: 0
+  filter: 0
+  node: 0
+  page_cache: 0
+  simpletest: 0
+  system: 0
+  text: 0
+  update: 0
+  user: 0
+  minimal: 1000
+theme:
+  stark: 0
+profile: minimal
+
+                                                                                                                                                                                                                                                                                   core.menu.static_menu_link_overrides.yml                                                            000600  000765  000024  00000000022 12605753577 021204  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         definitions: {  }
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              dblog.settings.yml                                                                                  000600  000765  000024  00000000020 12605753577 014624  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         row_limit: 1000
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                field.settings.yml                                                                                  000600  000765  000024  00000000025 12605753577 014625  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         purge_batch_size: 50
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           field.storage.node.body.yml                                                                         000600  000765  000024  00000000511 12605753577 016311  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: bc3f35f2-daf4-4e0c-9c26-38d973968679
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+    - text
+id: node.body
+field_name: body
+entity_type: node
+type: text_with_summary
+settings: {  }
+module: text
+locked: false
+cardinality: 1
+translatable: true
+indexes: {  }
+persist_with_no_fields: true
+custom_storage: false
+                                                                                                                                                                                       file.settings.yml                                                                                   000600  000765  000024  00000000130 12605753577 014456  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         description:
+  type: textfield
+  length: 128
+icon:
+  directory: core/modules/file/icons
+                                                                                                                                                                                                                                                                                                                                                                                                                                        filter.format.plain_text.yml                                                                        000600  000765  000024  00000000767 12605753577 016642  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 1f9bf982-831d-4c55-991d-29048bcedbc8
+langcode: en
+status: true
+dependencies: {  }
+name: 'Plain text'
+format: plain_text
+weight: 10
+filters:
+  filter_html_escape:
+    id: filter_html_escape
+    provider: filter
+    status: true
+    weight: -10
+    settings: {  }
+  filter_url:
+    id: filter_url
+    provider: filter
+    status: true
+    weight: 0
+    settings:
+      filter_url_length: 72
+  filter_autop:
+    id: filter_autop
+    provider: filter
+    status: true
+    weight: 0
+    settings: {  }
+         filter.settings.yml                                                                                 000600  000765  000024  00000000077 12605753577 015036  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         fallback_format: plain_text
+always_show_fallback_choice: false
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                 foo.bar.yml                                                                                         000644  000765  000024  00000000000 12713413467 013221  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         node.settings.yml                                                                                   000600  000765  000024  00000000027 12605753577 014471  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         use_admin_theme: false
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         simpletest.settings.yml                                                                             000600  000765  000024  00000000126 12605753577 015735  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         clear_results: true
+httpauth:
+  method: 1
+  password: ''
+  username: ''
+verbose: true
+                                                                                                                                                                                                                                                                                                                                                                                                                                          system.action.node_delete_action.yml                                                                000600  000765  000024  00000000321 12605753577 020305  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: ef6a2c8e-98d0-4f5d-9242-66f6af319cca
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+id: node_delete_action
+label: 'Delete content'
+type: node
+plugin: node_delete_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                                               system.action.node_make_sticky_action.yml                                                           000600  000765  000024  00000000340 12605753577 021347  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 78fc4c1a-eada-4af7-8f00-a37a4325c9a8
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+id: node_make_sticky_action
+label: 'Make content sticky'
+type: node
+plugin: node_make_sticky_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                                system.action.node_make_unsticky_action.yml                                                         000600  000765  000024  00000000346 12605753577 021720  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 7d9d611d-9b47-49e4-b400-cc72649be1b5
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+id: node_make_unsticky_action
+label: 'Make content unsticky'
+type: node
+plugin: node_make_unsticky_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                          system.action.node_promote_action.yml                                                               000600  000765  000024  00000000342 12605753577 020533  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: a380f844-8e67-415d-9a09-09a0023390a0
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+id: node_promote_action
+label: 'Promote content to front page'
+type: node
+plugin: node_promote_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                              system.action.node_publish_action.yml                                                               000600  000765  000024  00000000324 12605753577 020514  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 33eabd2d-3914-4247-980c-123602a0e3db
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+id: node_publish_action
+label: 'Publish content'
+type: node
+plugin: node_publish_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                                            system.action.node_save_action.yml                                                                  000600  000765  000024  00000000313 12605753577 020002  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 80abf6b7-55c5-40a3-8558-88d15a5380d2
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+id: node_save_action
+label: 'Save content'
+type: node
+plugin: node_save_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                                                     system.action.node_unpromote_action.yml                                                             000600  000765  000024  00000000347 12605753577 021103  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 3efe115e-bd2d-41d3-ac00-f0b7cdf3ab0f
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+id: node_unpromote_action
+label: 'Remove content from front page'
+type: node
+plugin: node_unpromote_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                         system.action.node_unpublish_action.yml                                                             000600  000765  000024  00000000332 12605753577 021056  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 83e9e4b1-c74a-4b83-9211-17234019606c
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+id: node_unpublish_action
+label: 'Unpublish content'
+type: node
+plugin: node_unpublish_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                                      system.action.user_block_user_action.yml                                                            000600  000765  000024  00000000345 12605753577 021232  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: f95524ee-1b13-460a-9751-8144ceeae19d
+langcode: en
+status: true
+dependencies:
+  module:
+    - user
+id: user_block_user_action
+label: 'Block the selected user(s)'
+type: user
+plugin: user_block_user_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                           system.action.user_cancel_user_action.yml                                                           000600  000765  000024  00000000360 12605753577 021362  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 745e6a9f-e1db-4d74-ae00-d439e3cf0242
+langcode: en
+status: true
+dependencies:
+  module:
+    - user
+id: user_cancel_user_action
+label: 'Cancel the selected user account(s)'
+type: user
+plugin: user_cancel_user_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                system.action.user_unblock_user_action.yml                                                          000600  000765  000024  00000000353 12605753577 021574  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 36d5f366-7981-446f-bb1c-2885fc4b135b
+langcode: en
+status: true
+dependencies:
+  module:
+    - user
+id: user_unblock_user_action
+label: 'Unblock the selected user(s)'
+type: user
+plugin: user_unblock_user_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                     system.authorize.yml                                                                                000600  000765  000024  00000000033 12605753577 015237  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         filetransfer_default: null
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     system.cron.yml                                                                                     000600  000765  000024  00000000110 12605753577 014162  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         threshold:
+  requirements_warning: 172800
+  requirements_error: 1209600
+                                                                                                                                                                                                                                                                                                                                                                                                                                                        system.date.yml                                                                                     000600  000765  000024  00000000205 12605753577 014143  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         country:
+  default: ''
+first_day: 0
+timezone:
+  default: Europe/Zurich
+  user:
+    configurable: true
+    warn: false
+    default: 0
+                                                                                                                                                                                                                                                                                                                                                                                           system.diff.yml                                                                                     000600  000765  000024  00000000060 12605753577 014135  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         context:
+  lines_leading: 2
+  lines_trailing: 2
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                system.file.yml                                                                                     000600  000765  000024  00000000152 12605753577 014146  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         allow_insecure_uploads: false
+default_scheme: public
+path:
+  temporary: /tmp
+temporary_maximum_age: 21600
+                                                                                                                                                                                                                                                                                                                                                                                                                      system.image.gd.yml                                                                                 000600  000765  000024  00000000021 12605753577 014675  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         jpeg_quality: 75
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               system.image.yml                                                                                    000600  000765  000024  00000000014 12605753577 014306  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         toolkit: gd
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    system.logging.yml                                                                                  000600  000765  000024  00000000022 12605753577 014651  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         error_level: hide
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              system.mail.yml                                                                                     000600  000765  000024  00000000037 12605753577 014153  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         interface:
+  default: php_mail
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 system.maintenance.yml                                                                              000600  000765  000024  00000000166 12605753577 015516  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         message: '@site is currently under maintenance. We should be back shortly. Thank you for your patience.'
+langcode: en
+                                                                                                                                                                                                                                                                                                                                                                                                          system.menu.account.yml                                                                             000600  000765  000024  00000000304 12605753577 015625  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: d453f1a9-b71f-4db6-8c00-c2e1ede57466
+langcode: en
+status: true
+dependencies: {  }
+id: account
+label: 'User account menu'
+description: 'Links related to the active user account'
+locked: true
+                                                                                                                                                                                                                                                                                                                            system.menu.admin.yml                                                                               000600  000765  000024  00000000256 12605753577 015267  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 9d8669e9-0036-4df9-af00-b0ee9754c164
+langcode: en
+status: true
+dependencies: {  }
+id: admin
+label: Administration
+description: 'Administrative task links'
+locked: true
+                                                                                                                                                                                                                                                                                                                                                  system.menu.footer.yml                                                                              000600  000765  000024  00000000244 12605753577 015472  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 254c1a7a-bdf2-4275-ac00-c541631a580c
+langcode: en
+status: true
+dependencies: {  }
+id: footer
+label: Footer
+description: 'Site information links'
+locked: true
+                                                                                                                                                                                                                                                                                                                                                            system.menu.main.yml                                                                                000600  000765  000024  00000000251 12605753577 015116  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: cafff12f-1076-46da-b707-7a85e190957c
+langcode: en
+status: true
+dependencies: {  }
+id: main
+label: 'Main navigation'
+description: 'Site section links'
+locked: true
+                                                                                                                                                                                                                                                                                                                                                       system.menu.tools.yml                                                                               000600  000765  000024  00000000263 12605753577 015335  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 5d29e3aa-7310-4f29-b605-5dbd3322e46e
+langcode: en
+status: true
+dependencies: {  }
+id: tools
+label: Tools
+description: 'User tool links, often added by modules'
+locked: true
+                                                                                                                                                                                                                                                                                                                                             system.performance.yml                                                                              000600  000765  000024  00000000714 12605753577 015534  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         cache:
+  page:
+    max_age: 0
+css:
+  preprocess: true
+  gzip: true
+fast_404:
+  enabled: true
+  paths: '/\.(?:txt|png|gif|jpe?g|css|js|ico|swf|flv|cgi|bat|pl|dll|exe|asp)$/i'
+  exclude_paths: '/\/(?:styles|imagecache)\//'
+  html: '<!DOCTYPE html><html><head><title>404 Not Found</title></head><body><h1>Not Found</h1><p>The requested URL "@path" was not found on this server.</p></body></html>'
+js:
+  preprocess: true
+  gzip: true
+stale_file_threshold: 2592000
+                                                    system.rss.yml                                                                                      000600  000765  000024  00000000114 12605753577 014034  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         channel:
+  description: ''
+items:
+  limit: 10
+  view_mode: rss
+langcode: en
+                                                                                                                                                                                                                                                                                                                                                                                                                                                    system.site.yml                                                                                     000600  000765  000024  00000000343 12605753577 014175  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 705f9278-fbeb-4771-ab00-d4da47143d04
+name: Site-Install
+mail: admin@example.com
+slogan: ''
+page:
+  403: ''
+  404: ''
+  front: /user/login
+admin_compact_mode: false
+weight_select_max: 100
+langcode: en
+default_langcode: en
+                                                                                                                                                                                                                                                                                             system.theme.global.yml                                                                             000600  000765  000024  00000000372 12605753577 015574  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         favicon:
+  mimetype: image/vnd.microsoft.icon
+  path: ''
+  url: ''
+  use_default: true
+features:
+  comment_user_picture: true
+  comment_user_verification: true
+  favicon: true
+  node_user_picture: false
+logo:
+  path: ''
+  url: ''
+  use_default: true
+                                                                                                                                                                                                                                                                      system.theme.yml                                                                                    000600  000765  000024  00000000031 12605753577 014325  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         admin: ''
+default: stark
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       text.settings.yml                                                                                   000600  000765  000024  00000000034 12605753577 014526  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         default_summary_length: 600
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    update.settings.yml                                                                                 000600  000765  000024  00000000247 12605753577 015032  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         check:
+  disabled_extensions: false
+  interval_days: 1
+fetch:
+  url: ''
+  max_attempts: 2
+  timeout: 30
+notification:
+  emails:
+    - alex@vit-al.com
+  threshold: all
+                                                                                                                                                                                                                                                                                                                                                         user.flood.yml                                                                                      000600  000765  000024  00000000116 12605753577 013764  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uid_only: false
+ip_limit: 50
+ip_window: 3600
+user_limit: 5
+user_window: 21600
+                                                                                                                                                                                                                                                                                                                                                                                                                                                  user.mail.yml                                                                                       000600  000765  000024  00000007353 12605753577 013615  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         cancel_confirm:
+  body: "[user:display-name],\n\nA request to cancel your account has been made at [site:name].\n\nYou may now cancel your account on [site:url-brief] by clicking this link or copying and pasting it into your browser:\n\n[user:cancel-url]\n\nNOTE: The cancellation of your account is not reversible.\n\nThis link expires in one day and nothing will happen if it is not used.\n\n--  [site:name] team"
+  subject: 'Account cancellation request for [user:display-name] at [site:name]'
+password_reset:
+  body: "[user:display-name],\n\nA request to reset the password for your account has been made at [site:name].\n\nYou may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password. It expires after one day and nothing will happen if it's not used.\n\n--  [site:name] team"
+  subject: 'Replacement login information for [user:display-name] at [site:name]'
+register_admin_created:
+  body: "[user:display-name],\n\nA site administrator at [site:name] has created an account for you. You may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password.\n\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\n\nusername: [user:name]\npassword: Your password\n\n--  [site:name] team"
+  subject: 'An administrator created an account for you at [site:name]'
+register_no_approval_required:
+  body: "[user:display-name],\n\nThank you for registering at [site:name]. You may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password.\n\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\n\nusername: [user:name]\npassword: Your password\n\n--  [site:name] team"
+  subject: 'Account details for [user:display-name] at [site:name]'
+register_pending_approval:
+  body: "[user:display-name],\n\nThank you for registering at [site:name]. Your application for an account is currently pending approval. Once it has been approved, you will receive another email containing information about how to log in, set your password, and other details.\n\n\n--  [site:name] team"
+  subject: 'Account details for [user:display-name] at [site:name] (pending admin approval)'
+register_pending_approval_admin:
+  body: "[user:display-name] has applied for an account.\n\n[user:edit-url]"
+  subject: 'Account details for [user:display-name] at [site:name] (pending admin approval)'
+status_activated:
+  body: "[user:display-name],\n\nYour account at [site:name] has been activated.\n\nYou may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password.\n\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\n\nusername: [user:account-name]\npassword: Your password\n\n--  [site:name] team"
+  subject: 'Account details for [user:display-name] at [site:name] (approved)'
+status_blocked:
+  body: "[user:display-name],\n\nYour account on [site:account-name] has been blocked.\n\n--  [site:name] team"
+  subject: 'Account details for [user:display-name] at [site:name] (blocked)'
+status_canceled:
+  body: "[user:display-name],\n\nYour account on [site:name] has been canceled.\n\n--  [site:name] team"
+  subject: 'Account details for [user:display-name] at [site:name] (canceled)'
+langcode: en
+                                                                                                                                                                                                                                                                                     user.role.anonymous.yml                                                                             000600  000765  000024  00000000272 12605753577 015654  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 110aa302-c5dc-4a51-a400-bc67e10bc8cc
+langcode: en
+status: true
+dependencies: {  }
+id: anonymous
+label: 'Anonymous user'
+weight: 0
+is_admin: false
+permissions:
+  - 'access content'
+                                                                                                                                                                                                                                                                                                                                      user.role.authenticated.yml                                                                         000600  000765  000024  00000000302 12605753577 016440  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 026c1add-219e-416c-a803-3b6ccad0172d
+langcode: en
+status: true
+dependencies: {  }
+id: authenticated
+label: 'Authenticated user'
+weight: 1
+is_admin: false
+permissions:
+  - 'access content'
+                                                                                                                                                                                                                                                                                                                              user.settings.yml                                                                                   000600  000765  000024  00000000624 12605753577 014525  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         anonymous: Anonymous
+verify_mail: true
+notify:
+  cancel_confirm: true
+  password_reset: true
+  status_activated: true
+  status_blocked: false
+  status_canceled: false
+  register_admin_created: true
+  register_no_approval_required: true
+  register_pending_approval: true
+register: visitors_admin_approval
+cancel_method: user_cancel_block
+password_reset_timeout: 86400
+password_strength: true
+langcode: en
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
\ No newline at end of file
diff --git a/core/modules/system/src/Tests/Installer/Fixtures/minimal.tar.gz b/core/modules/system/src/Tests/Installer/Fixtures/minimal.tar.gz
new file mode 100644
index 0000000..1b29c56
--- /dev/null
+++ b/core/modules/system/src/Tests/Installer/Fixtures/minimal.tar.gz
@@ -0,0 +1,738 @@
+block.block.stark_admin.yml                                                                         000664  000106  000024  00000000644 13054307721 016402  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 1fffab29-a09f-4d56-9500-a032c13b918e
+langcode: en
+status: true
+dependencies:
+  config:
+    - system.menu.admin
+  module:
+    - system
+  theme:
+    - stark
+id: stark_admin
+theme: stark
+region: sidebar_first
+weight: 1
+provider: null
+plugin: 'system_menu_block:admin'
+settings:
+  id: 'system_menu_block:admin'
+  label: Administration
+  provider: system
+  label_display: visible
+  level: 1
+  depth: 0
+visibility: {  }
+                                                                                            block.block.stark_branding.yml                                                                      000664  000106  000024  00000000641 13054307721 017073  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: c3c95156-f467-442a-8d24-36338014303f
+langcode: en
+status: true
+dependencies:
+  module:
+    - system
+  theme:
+    - stark
+id: stark_branding
+theme: stark
+region: header
+weight: 0
+provider: null
+plugin: system_branding_block
+settings:
+  id: system_branding_block
+  label: 'Site branding'
+  provider: system
+  label_display: '0'
+  use_site_logo: true
+  use_site_name: true
+  use_site_slogan: true
+visibility: {  }
+                                                                                               block.block.stark_local_actions.yml                                                                 000664  000106  000024  00000000520 13054307721 020115  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 831af4da-167f-4e9a-aa00-c169fb6f66bc
+langcode: en
+status: true
+dependencies:
+  theme:
+    - stark
+id: stark_local_actions
+theme: stark
+region: content
+weight: -10
+provider: null
+plugin: local_actions_block
+settings:
+  id: local_actions_block
+  label: 'Primary admin actions'
+  provider: core
+  label_display: '0'
+visibility: {  }
+                                                                                                                                                                                block.block.stark_local_tasks.yml                                                                   000664  000106  000024  00000000531 13054307721 017604  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 17bb1521-9e73-4ffd-905e-940778b38d08
+langcode: en
+status: true
+dependencies:
+  theme:
+    - stark
+id: stark_local_tasks
+theme: stark
+region: content
+weight: -20
+provider: null
+plugin: local_tasks_block
+settings:
+  id: local_tasks_block
+  label: Tabs
+  provider: core
+  label_display: '0'
+  primary: true
+  secondary: true
+visibility: {  }
+                                                                                                                                                                       block.block.stark_login.yml                                                                         000664  000106  000024  00000000524 13054307721 016417  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: f90e601c-5b18-443d-b432-50305c44d636
+langcode: en
+status: true
+dependencies:
+  module:
+    - user
+  theme:
+    - stark
+id: stark_login
+theme: stark
+region: sidebar_first
+weight: 0
+provider: null
+plugin: user_login_block
+settings:
+  id: user_login_block
+  label: 'User login'
+  provider: user
+  label_display: visible
+visibility: {  }
+                                                                                                                                                                            block.block.stark_messages.yml                                                                      000664  000106  000024  00000000544 13054307721 017120  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 884da769-67b7-4b33-ac00-0b933a7bd1b2
+langcode: en
+status: true
+dependencies:
+  module:
+    - system
+  theme:
+    - stark
+id: stark_messages
+theme: stark
+region: highlighted
+weight: 0
+provider: null
+plugin: system_messages_block
+settings:
+  id: system_messages_block
+  label: 'Status messages'
+  provider: system
+  label_display: '0'
+visibility: {  }
+                                                                                                                                                            block.block.stark_page_title.yml                                                                    000664  000106  000024  00000000474 13054307721 017430  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: d8be7ae7-e613-44cf-a101-1d488ff4b20c
+langcode: en
+status: true
+dependencies:
+  theme:
+    - stark
+id: stark_page_title
+theme: stark
+region: content
+weight: -30
+provider: null
+plugin: page_title_block
+settings:
+  id: page_title_block
+  label: 'Page title'
+  provider: core
+  label_display: '0'
+visibility: {  }
+                                                                                                                                                                                                    block.block.stark_tools.yml                                                                         000664  000106  000024  00000000633 13054307721 016450  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: e138e13c-cbd1-445e-9800-d27de4500b69
+langcode: en
+status: true
+dependencies:
+  config:
+    - system.menu.tools
+  module:
+    - system
+  theme:
+    - stark
+id: stark_tools
+theme: stark
+region: sidebar_first
+weight: 0
+provider: null
+plugin: 'system_menu_block:tools'
+settings:
+  id: 'system_menu_block:tools'
+  label: Tools
+  provider: system
+  label_display: visible
+  level: 1
+  depth: 0
+visibility: {  }
+                                                                                                     core.date_format.fallback.yml                                                                       000664  000106  000024  00000000252 13054307721 016671  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: f131a142-053f-4d66-9f00-d6e9ea7d18de
+langcode: en
+status: true
+dependencies: {  }
+id: fallback
+label: 'Fallback date format'
+locked: true
+pattern: 'D, m/d/Y - H:i'
+                                                                                                                                                                                                                                                                                                                                                      core.date_format.html_date.yml                                                                      000664  000106  000024  00000000225 13054307721 017073  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: d016cccc-0434-4d55-a704-4bae81d008cd
+langcode: en
+status: true
+dependencies: {  }
+id: html_date
+label: 'HTML Date'
+locked: true
+pattern: Y-m-d
+                                                                                                                                                                                                                                                                                                                                                                           core.date_format.html_datetime.yml                                                                  000664  000106  000024  00000000247 13054307721 017756  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 6a25bd7a-2d95-4b4c-8809-9a2fc6dec805
+langcode: en
+status: true
+dependencies: {  }
+id: html_datetime
+label: 'HTML Datetime'
+locked: true
+pattern: 'Y-m-d\TH:i:sO'
+                                                                                                                                                                                                                                                                                                                                                         core.date_format.html_month.yml                                                                     000664  000106  000024  00000000225 13054307721 017303  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 57283453-7d3e-4e9a-b103-038f576fa5ad
+langcode: en
+status: true
+dependencies: {  }
+id: html_month
+label: 'HTML Month'
+locked: true
+pattern: Y-m
+                                                                                                                                                                                                                                                                                                                                                                           core.date_format.html_time.yml                                                                      000664  000106  000024  00000000227 13054307721 017116  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 3e0e36ab-c222-4425-ac62-98bf3bc84062
+langcode: en
+status: true
+dependencies: {  }
+id: html_time
+label: 'HTML Time'
+locked: true
+pattern: 'H:i:s'
+                                                                                                                                                                                                                                                                                                                                                                         core.date_format.html_week.yml                                                                      000664  000106  000024  00000000225 13054307721 017111  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: a26062c8-4fa9-471f-8900-c63c0f16a4c8
+langcode: en
+status: true
+dependencies: {  }
+id: html_week
+label: 'HTML Week'
+locked: true
+pattern: Y-\WW
+                                                                                                                                                                                                                                                                                                                                                                           core.date_format.html_year.yml                                                                      000664  000106  000024  00000000223 13054307721 017114  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: a9e6e4b1-483d-4d5f-a500-ac7e0c898942
+langcode: en
+status: true
+dependencies: {  }
+id: html_year
+label: 'HTML Year'
+locked: true
+pattern: 'Y'
+                                                                                                                                                                                                                                                                                                                                                                             core.date_format.html_yearless_date.yml                                                             000664  000106  000024  00000000245 13054307721 021004  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: bce741ce-3021-4547-801b-2778b9dcece0
+langcode: en
+status: true
+dependencies: {  }
+id: html_yearless_date
+label: 'HTML Yearless date'
+locked: true
+pattern: m-d
+                                                                                                                                                                                                                                                                                                                                                           core.date_format.long.yml                                                                           000664  000106  000024  00000000245 13054307721 016073  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 59739200-cedb-4f64-9163-99ebe46f07b3
+langcode: en
+status: true
+dependencies: {  }
+id: long
+label: 'Default long date'
+locked: false
+pattern: 'l, F j, Y - H:i'
+                                                                                                                                                                                                                                                                                                                                                           core.date_format.medium.yml                                                                         000664  000106  000024  00000000250 13054307721 016410  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 68de5c0d-a998-4e45-934a-74a7c1c94714
+langcode: en
+status: true
+dependencies: {  }
+id: medium
+label: 'Default medium date'
+locked: false
+pattern: 'D, m/d/Y - H:i'
+                                                                                                                                                                                                                                                                                                                                                        core.date_format.short.yml                                                                          000664  000106  000024  00000000243 13054307721 016271  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 656f532b-ec6f-4bd1-ac00-ebef1b4487e4
+langcode: en
+status: true
+dependencies: {  }
+id: short
+label: 'Default short date'
+locked: false
+pattern: 'm/d/Y - H:i'
+                                                                                                                                                                                                                                                                                                                                                             core.entity_form_mode.user.register.yml                                                             000664  000106  000024  00000000255 13054307721 021014  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 5a540561-372e-48ce-9703-3edca8a17072
+langcode: en
+status: true
+dependencies:
+  module:
+    - user
+id: user.register
+label: Register
+targetEntityType: user
+cache: true
+                                                                                                                                                                                                                                                                                                                                                   core.entity_view_mode.node.full.yml                                                                 000664  000106  000024  00000000260 13054307721 020104  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 5a0db7ce-e3fd-4104-b82c-4458bc5747b0
+langcode: en
+status: false
+dependencies:
+  module:
+    - node
+id: node.full
+label: 'Full content'
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                                                                                                                                                                core.entity_view_mode.node.rss.yml                                                                  000664  000106  000024  00000000244 13054307721 017753  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: dcc2c917-25b8-4a2e-9b16-2243a33cca0e
+langcode: en
+status: false
+dependencies:
+  module:
+    - node
+id: node.rss
+label: RSS
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                                                                                                                                                                            core.entity_view_mode.node.search_index.yml                                                         000664  000106  000024  00000000270 13054307721 021577  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: a6aa43bf-78b3-423d-a500-ed7602ff1b73
+langcode: en
+status: false
+dependencies:
+  module:
+    - node
+id: node.search_index
+label: 'Search index'
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                                                                                                                                                        core.entity_view_mode.node.search_result.yml                                                        000664  000106  000024  00000000315 13054307721 022006  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 4d2c441d-1aba-444a-9805-0529d268b38d
+langcode: en
+status: false
+dependencies:
+  module:
+    - node
+id: node.search_result
+label: 'Search result highlighting input'
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                                                                                                                                   core.entity_view_mode.node.teaser.yml                                                               000664  000106  000024  00000000251 13054307721 020425  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: cf430c84-021d-4680-9722-34974071e308
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+id: node.teaser
+label: Teaser
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                                                                                                                                                                       core.entity_view_mode.user.compact.yml                                                              000664  000106  000024  00000000253 13054307721 020623  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 655da7e3-c039-4e24-aa04-4cbf99a5a8a5
+langcode: en
+status: true
+dependencies:
+  module:
+    - user
+id: user.compact
+label: Compact
+targetEntityType: user
+cache: true
+                                                                                                                                                                                                                                                                                                                                                     core.entity_view_mode.user.full.yml                                                                 000664  000106  000024  00000000260 13054307721 020135  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: bf81ffba-0962-45f4-b206-6f39750f3f6b
+langcode: en
+status: false
+dependencies:
+  module:
+    - user
+id: user.full
+label: 'User account'
+targetEntityType: user
+cache: true
+                                                                                                                                                                                                                                                                                                                                                core.extension.yml                                                                                  000664  000106  000024  00000000354 13054307721 014665  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         module:
+  block: 0
+  config: 0
+  dblog: 0
+  dynamic_page_cache: 0
+  field: 0
+  file: 0
+  filter: 0
+  node: 0
+  page_cache: 0
+  simpletest: 0
+  system: 0
+  text: 0
+  update: 0
+  user: 0
+  minimal: 1000
+theme:
+  stark: 0
+profile: minimal
+                                                                                                                                                                                                                                                                                    core.menu.static_menu_link_overrides.yml                                                            000664  000106  000024  00000000022 13054307721 021216  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         definitions: {  }
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              dblog.settings.yml                                                                                  000664  000106  000024  00000000020 13054307721 014636  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         row_limit: 1000
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                field.settings.yml                                                                                  000664  000106  000024  00000000025 13054307721 014637  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         purge_batch_size: 50
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           field.storage.node.body.yml                                                                         000664  000106  000024  00000000511 13054307721 016323  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: bc3f35f2-daf4-4e0c-9c26-38d973968679
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+    - text
+id: node.body
+field_name: body
+entity_type: node
+type: text_with_summary
+settings: {  }
+module: text
+locked: false
+cardinality: 1
+translatable: true
+indexes: {  }
+persist_with_no_fields: true
+custom_storage: false
+                                                                                                                                                                                       file.settings.yml                                                                                   000664  000106  000024  00000000130 13054307721 014470  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         description:
+  type: textfield
+  length: 128
+icon:
+  directory: core/modules/file/icons
+                                                                                                                                                                                                                                                                                                                                                                                                                                        filter.format.plain_text.yml                                                                        000664  000106  000024  00000000767 13054307721 016654  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 1f9bf982-831d-4c55-991d-29048bcedbc8
+langcode: en
+status: true
+dependencies: {  }
+name: 'Plain text'
+format: plain_text
+weight: 10
+filters:
+  filter_html_escape:
+    id: filter_html_escape
+    provider: filter
+    status: true
+    weight: -10
+    settings: {  }
+  filter_url:
+    id: filter_url
+    provider: filter
+    status: true
+    weight: 0
+    settings:
+      filter_url_length: 72
+  filter_autop:
+    id: filter_autop
+    provider: filter
+    status: true
+    weight: 0
+    settings: {  }
+         filter.settings.yml                                                                                 000664  000106  000024  00000000077 13054307721 015050  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         fallback_format: plain_text
+always_show_fallback_choice: false
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                 node.settings.yml                                                                                   000664  000106  000024  00000000027 13054307721 014503  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         use_admin_theme: false
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         simpletest.settings.yml                                                                             000664  000106  000024  00000000126 13054307721 015747  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         clear_results: true
+httpauth:
+  method: 1
+  password: ''
+  username: ''
+verbose: true
+                                                                                                                                                                                                                                                                                                                                                                                                                                          system.action.node_delete_action.yml                                                                000664  000106  000024  00000000321 13054307721 020317  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: ef6a2c8e-98d0-4f5d-9242-66f6af319cca
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+id: node_delete_action
+label: 'Delete content'
+type: node
+plugin: node_delete_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                                               system.action.node_make_sticky_action.yml                                                           000664  000106  000024  00000000340 13054307721 021361  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 78fc4c1a-eada-4af7-8f00-a37a4325c9a8
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+id: node_make_sticky_action
+label: 'Make content sticky'
+type: node
+plugin: node_make_sticky_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                                system.action.node_make_unsticky_action.yml                                                         000664  000106  000024  00000000346 13054307721 021732  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 7d9d611d-9b47-49e4-b400-cc72649be1b5
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+id: node_make_unsticky_action
+label: 'Make content unsticky'
+type: node
+plugin: node_make_unsticky_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                          system.action.node_promote_action.yml                                                               000664  000106  000024  00000000342 13054307721 020545  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: a380f844-8e67-415d-9a09-09a0023390a0
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+id: node_promote_action
+label: 'Promote content to front page'
+type: node
+plugin: node_promote_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                              system.action.node_publish_action.yml                                                               000664  000106  000024  00000000324 13054307721 020526  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 33eabd2d-3914-4247-980c-123602a0e3db
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+id: node_publish_action
+label: 'Publish content'
+type: node
+plugin: node_publish_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                                            system.action.node_save_action.yml                                                                  000664  000106  000024  00000000313 13054307721 020014  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 80abf6b7-55c5-40a3-8558-88d15a5380d2
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+id: node_save_action
+label: 'Save content'
+type: node
+plugin: node_save_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                                                     system.action.node_unpromote_action.yml                                                             000664  000106  000024  00000000347 13054307721 021115  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 3efe115e-bd2d-41d3-ac00-f0b7cdf3ab0f
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+id: node_unpromote_action
+label: 'Remove content from front page'
+type: node
+plugin: node_unpromote_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                         system.action.node_unpublish_action.yml                                                             000664  000106  000024  00000000332 13054307721 021070  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 83e9e4b1-c74a-4b83-9211-17234019606c
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+id: node_unpublish_action
+label: 'Unpublish content'
+type: node
+plugin: node_unpublish_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                                      system.action.user_block_user_action.yml                                                            000664  000106  000024  00000000345 13054307721 021244  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: f95524ee-1b13-460a-9751-8144ceeae19d
+langcode: en
+status: true
+dependencies:
+  module:
+    - user
+id: user_block_user_action
+label: 'Block the selected user(s)'
+type: user
+plugin: user_block_user_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                           system.action.user_cancel_user_action.yml                                                           000664  000106  000024  00000000360 13054307721 021374  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 745e6a9f-e1db-4d74-ae00-d439e3cf0242
+langcode: en
+status: true
+dependencies:
+  module:
+    - user
+id: user_cancel_user_action
+label: 'Cancel the selected user account(s)'
+type: user
+plugin: user_cancel_user_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                system.action.user_unblock_user_action.yml                                                          000664  000106  000024  00000000353 13054307721 021606  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 36d5f366-7981-446f-bb1c-2885fc4b135b
+langcode: en
+status: true
+dependencies:
+  module:
+    - user
+id: user_unblock_user_action
+label: 'Unblock the selected user(s)'
+type: user
+plugin: user_unblock_user_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                     system.authorize.yml                                                                                000664  000106  000024  00000000033 13054307721 015251  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         filetransfer_default: null
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     system.cron.yml                                                                                     000664  000106  000024  00000000123 13054307721 014200  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         threshold:
+  requirements_warning: 172800
+  requirements_error: 1209600
+logging: 1
+                                                                                                                                                                                                                                                                                                                                                                                                                                             system.date.yml                                                                                     000664  000106  000024  00000000205 13054307721 014155  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         country:
+  default: ''
+first_day: 0
+timezone:
+  default: Europe/Zurich
+  user:
+    configurable: true
+    warn: false
+    default: 0
+                                                                                                                                                                                                                                                                                                                                                                                           system.diff.yml                                                                                     000664  000106  000024  00000000060 13054307721 014147  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         context:
+  lines_leading: 2
+  lines_trailing: 2
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                system.file.yml                                                                                     000664  000106  000024  00000000152 13054307721 014160  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         allow_insecure_uploads: false
+default_scheme: public
+path:
+  temporary: /tmp
+temporary_maximum_age: 21600
+                                                                                                                                                                                                                                                                                                                                                                                                                      system.image.gd.yml                                                                                 000664  000106  000024  00000000021 13054307721 014707  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         jpeg_quality: 75
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               system.image.yml                                                                                    000664  000106  000024  00000000014 13054307721 014320  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         toolkit: gd
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    system.logging.yml                                                                                  000664  000106  000024  00000000022 13054307721 014663  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         error_level: hide
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              system.mail.yml                                                                                     000664  000106  000024  00000000037 13054307721 014165  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         interface:
+  default: php_mail
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 system.maintenance.yml                                                                              000664  000106  000024  00000000166 13054307721 015530  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         message: '@site is currently under maintenance. We should be back shortly. Thank you for your patience.'
+langcode: en
+                                                                                                                                                                                                                                                                                                                                                                                                          system.menu.account.yml                                                                             000664  000106  000024  00000000304 13054307721 015637  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: d453f1a9-b71f-4db6-8c00-c2e1ede57466
+langcode: en
+status: true
+dependencies: {  }
+id: account
+label: 'User account menu'
+description: 'Links related to the active user account'
+locked: true
+                                                                                                                                                                                                                                                                                                                            system.menu.admin.yml                                                                               000664  000106  000024  00000000256 13054307721 015301  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 9d8669e9-0036-4df9-af00-b0ee9754c164
+langcode: en
+status: true
+dependencies: {  }
+id: admin
+label: Administration
+description: 'Administrative task links'
+locked: true
+                                                                                                                                                                                                                                                                                                                                                  system.menu.footer.yml                                                                              000664  000106  000024  00000000244 13054307721 015504  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 254c1a7a-bdf2-4275-ac00-c541631a580c
+langcode: en
+status: true
+dependencies: {  }
+id: footer
+label: Footer
+description: 'Site information links'
+locked: true
+                                                                                                                                                                                                                                                                                                                                                            system.menu.main.yml                                                                                000664  000106  000024  00000000251 13054307721 015130  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: cafff12f-1076-46da-b707-7a85e190957c
+langcode: en
+status: true
+dependencies: {  }
+id: main
+label: 'Main navigation'
+description: 'Site section links'
+locked: true
+                                                                                                                                                                                                                                                                                                                                                       system.menu.tools.yml                                                                               000664  000106  000024  00000000263 13054307721 015347  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 5d29e3aa-7310-4f29-b605-5dbd3322e46e
+langcode: en
+status: true
+dependencies: {  }
+id: tools
+label: Tools
+description: 'User tool links, often added by modules'
+locked: true
+                                                                                                                                                                                                                                                                                                                                             system.performance.yml                                                                              000664  000106  000024  00000000714 13054307721 015546  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         cache:
+  page:
+    max_age: 0
+css:
+  preprocess: true
+  gzip: true
+fast_404:
+  enabled: true
+  paths: '/\.(?:txt|png|gif|jpe?g|css|js|ico|swf|flv|cgi|bat|pl|dll|exe|asp)$/i'
+  exclude_paths: '/\/(?:styles|imagecache)\//'
+  html: '<!DOCTYPE html><html><head><title>404 Not Found</title></head><body><h1>Not Found</h1><p>The requested URL "@path" was not found on this server.</p></body></html>'
+js:
+  preprocess: true
+  gzip: true
+stale_file_threshold: 2592000
+                                                    system.rss.yml                                                                                      000664  000106  000024  00000000114 13054307721 014046  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         channel:
+  description: ''
+items:
+  limit: 10
+  view_mode: rss
+langcode: en
+                                                                                                                                                                                                                                                                                                                                                                                                                                                    system.site.yml                                                                                     000664  000106  000024  00000000343 13054307721 014207  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 705f9278-fbeb-4771-ab00-d4da47143d04
+name: Site-Install
+mail: admin@example.com
+slogan: ''
+page:
+  403: ''
+  404: ''
+  front: /user/login
+admin_compact_mode: false
+weight_select_max: 100
+langcode: en
+default_langcode: en
+                                                                                                                                                                                                                                                                                             system.theme.global.yml                                                                             000664  000106  000024  00000000372 13054307721 015606  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         favicon:
+  mimetype: image/vnd.microsoft.icon
+  path: ''
+  url: ''
+  use_default: true
+features:
+  comment_user_picture: true
+  comment_user_verification: true
+  favicon: true
+  node_user_picture: false
+logo:
+  path: ''
+  url: ''
+  use_default: true
+                                                                                                                                                                                                                                                                      system.theme.yml                                                                                    000664  000106  000024  00000000031 13054307721 014337  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         admin: ''
+default: stark
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       text.settings.yml                                                                                   000664  000106  000024  00000000034 13054307721 014540  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         default_summary_length: 600
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    update.settings.yml                                                                                 000664  000106  000024  00000000247 13054307721 015044  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         check:
+  disabled_extensions: false
+  interval_days: 1
+fetch:
+  url: ''
+  max_attempts: 2
+  timeout: 30
+notification:
+  emails:
+    - alex@vit-al.com
+  threshold: all
+                                                                                                                                                                                                                                                                                                                                                         user.flood.yml                                                                                      000664  000106  000024  00000000116 13054307721 013776  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uid_only: false
+ip_limit: 50
+ip_window: 3600
+user_limit: 5
+user_window: 21600
+                                                                                                                                                                                                                                                                                                                                                                                                                                                  user.mail.yml                                                                                       000664  000106  000024  00000007353 13054307721 013627  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         cancel_confirm:
+  body: "[user:display-name],\n\nA request to cancel your account has been made at [site:name].\n\nYou may now cancel your account on [site:url-brief] by clicking this link or copying and pasting it into your browser:\n\n[user:cancel-url]\n\nNOTE: The cancellation of your account is not reversible.\n\nThis link expires in one day and nothing will happen if it is not used.\n\n--  [site:name] team"
+  subject: 'Account cancellation request for [user:display-name] at [site:name]'
+password_reset:
+  body: "[user:display-name],\n\nA request to reset the password for your account has been made at [site:name].\n\nYou may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password. It expires after one day and nothing will happen if it's not used.\n\n--  [site:name] team"
+  subject: 'Replacement login information for [user:display-name] at [site:name]'
+register_admin_created:
+  body: "[user:display-name],\n\nA site administrator at [site:name] has created an account for you. You may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password.\n\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\n\nusername: [user:name]\npassword: Your password\n\n--  [site:name] team"
+  subject: 'An administrator created an account for you at [site:name]'
+register_no_approval_required:
+  body: "[user:display-name],\n\nThank you for registering at [site:name]. You may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password.\n\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\n\nusername: [user:name]\npassword: Your password\n\n--  [site:name] team"
+  subject: 'Account details for [user:display-name] at [site:name]'
+register_pending_approval:
+  body: "[user:display-name],\n\nThank you for registering at [site:name]. Your application for an account is currently pending approval. Once it has been approved, you will receive another email containing information about how to log in, set your password, and other details.\n\n\n--  [site:name] team"
+  subject: 'Account details for [user:display-name] at [site:name] (pending admin approval)'
+register_pending_approval_admin:
+  body: "[user:display-name] has applied for an account.\n\n[user:edit-url]"
+  subject: 'Account details for [user:display-name] at [site:name] (pending admin approval)'
+status_activated:
+  body: "[user:display-name],\n\nYour account at [site:name] has been activated.\n\nYou may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password.\n\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\n\nusername: [user:account-name]\npassword: Your password\n\n--  [site:name] team"
+  subject: 'Account details for [user:display-name] at [site:name] (approved)'
+status_blocked:
+  body: "[user:display-name],\n\nYour account on [site:account-name] has been blocked.\n\n--  [site:name] team"
+  subject: 'Account details for [user:display-name] at [site:name] (blocked)'
+status_canceled:
+  body: "[user:display-name],\n\nYour account on [site:name] has been canceled.\n\n--  [site:name] team"
+  subject: 'Account details for [user:display-name] at [site:name] (canceled)'
+langcode: en
+                                                                                                                                                                                                                                                                                     user.role.anonymous.yml                                                                             000664  000106  000024  00000000272 13054307721 015666  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 110aa302-c5dc-4a51-a400-bc67e10bc8cc
+langcode: en
+status: true
+dependencies: {  }
+id: anonymous
+label: 'Anonymous user'
+weight: 0
+is_admin: false
+permissions:
+  - 'access content'
+                                                                                                                                                                                                                                                                                                                                      user.role.authenticated.yml                                                                         000664  000106  000024  00000000302 13054307721 016452  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 026c1add-219e-416c-a803-3b6ccad0172d
+langcode: en
+status: true
+dependencies: {  }
+id: authenticated
+label: 'Authenticated user'
+weight: 1
+is_admin: false
+permissions:
+  - 'access content'
+                                                                                                                                                                                                                                                                                                                              user.settings.yml                                                                                   000664  000106  000024  00000000624 13054307721 014537  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         anonymous: Anonymous
+verify_mail: true
+notify:
+  cancel_confirm: true
+  password_reset: true
+  status_activated: true
+  status_blocked: false
+  status_canceled: false
+  register_admin_created: true
+  register_no_approval_required: true
+  register_pending_approval: true
+register: visitors_admin_approval
+cancel_method: user_cancel_block
+password_reset_timeout: 86400
+password_strength: true
+langcode: en
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
\ No newline at end of file
diff --git a/core/modules/system/src/Tests/Installer/Fixtures/missing-language-entity.tar.gz b/core/modules/system/src/Tests/Installer/Fixtures/missing-language-entity.tar.gz
new file mode 100644
index 0000000..201a337
--- /dev/null
+++ b/core/modules/system/src/Tests/Installer/Fixtures/missing-language-entity.tar.gz
@@ -0,0 +1,1016 @@
+block.block.stark_admin.yml                                                                         000644  000765  000024  00000000756 13054346445 016373  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 8b1c9638-06b6-4f63-a12b-f19925daad66
+langcode: fr
+status: true
+dependencies:
+  config:
+    - system.menu.admin
+  module:
+    - system
+  theme:
+    - stark
+_core:
+  default_config_hash: DWAB7HaAfAJerAmyT8B2K-6qxicu9n0PcKVpDr--N4c
+id: stark_admin
+theme: stark
+region: sidebar_first
+weight: 1
+provider: null
+plugin: 'system_menu_block:admin'
+settings:
+  id: 'system_menu_block:admin'
+  label: Administration
+  provider: system
+  label_display: visible
+  level: 1
+  depth: 0
+visibility: {  }
+                  block.block.stark_branding.yml                                                                      000644  000765  000024  00000000754 13054346445 017065  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: a0468f45-a774-450c-b9c0-d9b2f1b0b0d3
+langcode: fr
+status: true
+dependencies:
+  module:
+    - system
+  theme:
+    - stark
+_core:
+  default_config_hash: fRKXNB91UxDvEMkzCR8ZBsawfC6Fqbme2gtobei3gu4
+id: stark_branding
+theme: stark
+region: header
+weight: 0
+provider: null
+plugin: system_branding_block
+settings:
+  id: system_branding_block
+  label: 'Marque du site'
+  provider: system
+  label_display: '0'
+  use_site_logo: true
+  use_site_name: true
+  use_site_slogan: true
+visibility: {  }
+                    block.block.stark_local_actions.yml                                                                 000644  000765  000024  00000000652 13054346445 020110  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: f18ab3b3-7cbb-4985-8bce-6e118fd1187a
+langcode: fr
+status: true
+dependencies:
+  theme:
+    - stark
+_core:
+  default_config_hash: PffmQ-ABSz5tFjWmVsR7NesunDnEivvopnJnBjl8KNE
+id: stark_local_actions
+theme: stark
+region: content
+weight: -10
+provider: null
+plugin: local_actions_block
+settings:
+  id: local_actions_block
+  label: 'Actions d''administration principales'
+  provider: core
+  label_display: '0'
+visibility: {  }
+                                                                                      block.block.stark_local_tasks.yml                                                                   000644  000765  000024  00000000646 13054346445 017600  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 7ef4424d-c351-4b40-92a8-a158b5882f0c
+langcode: fr
+status: true
+dependencies:
+  theme:
+    - stark
+_core:
+  default_config_hash: c-06bbElRY5sKmglk74ppgTW93Et4-EJFyNiUZMb8JY
+id: stark_local_tasks
+theme: stark
+region: content
+weight: -20
+provider: null
+plugin: local_tasks_block
+settings:
+  id: local_tasks_block
+  label: Onglets
+  provider: core
+  label_display: '0'
+  primary: true
+  secondary: true
+visibility: {  }
+                                                                                          block.block.stark_login.yml                                                                         000644  000765  000024  00000000651 13054346445 016405  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 4a670155-8061-4905-b0a1-5f0c941ce357
+langcode: fr
+status: true
+dependencies:
+  module:
+    - user
+  theme:
+    - stark
+_core:
+  default_config_hash: 4QlSnWBcxxKMIFRM8sbu_MjSkcp3NjGgnVrc-lynQHI
+id: stark_login
+theme: stark
+region: sidebar_first
+weight: 0
+provider: null
+plugin: user_login_block
+settings:
+  id: user_login_block
+  label: 'Connexion utilisateur'
+  provider: user
+  label_display: visible
+visibility: {  }
+                                                                                       block.block.stark_messages.yml                                                                      000644  000765  000024  00000000661 13054346445 017105  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 86f9a387-32c2-49f0-a987-8eacd10e1324
+langcode: fr
+status: true
+dependencies:
+  module:
+    - system
+  theme:
+    - stark
+_core:
+  default_config_hash: 5MNdk3fpMKx_xxBTcz2T11DL4XEU1H5SgHl8BsYdFsA
+id: stark_messages
+theme: stark
+region: highlighted
+weight: 0
+provider: null
+plugin: system_messages_block
+settings:
+  id: system_messages_block
+  label: 'Messages de statut'
+  provider: system
+  label_display: '0'
+visibility: {  }
+                                                                               block.block.stark_page_title.yml                                                                    000644  000765  000024  00000000611 13054346445 017406  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 7384cefd-c34b-4a0b-88d3-49cb03f24a48
+langcode: fr
+status: true
+dependencies:
+  theme:
+    - stark
+_core:
+  default_config_hash: 8yptDf6WrXxeyevUz4nP5vfr7BtxQqCBMninhV2IJ1g
+id: stark_page_title
+theme: stark
+region: content
+weight: -30
+provider: null
+plugin: page_title_block
+settings:
+  id: page_title_block
+  label: 'Titre de page'
+  provider: core
+  label_display: '0'
+visibility: {  }
+                                                                                                                       block.block.stark_tools.yml                                                                         000644  000765  000024  00000000746 13054346445 016442  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 63b24b83-8610-4e8b-8b91-5c47fc4fc38f
+langcode: fr
+status: true
+dependencies:
+  config:
+    - system.menu.tools
+  module:
+    - system
+  theme:
+    - stark
+_core:
+  default_config_hash: xCOijLdB1-UgXxQ9a0D1_pd8vxNEhfMnxXZc8jYhHjs
+id: stark_tools
+theme: stark
+region: sidebar_first
+weight: 0
+provider: null
+plugin: 'system_menu_block:tools'
+settings:
+  id: 'system_menu_block:tools'
+  label: Outils
+  provider: system
+  label_display: visible
+  level: 1
+  depth: 0
+visibility: {  }
+                          core.date_format.fallback.yml                                                                       000644  000765  000024  00000000367 13054346445 016665  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 284a1245-0888-4153-9b56-1129df0ea415
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: 7klS5IWXrwzVaPpYZFAs6wcx8U2FF1X73OfrtTsvuvE
+id: fallback
+label: 'Format de date de repli'
+locked: true
+pattern: 'D, m/d/Y - H:i'
+                                                                                                                                                                                                                                                                         core.date_format.html_date.yml                                                                      000644  000765  000024  00000000337 13054346445 017064  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 88ef10eb-c9ea-4726-8b7f-f0d2ccdc1881
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: EOQltUQPmgc6UQ2rcJ4Xi_leCEJj5ui0TR-12duS-Tk
+id: html_date
+label: 'Date HTML'
+locked: true
+pattern: Y-m-d
+                                                                                                                                                                                                                                                                                                 core.date_format.html_datetime.yml                                                                  000644  000765  000024  00000000366 13054346445 017745  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 8fdcd432-75af-4b31-87b2-f8f3a07bf6e8
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: jxfClwZIRXIdcvMrE--WkcZxDGUVoOIE3Sm2NRZlFuE
+id: html_datetime
+label: 'Date et heure HTML'
+locked: true
+pattern: 'Y-m-d\TH:i:sO'
+                                                                                                                                                                                                                                                                          core.date_format.html_month.yml                                                                     000644  000765  000024  00000000336 13054346445 017273  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: f952ba2a-3a69-40cd-aba0-2ebd9f9eecc0
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: Z7KuCUwM_WdTNvLcoltuX3_8d-s-8FZkTN6KgNwF0eM
+id: html_month
+label: 'Mois HTML'
+locked: true
+pattern: Y-m
+                                                                                                                                                                                                                                                                                                  core.date_format.html_time.yml                                                                      000644  000765  000024  00000000342 13054346445 017101  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: a276550e-4bf8-4eb8-a192-03e5c329332f
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: M7yqicYkU36hRy5p9drAaGBBihhUD1OyujFrAaQ93ZE
+id: html_time
+label: 'Heure HTML'
+locked: true
+pattern: 'H:i:s'
+                                                                                                                                                                                                                                                                                              core.date_format.html_week.yml                                                                      000644  000765  000024  00000000342 13054346445 017076  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 0ffe1050-c65e-4f38-8164-b537b72de8a6
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: wKD4WsoV_wFgv2vgI4mcAAFSIzrye17ykzdwrnApkfY
+id: html_week
+label: 'Semaine HTML'
+locked: true
+pattern: Y-\WW
+                                                                                                                                                                                                                                                                                              core.date_format.html_year.yml                                                                      000644  000765  000024  00000000337 13054346445 017107  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: e197ba1a-d6ab-49ea-b208-f63f90b28c9a
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: OjekiQuX9RbVQ2_8jOHBL94RgYLePqX7wpfNGgcQzrk
+id: html_year
+label: 'Année HTML'
+locked: true
+pattern: 'Y'
+                                                                                                                                                                                                                                                                                                 core.date_format.html_yearless_date.yml                                                             000644  000765  000024  00000000362 13054346445 020771  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: a4a714c2-04b8-467f-8da7-654a5d3272a5
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: 5VpawMrKPEPCkoO4YpPa0TDFO2dgiIHfTziJtwlmUxc
+id: html_yearless_date
+label: 'Date HTML sans année'
+locked: true
+pattern: m-d
+                                                                                                                                                                                                                                                                              core.date_format.long.yml                                                                           000644  000765  000024  00000000363 13054346445 016061  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 2143714c-34a2-4ac4-b3a4-f1e0246d31b8
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: og8sWXhBuHbLMw3CoiBEZjgqSyhFBFmcbUW_wLcfNbo
+id: long
+label: 'Date longue par défaut'
+locked: false
+pattern: 'l j F Y - H:i'
+                                                                                                                                                                                                                                                                             core.date_format.medium.yml                                                                         000644  000765  000024  00000000366 13054346445 016405  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 62d550f9-4b8a-4221-8081-bc93ad27dd51
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: nzL5d024NjXIX_8TlT6uFAu973lmfkmHklJC-2i9rAE
+id: medium
+label: 'Date moyenne par défaut'
+locked: false
+pattern: 'D d/m/Y - H:i'
+                                                                                                                                                                                                                                                                          core.date_format.short.yml                                                                          000644  000765  000024  00000000362 13054346445 016260  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 6836d923-cac3-4257-9627-9ad5d2b4998f
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: AlzeyytA8InBgxIG9H2UDJYs3CG98Zj6yRsDKmlbZwA
+id: short
+label: 'Date courte par défaut'
+locked: false
+pattern: 'd/m/Y - H:i'
+                                                                                                                                                                                                                                                                              core.entity_form_mode.user.register.yml                                                             000644  000765  000024  00000000374 13054346445 021003  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 0fab993f-5c08-4335-b2fc-d834f09f643b
+langcode: fr
+status: true
+dependencies:
+  module:
+    - user
+_core:
+  default_config_hash: flXhTcp55yLcyy7ZLOhPGKGZobZQJdkAFVWV3LseiuI
+id: user.register
+label: 'S''inscrire'
+targetEntityType: user
+cache: true
+                                                                                                                                                                                                                                                                    core.entity_view_mode.node.full.yml                                                                 000644  000765  000024  00000000375 13054346445 020100  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 25f58ba8-c820-4b58-98eb-03c066beaf2f
+langcode: fr
+status: false
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: ElrtInxGjZd7GaapJ5O9n-ugi2hG2IxFivtgn0tHOsk
+id: node.full
+label: 'Contenu complet'
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                                                                                   core.entity_view_mode.node.rss.yml                                                                  000644  000765  000024  00000000356 13054346445 017744  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: fdb3a65b-0880-437d-9601-6cb1d305067d
+langcode: fr
+status: false
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: vlYzr-rp2f9NMp-Qlr4sFjlqRq-90mco5-afLNGwCrU
+id: node.rss
+label: RSS
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                                                                                                  core.entity_view_mode.node.search_index.yml                                                         000644  000765  000024  00000000410 13054346445 021560  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 49ea3eb9-eb90-41a5-b0c0-2ff819b9510e
+langcode: fr
+status: false
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: fVFfJv_GzBRE-wpRHbfD5a3VjnhbEOXG6lvRd3uaccY
+id: node.search_index
+label: 'Index de recherche'
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                                                                        core.entity_view_mode.node.search_result.yml                                                        000644  000765  000024  00000000473 13054346445 022000  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 8e801117-1119-4654-8d6d-c96d675d8663
+langcode: fr
+status: false
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: 6GCOQ-jP2RbdbHA5YWQ6bT8CfGbqrBYKOSC_XY4E3ZM
+id: node.search_result
+label: 'Effectuer une recherche en mettant en évidence les données saisies'
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                     core.entity_view_mode.node.teaser.yml                                                               000644  000765  000024  00000000365 13054346445 020420  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: e6f07e7f-2f30-4256-ac68-0e511c4a4ea9
+langcode: fr
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: Mz9qWr1kUYK0mjRAGDsr5XS6PvtZ24en_7ndt-pyWe4
+id: node.teaser
+label: Accroche
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                                                                                           core.entity_view_mode.user.compact.yml                                                              000644  000765  000024  00000000365 13054346445 020614  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 84e24ccd-1c5b-41b6-8118-1535a819e263
+langcode: fr
+status: true
+dependencies:
+  module:
+    - user
+_core:
+  default_config_hash: 71CSAr_LNPcgu6D6jI4INl1KATkahmeyUFBETAWya8g
+id: user.compact
+label: Compact
+targetEntityType: user
+cache: true
+                                                                                                                                                                                                                                                                           core.entity_view_mode.user.full.yml                                                                 000644  000765  000024  00000000400 13054346445 020116  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 1a2844c5-e92a-47b5-aae0-50e0b7824750
+langcode: fr
+status: false
+dependencies:
+  module:
+    - user
+_core:
+  default_config_hash: mQIF_foYjmnVSr9MpcD4CTaJE_FpO1AyDd_DskztGhM
+id: user.full
+label: 'Compte utilisateur'
+targetEntityType: user
+cache: true
+                                                                                                                                                                                                                                                                core.extension.yml                                                                                  000644  000765  000024  00000000500 13054417714 014641  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         module:
+  block: 0
+  dblog: 0
+  devel: 0
+  dynamic_page_cache: 0
+  field: 0
+  file: 0
+  filter: 0
+  language: 0
+  locale: 0
+  node: 0
+  page_cache: 0
+  system: 0
+  text: 0
+  user: 0
+  minimal: 1000
+theme:
+  stark: 0
+profile: minimal
+_core:
+  default_config_hash: m2GVq11UAOVuNgj8x0t5fMOPujpvQQ_zxLoaly1BMEU
+langcode: fr
+                                                                                                                                                                                                core.menu.static_menu_link_overrides.yml                                                            000644  000765  000024  00000000151 13054346445 021206  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         definitions: {  }
+_core:
+  default_config_hash: jdY7AU0tU-QsjmiOw3W8vwpYMb-By--_MSFgbqKUTYM
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                                       dblog.settings.yml                                                                                  000644  000765  000024  00000000147 13054346445 014635  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         row_limit: 1000
+_core:
+  default_config_hash: e883aGsrt1wFrsydlYU584PZONCSfRy0DtkZ9KzHb58
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                                         devel.settings.yml                                                                                  000644  000765  000024  00000000446 13054346445 014647  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         page_alter: false
+raw_names: false
+error_handlers:
+  1: 1
+rebuild_theme: false
+debug_mail_file_format: '%to-%subject-%datetime.mail.txt'
+debug_mail_directory: 'temporary://devel-mails'
+devel_dumper: default
+_core:
+  default_config_hash: 8SYa5OOpQGdg4wnttb0LFNuG6GmivsS2qNv9sTH9gDI
+langcode: fr
+                                                                                                                                                                                                                          devel.toolbar.settings.yml                                                                          000644  000765  000024  00000000444 13054346445 016306  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         toolbar_items:
+  - devel.admin_settings_link
+  - devel.cache_clear
+  - devel.container_info.service
+  - devel.execute_php
+  - devel.menu_rebuild
+  - devel.reinstall
+  - devel.route_info
+  - devel.run_cron
+_core:
+  default_config_hash: ysHEvvazIuaJ5BdY0dUw2_my_Q5hM8ypdXwFfaIrvMw
+langcode: fr
+                                                                                                                                                                                                                            field.settings.yml                                                                                  000644  000765  000024  00000000154 13054346445 014627  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         purge_batch_size: 50
+_core:
+  default_config_hash: nJk0TAQBzlNo52ehiHI7bIEPLGi0BYqZvPdEn7Chfu0
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                                    field.storage.node.body.yml                                                                         000644  000765  000024  00000000623 13054346445 016314  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 999fc58f-0df4-4ce9-bf06-272c907b545f
+langcode: fr
+status: true
+dependencies:
+  module:
+    - node
+    - text
+_core:
+  default_config_hash: EBUo7qOWqaiZaQ_RC9sLY5IoDKphS34v77VIHSACmVY
+id: node.body
+field_name: body
+entity_type: node
+type: text_with_summary
+settings: {  }
+module: text
+locked: false
+cardinality: 1
+translatable: true
+indexes: {  }
+persist_with_no_fields: true
+custom_storage: false
+                                                                                                             file.settings.yml                                                                                   000644  000765  000024  00000000257 13054346445 014467  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         description:
+  type: textfield
+  length: 128
+icon:
+  directory: core/modules/file/icons
+_core:
+  default_config_hash: 8LI-1XgwLt9hYRns_7c81S632d6JhdqXKs4vDheaG6E
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                 filter.format.plain_text.yml                                                                        000644  000765  000024  00000001101 13054346445 016620  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: bba89094-363a-43ce-99f4-20ad30babc2b
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: NIKBt6kw_uPhNI0qtR2DnRf7mSOgAQdx7Q94SKMjXbQ
+name: 'Texte brut'
+format: plain_text
+weight: 10
+filters:
+  filter_html_escape:
+    id: filter_html_escape
+    provider: filter
+    status: true
+    weight: -10
+    settings: {  }
+  filter_url:
+    id: filter_url
+    provider: filter
+    status: true
+    weight: 0
+    settings:
+      filter_url_length: 72
+  filter_autop:
+    id: filter_autop
+    provider: filter
+    status: true
+    weight: 0
+    settings: {  }
+                                                                                                                                                                                                                                                                                                                                                                                                                                                               filter.settings.yml                                                                                 000644  000765  000024  00000000226 13054346445 015031  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         fallback_format: plain_text
+always_show_fallback_choice: false
+_core:
+  default_config_hash: FiPjM3WdB__ruFA7B6TLwni_UcZbmek5G4b2dxQItxA
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                          language.entity.fr.yml                                                                              000644  000765  000024  00000000224 13054346445 015407  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: bd78167c-f142-4cdb-b1aa-bd05d0d41f03
+langcode: fr
+status: true
+dependencies: {  }
+id: fr
+label: French
+direction: ltr
+weight: 0
+locked: false
+                                                                                                                                                                                                                                                                                                                                                                            language.entity.und.yml                                                                             000644  000765  000024  00000000350 13054346445 015566  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 9b5b5bcf-f20b-4d12-a43a-519958fc9dfc
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: eNX6lLCKDaY83nCMh20My---y03KbiFlv802DKCCpvg
+id: und
+label: 'Non spécifié'
+direction: ltr
+weight: 2
+locked: true
+                                                                                                                                                                                                                                                                                        language.entity.zxx.yml                                                                             000644  000765  000024  00000000350 13054346445 015631  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 01c75ca0-01e4-48d9-98b7-f784f54ab11e
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: 35CefWbnzaiytcg3acexxz_GTvuwIjYd_ZTcmmR-tXA
+id: zxx
+label: 'Non applicable'
+direction: ltr
+weight: 3
+locked: true
+                                                                                                                                                                                                                                                                                        language.mappings.yml                                                                               000644  000765  000024  00000000372 13054346445 015307  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         map:
+  'no': nb
+  pt: pt-pt
+  zh: zh-hans
+  zh-tw: zh-hant
+  zh-hk: zh-hant
+  zh-mo: zh-hant
+  zh-cht: zh-hant
+  zh-cn: zh-hans
+  zh-sg: zh-hans
+  zh-chs: zh-hans
+_core:
+  default_config_hash: EMWe7Yu4Q5eD-NUfNuQAWGBvYUNZPIinztEtONSmsDc
+langcode: fr
+                                                                                                                                                                                                                                                                      language.negotiation.yml                                                                            000644  000765  000024  00000000336 13054346445 016011  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         session:
+  parameter: language
+url:
+  source: path_prefix
+  prefixes:
+    fr: ''
+  domains:
+    fr: ''
+selected_langcode: site_default
+_core:
+  default_config_hash: uEePITI9tV6WqzmsTb7MfPCi5yPWXSxAN1xeLcYFQbM
+langcode: fr
+                                                                                                                                                                                                                                                                                                  language.types.yml                                                                                  000644  000765  000024  00000000623 13054346445 014634  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         all:
+  - language_interface
+  - language_content
+  - language_url
+configurable:
+  - language_interface
+negotiation:
+  language_content:
+    enabled:
+      language-interface: 0
+  language_url:
+    enabled:
+      language-url: 0
+      language-url-fallback: 1
+  language_interface:
+    enabled:
+      language-url: 0
+_core:
+  default_config_hash: dqouFqVseNJNvEjsoYKxbinFOITuCxYhi4y2OTNQP_8
+langcode: fr
+                                                                                                             locale.settings.yml                                                                                 000644  000765  000024  00000001024 13054346445 015000  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         cache_strings: true
+translate_english: false
+javascript:
+  directory: languages
+translation:
+  use_source: remote_and_local
+  default_filename: '%project-%version.%language.po'
+  default_server_pattern: 'http://ftp.drupal.org/files/translations/%core/%project/%project-%version.%language.po'
+  overwrite_customized: false
+  overwrite_not_customized: true
+  update_interval_days: 0
+  path: sites/default/files/translations
+  import_enabled: true
+_core:
+  default_config_hash: Lqw8pAQIfr4sRSts2RRWG97eNG6vRT7FhqF_b5COPGk
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            node.settings.yml                                                                                   000644  000765  000024  00000000156 13054346445 014473  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         use_admin_theme: false
+_core:
+  default_config_hash: 2OMXCScXUOLSYID9-phjO4q36nnnaMWNUlDxEqZzG1U
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                                  system.action.node_delete_action.yml                                                                000644  000765  000024  00000000441 13054346445 020307  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 1098749a-de11-4c03-82c5-a38e6ee9fb87
+langcode: fr
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: Zx0jD1Klh5tZaGJy8uOeR_2MCu9FDM4xg7TaUJUEbkI
+id: node_delete_action
+label: 'Supprimer le contenu'
+type: node
+plugin: node_delete_action
+configuration: {  }
+                                                                                                                                                                                                                               system.action.node_make_sticky_action.yml                                                           000644  000765  000024  00000000476 13054346445 021360  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 2770a3a8-4e49-48c0-9305-0602762b0481
+langcode: fr
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: sOb26JSy3fGpWkvR0WYN6_hMqj_6d1rvbvrkzp1yya0
+id: node_make_sticky_action
+label: 'Épingler un contenu en haut des listes'
+type: node
+plugin: node_make_sticky_action
+configuration: {  }
+                                                                                                                                                                                                  system.action.node_make_unsticky_action.yml                                                         000644  000765  000024  00000000500 13054346445 021707  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 142abd28-668e-4b1a-a20a-e8793db9f7c8
+langcode: fr
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: lDM9mvIGAu8Sw8rt-uCO4Sr7yX5VPrDPxYcawkbKd6k
+id: node_make_unsticky_action
+label: 'Retirer un contenu du haut des listes'
+type: node
+plugin: node_make_unsticky_action
+configuration: {  }
+                                                                                                                                                                                                system.action.node_promote_action.yml                                                               000644  000765  000024  00000000467 13054346445 020542  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: e0380cfd-72d2-4026-b6d8-be1f73d3edd5
+langcode: fr
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: N0RDBTqiK4dKoN4p4oW2j0SGWycdHyALUe9M-Ofp89U
+id: node_promote_action
+label: 'Promouvoir un contenu en page d''accueil'
+type: node
+plugin: node_promote_action
+configuration: {  }
+                                                                                                                                                                                                         system.action.node_publish_action.yml                                                               000644  000765  000024  00000000441 13054346445 020513  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: fdcd182b-528c-42e6-864b-f6936241fab0
+langcode: fr
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: lsQkbo4njZ-Q_oGKCPGXGWFjWF1I7QpgA6m-t9rcRoA
+id: node_publish_action
+label: 'Publier un contenu'
+type: node
+plugin: node_publish_action
+configuration: {  }
+                                                                                                                                                                                                                               system.action.node_save_action.yml                                                                  000644  000765  000024  00000000437 13054346445 020010  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 01b9f451-65fe-4a13-89ee-5e2e9958519f
+langcode: fr
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: U9HspszLxcw6pZmRacFa6yDbbheyMN-We4fPbrWWHGg
+id: node_save_action
+label: 'Enregistrer un contenu'
+type: node
+plugin: node_save_action
+configuration: {  }
+                                                                                                                                                                                                                                 system.action.node_unpromote_action.yml                                                             000644  000765  000024  00000000473 13054346445 021102  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: c71bf3ee-c53c-484f-bca0-814c12cd5464
+langcode: fr
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: JBptjnfuOMtsdKygklXxoOgeOCTMtQxlkymjnnj-cC0
+id: node_unpromote_action
+label: 'Retirer un contenu de la page d''accueil'
+type: node
+plugin: node_unpromote_action
+configuration: {  }
+                                                                                                                                                                                                     system.action.node_unpublish_action.yml                                                             000644  000765  000024  00000000450 13054346445 021056  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: b8662616-02ab-4b1c-b059-875f792010f5
+langcode: fr
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: gGQXiSspwGl0lyOS6w_HCPpvGAPDciqDNLFwWOydVtI
+id: node_unpublish_action
+label: 'Dépublier un contenu'
+type: node
+plugin: node_unpublish_action
+configuration: {  }
+                                                                                                                                                                                                                        system.action.user_block_user_action.yml                                                            000644  000765  000024  00000000502 13054346445 021224  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 679984cb-978b-435e-95d6-e53f245e5a9f
+langcode: fr
+status: true
+dependencies:
+  module:
+    - user
+_core:
+  default_config_hash: DyypzTfThX10FFQw-399qPfEbLLyrhXgQrKPVsmAoJ4
+id: user_block_user_action
+label: 'Bloquer le(s) utilisateur(s) sélectionné(s)'
+type: user
+plugin: user_block_user_action
+configuration: {  }
+                                                                                                                                                                                              system.action.user_cancel_user_action.yml                                                           000644  000765  000024  00000000507 13054346445 021364  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 9e24cf9f-42f9-41c7-b580-8ff9fa1c2d72
+langcode: fr
+status: true
+dependencies:
+  module:
+    - user
+_core:
+  default_config_hash: nvrL9bFilzBvm2bjO9rQnFDpBA7dBBUjShSSt6NS-DU
+id: user_cancel_user_action
+label: 'Annuler l''(les) utilisateur(s) sélectionné(s)'
+type: user
+plugin: user_cancel_user_action
+configuration: {  }
+                                                                                                                                                                                         system.action.user_unblock_user_action.yml                                                          000644  000765  000024  00000000511 13054346445 021567  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: e2aed840-a088-4966-940d-9d91c9bf25d7
+langcode: fr
+status: true
+dependencies:
+  module:
+    - user
+_core:
+  default_config_hash: SPsUXsR3Rc8d1y3gewzaAKWa1ncea_ywXX3f7LTn7k0
+id: user_unblock_user_action
+label: 'Débloquer le(s) utilisateur(s) sélectionné(s)'
+type: user
+plugin: user_unblock_user_action
+configuration: {  }
+                                                                                                                                                                                       system.authorize.yml                                                                                000644  000765  000024  00000000162 13054346445 015241  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         filetransfer_default: null
+_core:
+  default_config_hash: z63ds8M4zPrylEgFRkRcOlfcsXWwfITzjD4cj1kRdfg
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                              system.cron.yml                                                                                     000644  000765  000024  00000000237 13054346445 014173  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         threshold:
+  requirements_warning: 172800
+  requirements_error: 1209600
+_core:
+  default_config_hash: 05U0n1_8zHYzxEFSWjyHCWuJyhdez2a6Z_aTIXin04E
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                 system.date.yml                                                                                     000644  000765  000024  00000000334 13054346445 014145  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         country:
+  default: ''
+first_day: 0
+timezone:
+  default: Europe/Zurich
+  user:
+    configurable: true
+    warn: false
+    default: 0
+_core:
+  default_config_hash: V9UurX2GPT05NWKG9f2GWQqFG2TRG8vczidwjpy7Woo
+langcode: fr
+                                                                                                                                                                                                                                                                                                    system.diff.yml                                                                                     000644  000765  000024  00000000207 13054346445 014137  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         context:
+  lines_leading: 2
+  lines_trailing: 2
+_core:
+  default_config_hash: 1WanmaEhxW_vM8_5Ktsdntj8MaO9UBHXg0lN603PsWM
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                         system.file.yml                                                                                     000644  000765  000024  00000000301 13054346445 014141  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         allow_insecure_uploads: false
+default_scheme: public
+path:
+  temporary: /tmp
+temporary_maximum_age: 21600
+_core:
+  default_config_hash: t48gCU9DzYfjb3bAOIqHLzhL0ChBlXh6_5B5Pyo9t8g
+langcode: fr
+                                                                                                                                                                                                                                                                                                                               system.image.gd.yml                                                                                 000644  000765  000024  00000000150 13054346445 014677  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         jpeg_quality: 75
+_core:
+  default_config_hash: eNXaHfkJJUThHeF0nvkoXyPLRrKYGxgHRjORvT4F5rQ
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                                        system.image.yml                                                                                    000644  000765  000024  00000000143 13054346445 014310  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         toolkit: gd
+_core:
+  default_config_hash: durWHaKeBaq4d9Wpi4RqwADj1OufDepcnJuhVLmKN24
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                                             system.logging.yml                                                                                  000644  000765  000024  00000000151 13054346445 014653  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         error_level: hide
+_core:
+  default_config_hash: u3-njszl92FaxjrCMiq0yDcjAfcdx72w1zT1O9dx6aA
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                                       system.mail.yml                                                                                     000644  000765  000024  00000000166 13054346445 014155  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         interface:
+  default: php_mail
+_core:
+  default_config_hash: rYgt7uhPafP2ngaN_ZUPFuyI4KdE0zU868zLNSlzKoE
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                          system.maintenance.yml                                                                              000644  000765  000024  00000000304 13054346445 015507  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         message: '@site est en cours de maintenance. Nous serons de retour très bientôt. Merci de votre patience.'
+langcode: fr
+_core:
+  default_config_hash: Z5MXifrF77GEAgx0GQ6iWT8wStjFuY8BD9OruofWTJ8
+                                                                                                                                                                                                                                                                                                                            system.menu.account.yml                                                                             000644  000765  000024  00000000442 13054346445 015627  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 08130c94-30d4-4cc9-9dbb-2788d833d27c
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: M_Bh81osDyUQ4wV0GgU_NdBNqkzM87sLxjaCdFj9mnw
+id: account
+label: 'Menu du compte de l''utilisateur'
+description: 'Liens associés au compte utilisateur courant'
+locked: true
+                                                                                                                                                                                                                              system.menu.admin.yml                                                                               000644  000765  000024  00000000402 13054346445 015257  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 5df3651d-1b1c-4850-9f84-3446fc3008d2
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: sapEi2YDGoI9yQIT_WgIV2vUdQ6DScH0V3fAyTadAL0
+id: admin
+label: Administration
+description: 'Liens des tâches d''administration'
+locked: true
+                                                                                                                                                                                                                                                              system.menu.devel.yml                                                                               000644  000765  000024  00000000433 13054346445 015272  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: eef33146-7832-4592-9b51-6e6edbebcc67
+langcode: fr
+status: true
+dependencies:
+  enforced:
+    module:
+      - devel
+_core:
+  default_config_hash: mYceWZ4FHflXMWwxiO7ePCeXvKMl9F-ARIQ9p4IpvWE
+id: devel
+label: Development
+description: 'Links related to Devel module.'
+locked: true
+                                                                                                                                                                                                                                     system.menu.footer.yml                                                                              000644  000765  000024  00000000401 13054346445 015464  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: ef186d3d-09ff-47ac-ae95-5d9af409e598
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: 7yrlW5z9zdg2eBucB2GPqXKSMQfH9lSRSO4DbWF7AFc
+id: footer
+label: 'Pied de page'
+description: 'Liens d''informations sur le site'
+locked: true
+                                                                                                                                                                                                                                                               system.menu.main.yml                                                                                000644  000765  000024  00000000377 13054346445 015126  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 5263ec06-d9e5-4c72-893f-f5f586eb100f
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: Q2Ra3jfoIVk0f3SjxJX61byRQFVBAbpzYDQOiY-kno8
+id: main
+label: 'Navigation principale'
+description: 'Liens de section du site'
+locked: true
+                                                                                                                                                                                                                                                                 system.menu.tools.yml                                                                               000644  000765  000024  00000000427 13054346445 015336  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 12ebdf89-e67c-46e1-94aa-ed2d34a20446
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: BCM-vV1zzRaLHN18dqAR_CuGOj8AFJvTx7BKl_8Gcxc
+id: tools
+label: Outils
+description: 'Liens outils de l''utilisateur, souvent ajoutés par des modules'
+locked: true
+                                                                                                                                                                                                                                         system.performance.yml                                                                              000644  000765  000024  00000001043 13054346445 015527  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         cache:
+  page:
+    max_age: 0
+css:
+  preprocess: true
+  gzip: true
+fast_404:
+  enabled: true
+  paths: '/\.(?:txt|png|gif|jpe?g|css|js|ico|swf|flv|cgi|bat|pl|dll|exe|asp)$/i'
+  exclude_paths: '/\/(?:styles|imagecache)\//'
+  html: '<!DOCTYPE html><html><head><title>404 Not Found</title></head><body><h1>Not Found</h1><p>The requested URL "@path" was not found on this server.</p></body></html>'
+js:
+  preprocess: true
+  gzip: true
+stale_file_threshold: 2592000
+_core:
+  default_config_hash: b2cssrj-lOmATIbdehfCqfCFgVR0qCdxxWhwqa2KBVQ
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             system.rss.yml                                                                                      000644  000765  000024  00000000226 13054346445 014037  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         channel:
+  description: ''
+items:
+  limit: 10
+  view_mode: rss
+langcode: fr
+_core:
+  default_config_hash: TlH7NNk46phfxu1mSUfwg1C0YqaGsUCeD4l9JQnQlDU
+                                                                                                                                                                                                                                                                                                                                                                          system.site.yml                                                                                     000644  000765  000024  00000000447 13054346445 014201  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: ad08f161-86d7-4fe3-835f-0cf68c4a2f76
+name: Drupal
+mail: admin@example.com
+slogan: ''
+page:
+  403: ''
+  404: ''
+  front: /user/login
+admin_compact_mode: false
+weight_select_max: 100
+langcode: fr
+default_langcode: fr
+_core:
+  default_config_hash: AyT9s8OUcclfALRE_imByOMgtZ19eOlqdF6zI3p7yqo
+                                                                                                                                                                                                                         system.theme.global.yml                                                                             000644  000765  000024  00000000521 13054346445 015567  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         favicon:
+  mimetype: image/vnd.microsoft.icon
+  path: ''
+  url: ''
+  use_default: true
+features:
+  comment_user_picture: true
+  comment_user_verification: true
+  favicon: true
+  node_user_picture: false
+logo:
+  path: ''
+  url: ''
+  use_default: true
+_core:
+  default_config_hash: 9rAU4Pku7eMBQxauQqAgjzlcicFZ2As6zEa6zvTlCB8
+langcode: fr
+                                                                                                                                                                               system.theme.yml                                                                                    000644  000765  000024  00000000160 13054346445 014327  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         admin: ''
+default: stark
+_core:
+  default_config_hash: 6lQ55NXM9ysybMQ6NzJj4dtiQ1dAkOYxdDompa-r_kk
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                                text.settings.yml                                                                                   000644  000765  000024  00000000163 13054346445 014530  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         default_summary_length: 600
+_core:
+  default_config_hash: Bkewb77RBOK3_aXMPsp8p87gbc03NvmC5gBLzPl7hVA
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                                                                             user.flood.yml                                                                                      000644  000765  000024  00000000245 13054346445 013766  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uid_only: false
+ip_limit: 50
+ip_window: 3600
+user_limit: 5
+user_window: 21600
+_core:
+  default_config_hash: UYfMzeP1S8jKm9PSvxf7nQNe8DsNS-3bc2WSNNXBQWs
+langcode: fr
+                                                                                                                                                                                                                                                                                                                                                           user.mail.yml                                                                                       000644  000765  000024  00000011047 13054346445 013607  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         cancel_confirm:
+  body: "[user:display-name],\r\n\r\nUne demande de suppression de votre compte sur [site:name] a été faite.\r\n\r\nVous pouvez maintenant supprimer votre compte sur [site:url-brief] en cliquant sur le lien ci-dessous ou en le copiant dans votre navigateur : \r\n\r\n[user:cancel-url]\r\n\r\nA NOTER : La suppression de votre compte est définitive.\r\n\r\nCe lien expirera dans un jour et aucune action ne sera lancée s'il n'est pas utilisé.\r\n\r\n--  L'équipe de [site:name]"
+  subject: 'Demande d''annulation du compte [user:display-name] sur [site:name]'
+password_reset:
+  body: "[user:display-name],\r\n\r\nUne demande de réinitialisation de votre mot de passe pour votre compte a été faite sur [site:name].\r\n\r\nVous pouvez maintenant vous connecter en cliquant sur le lien ci-dessous ou en le copiant dans votre navigateur : \r\n\r\n[user:one-time-login-url]\r\n\r\nCe lien ne peut être utilisé qu'une seule fois pour vous connecter et vous mènera à la page pour changer votre mot de passe. Il expirera dans un jour et rien ne se passera s'il n'est pas utilisé.\r\n\r\n--  L'équipe de [site:name]"
+  subject: 'Modification des informations de connexion pour [user:display-name] sur [site:name]'
+register_admin_created:
+  body: "[user:display-name],\r\n\r\nUn administrateur sur [site:name] a créé un compte pour vous. Vous pouvez maintenant vous connecter en utilisant le lien ci-dessous ou en le copiant dans votre navigateur : \r\n\r\n[user:one-time-login-url]\r\n\r\nCe lien ne peut être utilisé qu'une seule fois pour vous connecter et vous redirigera vers la page où vous pourrez choisir votre mot de passe.\r\n\r\nAprès avoir choisi votre mot de passe, vous pourrez vous connecter sur [site:login-url] en utilisant : \r\n\r\nnom d'utilisateur : [user:name]\r\nmot de passe : Votre mot de passe\r\n\r\n--  L'équipe de [site:name]"
+  subject: 'Un administrateur a créé un compte pour vous sur [site:name]'
+register_no_approval_required:
+  body: "[user:display-name],\r\n\r\nNous vous remercions pour votre inscription sur [site:name]. Vous pouvez maintenant vous connecter en utilisant le lien ci-dessous ou en le copiant dans votre navigateur : \r\n\r\n[user:one-time-login-url]\r\n\r\nCe lien ne peut être utilisé qu'une seule fois et vous redirigera vers une page où vous pourrez choisir votre mot de passe.\r\n\r\nAprès avoir choisi votre mot de passe, vous pourrez vous connecter sur [site:login-url] en utilisant : \r\n\r\nNom d'utilisateur : [user:name]\r\nmot de passe : Votre mot de passe\r\n\r\n--  L'équipe de [site:name]"
+  subject: 'Détails du compte [user:display-name] sur [site:name]'
+register_pending_approval:
+  body: "[user:display-name],\r\n\r\nNous vous remercions pour votre demande d'inscription sur [site:name]. Votre demande est actuellement en cours de validation. Une fois la validation faite, vous recevrez un autre courriel de confirmation contenant les informations vous permettant de vous connecter, choisir votre mot de passe ainsi que d'autres détails.\r\n\r\n\r\n--  L'équipe de [site:name]"
+  subject: 'Détails du compte [user:display-name] sur [site:name] (en attente de validation d''un administrateur)'
+register_pending_approval_admin:
+  body: "[user:display-name] a fait une demande de compte.\r\n\r\n[user:edit-url]"
+  subject: 'Détails du compte [user:display-name] sur [site:name] (en attente de validation d''un administrateur)'
+status_activated:
+  body: "[user:display-name],\r\n\r\nVotre compte sur [site:name] a été activé.\r\n\r\nVous pouvez maintenant vous connecter en cliquant sur le lien ci-dessous ou en le copiant dans votre navigateur : \r\n\r\n[user:one-time-login-url]\r\n\r\nCe lien ne peut être utilisé qu'une seule fois et vous redirigera vers une page où vous pourrez choisir votre mot de passe.\r\n\r\nAprès avoir choisi votre mot de passe, vous pourrez vous connecter sur [site:login-url] en utilisant :\r\n\r\nnom d'utilisateur : [user:account-name]\r\nmot de passe : Votre mot de passe\r\n\r\n--  L'équipe de [site:name]"
+  subject: 'Détails du compte [user:display-name] sur [site:name] (validé)'
+status_blocked:
+  body: "[user:display-name],\r\n\r\nVotre compte sur [site:name] a été bloqué.\r\n\r\n-- L'équipe [site:name]"
+  subject: 'Détails du compte [user:display-name] sur [site:name] (bloqué)'
+status_canceled:
+  body: "[user:display-name],\r\n\r\nVotre compte sur [site:name] a été annulé.\r\n\r\n--  L'équipe de [site:name]"
+  subject: 'Détails du compte [user:display-name] sur [site:name] (annulé)'
+langcode: fr
+_core:
+  default_config_hash: m4J3ROov32OEquRYGLbx3SpdDGuqx9l_zJtNvihqdCg
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         user.role.anonymous.yml                                                                             000644  000765  000024  00000000411 13054346445 015646  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 52e7c4c7-7357-4e0b-9a17-663004e24ac3
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: j5zLMOdJBqC0bMvSdth5UebkprJB8g_2FXHqhfpJzow
+id: anonymous
+label: 'Utilisateur anonyme'
+weight: 0
+is_admin: false
+permissions:
+  - 'access content'
+                                                                                                                                                                                                                                                       user.role.authenticated.yml                                                                         000644  000765  000024  00000000422 13054346445 016442  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 3bacc82e-4d72-4587-8ceb-677e9a502b2f
+langcode: fr
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: dJ0L2DNSj5q6XVZAGsuVDpJTh5UeYkIPwKrUOOpr8YI
+id: authenticated
+label: 'Utilisateur authentifié'
+weight: 1
+is_admin: false
+permissions:
+  - 'access content'
+                                                                                                                                                                                                                                              user.settings.yml                                                                                   000644  000765  000024  00000000734 13054346445 014526  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         anonymous: Anonyme
+verify_mail: true
+notify:
+  cancel_confirm: true
+  password_reset: true
+  status_activated: true
+  status_blocked: false
+  status_canceled: false
+  register_admin_created: true
+  register_no_approval_required: true
+  register_pending_approval: true
+register: visitors_admin_approval
+cancel_method: user_cancel_block
+password_reset_timeout: 86400
+password_strength: true
+langcode: fr
+_core:
+  default_config_hash: r4kwhOM0IWXVMUZDz744Yc16EOh37ZhYbA8kGOhSmLk
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
\ No newline at end of file
diff --git a/core/modules/system/src/Tests/Installer/Fixtures/no_dependencies_profile.tar.gz b/core/modules/system/src/Tests/Installer/Fixtures/no_dependencies_profile.tar.gz
new file mode 100644
index 0000000..1fa5dde
--- /dev/null
+++ b/core/modules/system/src/Tests/Installer/Fixtures/no_dependencies_profile.tar.gz
@@ -0,0 +1,738 @@
+block.block.stark_admin.yml                                                                         000644  000765  000024  00000000644 13054307721 016361  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 1fffab29-a09f-4d56-9500-a032c13b918e
+langcode: en
+status: true
+dependencies:
+  config:
+    - system.menu.admin
+  module:
+    - system
+  theme:
+    - stark
+id: stark_admin
+theme: stark
+region: sidebar_first
+weight: 1
+provider: null
+plugin: 'system_menu_block:admin'
+settings:
+  id: 'system_menu_block:admin'
+  label: Administration
+  provider: system
+  label_display: visible
+  level: 1
+  depth: 0
+visibility: {  }
+                                                                                            block.block.stark_branding.yml                                                                      000644  000765  000024  00000000641 13054307721 017052  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: c3c95156-f467-442a-8d24-36338014303f
+langcode: en
+status: true
+dependencies:
+  module:
+    - system
+  theme:
+    - stark
+id: stark_branding
+theme: stark
+region: header
+weight: 0
+provider: null
+plugin: system_branding_block
+settings:
+  id: system_branding_block
+  label: 'Site branding'
+  provider: system
+  label_display: '0'
+  use_site_logo: true
+  use_site_name: true
+  use_site_slogan: true
+visibility: {  }
+                                                                                               block.block.stark_local_actions.yml                                                                 000644  000765  000024  00000000520 13054307721 020074  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 831af4da-167f-4e9a-aa00-c169fb6f66bc
+langcode: en
+status: true
+dependencies:
+  theme:
+    - stark
+id: stark_local_actions
+theme: stark
+region: content
+weight: -10
+provider: null
+plugin: local_actions_block
+settings:
+  id: local_actions_block
+  label: 'Primary admin actions'
+  provider: core
+  label_display: '0'
+visibility: {  }
+                                                                                                                                                                                block.block.stark_local_tasks.yml                                                                   000644  000765  000024  00000000531 13054307721 017563  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 17bb1521-9e73-4ffd-905e-940778b38d08
+langcode: en
+status: true
+dependencies:
+  theme:
+    - stark
+id: stark_local_tasks
+theme: stark
+region: content
+weight: -20
+provider: null
+plugin: local_tasks_block
+settings:
+  id: local_tasks_block
+  label: Tabs
+  provider: core
+  label_display: '0'
+  primary: true
+  secondary: true
+visibility: {  }
+                                                                                                                                                                       block.block.stark_login.yml                                                                         000644  000765  000024  00000000524 13054307721 016376  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: f90e601c-5b18-443d-b432-50305c44d636
+langcode: en
+status: true
+dependencies:
+  module:
+    - user
+  theme:
+    - stark
+id: stark_login
+theme: stark
+region: sidebar_first
+weight: 0
+provider: null
+plugin: user_login_block
+settings:
+  id: user_login_block
+  label: 'User login'
+  provider: user
+  label_display: visible
+visibility: {  }
+                                                                                                                                                                            block.block.stark_messages.yml                                                                      000644  000765  000024  00000000544 13054307721 017077  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 884da769-67b7-4b33-ac00-0b933a7bd1b2
+langcode: en
+status: true
+dependencies:
+  module:
+    - system
+  theme:
+    - stark
+id: stark_messages
+theme: stark
+region: highlighted
+weight: 0
+provider: null
+plugin: system_messages_block
+settings:
+  id: system_messages_block
+  label: 'Status messages'
+  provider: system
+  label_display: '0'
+visibility: {  }
+                                                                                                                                                            block.block.stark_page_title.yml                                                                    000644  000765  000024  00000000474 13054307721 017407  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: d8be7ae7-e613-44cf-a101-1d488ff4b20c
+langcode: en
+status: true
+dependencies:
+  theme:
+    - stark
+id: stark_page_title
+theme: stark
+region: content
+weight: -30
+provider: null
+plugin: page_title_block
+settings:
+  id: page_title_block
+  label: 'Page title'
+  provider: core
+  label_display: '0'
+visibility: {  }
+                                                                                                                                                                                                    block.block.stark_tools.yml                                                                         000644  000765  000024  00000000633 13054307721 016427  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: e138e13c-cbd1-445e-9800-d27de4500b69
+langcode: en
+status: true
+dependencies:
+  config:
+    - system.menu.tools
+  module:
+    - system
+  theme:
+    - stark
+id: stark_tools
+theme: stark
+region: sidebar_first
+weight: 0
+provider: null
+plugin: 'system_menu_block:tools'
+settings:
+  id: 'system_menu_block:tools'
+  label: Tools
+  provider: system
+  label_display: visible
+  level: 1
+  depth: 0
+visibility: {  }
+                                                                                                     core.date_format.fallback.yml                                                                       000644  000765  000024  00000000252 13054307721 016650  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: f131a142-053f-4d66-9f00-d6e9ea7d18de
+langcode: en
+status: true
+dependencies: {  }
+id: fallback
+label: 'Fallback date format'
+locked: true
+pattern: 'D, m/d/Y - H:i'
+                                                                                                                                                                                                                                                                                                                                                      core.date_format.html_date.yml                                                                      000644  000765  000024  00000000225 13054307721 017052  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: d016cccc-0434-4d55-a704-4bae81d008cd
+langcode: en
+status: true
+dependencies: {  }
+id: html_date
+label: 'HTML Date'
+locked: true
+pattern: Y-m-d
+                                                                                                                                                                                                                                                                                                                                                                           core.date_format.html_datetime.yml                                                                  000644  000765  000024  00000000247 13054307721 017735  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 6a25bd7a-2d95-4b4c-8809-9a2fc6dec805
+langcode: en
+status: true
+dependencies: {  }
+id: html_datetime
+label: 'HTML Datetime'
+locked: true
+pattern: 'Y-m-d\TH:i:sO'
+                                                                                                                                                                                                                                                                                                                                                         core.date_format.html_month.yml                                                                     000644  000765  000024  00000000225 13054307721 017262  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 57283453-7d3e-4e9a-b103-038f576fa5ad
+langcode: en
+status: true
+dependencies: {  }
+id: html_month
+label: 'HTML Month'
+locked: true
+pattern: Y-m
+                                                                                                                                                                                                                                                                                                                                                                           core.date_format.html_time.yml                                                                      000644  000765  000024  00000000227 13054307721 017075  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 3e0e36ab-c222-4425-ac62-98bf3bc84062
+langcode: en
+status: true
+dependencies: {  }
+id: html_time
+label: 'HTML Time'
+locked: true
+pattern: 'H:i:s'
+                                                                                                                                                                                                                                                                                                                                                                         core.date_format.html_week.yml                                                                      000644  000765  000024  00000000225 13054307721 017070  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: a26062c8-4fa9-471f-8900-c63c0f16a4c8
+langcode: en
+status: true
+dependencies: {  }
+id: html_week
+label: 'HTML Week'
+locked: true
+pattern: Y-\WW
+                                                                                                                                                                                                                                                                                                                                                                           core.date_format.html_year.yml                                                                      000644  000765  000024  00000000223 13054307721 017073  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: a9e6e4b1-483d-4d5f-a500-ac7e0c898942
+langcode: en
+status: true
+dependencies: {  }
+id: html_year
+label: 'HTML Year'
+locked: true
+pattern: 'Y'
+                                                                                                                                                                                                                                                                                                                                                                             core.date_format.html_yearless_date.yml                                                             000644  000765  000024  00000000245 13054307721 020763  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: bce741ce-3021-4547-801b-2778b9dcece0
+langcode: en
+status: true
+dependencies: {  }
+id: html_yearless_date
+label: 'HTML Yearless date'
+locked: true
+pattern: m-d
+                                                                                                                                                                                                                                                                                                                                                           core.date_format.long.yml                                                                           000644  000765  000024  00000000245 13054307721 016052  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 59739200-cedb-4f64-9163-99ebe46f07b3
+langcode: en
+status: true
+dependencies: {  }
+id: long
+label: 'Default long date'
+locked: false
+pattern: 'l, F j, Y - H:i'
+                                                                                                                                                                                                                                                                                                                                                           core.date_format.medium.yml                                                                         000644  000765  000024  00000000250 13054307721 016367  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 68de5c0d-a998-4e45-934a-74a7c1c94714
+langcode: en
+status: true
+dependencies: {  }
+id: medium
+label: 'Default medium date'
+locked: false
+pattern: 'D, m/d/Y - H:i'
+                                                                                                                                                                                                                                                                                                                                                        core.date_format.short.yml                                                                          000644  000765  000024  00000000243 13054307721 016250  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 656f532b-ec6f-4bd1-ac00-ebef1b4487e4
+langcode: en
+status: true
+dependencies: {  }
+id: short
+label: 'Default short date'
+locked: false
+pattern: 'm/d/Y - H:i'
+                                                                                                                                                                                                                                                                                                                                                             core.entity_form_mode.user.register.yml                                                             000644  000765  000024  00000000255 13054307721 020773  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 5a540561-372e-48ce-9703-3edca8a17072
+langcode: en
+status: true
+dependencies:
+  module:
+    - user
+id: user.register
+label: Register
+targetEntityType: user
+cache: true
+                                                                                                                                                                                                                                                                                                                                                   core.entity_view_mode.node.full.yml                                                                 000644  000765  000024  00000000260 13054307721 020063  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 5a0db7ce-e3fd-4104-b82c-4458bc5747b0
+langcode: en
+status: false
+dependencies:
+  module:
+    - node
+id: node.full
+label: 'Full content'
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                                                                                                                                                                core.entity_view_mode.node.rss.yml                                                                  000644  000765  000024  00000000244 13054307721 017732  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: dcc2c917-25b8-4a2e-9b16-2243a33cca0e
+langcode: en
+status: false
+dependencies:
+  module:
+    - node
+id: node.rss
+label: RSS
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                                                                                                                                                                            core.entity_view_mode.node.search_index.yml                                                         000644  000765  000024  00000000270 13054307721 021556  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: a6aa43bf-78b3-423d-a500-ed7602ff1b73
+langcode: en
+status: false
+dependencies:
+  module:
+    - node
+id: node.search_index
+label: 'Search index'
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                                                                                                                                                        core.entity_view_mode.node.search_result.yml                                                        000644  000765  000024  00000000315 13054307721 021765  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 4d2c441d-1aba-444a-9805-0529d268b38d
+langcode: en
+status: false
+dependencies:
+  module:
+    - node
+id: node.search_result
+label: 'Search result highlighting input'
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                                                                                                                                   core.entity_view_mode.node.teaser.yml                                                               000644  000765  000024  00000000251 13054307721 020404  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: cf430c84-021d-4680-9722-34974071e308
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+id: node.teaser
+label: Teaser
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                                                                                                                                                                       core.entity_view_mode.user.compact.yml                                                              000644  000765  000024  00000000253 13054307721 020602  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 655da7e3-c039-4e24-aa04-4cbf99a5a8a5
+langcode: en
+status: true
+dependencies:
+  module:
+    - user
+id: user.compact
+label: Compact
+targetEntityType: user
+cache: true
+                                                                                                                                                                                                                                                                                                                                                     core.entity_view_mode.user.full.yml                                                                 000644  000765  000024  00000000260 13054307721 020114  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: bf81ffba-0962-45f4-b206-6f39750f3f6b
+langcode: en
+status: false
+dependencies:
+  module:
+    - user
+id: user.full
+label: 'User account'
+targetEntityType: user
+cache: true
+                                                                                                                                                                                                                                                                                                                                                core.extension.yml                                                                                  000644  000765  000024  00000000414 13054332027 014636  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         module:
+  block: 0
+  config: 0
+  dblog: 0
+  dynamic_page_cache: 0
+  field: 0
+  file: 0
+  filter: 0
+  node: 0
+  page_cache: 0
+  simpletest: 0
+  system: 0
+  text: 0
+  update: 0
+  user: 0
+  no_dependencies_profile: 1000
+theme:
+  stark: 0
+profile: no_dependencies_profile
+                                                                                                                                                                                                                                                    core.menu.static_menu_link_overrides.yml                                                            000644  000765  000024  00000000022 13054307721 021175  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         definitions: {  }
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              dblog.settings.yml                                                                                  000644  000765  000024  00000000020 13054307721 014615  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         row_limit: 1000
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                field.settings.yml                                                                                  000644  000765  000024  00000000025 13054307721 014616  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         purge_batch_size: 50
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           field.storage.node.body.yml                                                                         000644  000765  000024  00000000511 13054307721 016302  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: bc3f35f2-daf4-4e0c-9c26-38d973968679
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+    - text
+id: node.body
+field_name: body
+entity_type: node
+type: text_with_summary
+settings: {  }
+module: text
+locked: false
+cardinality: 1
+translatable: true
+indexes: {  }
+persist_with_no_fields: true
+custom_storage: false
+                                                                                                                                                                                       file.settings.yml                                                                                   000644  000765  000024  00000000130 13054307721 014447  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         description:
+  type: textfield
+  length: 128
+icon:
+  directory: core/modules/file/icons
+                                                                                                                                                                                                                                                                                                                                                                                                                                        filter.format.plain_text.yml                                                                        000644  000765  000024  00000000767 13054307721 016633  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 1f9bf982-831d-4c55-991d-29048bcedbc8
+langcode: en
+status: true
+dependencies: {  }
+name: 'Plain text'
+format: plain_text
+weight: 10
+filters:
+  filter_html_escape:
+    id: filter_html_escape
+    provider: filter
+    status: true
+    weight: -10
+    settings: {  }
+  filter_url:
+    id: filter_url
+    provider: filter
+    status: true
+    weight: 0
+    settings:
+      filter_url_length: 72
+  filter_autop:
+    id: filter_autop
+    provider: filter
+    status: true
+    weight: 0
+    settings: {  }
+         filter.settings.yml                                                                                 000644  000765  000024  00000000077 13054307721 015027  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         fallback_format: plain_text
+always_show_fallback_choice: false
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                 node.settings.yml                                                                                   000644  000765  000024  00000000027 13054307721 014462  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         use_admin_theme: false
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         simpletest.settings.yml                                                                             000644  000765  000024  00000000126 13054307721 015726  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         clear_results: true
+httpauth:
+  method: 1
+  password: ''
+  username: ''
+verbose: true
+                                                                                                                                                                                                                                                                                                                                                                                                                                          system.action.node_delete_action.yml                                                                000644  000765  000024  00000000321 13054307721 020276  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: ef6a2c8e-98d0-4f5d-9242-66f6af319cca
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+id: node_delete_action
+label: 'Delete content'
+type: node
+plugin: node_delete_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                                               system.action.node_make_sticky_action.yml                                                           000644  000765  000024  00000000340 13054307721 021340  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 78fc4c1a-eada-4af7-8f00-a37a4325c9a8
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+id: node_make_sticky_action
+label: 'Make content sticky'
+type: node
+plugin: node_make_sticky_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                                system.action.node_make_unsticky_action.yml                                                         000644  000765  000024  00000000346 13054307721 021711  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 7d9d611d-9b47-49e4-b400-cc72649be1b5
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+id: node_make_unsticky_action
+label: 'Make content unsticky'
+type: node
+plugin: node_make_unsticky_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                          system.action.node_promote_action.yml                                                               000644  000765  000024  00000000342 13054307721 020524  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: a380f844-8e67-415d-9a09-09a0023390a0
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+id: node_promote_action
+label: 'Promote content to front page'
+type: node
+plugin: node_promote_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                              system.action.node_publish_action.yml                                                               000644  000765  000024  00000000324 13054307721 020505  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 33eabd2d-3914-4247-980c-123602a0e3db
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+id: node_publish_action
+label: 'Publish content'
+type: node
+plugin: node_publish_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                                            system.action.node_save_action.yml                                                                  000644  000765  000024  00000000313 13054307721 017773  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 80abf6b7-55c5-40a3-8558-88d15a5380d2
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+id: node_save_action
+label: 'Save content'
+type: node
+plugin: node_save_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                                                     system.action.node_unpromote_action.yml                                                             000644  000765  000024  00000000347 13054307721 021074  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 3efe115e-bd2d-41d3-ac00-f0b7cdf3ab0f
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+id: node_unpromote_action
+label: 'Remove content from front page'
+type: node
+plugin: node_unpromote_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                         system.action.node_unpublish_action.yml                                                             000644  000765  000024  00000000332 13054307721 021047  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 83e9e4b1-c74a-4b83-9211-17234019606c
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+id: node_unpublish_action
+label: 'Unpublish content'
+type: node
+plugin: node_unpublish_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                                      system.action.user_block_user_action.yml                                                            000644  000765  000024  00000000345 13054307721 021223  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: f95524ee-1b13-460a-9751-8144ceeae19d
+langcode: en
+status: true
+dependencies:
+  module:
+    - user
+id: user_block_user_action
+label: 'Block the selected user(s)'
+type: user
+plugin: user_block_user_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                           system.action.user_cancel_user_action.yml                                                           000644  000765  000024  00000000360 13054307721 021353  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 745e6a9f-e1db-4d74-ae00-d439e3cf0242
+langcode: en
+status: true
+dependencies:
+  module:
+    - user
+id: user_cancel_user_action
+label: 'Cancel the selected user account(s)'
+type: user
+plugin: user_cancel_user_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                system.action.user_unblock_user_action.yml                                                          000644  000765  000024  00000000353 13054307721 021565  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 36d5f366-7981-446f-bb1c-2885fc4b135b
+langcode: en
+status: true
+dependencies:
+  module:
+    - user
+id: user_unblock_user_action
+label: 'Unblock the selected user(s)'
+type: user
+plugin: user_unblock_user_action
+configuration: {  }
+                                                                                                                                                                                                                                                                                     system.authorize.yml                                                                                000644  000765  000024  00000000033 13054307721 015230  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         filetransfer_default: null
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     system.cron.yml                                                                                     000644  000765  000024  00000000123 13054307721 014157  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         threshold:
+  requirements_warning: 172800
+  requirements_error: 1209600
+logging: 1
+                                                                                                                                                                                                                                                                                                                                                                                                                                             system.date.yml                                                                                     000644  000765  000024  00000000205 13054307721 014134  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         country:
+  default: ''
+first_day: 0
+timezone:
+  default: Europe/Zurich
+  user:
+    configurable: true
+    warn: false
+    default: 0
+                                                                                                                                                                                                                                                                                                                                                                                           system.diff.yml                                                                                     000644  000765  000024  00000000060 13054307721 014126  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         context:
+  lines_leading: 2
+  lines_trailing: 2
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                system.file.yml                                                                                     000644  000765  000024  00000000152 13054307721 014137  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         allow_insecure_uploads: false
+default_scheme: public
+path:
+  temporary: /tmp
+temporary_maximum_age: 21600
+                                                                                                                                                                                                                                                                                                                                                                                                                      system.image.gd.yml                                                                                 000644  000765  000024  00000000021 13054307721 014666  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         jpeg_quality: 75
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               system.image.yml                                                                                    000644  000765  000024  00000000014 13054307721 014277  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         toolkit: gd
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    system.logging.yml                                                                                  000644  000765  000024  00000000022 13054307721 014642  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         error_level: hide
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              system.mail.yml                                                                                     000644  000765  000024  00000000037 13054307721 014144  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         interface:
+  default: php_mail
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 system.maintenance.yml                                                                              000644  000765  000024  00000000166 13054307721 015507  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         message: '@site is currently under maintenance. We should be back shortly. Thank you for your patience.'
+langcode: en
+                                                                                                                                                                                                                                                                                                                                                                                                          system.menu.account.yml                                                                             000644  000765  000024  00000000304 13054307721 015616  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: d453f1a9-b71f-4db6-8c00-c2e1ede57466
+langcode: en
+status: true
+dependencies: {  }
+id: account
+label: 'User account menu'
+description: 'Links related to the active user account'
+locked: true
+                                                                                                                                                                                                                                                                                                                            system.menu.admin.yml                                                                               000644  000765  000024  00000000256 13054307721 015260  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 9d8669e9-0036-4df9-af00-b0ee9754c164
+langcode: en
+status: true
+dependencies: {  }
+id: admin
+label: Administration
+description: 'Administrative task links'
+locked: true
+                                                                                                                                                                                                                                                                                                                                                  system.menu.footer.yml                                                                              000644  000765  000024  00000000244 13054307721 015463  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 254c1a7a-bdf2-4275-ac00-c541631a580c
+langcode: en
+status: true
+dependencies: {  }
+id: footer
+label: Footer
+description: 'Site information links'
+locked: true
+                                                                                                                                                                                                                                                                                                                                                            system.menu.main.yml                                                                                000644  000765  000024  00000000251 13054307721 015107  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: cafff12f-1076-46da-b707-7a85e190957c
+langcode: en
+status: true
+dependencies: {  }
+id: main
+label: 'Main navigation'
+description: 'Site section links'
+locked: true
+                                                                                                                                                                                                                                                                                                                                                       system.menu.tools.yml                                                                               000644  000765  000024  00000000263 13054307721 015326  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 5d29e3aa-7310-4f29-b605-5dbd3322e46e
+langcode: en
+status: true
+dependencies: {  }
+id: tools
+label: Tools
+description: 'User tool links, often added by modules'
+locked: true
+                                                                                                                                                                                                                                                                                                                                             system.performance.yml                                                                              000644  000765  000024  00000000714 13054307721 015525  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         cache:
+  page:
+    max_age: 0
+css:
+  preprocess: true
+  gzip: true
+fast_404:
+  enabled: true
+  paths: '/\.(?:txt|png|gif|jpe?g|css|js|ico|swf|flv|cgi|bat|pl|dll|exe|asp)$/i'
+  exclude_paths: '/\/(?:styles|imagecache)\//'
+  html: '<!DOCTYPE html><html><head><title>404 Not Found</title></head><body><h1>Not Found</h1><p>The requested URL "@path" was not found on this server.</p></body></html>'
+js:
+  preprocess: true
+  gzip: true
+stale_file_threshold: 2592000
+                                                    system.rss.yml                                                                                      000644  000765  000024  00000000114 13054307721 014025  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         channel:
+  description: ''
+items:
+  limit: 10
+  view_mode: rss
+langcode: en
+                                                                                                                                                                                                                                                                                                                                                                                                                                                    system.site.yml                                                                                     000644  000765  000024  00000000343 13054307721 014166  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 705f9278-fbeb-4771-ab00-d4da47143d04
+name: Site-Install
+mail: admin@example.com
+slogan: ''
+page:
+  403: ''
+  404: ''
+  front: /user/login
+admin_compact_mode: false
+weight_select_max: 100
+langcode: en
+default_langcode: en
+                                                                                                                                                                                                                                                                                             system.theme.global.yml                                                                             000644  000765  000024  00000000372 13054307721 015565  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         favicon:
+  mimetype: image/vnd.microsoft.icon
+  path: ''
+  url: ''
+  use_default: true
+features:
+  comment_user_picture: true
+  comment_user_verification: true
+  favicon: true
+  node_user_picture: false
+logo:
+  path: ''
+  url: ''
+  use_default: true
+                                                                                                                                                                                                                                                                      system.theme.yml                                                                                    000644  000765  000024  00000000031 13054307721 014316  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         admin: ''
+default: stark
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       text.settings.yml                                                                                   000644  000765  000024  00000000034 13054307721 014517  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         default_summary_length: 600
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    update.settings.yml                                                                                 000644  000765  000024  00000000247 13054307721 015023  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         check:
+  disabled_extensions: false
+  interval_days: 1
+fetch:
+  url: ''
+  max_attempts: 2
+  timeout: 30
+notification:
+  emails:
+    - alex@vit-al.com
+  threshold: all
+                                                                                                                                                                                                                                                                                                                                                         user.flood.yml                                                                                      000644  000765  000024  00000000116 13054307721 013755  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uid_only: false
+ip_limit: 50
+ip_window: 3600
+user_limit: 5
+user_window: 21600
+                                                                                                                                                                                                                                                                                                                                                                                                                                                  user.mail.yml                                                                                       000644  000765  000024  00000007353 13054307721 013606  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         cancel_confirm:
+  body: "[user:display-name],\n\nA request to cancel your account has been made at [site:name].\n\nYou may now cancel your account on [site:url-brief] by clicking this link or copying and pasting it into your browser:\n\n[user:cancel-url]\n\nNOTE: The cancellation of your account is not reversible.\n\nThis link expires in one day and nothing will happen if it is not used.\n\n--  [site:name] team"
+  subject: 'Account cancellation request for [user:display-name] at [site:name]'
+password_reset:
+  body: "[user:display-name],\n\nA request to reset the password for your account has been made at [site:name].\n\nYou may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password. It expires after one day and nothing will happen if it's not used.\n\n--  [site:name] team"
+  subject: 'Replacement login information for [user:display-name] at [site:name]'
+register_admin_created:
+  body: "[user:display-name],\n\nA site administrator at [site:name] has created an account for you. You may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password.\n\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\n\nusername: [user:name]\npassword: Your password\n\n--  [site:name] team"
+  subject: 'An administrator created an account for you at [site:name]'
+register_no_approval_required:
+  body: "[user:display-name],\n\nThank you for registering at [site:name]. You may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password.\n\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\n\nusername: [user:name]\npassword: Your password\n\n--  [site:name] team"
+  subject: 'Account details for [user:display-name] at [site:name]'
+register_pending_approval:
+  body: "[user:display-name],\n\nThank you for registering at [site:name]. Your application for an account is currently pending approval. Once it has been approved, you will receive another email containing information about how to log in, set your password, and other details.\n\n\n--  [site:name] team"
+  subject: 'Account details for [user:display-name] at [site:name] (pending admin approval)'
+register_pending_approval_admin:
+  body: "[user:display-name] has applied for an account.\n\n[user:edit-url]"
+  subject: 'Account details for [user:display-name] at [site:name] (pending admin approval)'
+status_activated:
+  body: "[user:display-name],\n\nYour account at [site:name] has been activated.\n\nYou may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password.\n\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\n\nusername: [user:account-name]\npassword: Your password\n\n--  [site:name] team"
+  subject: 'Account details for [user:display-name] at [site:name] (approved)'
+status_blocked:
+  body: "[user:display-name],\n\nYour account on [site:account-name] has been blocked.\n\n--  [site:name] team"
+  subject: 'Account details for [user:display-name] at [site:name] (blocked)'
+status_canceled:
+  body: "[user:display-name],\n\nYour account on [site:name] has been canceled.\n\n--  [site:name] team"
+  subject: 'Account details for [user:display-name] at [site:name] (canceled)'
+langcode: en
+                                                                                                                                                                                                                                                                                     user.role.anonymous.yml                                                                             000644  000765  000024  00000000272 13054307721 015645  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 110aa302-c5dc-4a51-a400-bc67e10bc8cc
+langcode: en
+status: true
+dependencies: {  }
+id: anonymous
+label: 'Anonymous user'
+weight: 0
+is_admin: false
+permissions:
+  - 'access content'
+                                                                                                                                                                                                                                                                                                                                      user.role.authenticated.yml                                                                         000644  000765  000024  00000000302 13054307721 016431  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         uuid: 026c1add-219e-416c-a803-3b6ccad0172d
+langcode: en
+status: true
+dependencies: {  }
+id: authenticated
+label: 'Authenticated user'
+weight: 1
+is_admin: false
+permissions:
+  - 'access content'
+                                                                                                                                                                                                                                                                                                                              user.settings.yml                                                                                   000644  000765  000024  00000000624 13054307721 014516  0                                                                                                    ustar 00alex                            staff                           000000  000000                                                                                                                                                                         anonymous: Anonymous
+verify_mail: true
+notify:
+  cancel_confirm: true
+  password_reset: true
+  status_activated: true
+  status_blocked: false
+  status_canceled: false
+  register_admin_created: true
+  register_no_approval_required: true
+  register_pending_approval: true
+register: visitors_admin_approval
+cancel_method: user_cancel_block
+password_reset_timeout: 86400
+password_strength: true
+langcode: en
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
\ No newline at end of file
diff --git a/core/modules/system/src/Tests/Installer/Fixtures/standard-without-config.tar.gz b/core/modules/system/src/Tests/Installer/Fixtures/standard-without-config.tar.gz
new file mode 100644
index 0000000..0792293
--- /dev/null
+++ b/core/modules/system/src/Tests/Installer/Fixtures/standard-without-config.tar.gz
@@ -0,0 +1,8567 @@
+automated_cron.settings.yml                                                                         000664  000106  000024  00000000132 13054310141 016545  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         interval: 10800
+_core:
+  default_config_hash: fUksROt4FfkAU9BV4hV2XvhTBSS2nTNrZS4U7S-tKrs
+                                                                                                                                                                                                                                                                                                                                                                                                                                      block.block.bartik_account_menu.yml                                                                 000664  000106  000024  00000001000 13054310141 020073  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 0b1f339a-4119-49a4-8019-2e7d43aa10d9
+langcode: en
+status: true
+dependencies:
+  config:
+    - system.menu.account
+  module:
+    - system
+  theme:
+    - bartik
+_core:
+  default_config_hash: DweBpscQZdG0-fHkSpUzdYucrNH45G_KF7Z82V-oyQM
+id: bartik_account_menu
+theme: bartik
+region: secondary_menu
+weight: 0
+provider: null
+plugin: 'system_menu_block:account'
+settings:
+  id: 'system_menu_block:account'
+  label: 'User account menu'
+  provider: system
+  label_display: '0'
+  level: 1
+  depth: 1
+visibility: {  }
+block.block.bartik_branding.yml                                                                     000664  000106  000024  00000000756 13054310141 017220  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 0c864b48-f3a8-4fc7-9788-b5bc1e585186
+langcode: en
+status: true
+dependencies:
+  module:
+    - system
+  theme:
+    - bartik
+_core:
+  default_config_hash: NDwadleLD3YVSbDUaakxyYZyINYtkFtOVGShfq4kWy8
+id: bartik_branding
+theme: bartik
+region: header
+weight: 0
+provider: null
+plugin: system_branding_block
+settings:
+  id: system_branding_block
+  label: 'Site branding'
+  provider: system
+  label_display: '0'
+  use_site_logo: true
+  use_site_name: true
+  use_site_slogan: true
+visibility: {  }
+                  block.block.bartik_breadcrumbs.yml                                                                  000664  000106  000024  00000000661 13054310141 017720  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 8914d1e5-27a8-40aa-b8c7-d52f9d9bcd67
+langcode: en
+status: true
+dependencies:
+  module:
+    - system
+  theme:
+    - bartik
+_core:
+  default_config_hash: oXUb3JZR2WW5VOdw4HrhRicCsq51mCgLfRyvheG68ck
+id: bartik_breadcrumbs
+theme: bartik
+region: breadcrumb
+weight: 0
+provider: null
+plugin: system_breadcrumb_block
+settings:
+  id: system_breadcrumb_block
+  label: Breadcrumbs
+  provider: system
+  label_display: '0'
+visibility: {  }
+                                                                               block.block.bartik_content.yml                                                                      000664  000106  000024  00000000646 13054310141 017104  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 514fc7f7-cc85-4e49-842b-ebb74cc55102
+langcode: en
+status: true
+dependencies:
+  module:
+    - system
+  theme:
+    - bartik
+_core:
+  default_config_hash: 9EoWV2Lot6FVSr50t4hoKgiz1LIXYWNG-IIPYsWxBqo
+id: bartik_content
+theme: bartik
+region: content
+weight: 0
+provider: null
+plugin: system_main_block
+settings:
+  id: system_main_block
+  label: 'Main page content'
+  provider: system
+  label_display: '0'
+visibility: {  }
+                                                                                          block.block.bartik_footer.yml                                                                       000664  000106  000024  00000000757 13054310141 016733  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 83f0847f-e14a-4bf5-a85f-3f981eea4a51
+langcode: en
+status: true
+dependencies:
+  config:
+    - system.menu.footer
+  module:
+    - system
+  theme:
+    - bartik
+_core:
+  default_config_hash: kkISXE1LT2FJEoYnqCrCpeFB-2pmGmMxMklVk7rQcfg
+id: bartik_footer
+theme: bartik
+region: footer_fifth
+weight: 0
+provider: null
+plugin: 'system_menu_block:footer'
+settings:
+  id: 'system_menu_block:footer'
+  label: 'Footer menu'
+  provider: system
+  label_display: '0'
+  level: 1
+  depth: 0
+visibility: {  }
+                 block.block.bartik_help.yml                                                                         000664  000106  000024  00000000604 13054310141 016354  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: bea527e8-51b5-46f2-bd90-7f2f5c22afab
+langcode: en
+status: true
+dependencies:
+  module:
+    - help
+  theme:
+    - bartik
+_core:
+  default_config_hash: 8I8iACSa0sKO3k3jlvUG1ge52rfcKX7USJAQYnzuBgg
+id: bartik_help
+theme: bartik
+region: content
+weight: -30
+provider: null
+plugin: help_block
+settings:
+  id: help_block
+  label: Help
+  provider: help
+  label_display: '0'
+visibility: {  }
+                                                                                                                            block.block.bartik_local_actions.yml                                                                000664  000106  000024  00000000635 13054310141 020242  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 5bac5963-c968-4b4b-89d4-3d7824c524d5
+langcode: en
+status: true
+dependencies:
+  theme:
+    - bartik
+_core:
+  default_config_hash: 13GQpeITIJsp1kyPniXtWZfyFH87vb1xxJCHifL4UeE
+id: bartik_local_actions
+theme: bartik
+region: content
+weight: -20
+provider: null
+plugin: local_actions_block
+settings:
+  id: local_actions_block
+  label: 'Primary admin actions'
+  provider: core
+  label_display: '0'
+visibility: {  }
+                                                                                                   block.block.bartik_local_tasks.yml                                                                  000664  000106  000024  00000000646 13054310141 017731  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: c77234b3-d129-46d6-a5c3-ac182fef81fa
+langcode: en
+status: true
+dependencies:
+  theme:
+    - bartik
+_core:
+  default_config_hash: X9I1OB0W3WlWtrK-CNcg6hNWwa8wficanpH8pYnDZDE
+id: bartik_local_tasks
+theme: bartik
+region: content
+weight: -40
+provider: null
+plugin: local_tasks_block
+settings:
+  id: local_tasks_block
+  label: Tabs
+  provider: core
+  label_display: '0'
+  primary: true
+  secondary: true
+visibility: {  }
+                                                                                          block.block.bartik_main_menu.yml                                                                    000664  000106  000024  00000000760 13054310141 017377  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 5b700755-9853-43a3-86a6-a688fb0245f5
+langcode: en
+status: true
+dependencies:
+  config:
+    - system.menu.main
+  module:
+    - system
+  theme:
+    - bartik
+_core:
+  default_config_hash: rx9IrdDv7Ldc4kpalZAxdhIPZfYIeOMh1N-qKoQZwHo
+id: bartik_main_menu
+theme: bartik
+region: primary_menu
+weight: 0
+provider: null
+plugin: 'system_menu_block:main'
+settings:
+  id: 'system_menu_block:main'
+  label: 'Main navigation'
+  provider: system
+  label_display: '0'
+  level: 1
+  depth: 1
+visibility: {  }
+                block.block.bartik_messages.yml                                                                     000664  000106  000024  00000000661 13054310141 017236  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: c15312b8-633e-446f-9161-9b5cb63ed995
+langcode: en
+status: true
+dependencies:
+  module:
+    - system
+  theme:
+    - bartik
+_core:
+  default_config_hash: KHQIJ7Vfl25lTjzIc7qIvnuistt-Mw2O0kG4jCofmkI
+id: bartik_messages
+theme: bartik
+region: highlighted
+weight: 0
+provider: null
+plugin: system_messages_block
+settings:
+  id: system_messages_block
+  label: 'Status messages'
+  provider: system
+  label_display: '0'
+visibility: {  }
+                                                                               block.block.bartik_page_title.yml                                                                   000664  000106  000024  00000000611 13054310141 017537  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: a015073f-cdd6-428f-b2c5-ddd632e3b22d
+langcode: en
+status: true
+dependencies:
+  theme:
+    - bartik
+_core:
+  default_config_hash: 7rR9chwXvdM2H8OYMAYx9Zj3GGlPMrZp_M3ZA4thYTk
+id: bartik_page_title
+theme: bartik
+region: content
+weight: -50
+provider: null
+plugin: page_title_block
+settings:
+  id: page_title_block
+  label: 'Page title'
+  provider: core
+  label_display: '0'
+visibility: {  }
+                                                                                                                       block.block.bartik_powered.yml                                                                      000664  000106  000024  00000000670 13054310141 017074  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: d16842ef-54e2-494c-b7a5-9f00e0db96e1
+langcode: en
+status: true
+dependencies:
+  module:
+    - system
+  theme:
+    - bartik
+_core:
+  default_config_hash: jQQUUWN2Uxr5qZtc9zcJKBCxpKY8orN1u2HPqYYRQDI
+id: bartik_powered
+theme: bartik
+region: footer_fifth
+weight: 10
+provider: null
+plugin: system_powered_by_block
+settings:
+  id: system_powered_by_block
+  label: 'Powered by Drupal'
+  provider: system
+  label_display: '0'
+visibility: {  }
+                                                                        block.block.bartik_search.yml                                                                       000664  000106  000024  00000000643 13054310141 016674  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: c9de3317-460d-45e7-b280-04e0bfc2845a
+langcode: en
+status: true
+dependencies:
+  module:
+    - search
+  theme:
+    - bartik
+_core:
+  default_config_hash: za-39d5WDUg6XvbyqSnuVYEeq6QM4qKJxW8MnoAha5A
+id: bartik_search
+theme: bartik
+region: sidebar_first
+weight: -1
+provider: null
+plugin: search_form_block
+settings:
+  id: search_form_block
+  label: Search
+  provider: search
+  label_display: visible
+visibility: {  }
+                                                                                             block.block.bartik_tools.yml                                                                        000664  000106  000024  00000000750 13054310141 016566  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: affb8408-6263-4569-98f5-bacb50ae9607
+langcode: en
+status: true
+dependencies:
+  config:
+    - system.menu.tools
+  module:
+    - system
+  theme:
+    - bartik
+_core:
+  default_config_hash: NeHSoqm4XFqA7_0bDmR429ZZQt3LRbZMNRJTMsFyOfI
+id: bartik_tools
+theme: bartik
+region: sidebar_first
+weight: 0
+provider: null
+plugin: 'system_menu_block:tools'
+settings:
+  id: 'system_menu_block:tools'
+  label: Tools
+  provider: system
+  label_display: visible
+  level: 1
+  depth: 0
+visibility: {  }
+                        block.block.seven_breadcrumbs.yml                                                                   000664  000106  000024  00000000656 13054310141 017570  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 12dc47a7-3320-4927-aa63-c5ef626076c6
+langcode: en
+status: true
+dependencies:
+  module:
+    - system
+  theme:
+    - seven
+_core:
+  default_config_hash: WWu2OQswgCztl9OeXjD1stexIEMZsSgPMYIdC-JHx9c
+id: seven_breadcrumbs
+theme: seven
+region: breadcrumb
+weight: 0
+provider: null
+plugin: system_breadcrumb_block
+settings:
+  id: system_breadcrumb_block
+  label: Breadcrumbs
+  provider: system
+  label_display: '0'
+visibility: {  }
+                                                                                  block.block.seven_content.yml                                                                       000664  000106  000024  00000000643 13054310141 016745  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: b43a531f-49db-47b0-87be-466f4f548c52
+langcode: en
+status: true
+dependencies:
+  module:
+    - system
+  theme:
+    - seven
+_core:
+  default_config_hash: YRY68JWkaUiGeZlWMv1nzeIgDm0ZZwXYgpqUpLFzwAY
+id: seven_content
+theme: seven
+region: content
+weight: 0
+provider: null
+plugin: system_main_block
+settings:
+  id: system_main_block
+  label: 'Main page content'
+  provider: system
+  label_display: '0'
+visibility: {  }
+                                                                                             block.block.seven_help.yml                                                                          000664  000106  000024  00000000574 13054310141 016226  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 6b9163c0-26d5-4dac-9e7e-726911fddc90
+langcode: en
+status: true
+dependencies:
+  module:
+    - help
+  theme:
+    - seven
+_core:
+  default_config_hash: NU5A_49mwLHfs5xFzMFrZ850w9pgUolxMS9NNF3vv4c
+id: seven_help
+theme: seven
+region: help
+weight: 0
+provider: null
+plugin: help_block
+settings:
+  id: help_block
+  label: Help
+  provider: help
+  label_display: '0'
+visibility: {  }
+                                                                                                                                    block.block.seven_local_actions.yml                                                                 000664  000106  000024  00000000632 13054310141 020103  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 5ce92b26-5c43-46ca-92dc-4a6907f8525b
+langcode: en
+status: true
+dependencies:
+  theme:
+    - seven
+_core:
+  default_config_hash: HHryZVJbeKi9WnuBGC8FOhBZmBnk2G1H6KxFuy-rC9A
+id: seven_local_actions
+theme: seven
+region: content
+weight: -10
+provider: null
+plugin: local_actions_block
+settings:
+  id: local_actions_block
+  label: 'Primary admin actions'
+  provider: core
+  label_display: '0'
+visibility: {  }
+                                                                                                      block.block.seven_login.yml                                                                         000664  000106  000024  00000000631 13054310141 016400  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: dfce87ff-cf58-4de9-8135-fd469f4ef75f
+langcode: en
+status: true
+dependencies:
+  module:
+    - user
+  theme:
+    - seven
+_core:
+  default_config_hash: IItlF4SKHgxduIysVQdvirDJ_v3HGuAviOkidAOJYRE
+id: seven_login
+theme: seven
+region: content
+weight: 10
+provider: null
+plugin: user_login_block
+settings:
+  id: user_login_block
+  label: 'User login'
+  provider: user
+  label_display: visible
+visibility: {  }
+                                                                                                       block.block.seven_messages.yml                                                                      000664  000106  000024  00000000656 13054310141 017106  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 330d9833-81c8-4ee3-b3a5-15d7fb3c010b
+langcode: en
+status: true
+dependencies:
+  module:
+    - system
+  theme:
+    - seven
+_core:
+  default_config_hash: XJqWwLt1LDCnazcEN6QkJmCLjk4R0__-8s0OO9xeNjg
+id: seven_messages
+theme: seven
+region: highlighted
+weight: 0
+provider: null
+plugin: system_messages_block
+settings:
+  id: system_messages_block
+  label: 'Status messages'
+  provider: system
+  label_display: '0'
+visibility: {  }
+                                                                                  block.block.seven_page_title.yml                                                                    000664  000106  000024  00000000605 13054310141 017406  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 7b8b39cb-2f2b-46b7-915a-0c63442f8c67
+langcode: en
+status: true
+dependencies:
+  theme:
+    - seven
+_core:
+  default_config_hash: ZSpc3IoSaLd0PkB02nxjVPBMztIdsTdHek9SiGaqZ_c
+id: seven_page_title
+theme: seven
+region: header
+weight: -30
+provider: null
+plugin: page_title_block
+settings:
+  id: page_title_block
+  label: 'Page title'
+  provider: core
+  label_display: '0'
+visibility: {  }
+                                                                                                                           block.block.seven_primary_local_tasks.yml                                                           000664  000106  000024  00000000663 13054310141 021337  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 16454e1a-f22d-4d80-8d5b-60889feacea8
+langcode: en
+status: true
+dependencies:
+  theme:
+    - seven
+_core:
+  default_config_hash: ddy1OsBbWxjwEI8VL1viD4I69qcLHOkul4BxbTqLBTs
+id: seven_primary_local_tasks
+theme: seven
+region: header
+weight: 0
+provider: null
+plugin: local_tasks_block
+settings:
+  id: local_tasks_block
+  label: 'Primary tabs'
+  provider: core
+  label_display: '0'
+  primary: true
+  secondary: false
+visibility: {  }
+                                                                             block.block.seven_secondary_local_tasks.yml                                                         000664  000106  000024  00000000674 13054310141 021645  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: ac7d42bb-c6bb-4d72-b4a2-d34e4d765e5f
+langcode: en
+status: true
+dependencies:
+  theme:
+    - seven
+_core:
+  default_config_hash: QeZBeCilQfeET3GeW6ZtJkEiwROADTZktFgKWwPieD4
+id: seven_secondary_local_tasks
+theme: seven
+region: pre_content
+weight: 0
+provider: null
+plugin: local_tasks_block
+settings:
+  id: local_tasks_block
+  label: 'Secondary tabs'
+  provider: core
+  label_display: '0'
+  primary: false
+  secondary: true
+visibility: {  }
+                                                                    block_content.type.basic.yml                                                                        000664  000106  000024  00000000407 13054310141 016573  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 8726952e-7764-49d0-a9fb-f731ba910031
+langcode: en
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: zglzjmYxi0G0ag9MZ02y0LSJOdpWRwJxyP_OvFojFyo
+id: basic
+label: 'Basic block'
+revision: 0
+description: 'A basic block contains a title and a body.'
+                                                                                                                                                                                                                                                         comment.type.comment.yml                                                                            000664  000106  000024  00000000420 13054310141 015765  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: ac62f663-f848-49f0-8ca4-15a06943e333
+langcode: en
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: bqZsN31T2n0UjcbyCpOPi9D2iO0sAOHR7FnEs9qMvaA
+id: comment
+label: 'Default comments'
+target_entity_type_id: node
+description: 'Allows commenting on content'
+                                                                                                                                                                                                                                                core.base_field_override.node.page.promote.yml                                                      000664  000106  000024  00000000726 13054310141 022141  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 532c4c1b-c26b-42fc-9a43-73b35cb60c6a
+langcode: en
+status: true
+dependencies:
+  config:
+    - node.type.page
+_core:
+  default_config_hash: fPUEnm4T5zfZRr3ttDUqq7yCDd2uW3clWD-pvos4tlQ
+id: node.page.promote
+field_name: promote
+entity_type: node
+bundle: page
+label: 'Promoted to front page'
+description: ''
+required: false
+translatable: false
+default_value:
+  -
+    value: 0
+default_value_callback: ''
+settings:
+  on_label: 'On'
+  off_label: 'Off'
+field_type: boolean
+                                          core.date_format.fallback.yml                                                                       000664  000106  000024  00000000364 13054310141 016663  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 8de48cde-5ca9-4ef4-8c69-afa28c0d1b32
+langcode: en
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: 7klS5IWXrwzVaPpYZFAs6wcx8U2FF1X73OfrtTsvuvE
+id: fallback
+label: 'Fallback date format'
+locked: true
+pattern: 'D, m/d/Y - H:i'
+                                                                                                                                                                                                                                                                            core.date_format.html_date.yml                                                                      000664  000106  000024  00000000337 13054310141 017065  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: a5b7c616-c088-4b1c-9cbe-a83ca92ec29d
+langcode: en
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: EOQltUQPmgc6UQ2rcJ4Xi_leCEJj5ui0TR-12duS-Tk
+id: html_date
+label: 'HTML Date'
+locked: true
+pattern: Y-m-d
+                                                                                                                                                                                                                                                                                                 core.date_format.html_datetime.yml                                                                  000664  000106  000024  00000000361 13054310141 017741  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: a14259c1-01e6-49cd-8add-68b31b01632c
+langcode: en
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: jxfClwZIRXIdcvMrE--WkcZxDGUVoOIE3Sm2NRZlFuE
+id: html_datetime
+label: 'HTML Datetime'
+locked: true
+pattern: 'Y-m-d\TH:i:sO'
+                                                                                                                                                                                                                                                                               core.date_format.html_month.yml                                                                     000664  000106  000024  00000000337 13054310141 017275  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 06687337-0e12-4cf2-b83c-7fb95e0a60d6
+langcode: en
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: Z7KuCUwM_WdTNvLcoltuX3_8d-s-8FZkTN6KgNwF0eM
+id: html_month
+label: 'HTML Month'
+locked: true
+pattern: Y-m
+                                                                                                                                                                                                                                                                                                 core.date_format.html_time.yml                                                                      000664  000106  000024  00000000341 13054310141 017101  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 7b00194c-6e4d-4603-8460-512d476f2f07
+langcode: en
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: M7yqicYkU36hRy5p9drAaGBBihhUD1OyujFrAaQ93ZE
+id: html_time
+label: 'HTML Time'
+locked: true
+pattern: 'H:i:s'
+                                                                                                                                                                                                                                                                                               core.date_format.html_week.yml                                                                      000664  000106  000024  00000000337 13054310141 017103  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 050ca929-c3e4-4d4f-baf8-dc8094017d5e
+langcode: en
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: wKD4WsoV_wFgv2vgI4mcAAFSIzrye17ykzdwrnApkfY
+id: html_week
+label: 'HTML Week'
+locked: true
+pattern: Y-\WW
+                                                                                                                                                                                                                                                                                                 core.date_format.html_year.yml                                                                      000664  000106  000024  00000000335 13054310141 017106  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: eca938a2-0095-473a-830b-fd5540e4ee9a
+langcode: en
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: OjekiQuX9RbVQ2_8jOHBL94RgYLePqX7wpfNGgcQzrk
+id: html_year
+label: 'HTML Year'
+locked: true
+pattern: 'Y'
+                                                                                                                                                                                                                                                                                                   core.date_format.html_yearless_date.yml                                                             000664  000106  000024  00000000357 13054310141 020776  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 8b232a41-02b2-4c6f-818b-560c10dd44c3
+langcode: en
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: 5VpawMrKPEPCkoO4YpPa0TDFO2dgiIHfTziJtwlmUxc
+id: html_yearless_date
+label: 'HTML Yearless date'
+locked: true
+pattern: m-d
+                                                                                                                                                                                                                                                                                 core.date_format.long.yml                                                                           000664  000106  000024  00000000357 13054310141 016065  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: e306e4f2-86a0-4afb-9929-ddd8fd9261be
+langcode: en
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: og8sWXhBuHbLMw3CoiBEZjgqSyhFBFmcbUW_wLcfNbo
+id: long
+label: 'Default long date'
+locked: false
+pattern: 'l, F j, Y - H:i'
+                                                                                                                                                                                                                                                                                 core.date_format.medium.yml                                                                         000664  000106  000024  00000000362 13054310141 016402  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 101c0527-83df-47d5-9c8f-bdeeb5bdca2e
+langcode: en
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: nzL5d024NjXIX_8TlT6uFAu973lmfkmHklJC-2i9rAE
+id: medium
+label: 'Default medium date'
+locked: false
+pattern: 'D, m/d/Y - H:i'
+                                                                                                                                                                                                                                                                              core.date_format.short.yml                                                                          000664  000106  000024  00000000355 13054310141 016263  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 2271511b-2df7-4b19-b4ba-d1dc55f978fc
+langcode: en
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: AlzeyytA8InBgxIG9H2UDJYs3CG98Zj6yRsDKmlbZwA
+id: short
+label: 'Default short date'
+locked: false
+pattern: 'm/d/Y - H:i'
+                                                                                                                                                                                                                                                                                   core.entity_form_display.block_content.basic.default.yml                                            000664  000106  000024  00000001307 13054310141 024250  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 091ff0d5-3f35-4778-90b0-82d993d0a2dc
+langcode: en
+status: true
+dependencies:
+  config:
+    - block_content.type.basic
+    - field.field.block_content.basic.body
+  module:
+    - text
+_core:
+  default_config_hash: kv6gwb6PJ8DcMSj5kgsd52qCIHl1xkxBDL5_AMm-g8k
+id: block_content.basic.default
+targetEntityType: block_content
+bundle: basic
+mode: default
+content:
+  body:
+    type: text_textarea_with_summary
+    weight: -4
+    settings:
+      rows: 9
+      summary_rows: 3
+      placeholder: ''
+    third_party_settings: {  }
+    region: content
+  info:
+    type: string_textfield
+    weight: -5
+    settings:
+      size: 60
+      placeholder: ''
+    third_party_settings: {  }
+    region: content
+hidden: {  }
+                                                                                                                                                                                                                                                                                                                         core.entity_form_display.comment.comment.default.yml                                                000664  000106  000024  00000001324 13054310141 023446  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: b9826395-4cc2-4d87-a11e-ca81790044b1
+langcode: en
+status: true
+dependencies:
+  config:
+    - comment.type.comment
+    - field.field.comment.comment.comment_body
+  module:
+    - text
+_core:
+  default_config_hash: ooVjelXSXbiQtp-hYb7LS44vR5UO-Kqu4vf484ggR8w
+id: comment.comment.default
+targetEntityType: comment
+bundle: comment
+mode: default
+content:
+  author:
+    weight: -2
+    region: content
+  comment_body:
+    type: text_textarea
+    weight: 11
+    settings:
+      rows: 5
+      placeholder: ''
+    third_party_settings: {  }
+    region: content
+  subject:
+    type: string_textfield
+    weight: 10
+    settings:
+      size: 60
+      placeholder: ''
+    third_party_settings: {  }
+    region: content
+hidden: {  }
+                                                                                                                                                                                                                                                                                                            core.entity_form_display.node.article.default.yml                                                   000664  000106  000024  00000003766 13054310141 022726  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: cb9b702b-50fd-4e9f-9e7f-a146497075a6
+langcode: en
+status: true
+dependencies:
+  config:
+    - field.field.node.article.body
+    - field.field.node.article.comment
+    - field.field.node.article.field_image
+    - field.field.node.article.field_tags
+    - image.style.thumbnail
+    - node.type.article
+  module:
+    - comment
+    - image
+    - path
+    - text
+_core:
+  default_config_hash: 7CvVDwPYotAZFBa36mcpMKZOfVRRp_iGuPHpHaavI6E
+id: node.article.default
+targetEntityType: node
+bundle: article
+mode: default
+content:
+  body:
+    type: text_textarea_with_summary
+    weight: 1
+    settings:
+      rows: 9
+      summary_rows: 3
+      placeholder: ''
+    third_party_settings: {  }
+    region: content
+  comment:
+    type: comment_default
+    weight: 20
+    settings: {  }
+    third_party_settings: {  }
+    region: content
+  created:
+    type: datetime_timestamp
+    weight: 10
+    settings: {  }
+    third_party_settings: {  }
+    region: content
+  field_image:
+    type: image_image
+    weight: 4
+    settings:
+      progress_indicator: throbber
+      preview_image_style: thumbnail
+    third_party_settings: {  }
+    region: content
+  field_tags:
+    type: entity_reference_autocomplete_tags
+    weight: 3
+    settings: {  }
+    third_party_settings: {  }
+    region: content
+  path:
+    type: path
+    weight: 30
+    settings: {  }
+    third_party_settings: {  }
+    region: content
+  promote:
+    type: boolean_checkbox
+    settings:
+      display_label: true
+    weight: 15
+    third_party_settings: {  }
+    region: content
+  sticky:
+    type: boolean_checkbox
+    settings:
+      display_label: true
+    weight: 16
+    third_party_settings: {  }
+    region: content
+  title:
+    type: string_textfield
+    weight: 0
+    settings:
+      size: 60
+      placeholder: ''
+    third_party_settings: {  }
+    region: content
+  uid:
+    type: entity_reference_autocomplete
+    weight: 5
+    settings:
+      match_operator: CONTAINS
+      size: 60
+      placeholder: ''
+    third_party_settings: {  }
+    region: content
+hidden: {  }
+          core.entity_form_display.node.page.default.yml                                                      000664  000106  000024  00000002565 13054310141 022213  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: a1af3f3f-d292-48dd-ae8e-14765f3860f4
+langcode: en
+status: true
+dependencies:
+  config:
+    - field.field.node.page.body
+    - node.type.page
+  module:
+    - path
+    - text
+_core:
+  default_config_hash: KSvzyFhdLuxniTsunUnUfpfMmod2l57GibtVjL8ymHM
+id: node.page.default
+targetEntityType: node
+bundle: page
+mode: default
+content:
+  body:
+    type: text_textarea_with_summary
+    weight: 31
+    settings:
+      rows: 9
+      summary_rows: 3
+      placeholder: ''
+    third_party_settings: {  }
+    region: content
+  created:
+    type: datetime_timestamp
+    weight: 10
+    settings: {  }
+    third_party_settings: {  }
+    region: content
+  path:
+    type: path
+    weight: 30
+    settings: {  }
+    third_party_settings: {  }
+    region: content
+  promote:
+    type: boolean_checkbox
+    settings:
+      display_label: true
+    weight: 15
+    third_party_settings: {  }
+    region: content
+  sticky:
+    type: boolean_checkbox
+    settings:
+      display_label: true
+    weight: 16
+    third_party_settings: {  }
+    region: content
+  title:
+    type: string_textfield
+    weight: -5
+    settings:
+      size: 60
+      placeholder: ''
+    third_party_settings: {  }
+    region: content
+  uid:
+    type: entity_reference_autocomplete
+    weight: 5
+    settings:
+      match_operator: CONTAINS
+      size: 60
+      placeholder: ''
+    third_party_settings: {  }
+    region: content
+hidden: {  }
+                                                                                                                                           core.entity_form_display.user.user.default.yml                                                      000664  000106  000024  00000001341 13054310141 022275  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: d609ec8c-5681-443c-a51d-a6c6bbf17e62
+langcode: en
+status: true
+dependencies:
+  config:
+    - field.field.user.user.user_picture
+    - image.style.thumbnail
+  module:
+    - image
+    - user
+_core:
+  default_config_hash: LLAieeozVsoZDb-2PbFxRJpQqnKmpR7-4OoRJnduz-U
+id: user.user.default
+targetEntityType: user
+bundle: user
+mode: default
+content:
+  account:
+    weight: -10
+    region: content
+  contact:
+    weight: 5
+    region: content
+  language:
+    weight: 0
+    region: content
+  timezone:
+    weight: 6
+    region: content
+  user_picture:
+    type: image_image
+    settings:
+      progress_indicator: throbber
+      preview_image_style: thumbnail
+    third_party_settings: {  }
+    weight: -1
+    region: content
+hidden: {  }
+                                                                                                                                                                                                                                                                                               core.entity_form_mode.user.register.yml                                                             000664  000106  000024  00000000367 13054310141 021006  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 2f45826e-3344-4f5d-af4b-e235cac23c58
+langcode: en
+status: true
+dependencies:
+  module:
+    - user
+_core:
+  default_config_hash: flXhTcp55yLcyy7ZLOhPGKGZobZQJdkAFVWV3LseiuI
+id: user.register
+label: Register
+targetEntityType: user
+cache: true
+                                                                                                                                                                                                                                                                         core.entity_view_display.block_content.basic.default.yml                                            000664  000106  000024  00000000775 13054310141 024267  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 238603ca-de22-49aa-b76d-3f7118d29b2a
+langcode: en
+status: true
+dependencies:
+  config:
+    - block_content.type.basic
+    - field.field.block_content.basic.body
+  module:
+    - text
+_core:
+  default_config_hash: zCrrHAjrsQgWjBXBsshAZjND21czBy8sH_L5v_xDKSA
+id: block_content.basic.default
+targetEntityType: block_content
+bundle: basic
+mode: default
+content:
+  body:
+    label: hidden
+    type: text_default
+    weight: 0
+    settings: {  }
+    third_party_settings: {  }
+    region: content
+hidden: {  }
+   core.entity_view_display.comment.comment.default.yml                                                000664  000106  000024  00000001052 13054310141 023453  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 5519c368-d589-4b00-b827-ad3cc49ebb4c
+langcode: en
+status: true
+dependencies:
+  config:
+    - comment.type.comment
+    - field.field.comment.comment.comment_body
+  module:
+    - text
+_core:
+  default_config_hash: 1yBeJcGufCbnbSolmaYgTIXZWYUaO7kw6xszGA8TYs8
+id: comment.comment.default
+targetEntityType: comment
+bundle: comment
+mode: default
+content:
+  comment_body:
+    label: hidden
+    type: text_default
+    weight: 0
+    settings: {  }
+    third_party_settings: {  }
+    region: content
+  links:
+    weight: 100
+    region: content
+hidden: {  }
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      core.entity_view_display.node.article.default.yml                                                   000664  000106  000024  00000002410 13054310141 022716  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: b5793ce9-3159-438a-a649-db6c56c102cf
+langcode: en
+status: true
+dependencies:
+  config:
+    - core.entity_view_display.comment.comment.default
+    - field.field.node.article.body
+    - field.field.node.article.comment
+    - field.field.node.article.field_image
+    - field.field.node.article.field_tags
+    - image.style.large
+    - node.type.article
+  module:
+    - comment
+    - image
+    - text
+    - user
+_core:
+  default_config_hash: JtAg_-waIt1quMtdDtHIaXJMxvTuSmxW7bWyO6Zd68E
+id: node.article.default
+targetEntityType: node
+bundle: article
+mode: default
+content:
+  body:
+    type: text_default
+    weight: 0
+    settings: {  }
+    third_party_settings: {  }
+    label: hidden
+    region: content
+  comment:
+    label: above
+    type: comment_default
+    weight: 20
+    settings:
+      pager_id: 0
+    third_party_settings: {  }
+    region: content
+  field_image:
+    type: image
+    weight: -1
+    settings:
+      image_style: large
+      image_link: ''
+    third_party_settings: {  }
+    label: hidden
+    region: content
+  field_tags:
+    type: entity_reference_label
+    weight: 10
+    label: above
+    settings:
+      link: true
+    third_party_settings: {  }
+    region: content
+  links:
+    weight: 100
+    region: content
+hidden:
+  field_image: true
+  field_tags: true
+                                                                                                                                                                                                                                                        core.entity_view_display.node.article.rss.yml                                                       000664  000106  000024  00000001141 13054310141 022101  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: c0514896-1524-472f-9bd7-7b0b1472a2c8
+langcode: en
+status: true
+dependencies:
+  config:
+    - core.entity_view_mode.node.rss
+    - field.field.node.article.body
+    - field.field.node.article.comment
+    - field.field.node.article.field_image
+    - field.field.node.article.field_tags
+    - node.type.article
+  module:
+    - user
+_core:
+  default_config_hash: Q90X1FmFdOkTx8udckWPoAgleOstOerbgDnNpoP6PO4
+id: node.article.rss
+targetEntityType: node
+bundle: article
+mode: rss
+content:
+  links:
+    weight: 100
+    region: content
+hidden:
+  body: true
+  comment: true
+  field_image: true
+  field_tags: true
+                                                                                                                                                                                                                                                                                                                                                                                                                               core.entity_view_display.node.article.teaser.yml                                                    000664  000106  000024  00000002205 13054310141 022557  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 2f97eb98-9f11-4477-bd61-e562431e22e5
+langcode: en
+status: true
+dependencies:
+  config:
+    - core.entity_view_mode.node.teaser
+    - field.field.node.article.body
+    - field.field.node.article.comment
+    - field.field.node.article.field_image
+    - field.field.node.article.field_tags
+    - image.style.medium
+    - node.type.article
+  module:
+    - image
+    - text
+    - user
+_core:
+  default_config_hash: U8ghxJXn8JE2p6Q2wLpPWAxpz4r_8crL1LxtapSrHAE
+id: node.article.teaser
+targetEntityType: node
+bundle: article
+mode: teaser
+content:
+  body:
+    type: text_summary_or_trimmed
+    weight: 0
+    settings:
+      trim_length: 600
+    third_party_settings: {  }
+    label: hidden
+    region: content
+  field_image:
+    type: image
+    weight: -1
+    settings:
+      image_style: medium
+      image_link: content
+    third_party_settings: {  }
+    label: hidden
+    region: content
+  field_tags:
+    type: entity_reference_label
+    weight: 10
+    settings:
+      link: true
+    third_party_settings: {  }
+    label: above
+    region: content
+  links:
+    weight: 100
+    region: content
+hidden:
+  comment: true
+  field_image: true
+  field_tags: true
+                                                                                                                                                                                                                                                                                                                                                                                           core.entity_view_display.node.page.default.yml                                                      000664  000106  000024  00000001017 13054310141 022211  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 523ad74b-ef6b-49d3-b442-8676aeb72952
+langcode: en
+status: true
+dependencies:
+  config:
+    - field.field.node.page.body
+    - node.type.page
+  module:
+    - text
+    - user
+_core:
+  default_config_hash: oZ-7vpIJxjxL2up9B5KrJGD0lazQ9aN0P-fIPo6OrSU
+id: node.page.default
+targetEntityType: node
+bundle: page
+mode: default
+content:
+  body:
+    label: hidden
+    type: text_default
+    weight: 100
+    settings: {  }
+    third_party_settings: {  }
+    region: content
+  links:
+    weight: 101
+    region: content
+hidden: {  }
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 core.entity_view_display.node.page.teaser.yml                                                       000664  000106  000024  00000001122 13054310141 022045  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: b28833c6-3ef4-4ab4-899f-c917aae7c021
+langcode: en
+status: true
+dependencies:
+  config:
+    - core.entity_view_mode.node.teaser
+    - field.field.node.page.body
+    - node.type.page
+  module:
+    - text
+    - user
+_core:
+  default_config_hash: rN2zrScZAJ9xB16hm_Deb9QJKy6JXnn0PdI2n5Z3KRs
+id: node.page.teaser
+targetEntityType: node
+bundle: page
+mode: teaser
+content:
+  body:
+    label: hidden
+    type: text_summary_or_trimmed
+    weight: 100
+    settings:
+      trim_length: 600
+    third_party_settings: {  }
+    region: content
+  links:
+    weight: 101
+    region: content
+hidden: {  }
+                                                                                                                                                                                                                                                                                                                                                                                                                                              core.entity_view_display.user.user.compact.yml                                                      000664  000106  000024  00000001132 13054310141 022304  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: a11175d9-8e29-419a-9c4c-0d2101ace812
+langcode: en
+status: true
+dependencies:
+  config:
+    - core.entity_view_mode.user.compact
+    - field.field.user.user.user_picture
+    - image.style.thumbnail
+  module:
+    - image
+    - user
+_core:
+  default_config_hash: C3k_McOy8bL8rTnIjspy5OfFdgqV1z6OdGZaI-tO5eM
+id: user.user.compact
+targetEntityType: user
+bundle: user
+mode: compact
+content:
+  user_picture:
+    type: image
+    weight: 0
+    settings:
+      image_style: thumbnail
+      image_link: content
+    third_party_settings: {  }
+    label: hidden
+    region: content
+hidden:
+  member_for: true
+                                                                                                                                                                                                                                                                                                                                                                                                                                      core.entity_view_display.user.user.default.yml                                                      000664  000106  000024  00000001123 13054310141 022302  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 191fa0d3-04e8-4381-8660-9b5bf76068cc
+langcode: en
+status: true
+dependencies:
+  config:
+    - field.field.user.user.user_picture
+    - image.style.thumbnail
+  module:
+    - image
+    - user
+_core:
+  default_config_hash: L2mtwGWH_7wDRCMIR4r_Iu_jmvQ10DV1L8ht8iNZ5qY
+id: user.user.default
+targetEntityType: user
+bundle: user
+mode: default
+content:
+  member_for:
+    weight: 5
+    region: content
+  user_picture:
+    type: image
+    weight: 0
+    settings:
+      image_style: thumbnail
+      image_link: content
+    third_party_settings: {  }
+    label: hidden
+    region: content
+hidden: {  }
+                                                                                                                                                                                                                                                                                                                                                                                                                                             core.entity_view_mode.block_content.full.yml                                                        000664  000106  000024  00000000413 13054310141 021771  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 92a8d0e8-af59-41ba-b3e5-d65816807877
+langcode: en
+status: false
+dependencies:
+  module:
+    - block_content
+_core:
+  default_config_hash: 4tedlMuvQjDOdvHdw86_e-2Rt78aR7TGFMfOK8Ejppg
+id: block_content.full
+label: Full
+targetEntityType: block_content
+cache: true
+                                                                                                                                                                                                                                                     core.entity_view_mode.comment.full.yml                                                              000664  000106  000024  00000000403 13054310141 020606  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 1768d27f-1de5-43e0-86ae-3f3e1f3fc4e1
+langcode: en
+status: false
+dependencies:
+  module:
+    - comment
+_core:
+  default_config_hash: K7eNlfU7NEUajz01wItywZklr2oaPgL6s1_97fmDXLA
+id: comment.full
+label: 'Full comment'
+targetEntityType: comment
+cache: true
+                                                                                                                                                                                                                                                             core.entity_view_mode.node.full.yml                                                                 000664  000106  000024  00000000372 13054310141 020076  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 485d2a6d-21fc-4eb4-90da-6e6a20af2c0b
+langcode: en
+status: false
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: ElrtInxGjZd7GaapJ5O9n-ugi2hG2IxFivtgn0tHOsk
+id: node.full
+label: 'Full content'
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                                                                                      core.entity_view_mode.node.rss.yml                                                                  000664  000106  000024  00000000356 13054310141 017745  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: bfc66a08-e11e-48ce-874e-295467e95ef3
+langcode: en
+status: false
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: vlYzr-rp2f9NMp-Qlr4sFjlqRq-90mco5-afLNGwCrU
+id: node.rss
+label: RSS
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                                                                                                  core.entity_view_mode.node.search_index.yml                                                         000664  000106  000024  00000000402 13054310141 021562  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 3309a17b-6a11-4da9-af7b-10a3ac1601f8
+langcode: en
+status: false
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: fVFfJv_GzBRE-wpRHbfD5a3VjnhbEOXG6lvRd3uaccY
+id: node.search_index
+label: 'Search index'
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                                                                              core.entity_view_mode.node.search_result.yml                                                        000664  000106  000024  00000000427 13054310141 022000  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 84c37e16-2726-4cfc-a1f1-ed70b4194dab
+langcode: en
+status: false
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: 6GCOQ-jP2RbdbHA5YWQ6bT8CfGbqrBYKOSC_XY4E3ZM
+id: node.search_result
+label: 'Search result highlighting input'
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                                                         core.entity_view_mode.node.teaser.yml                                                               000664  000106  000024  00000000363 13054310141 020417  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: fa20944e-dd2b-4d67-b257-7d8cfbd94c8e
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: Mz9qWr1kUYK0mjRAGDsr5XS6PvtZ24en_7ndt-pyWe4
+id: node.teaser
+label: Teaser
+targetEntityType: node
+cache: true
+                                                                                                                                                                                                                                                                             core.entity_view_mode.taxonomy_term.full.yml                                                        000664  000106  000024  00000000427 13054310141 022057  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 9da8effc-3c00-4457-ac2b-89b33c1eac59
+langcode: en
+status: true
+dependencies:
+  module:
+    - taxonomy
+_core:
+  default_config_hash: '-PPKjsNQPvoIDjOuUAvlLocYD976MNjb9Zpgyz5_BWE'
+id: taxonomy_term.full
+label: 'Taxonomy term page'
+targetEntityType: taxonomy_term
+cache: true
+                                                                                                                                                                                                                                         core.entity_view_mode.user.compact.yml                                                              000664  000106  000024  00000000365 13054310141 020615  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 7bd43ed1-c65d-4266-9741-688540aac38e
+langcode: en
+status: true
+dependencies:
+  module:
+    - user
+_core:
+  default_config_hash: 71CSAr_LNPcgu6D6jI4INl1KATkahmeyUFBETAWya8g
+id: user.compact
+label: Compact
+targetEntityType: user
+cache: true
+                                                                                                                                                                                                                                                                           core.entity_view_mode.user.full.yml                                                                 000664  000106  000024  00000000372 13054310141 020127  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 520c0a98-b170-4325-8c8e-ec9702cf7311
+langcode: en
+status: false
+dependencies:
+  module:
+    - user
+_core:
+  default_config_hash: mQIF_foYjmnVSr9MpcD4CTaJE_FpO1AyDd_DskztGhM
+id: user.full
+label: 'User account'
+targetEntityType: user
+cache: true
+                                                                                                                                                                                                                                                                      core.extension.yml                                                                                  000664  000106  000024  00000001255 13054310141 014654  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         module:
+  automated_cron: 0
+  block: 0
+  block_content: 0
+  breakpoint: 0
+  ckeditor: 0
+  color: 0
+  comment: 0
+  config: 0
+  contextual: 0
+  datetime: 0
+  dblog: 0
+  dynamic_page_cache: 0
+  editor: 0
+  field: 0
+  field_ui: 0
+  file: 0
+  filter: 0
+  help: 0
+  history: 0
+  image: 0
+  link: 0
+  menu_ui: 0
+  node: 0
+  options: 0
+  page_cache: 0
+  path: 0
+  quickedit: 0
+  rdf: 0
+  search: 0
+  shortcut: 0
+  system: 0
+  taxonomy: 0
+  text: 0
+  toolbar: 0
+  tour: 0
+  user: 0
+  views_ui: 0
+  menu_link_content: 1
+  views: 10
+  standard: 1000
+theme:
+  stable: 0
+  classy: 0
+  bartik: 0
+  seven: 0
+_core:
+  default_config_hash: m2GVq11UAOVuNgj8x0t5fMOPujpvQQ_zxLoaly1BMEU
+profile: standard
+                                                                                                                                                                                                                                                                                                                                                   core.menu.static_menu_link_overrides.yml                                                            000664  000106  000024  00000000306 13054310141 021211  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         definitions:
+  contact__site_page:
+    enabled: true
+    menu_name: footer
+    parent: ''
+    weight: 0
+    expanded: false
+_core:
+  default_config_hash: jdY7AU0tU-QsjmiOw3W8vwpYMb-By--_MSFgbqKUTYM
+                                                                                                                                                                                                                                                                                                                          dblog.settings.yml                                                                                  000664  000106  000024  00000000132 13054310141 014630  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         row_limit: 1000
+_core:
+  default_config_hash: e883aGsrt1wFrsydlYU584PZONCSfRy0DtkZ9KzHb58
+                                                                                                                                                                                                                                                                                                                                                                                                                                      editor.editor.basic_html.yml                                                                        000664  000106  000024  00000002005 13054310141 016562  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 4ceb1e7d-6c64-4fc3-bf22-77decfaaa32e
+langcode: en
+status: true
+dependencies:
+  config:
+    - filter.format.basic_html
+  module:
+    - ckeditor
+_core:
+  default_config_hash: AqlPmO16LvJI4D0Ih6u4GFQIzqr5OnLgAUSjcUGWk2g
+format: basic_html
+editor: ckeditor
+settings:
+  toolbar:
+    rows:
+      -
+        -
+          name: Formatting
+          items:
+            - Bold
+            - Italic
+        -
+          name: Linking
+          items:
+            - DrupalLink
+            - DrupalUnlink
+        -
+          name: Lists
+          items:
+            - BulletedList
+            - NumberedList
+        -
+          name: Media
+          items:
+            - Blockquote
+            - DrupalImage
+        -
+          name: 'Block Formatting'
+          items:
+            - Format
+        -
+          name: Tools
+          items:
+            - Source
+  plugins:
+    stylescombo:
+      styles: ''
+image_upload:
+  status: true
+  scheme: public
+  directory: inline-images
+  max_size: ''
+  max_dimensions:
+    width: 0
+    height: 0
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           editor.editor.full_html.yml                                                                         000664  000106  000024  00000002301 13054310141 016442  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 28daf58a-1433-4ab3-9379-04487adb91e1
+langcode: en
+status: true
+dependencies:
+  config:
+    - filter.format.full_html
+  module:
+    - ckeditor
+_core:
+  default_config_hash: 967ijj7p6i7rwrYl7r08WQFeCY_c23YAh0h8u-w_CXM
+format: full_html
+editor: ckeditor
+settings:
+  toolbar:
+    rows:
+      -
+        -
+          name: Formatting
+          items:
+            - Bold
+            - Italic
+            - Strike
+            - Superscript
+            - Subscript
+            - '-'
+            - RemoveFormat
+        -
+          name: Linking
+          items:
+            - DrupalLink
+            - DrupalUnlink
+        -
+          name: Lists
+          items:
+            - BulletedList
+            - NumberedList
+        -
+          name: Media
+          items:
+            - Blockquote
+            - DrupalImage
+            - Table
+            - HorizontalRule
+        -
+          name: 'Block Formatting'
+          items:
+            - Format
+        -
+          name: Tools
+          items:
+            - ShowBlocks
+            - Source
+  plugins:
+    stylescombo:
+      styles: ''
+image_upload:
+  status: true
+  scheme: public
+  directory: inline-images
+  max_size: ''
+  max_dimensions:
+    width: 0
+    height: 0
+                                                                                                                                                                                                                                                                                                                               field.field.block_content.basic.body.yml                                                            000664  000106  000024  00000001010 13054310141 020702  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 26eb7ffe-4411-4dd8-91f1-089a66ed1a17
+langcode: en
+status: true
+dependencies:
+  config:
+    - block_content.type.basic
+    - field.storage.block_content.body
+  module:
+    - text
+_core:
+  default_config_hash: R__6wc-rMfFMO8d7jcgqnqiA92j8spKhcc5MiqecrMc
+id: block_content.basic.body
+field_name: body
+entity_type: block_content
+bundle: basic
+label: Body
+description: ''
+required: false
+translatable: true
+default_value: {  }
+default_value_callback: ''
+settings:
+  display_summary: false
+field_type: text_with_summary
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        field.field.comment.comment.comment_body.yml                                                        000664  000106  000024  00000000764 13054310141 021642  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 7f37a4f8-92f7-4737-93a8-17b7969d691d
+langcode: en
+status: true
+dependencies:
+  config:
+    - comment.type.comment
+    - field.storage.comment.comment_body
+  module:
+    - text
+_core:
+  default_config_hash: TmAKjNrJ7RR60YpqvJq_QqEewYe_S8Kd23n8VRCqiWs
+id: comment.comment.comment_body
+field_name: comment_body
+entity_type: comment
+bundle: comment
+label: Comment
+description: ''
+required: true
+translatable: true
+default_value: {  }
+default_value_callback: ''
+settings: {  }
+field_type: text_long
+            field.field.node.article.body.yml                                                                   000664  000106  000024  00000000751 13054310141 017360  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: f353cef0-de40-4a42-8888-6b6eacec3ad1
+langcode: en
+status: true
+dependencies:
+  config:
+    - field.storage.node.body
+    - node.type.article
+  module:
+    - text
+_core:
+  default_config_hash: Ay3b2hq42cpQTFB_lNu8S2ZxuVIY6-dlBsc7vLeJ-YY
+id: node.article.body
+field_name: body
+entity_type: node
+bundle: article
+label: Body
+description: ''
+required: false
+translatable: true
+default_value: {  }
+default_value_callback: ''
+settings:
+  display_summary: true
+field_type: text_with_summary
+                       field.field.node.article.comment.yml                                                                000664  000106  000024  00000001250 13054310141 020060  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 779b98fb-a4bd-4bb5-b8d0-cf463ad38065
+langcode: en
+status: true
+dependencies:
+  config:
+    - field.storage.node.comment
+    - node.type.article
+  module:
+    - comment
+_core:
+  default_config_hash: szSOp-8eNsMcuh8usDre1x76RhDKaPhNUuwzRX5cgv4
+id: node.article.comment
+field_name: comment
+entity_type: node
+bundle: article
+label: Comments
+description: ''
+required: true
+translatable: true
+default_value:
+  -
+    status: 2
+    cid: 0
+    last_comment_name: null
+    last_comment_timestamp: 0
+    last_comment_uid: 0
+    comment_count: 0
+default_value_callback: ''
+settings:
+  default_mode: 1
+  per_page: 50
+  form_location: true
+  anonymous: 0
+  preview: 1
+field_type: comment
+                                                                                                                                                                                                                                                                                                                                                        field.field.node.article.field_image.yml                                                            000664  000106  000024  00000001541 13054310141 020646  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: b6c98608-4a1f-4aee-9a76-df2401da7df9
+langcode: en
+status: true
+dependencies:
+  config:
+    - field.storage.node.field_image
+    - node.type.article
+  module:
+    - image
+_core:
+  default_config_hash: tgJzhA7Swh4M_gWU5FwFe5lPxPj5rebpMbvhpdNrERs
+id: node.article.field_image
+field_name: field_image
+entity_type: node
+bundle: article
+label: Image
+description: ''
+required: false
+translatable: true
+default_value: {  }
+default_value_callback: ''
+settings:
+  file_directory: '[date:custom:Y]-[date:custom:m]'
+  file_extensions: 'png gif jpg jpeg'
+  max_filesize: ''
+  max_resolution: ''
+  min_resolution: ''
+  alt_field: true
+  title_field: false
+  alt_field_required: true
+  title_field_required: false
+  default_image:
+    uuid: null
+    alt: ''
+    title: ''
+    width: null
+    height: null
+  handler: 'default:file'
+  handler_settings: {  }
+field_type: image
+                                                                                                                                                               field.field.node.article.field_tags.yml                                                             000664  000106  000024  00000001317 13054310141 020523  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 32c7c573-a678-4b22-b541-e399610ab9a8
+langcode: en
+status: true
+dependencies:
+  config:
+    - field.storage.node.field_tags
+    - node.type.article
+    - taxonomy.vocabulary.tags
+_core:
+  default_config_hash: QdUgf_beeoaPiyKorFv0q1fcJpWH_uZTqe_xoVJacrw
+id: node.article.field_tags
+field_name: field_tags
+entity_type: node
+bundle: article
+label: Tags
+description: 'Enter a comma-separated list. For example: Amsterdam, Mexico City, "Cleveland, Ohio"'
+required: false
+translatable: true
+default_value: {  }
+default_value_callback: ''
+settings:
+  handler: 'default:taxonomy_term'
+  handler_settings:
+    target_bundles:
+      tags: tags
+    sort:
+      field: _none
+    auto_create: true
+field_type: entity_reference
+                                                                                                                                                                                                                                                                                                                 field.field.node.page.body.yml                                                                      000664  000106  000024  00000000740 13054310141 016647  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 9b740920-1df7-4add-94ae-4c976f59fcc1
+langcode: en
+status: true
+dependencies:
+  config:
+    - field.storage.node.body
+    - node.type.page
+  module:
+    - text
+_core:
+  default_config_hash: rUop-8b6hvxxDYbv-KobTfNIBNbPY9qOPl8f6kBNSpw
+id: node.page.body
+field_name: body
+entity_type: node
+bundle: page
+label: Body
+description: ''
+required: false
+translatable: true
+default_value: {  }
+default_value_callback: ''
+settings:
+  display_summary: true
+field_type: text_with_summary
+                                field.field.user.user.user_picture.yml                                                              000664  000106  000024  00000001603 13054310141 020515  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: efb65760-597b-4b72-8c01-11812f2dd7b6
+langcode: en
+status: true
+dependencies:
+  config:
+    - field.storage.user.user_picture
+  module:
+    - image
+    - user
+_core:
+  default_config_hash: cL7i1kgJvlJa6H00f0E_fZ2KdD1ag0ASpLts0K-KNII
+id: user.user.user_picture
+field_name: user_picture
+entity_type: user
+bundle: user
+label: Picture
+description: 'Your virtual face or picture.'
+required: false
+translatable: true
+default_value: {  }
+default_value_callback: ''
+settings:
+  file_extensions: 'png gif jpg jpeg'
+  file_directory: 'pictures/[date:custom:Y]-[date:custom:m]'
+  max_filesize: '30 KB'
+  alt_field: false
+  title_field: false
+  max_resolution: 85x85
+  min_resolution: ''
+  default_image:
+    uuid: null
+    alt: ''
+    title: ''
+    width: null
+    height: null
+  alt_field_required: false
+  title_field_required: false
+  handler: 'default:file'
+  handler_settings: {  }
+field_type: image
+                                                                                                                             field.settings.yml                                                                                  000664  000106  000024  00000000137 13054310141 014631  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         purge_batch_size: 50
+_core:
+  default_config_hash: nJk0TAQBzlNo52ehiHI7bIEPLGi0BYqZvPdEn7Chfu0
+                                                                                                                                                                                                                                                                                                                                                                                                                                 field.storage.block_content.body.yml                                                                000664  000106  000024  00000000656 13054310141 020222  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 5199a111-826e-4abd-a9d7-42b0820fc4cd
+langcode: en
+status: true
+dependencies:
+  module:
+    - block_content
+    - text
+_core:
+  default_config_hash: eS0snV_L3dx9shtWRTzm5eblwOJ7qKWC9IE-4GMTDFc
+id: block_content.body
+field_name: body
+entity_type: block_content
+type: text_with_summary
+settings: {  }
+module: text
+locked: false
+cardinality: 1
+translatable: true
+indexes: {  }
+persist_with_no_fields: true
+custom_storage: false
+                                                                                  field.storage.comment.comment_body.yml                                                              000664  000106  000024  00000000644 13054310141 020557  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: c32910a1-9550-4b04-bd9c-5112ec9e8fc5
+langcode: en
+status: true
+dependencies:
+  module:
+    - comment
+    - text
+_core:
+  default_config_hash: swYoCch_hY8QO5uwr4FURplfnUCUlpPB4idF8WGVCpw
+id: comment.comment_body
+field_name: comment_body
+entity_type: comment
+type: text_long
+settings: {  }
+module: text
+locked: false
+cardinality: 1
+translatable: true
+indexes: {  }
+persist_with_no_fields: true
+custom_storage: false
+                                                                                            field.storage.node.body.yml                                                                         000664  000106  000024  00000000623 13054310141 016315  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 1316b453-1582-4240-9f3c-b38c568972e9
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+    - text
+_core:
+  default_config_hash: EBUo7qOWqaiZaQ_RC9sLY5IoDKphS34v77VIHSACmVY
+id: node.body
+field_name: body
+entity_type: node
+type: text_with_summary
+settings: {  }
+module: text
+locked: false
+cardinality: 1
+translatable: true
+indexes: {  }
+persist_with_no_fields: true
+custom_storage: false
+                                                                                                             field.storage.node.comment.yml                                                                      000664  000106  000024  00000000651 13054310141 017023  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 93007655-c235-426e-8e11-a42f7cf536bb
+langcode: en
+status: true
+dependencies:
+  module:
+    - comment
+    - node
+_core:
+  default_config_hash: ktCna9xmWvYZIUfOCUyDQvedn5RtnS4CRmEIwNmvYjc
+id: node.comment
+field_name: comment
+entity_type: node
+type: comment
+settings:
+  comment_type: comment
+module: comment
+locked: false
+cardinality: 1
+translatable: true
+indexes: {  }
+persist_with_no_fields: false
+custom_storage: false
+                                                                                       field.storage.node.field_image.yml                                                                  000664  000106  000024  00000001152 13054310141 017603  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 34a6fe98-99c7-45ff-86cd-1ff5224799ea
+langcode: en
+status: true
+dependencies:
+  module:
+    - file
+    - image
+    - node
+_core:
+  default_config_hash: SkXIPKZYiIMMtnBmfnxk58RYfbZ8cHSw5NZPY_JByME
+id: node.field_image
+field_name: field_image
+entity_type: node
+type: image
+settings:
+  uri_scheme: public
+  default_image:
+    uuid: null
+    alt: ''
+    title: ''
+    width: null
+    height: null
+  target_type: file
+  display_field: false
+  display_default: false
+module: image
+locked: false
+cardinality: 1
+translatable: true
+indexes:
+  target_id:
+    - target_id
+persist_with_no_fields: false
+custom_storage: false
+                                                                                                                                                                                                                                                                                                                                                                                                                      field.storage.node.field_tags.yml                                                                   000664  000106  000024  00000000674 13054310141 017467  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 713745da-2dc9-496e-928d-46edae9cac23
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+    - taxonomy
+_core:
+  default_config_hash: WpOE_bs8Bs_HY2ns7n2r__de-xno0-Bxkqep5-MsHAs
+id: node.field_tags
+field_name: field_tags
+entity_type: node
+type: entity_reference
+settings:
+  target_type: taxonomy_term
+module: core
+locked: false
+cardinality: -1
+translatable: true
+indexes: {  }
+persist_with_no_fields: false
+custom_storage: false
+                                                                    field.storage.user.user_picture.yml                                                                 000664  000106  000024  00000001154 13054310141 020122  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: d795f3b1-edf0-4bd3-a193-2a9353bd7243
+langcode: en
+status: true
+dependencies:
+  module:
+    - file
+    - image
+    - user
+_core:
+  default_config_hash: 6k-VBFilDLuzgSOT-77CFgHFlcd5D-kqRixtH89EShU
+id: user.user_picture
+field_name: user_picture
+entity_type: user
+type: image
+settings:
+  uri_scheme: public
+  default_image:
+    uuid: null
+    alt: ''
+    title: ''
+    width: null
+    height: null
+  target_type: file
+  display_field: false
+  display_default: false
+module: image
+locked: false
+cardinality: 1
+translatable: true
+indexes:
+  target_id:
+    - target_id
+persist_with_no_fields: false
+custom_storage: false
+                                                                                                                                                                                                                                                                                                                                                                                                                    field_ui.settings.yml                                                                               000664  000106  000024  00000000137 13054310141 015326  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         field_prefix: field_
+_core:
+  default_config_hash: Q1nMi90W6YQxKzZAgJQw7Ag9U4JrsEUwkomF0lhvbIM
+                                                                                                                                                                                                                                                                                                                                                                                                                                 file.settings.yml                                                                                   000664  000106  000024  00000000242 13054310141 014462  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         description:
+  type: textfield
+  length: 128
+icon:
+  directory: core/modules/file/icons
+_core:
+  default_config_hash: 8LI-1XgwLt9hYRns_7c81S632d6JhdqXKs4vDheaG6E
+                                                                                                                                                                                                                                                                                                                                                              filter.format.basic_html.yml                                                                        000664  000106  000024  00000002204 13054310141 016564  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: bd22e36f-5f96-4cb7-9f0b-f602c01c243d
+langcode: en
+status: true
+dependencies:
+  module:
+    - editor
+_core:
+  default_config_hash: P8ddpAIKtawJDi5SzOwCzVnnNYqONewSTJ6Xn0dW_aQ
+name: 'Basic HTML'
+format: basic_html
+weight: 0
+filters:
+  filter_html:
+    id: filter_html
+    provider: filter
+    status: true
+    weight: -10
+    settings:
+      allowed_html: '<a href hreflang> <em> <strong> <cite> <blockquote cite> <code> <ul type> <ol start type> <li> <dl> <dt> <dd> <h2 id> <h3 id> <h4 id> <h5 id> <h6 id> <p> <br> <span> <img src alt height width data-entity-type data-entity-uuid data-align data-caption>'
+      filter_html_help: false
+      filter_html_nofollow: false
+  filter_align:
+    id: filter_align
+    provider: filter
+    status: true
+    weight: 7
+    settings: {  }
+  filter_caption:
+    id: filter_caption
+    provider: filter
+    status: true
+    weight: 8
+    settings: {  }
+  filter_html_image_secure:
+    id: filter_html_image_secure
+    provider: filter
+    status: true
+    weight: 9
+    settings: {  }
+  editor_file_reference:
+    id: editor_file_reference
+    provider: editor
+    status: true
+    weight: 11
+    settings: {  }
+                                                                                                                                                                                                                                                                                                                                                                                            filter.format.full_html.yml                                                                         000664  000106  000024  00000001303 13054310141 016444  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 860baed4-6a5d-46b6-971a-6ace050de23f
+langcode: en
+status: true
+dependencies:
+  module:
+    - editor
+_core:
+  default_config_hash: hewPmBgni9jlDK_IjLxUx1HsTbinK-hdl0lOwjbteIY
+name: 'Full HTML'
+format: full_html
+weight: 1
+filters:
+  filter_align:
+    id: filter_align
+    provider: filter
+    status: true
+    weight: 8
+    settings: {  }
+  filter_caption:
+    id: filter_caption
+    provider: filter
+    status: true
+    weight: 9
+    settings: {  }
+  filter_htmlcorrector:
+    id: filter_htmlcorrector
+    provider: filter
+    status: true
+    weight: 10
+    settings: {  }
+  editor_file_reference:
+    id: editor_file_reference
+    provider: editor
+    status: true
+    weight: 11
+    settings: {  }
+                                                                                                                                                                                                                                                                                                                             filter.format.plain_text.yml                                                                        000664  000106  000024  00000001101 13054310141 016621  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 331a79c6-7a64-4cda-b37b-b93273b55278
+langcode: en
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: NIKBt6kw_uPhNI0qtR2DnRf7mSOgAQdx7Q94SKMjXbQ
+name: 'Plain text'
+format: plain_text
+weight: 10
+filters:
+  filter_html_escape:
+    id: filter_html_escape
+    provider: filter
+    status: true
+    weight: -10
+    settings: {  }
+  filter_url:
+    id: filter_url
+    provider: filter
+    status: true
+    weight: 0
+    settings:
+      filter_url_length: 72
+  filter_autop:
+    id: filter_autop
+    provider: filter
+    status: true
+    weight: 0
+    settings: {  }
+                                                                                                                                                                                                                                                                                                                                                                                                                                                               filter.format.restricted_html.yml                                                                   000664  000106  000024  00000001442 13054310141 017656  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 897ec679-1d82-4c2c-873f-dfe9cc7f12f9
+langcode: en
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: KUjJ8Ti_ZJSlhGM88E_mhJP-8mmQRNUB6RFof615Kt0
+name: 'Restricted HTML'
+format: restricted_html
+weight: 0
+filters:
+  filter_html:
+    id: filter_html
+    provider: filter
+    status: true
+    weight: -10
+    settings:
+      allowed_html: '<a href hreflang> <em> <strong> <cite> <blockquote cite> <code> <ul type> <ol start type> <li> <dl> <dt> <dd> <h2 id> <h3 id> <h4 id> <h5 id> <h6 id>'
+      filter_html_help: true
+      filter_html_nofollow: false
+  filter_autop:
+    id: filter_autop
+    provider: filter
+    status: true
+    weight: 0
+    settings: {  }
+  filter_url:
+    id: filter_url
+    provider: filter
+    status: true
+    weight: 0
+    settings:
+      filter_url_length: 72
+                                                                                                                                                                                                                              filter.settings.yml                                                                                 000664  000106  000024  00000000211 13054310141 015024  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         fallback_format: plain_text
+always_show_fallback_choice: false
+_core:
+  default_config_hash: FiPjM3WdB__ruFA7B6TLwni_UcZbmek5G4b2dxQItxA
+                                                                                                                                                                                                                                                                                                                                                                                       image.settings.yml                                                                                  000664  000106  000024  00000000265 13054310141 014632  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         preview_image: core/modules/image/sample.png
+allow_insecure_derivatives: false
+suppress_itok_output: false
+_core:
+  default_config_hash: k-yDFHbqNfpe-Srg4sdCSqaosCl2D8uwyEY5esF8gEw
+                                                                                                                                                                                                                                                                                                                                           image.style.large.yml                                                                               000664  000106  000024  00000000614 13054310141 015221  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 029c3613-686d-4509-bfba-bdd675455b51
+langcode: en
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: J2n0RpFzS0-bgSyxjs6rSdgxB1rb-bTAgqywNx_964M
+name: large
+label: 'Large (480×480)'
+effects:
+  ddd73aa7-4bd6-4c85-b600-bdf2b1628d1d:
+    uuid: ddd73aa7-4bd6-4c85-b600-bdf2b1628d1d
+    id: image_scale
+    weight: 0
+    data:
+      width: 480
+      height: 480
+      upscale: false
+                                                                                                                    image.style.medium.yml                                                                              000664  000106  000024  00000000616 13054310141 015411  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: f7f49b1d-4f4e-414d-9948-4144b2d7e5e9
+langcode: en
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: Y9NmnZHQq20ASSyTNA6JnwtWrJJiSajOehGDtmUFdM0
+name: medium
+label: 'Medium (220×220)'
+effects:
+  bddf0d06-42f9-4c75-a700-a33cafa25ea0:
+    uuid: bddf0d06-42f9-4c75-a700-a33cafa25ea0
+    id: image_scale
+    weight: 0
+    data:
+      width: 220
+      height: 220
+      upscale: false
+                                                                                                                  image.style.thumbnail.yml                                                                           000664  000106  000024  00000000624 13054310141 016113  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: b2a51448-c0af-41be-86c7-a5c19766bf75
+langcode: en
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: cCiWdBHgLwj5omG35lsKc4LkW4MBdmcctkVop4ol5x0
+name: thumbnail
+label: 'Thumbnail (100×100)'
+effects:
+  1cfec298-8620-4749-b100-ccb6c4500779:
+    uuid: 1cfec298-8620-4749-b100-ccb6c4500779
+    id: image_scale
+    weight: 0
+    data:
+      width: 100
+      height: 100
+      upscale: false
+                                                                                                            menu_ui.settings.yml                                                                                000664  000106  000024  00000000152 13054310141 015204  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         override_parent_selector: false
+_core:
+  default_config_hash: SqMarzIjxC3F8dZo9FEOxfqDKD_sdW1tbcFTV1BA2zU
+                                                                                                                                                                                                                                                                                                                                                                                                                      node.settings.yml                                                                                   000664  000106  000024  00000000140 13054310141 014465  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         use_admin_theme: true
+_core:
+  default_config_hash: 2OMXCScXUOLSYID9-phjO4q36nnnaMWNUlDxEqZzG1U
+                                                                                                                                                                                                                                                                                                                                                                                                                                node.type.article.yml                                                                               000664  000106  000024  00000000554 13054310141 015241  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 1eb27d92-5262-44ee-8e0a-a0fd91e0283b
+langcode: en
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: i4OVV5qrD7abstl4SKS8v5Ee7PuxrL548iZVSty1HRg
+name: Article
+type: article
+description: 'Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.'
+help: ''
+new_revision: false
+preview_mode: 1
+display_submitted: true
+                                                                                                                                                    node.type.page.yml                                                                                  000664  000106  000024  00000000545 13054310141 014532  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: ff6afcb5-c2ae-4e23-aa55-a6b7dfc3d35e
+langcode: en
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: zhtPXoRcC6REiepM0k16zw__FDW5YOXDR6U2WlldTrs
+name: 'Basic page'
+type: page
+description: 'Use <em>basic pages</em> for your static content, such as an ''About us'' page.'
+help: ''
+new_revision: false
+preview_mode: 1
+display_submitted: false
+                                                                                                                                                           rdf.mapping.comment.comment.yml                                                                     000664  000106  000024  00000001424 13054310141 017216  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: a0b198e5-4cd2-4ebb-94f5-7e0391f59998
+langcode: en
+status: true
+dependencies:
+  config:
+    - comment.type.comment
+  module:
+    - comment
+_core:
+  default_config_hash: uETe6XupRGKDForx2MpY0pMOEu6CzGgdCAZZOKkbgmk
+id: comment.comment
+targetEntityType: comment
+bundle: comment
+types:
+  - 'schema:Comment'
+fieldMappings:
+  subject:
+    properties:
+      - 'schema:name'
+  created:
+    properties:
+      - 'schema:dateCreated'
+    datatype_callback:
+      callable: 'Drupal\rdf\CommonDataConverter::dateIso8601Value'
+  changed:
+    properties:
+      - 'schema:dateModified'
+    datatype_callback:
+      callable: 'Drupal\rdf\CommonDataConverter::dateIso8601Value'
+  comment_body:
+    properties:
+      - 'schema:text'
+  uid:
+    properties:
+      - 'schema:author'
+    mapping_type: rel
+                                                                                                                                                                                                                                            rdf.mapping.node.article.yml                                                                        000664  000106  000024  00000002165 13054310141 016465  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 0c0b8b19-ffe2-4704-b97f-7d6a45a30473
+langcode: en
+status: true
+dependencies:
+  config:
+    - node.type.article
+  module:
+    - node
+_core:
+  default_config_hash: IdobJe379eDudt7-bXFfJjF7pDqFl-kYxVFtpWrgkro
+id: node.article
+targetEntityType: node
+bundle: article
+types:
+  - 'schema:Article'
+fieldMappings:
+  title:
+    properties:
+      - 'schema:name'
+  created:
+    properties:
+      - 'schema:dateCreated'
+    datatype_callback:
+      callable: 'Drupal\rdf\CommonDataConverter::dateIso8601Value'
+  changed:
+    properties:
+      - 'schema:dateModified'
+    datatype_callback:
+      callable: 'Drupal\rdf\CommonDataConverter::dateIso8601Value'
+  body:
+    properties:
+      - 'schema:text'
+  uid:
+    properties:
+      - 'schema:author'
+  comment:
+    properties:
+      - 'schema:comment'
+    mapping_type: rel
+  comment_count:
+    properties:
+      - 'schema:interactionCount'
+    datatype_callback:
+      callable: 'Drupal\rdf\SchemaOrgDataConverter::interactionCount'
+      arguments:
+        interaction_type: UserComments
+  field_image:
+    properties:
+      - 'schema:image'
+  field_tags:
+    properties:
+      - 'schema:about'
+                                                                                                                                                                                                                                                                                                                                                                                                           rdf.mapping.node.page.yml                                                                           000664  000106  000024  00000001715 13054310141 015756  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: c398a173-97d8-45ac-95c4-71c50e007351
+langcode: en
+status: true
+dependencies:
+  config:
+    - node.type.page
+  module:
+    - node
+_core:
+  default_config_hash: 32LxRnl4Wesvzqyfp7HnD0-U9-wxrLBn76pqY5XGNAE
+id: node.page
+targetEntityType: node
+bundle: page
+types:
+  - 'schema:WebPage'
+fieldMappings:
+  title:
+    properties:
+      - 'schema:name'
+  created:
+    properties:
+      - 'schema:dateCreated'
+    datatype_callback:
+      callable: 'Drupal\rdf\CommonDataConverter::dateIso8601Value'
+  changed:
+    properties:
+      - 'schema:dateModified'
+    datatype_callback:
+      callable: 'Drupal\rdf\CommonDataConverter::dateIso8601Value'
+  body:
+    properties:
+      - 'schema:text'
+  uid:
+    properties:
+      - 'schema:author'
+    mapping_type: rel
+  comment_count:
+    properties:
+      - 'schema:interactionCount'
+    datatype_callback:
+      callable: 'Drupal\rdf\SchemaOrgDataConverter::interactionCount'
+      arguments:
+        interaction_type: UserComments
+                                                   rdf.mapping.taxonomy_term.tags.yml                                                                  000664  000106  000024  00000000666 13054310141 017764  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 47e9a702-508a-4524-a5c6-f8cde8c05b5c
+langcode: en
+status: true
+dependencies:
+  config:
+    - taxonomy.vocabulary.tags
+  module:
+    - taxonomy
+_core:
+  default_config_hash: o5duwyS1CTHx3tYOZhuu91kspe8VQjQsnwZjAJv9njk
+id: taxonomy_term.tags
+targetEntityType: taxonomy_term
+bundle: tags
+types:
+  - 'schema:Thing'
+fieldMappings:
+  name:
+    properties:
+      - 'schema:name'
+  description:
+    properties:
+      - 'schema:description'
+                                                                          rdf.mapping.user.user.yml                                                                           000664  000106  000024  00000000474 13054310141 016052  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 01f0dac8-615b-4b7a-856c-a0722c2d8774
+langcode: en
+status: true
+dependencies:
+  module:
+    - user
+_core:
+  default_config_hash: TGTlmpYAtXxjtYMFA_A0vosE2c4R5MCQwLviIA5HUM0
+id: user.user
+targetEntityType: user
+bundle: user
+types:
+  - 'schema:Person'
+fieldMappings:
+  name:
+    properties:
+      - 'schema:name'
+                                                                                                                                                                                                    search.page.node_search.yml                                                                         000664  000106  000024  00000000434 13054310141 016340  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 6bb73f20-63b3-42c9-b84d-1c0503ba3646
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: 97tvtzGOa8_flb22CzSjgtm_YkiGMHvEBO-6q2K9V_U
+id: node_search
+label: Content
+path: node
+weight: -10
+plugin: node_search
+configuration:
+  rankings: {  }
+                                                                                                                                                                                                                                    search.page.user_search.yml                                                                         000664  000106  000024  00000000414 13054310141 016367  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: b9a04f6a-07fe-46a7-9bf3-afd0f7be5d36
+langcode: en
+status: true
+dependencies:
+  module:
+    - user
+_core:
+  default_config_hash: k3aUaZXGDuhkek2TZIee0PApOPTvYZLadziekdyHA5A
+id: user_search
+label: Users
+path: user
+weight: 0
+plugin: user_search
+configuration: {  }
+                                                                                                                                                                                                                                                    search.settings.yml                                                                                 000664  000106  000024  00000000523 13054310141 015012  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         and_or_limit: 7
+default_page: node_search
+index:
+  cron_limit: 100
+  overlap_cjk: true
+  minimum_word_size: 3
+  tag_weights:
+    h1: 25
+    h2: 18
+    h3: 15
+    h4: 14
+    h5: 9
+    h6: 6
+    u: 3
+    b: 3
+    i: 3
+    strong: 3
+    em: 3
+    a: 10
+logging: false
+_core:
+  default_config_hash: hvVxL1G-ZCxaq32IZws0YsfuhvaDiQE_np-0g35KjUk
+                                                                                                                                                                             seven.settings.yml                                                                                  000664  000106  000024  00000000070 13054310141 014662  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         third_party_settings:
+  shortcut:
+    module_link: true
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                        shortcut.set.default.yml                                                                            000664  000106  000024  00000000275 13054310141 016002  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 253909a6-7d03-4095-a3de-29f8b2b1a864
+langcode: en
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: U5VlGjd_SfV0Qm_EfnaynOfc549cNscFAx48JfYoMRI
+id: default
+label: Default
+                                                                                                                                                                                                                                                                                                                                   system.action.comment_publish_action.yml                                                            000664  000106  000024  00000000452 13054310141 021233  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 78e067cf-1645-403f-96e2-01c38d02a645
+langcode: en
+status: true
+dependencies:
+  module:
+    - comment
+_core:
+  default_config_hash: f6w_Pd30AyyDIoMkD4QpPMM2-I8FTEHICchFVOpjiCI
+id: comment_publish_action
+label: 'Publish comment'
+type: comment
+plugin: comment_publish_action
+configuration: {  }
+                                                                                                                                                                                                                      system.action.comment_save_action.yml                                                               000664  000106  000024  00000000441 13054310141 020521  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 12a47a16-6699-4cf2-8cf3-d4c6178b936c
+langcode: en
+status: true
+dependencies:
+  module:
+    - comment
+_core:
+  default_config_hash: TSkg_gUZvk-39yXFrIFnKjsxuEzO0qBH82TdDxOMMr4
+id: comment_save_action
+label: 'Save comment'
+type: comment
+plugin: comment_save_action
+configuration: {  }
+                                                                                                                                                                                                                               system.action.comment_unpublish_action.yml                                                          000664  000106  000024  00000000460 13054310141 021575  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: fd1f37ba-d2dd-40be-92e9-8b26a251046a
+langcode: en
+status: true
+dependencies:
+  module:
+    - comment
+_core:
+  default_config_hash: MLin6S_PsJ7Oo480DxS46D46IM8tqFkkWOLyH7TGByI
+id: comment_unpublish_action
+label: 'Unpublish comment'
+type: comment
+plugin: comment_unpublish_action
+configuration: {  }
+                                                                                                                                                                                                                system.action.node_delete_action.yml                                                                000664  000106  000024  00000000433 13054310141 020311  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 6d8b3802-27cc-4786-a132-894f96386a3f
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: Zx0jD1Klh5tZaGJy8uOeR_2MCu9FDM4xg7TaUJUEbkI
+id: node_delete_action
+label: 'Delete content'
+type: node
+plugin: node_delete_action
+configuration: {  }
+                                                                                                                                                                                                                                     system.action.node_make_sticky_action.yml                                                           000664  000106  000024  00000000452 13054310141 021353  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 112f8484-5ff3-4c63-ae42-ae443a6d4e5d
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: sOb26JSy3fGpWkvR0WYN6_hMqj_6d1rvbvrkzp1yya0
+id: node_make_sticky_action
+label: 'Make content sticky'
+type: node
+plugin: node_make_sticky_action
+configuration: {  }
+                                                                                                                                                                                                                      system.action.node_make_unsticky_action.yml                                                         000664  000106  000024  00000000460 13054310141 021715  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: f4ae3800-fbc1-4128-b00a-03b142fe38b3
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: lDM9mvIGAu8Sw8rt-uCO4Sr7yX5VPrDPxYcawkbKd6k
+id: node_make_unsticky_action
+label: 'Make content unsticky'
+type: node
+plugin: node_make_unsticky_action
+configuration: {  }
+                                                                                                                                                                                                                system.action.node_promote_action.yml                                                               000664  000106  000024  00000000454 13054310141 020537  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: d3deb99b-cc45-4fa4-864e-2eb2db73a391
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: N0RDBTqiK4dKoN4p4oW2j0SGWycdHyALUe9M-Ofp89U
+id: node_promote_action
+label: 'Promote content to front page'
+type: node
+plugin: node_promote_action
+configuration: {  }
+                                                                                                                                                                                                                    system.action.node_publish_action.yml                                                               000664  000106  000024  00000000436 13054310141 020520  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: ce78ffd5-069e-4ed7-902b-7f373e65584e
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: lsQkbo4njZ-Q_oGKCPGXGWFjWF1I7QpgA6m-t9rcRoA
+id: node_publish_action
+label: 'Publish content'
+type: node
+plugin: node_publish_action
+configuration: {  }
+                                                                                                                                                                                                                                  system.action.node_save_action.yml                                                                  000664  000106  000024  00000000425 13054310141 020006  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: bcfc414b-5258-4f49-8623-2a04a3deddd0
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: U9HspszLxcw6pZmRacFa6yDbbheyMN-We4fPbrWWHGg
+id: node_save_action
+label: 'Save content'
+type: node
+plugin: node_save_action
+configuration: {  }
+                                                                                                                                                                                                                                           system.action.node_unpromote_action.yml                                                             000664  000106  000024  00000000461 13054310141 021100  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: a5b2852e-884f-4d1b-b824-3d8e206baf4a
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: JBptjnfuOMtsdKygklXxoOgeOCTMtQxlkymjnnj-cC0
+id: node_unpromote_action
+label: 'Remove content from front page'
+type: node
+plugin: node_unpromote_action
+configuration: {  }
+                                                                                                                                                                                                               system.action.node_unpublish_action.yml                                                             000664  000106  000024  00000000444 13054310141 021062  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 80e9d609-8bd4-4049-9697-be37dec90232
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+_core:
+  default_config_hash: gGQXiSspwGl0lyOS6w_HCPpvGAPDciqDNLFwWOydVtI
+id: node_unpublish_action
+label: 'Unpublish content'
+type: node
+plugin: node_unpublish_action
+configuration: {  }
+                                                                                                                                                                                                                            system.action.user_add_role_action.administrator.yml                                                000664  000106  000024  00000000475 13054310141 023536  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: e10591c9-fb8f-4f65-827a-df75740fda6c
+langcode: en
+status: true
+dependencies:
+  config:
+    - user.role.administrator
+  module:
+    - user
+id: user_add_role_action.administrator
+label: 'Add the Administrator role to the selected users'
+type: user
+plugin: user_add_role_action
+configuration:
+  rid: administrator
+                                                                                                                                                                                                   system.action.user_block_user_action.yml                                                            000664  000106  000024  00000000457 13054310141 021236  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: dde4a197-2d9a-4d13-9b6c-dcde1ccc3d9d
+langcode: en
+status: true
+dependencies:
+  module:
+    - user
+_core:
+  default_config_hash: DyypzTfThX10FFQw-399qPfEbLLyrhXgQrKPVsmAoJ4
+id: user_block_user_action
+label: 'Block the selected user(s)'
+type: user
+plugin: user_block_user_action
+configuration: {  }
+                                                                                                                                                                                                                 system.action.user_cancel_user_action.yml                                                           000664  000106  000024  00000000472 13054310141 021366  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 7a739c22-60cd-4039-a48a-d181c3bb01c1
+langcode: en
+status: true
+dependencies:
+  module:
+    - user
+_core:
+  default_config_hash: nvrL9bFilzBvm2bjO9rQnFDpBA7dBBUjShSSt6NS-DU
+id: user_cancel_user_action
+label: 'Cancel the selected user account(s)'
+type: user
+plugin: user_cancel_user_action
+configuration: {  }
+                                                                                                                                                                                                      system.action.user_remove_role_action.administrator.yml                                             000664  000106  000024  00000000510 13054310141 024271  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 819c04ec-1e63-402e-bf7d-d47dd90c4824
+langcode: en
+status: true
+dependencies:
+  config:
+    - user.role.administrator
+  module:
+    - user
+id: user_remove_role_action.administrator
+label: 'Remove the Administrator role from the selected users'
+type: user
+plugin: user_remove_role_action
+configuration:
+  rid: administrator
+                                                                                                                                                                                        system.action.user_unblock_user_action.yml                                                          000664  000106  000024  00000000465 13054310141 021600  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 9506ce50-4862-4806-b9e3-7f4bd9aef5a4
+langcode: en
+status: true
+dependencies:
+  module:
+    - user
+_core:
+  default_config_hash: SPsUXsR3Rc8d1y3gewzaAKWa1ncea_ywXX3f7LTn7k0
+id: user_unblock_user_action
+label: 'Unblock the selected user(s)'
+type: user
+plugin: user_unblock_user_action
+configuration: {  }
+                                                                                                                                                                                                           system.authorize.yml                                                                                000664  000106  000024  00000000145 13054310141 015243  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         filetransfer_default: null
+_core:
+  default_config_hash: z63ds8M4zPrylEgFRkRcOlfcsXWwfITzjD4cj1kRdfg
+                                                                                                                                                                                                                                                                                                                                                                                                                           system.cron.yml                                                                                     000664  000106  000024  00000000235 13054310141 014172  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         threshold:
+  requirements_warning: 172800
+  requirements_error: 1209600
+_core:
+  default_config_hash: 05U0n1_8zHYzxEFSWjyHCWuJyhdez2a6Z_aTIXin04E
+logging: 1
+                                                                                                                                                                                                                                                                                                                                                                   system.date.yml                                                                                     000664  000106  000024  00000000317 13054310141 014147  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         country:
+  default: ''
+first_day: 0
+timezone:
+  default: Europe/Zurich
+  user:
+    configurable: true
+    warn: false
+    default: 0
+_core:
+  default_config_hash: V9UurX2GPT05NWKG9f2GWQqFG2TRG8vczidwjpy7Woo
+                                                                                                                                                                                                                                                                                                                 system.diff.yml                                                                                     000664  000106  000024  00000000172 13054310141 014141  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         context:
+  lines_leading: 2
+  lines_trailing: 2
+_core:
+  default_config_hash: 1WanmaEhxW_vM8_5Ktsdntj8MaO9UBHXg0lN603PsWM
+                                                                                                                                                                                                                                                                                                                                                                                                      system.file.yml                                                                                     000664  000106  000024  00000000264 13054310141 014152  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         allow_insecure_uploads: false
+default_scheme: public
+path:
+  temporary: /tmp
+temporary_maximum_age: 21600
+_core:
+  default_config_hash: t48gCU9DzYfjb3bAOIqHLzhL0ChBlXh6_5B5Pyo9t8g
+                                                                                                                                                                                                                                                                                                                                            system.image.gd.yml                                                                                 000664  000106  000024  00000000133 13054310141 014701  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         jpeg_quality: 75
+_core:
+  default_config_hash: eNXaHfkJJUThHeF0nvkoXyPLRrKYGxgHRjORvT4F5rQ
+                                                                                                                                                                                                                                                                                                                                                                                                                                     system.image.yml                                                                                    000664  000106  000024  00000000126 13054310141 014312  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         toolkit: gd
+_core:
+  default_config_hash: durWHaKeBaq4d9Wpi4RqwADj1OufDepcnJuhVLmKN24
+                                                                                                                                                                                                                                                                                                                                                                                                                                          system.logging.yml                                                                                  000664  000106  000024  00000000134 13054310141 014655  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         error_level: hide
+_core:
+  default_config_hash: u3-njszl92FaxjrCMiq0yDcjAfcdx72w1zT1O9dx6aA
+                                                                                                                                                                                                                                                                                                                                                                                                                                    system.mail.yml                                                                                     000664  000106  000024  00000000151 13054310141 014150  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         interface:
+  default: php_mail
+_core:
+  default_config_hash: rYgt7uhPafP2ngaN_ZUPFuyI4KdE0zU868zLNSlzKoE
+                                                                                                                                                                                                                                                                                                                                                                                                                       system.maintenance.yml                                                                              000664  000106  000024  00000000300 13054310141 015504  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         message: '@site is currently under maintenance. We should be back shortly. Thank you for your patience.'
+langcode: en
+_core:
+  default_config_hash: Z5MXifrF77GEAgx0GQ6iWT8wStjFuY8BD9OruofWTJ8
+                                                                                                                                                                                                                                                                                                                                system.menu.account.yml                                                                             000664  000106  000024  00000000416 13054310141 015631  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 3d2631cf-f689-4375-92d6-a5deb07173fd
+langcode: en
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: M_Bh81osDyUQ4wV0GgU_NdBNqkzM87sLxjaCdFj9mnw
+id: account
+label: 'User account menu'
+description: 'Links related to the active user account'
+locked: true
+                                                                                                                                                                                                                                                  system.menu.admin.yml                                                                               000664  000106  000024  00000000370 13054310141 015264  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 87e44b7b-f9c4-43d9-8e35-2adc775b205a
+langcode: en
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: sapEi2YDGoI9yQIT_WgIV2vUdQ6DScH0V3fAyTadAL0
+id: admin
+label: Administration
+description: 'Administrative task links'
+locked: true
+                                                                                                                                                                                                                                                                        system.menu.footer.yml                                                                              000664  000106  000024  00000000356 13054310141 015476  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: c0108df7-ca9a-4751-8c9e-8ad89eb9bda5
+langcode: en
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: 7yrlW5z9zdg2eBucB2GPqXKSMQfH9lSRSO4DbWF7AFc
+id: footer
+label: Footer
+description: 'Site information links'
+locked: true
+                                                                                                                                                                                                                                                                                  system.menu.main.yml                                                                                000664  000106  000024  00000000363 13054310141 015122  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: b9dc6d11-a690-45b2-962e-4b8cdd651de4
+langcode: en
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: Q2Ra3jfoIVk0f3SjxJX61byRQFVBAbpzYDQOiY-kno8
+id: main
+label: 'Main navigation'
+description: 'Site section links'
+locked: true
+                                                                                                                                                                                                                                                                             system.menu.tools.yml                                                                               000664  000106  000024  00000000375 13054310141 015341  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 55717e84-7dc1-48a0-96c8-a6af10733546
+langcode: en
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: BCM-vV1zzRaLHN18dqAR_CuGOj8AFJvTx7BKl_8Gcxc
+id: tools
+label: Tools
+description: 'User tool links, often added by modules'
+locked: true
+                                                                                                                                                                                                                                                                   system.performance.yml                                                                              000664  000106  000024  00000001026 13054310141 015531  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         cache:
+  page:
+    max_age: 0
+css:
+  preprocess: true
+  gzip: true
+fast_404:
+  enabled: true
+  paths: '/\.(?:txt|png|gif|jpe?g|css|js|ico|swf|flv|cgi|bat|pl|dll|exe|asp)$/i'
+  exclude_paths: '/\/(?:styles|imagecache)\//'
+  html: '<!DOCTYPE html><html><head><title>404 Not Found</title></head><body><h1>Not Found</h1><p>The requested URL "@path" was not found on this server.</p></body></html>'
+js:
+  preprocess: true
+  gzip: true
+stale_file_threshold: 2592000
+_core:
+  default_config_hash: b2cssrj-lOmATIbdehfCqfCFgVR0qCdxxWhwqa2KBVQ
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          system.rss.yml                                                                                      000664  000106  000024  00000000226 13054310141 014040  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         channel:
+  description: ''
+items:
+  limit: 10
+  view_mode: rss
+langcode: en
+_core:
+  default_config_hash: TlH7NNk46phfxu1mSUfwg1C0YqaGsUCeD4l9JQnQlDU
+                                                                                                                                                                                                                                                                                                                                                                          system.site.yml                                                                                     000664  000106  000024  00000000462 13054310141 014177  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 6fce41e1-b188-40c9-b335-547b402afbf1
+name: 'Contact-less standard'
+mail: admin@example.com
+slogan: ''
+page:
+  403: ''
+  404: ''
+  front: /node
+admin_compact_mode: false
+weight_select_max: 100
+langcode: en
+default_langcode: en
+_core:
+  default_config_hash: yXadRE77Va-G6dxhd2kPYapAvbnSvTF6hO4oXiOEynI
+                                                                                                                                                                                                              system.theme.global.yml                                                                             000664  000106  000024  00000000503 13054310141 015570  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         favicon:
+  mimetype: image/vnd.microsoft.icon
+  path: ''
+  url: ''
+  use_default: true
+features:
+  comment_user_picture: true
+  comment_user_verification: true
+  favicon: true
+  node_user_picture: true
+logo:
+  path: ''
+  url: ''
+  use_default: true
+_core:
+  default_config_hash: 9rAU4Pku7eMBQxauQqAgjzlcicFZ2As6zEa6zvTlCB8
+                                                                                                                                                                                             system.theme.yml                                                                                    000664  000106  000024  00000000147 13054310141 014335  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         admin: seven
+default: bartik
+_core:
+  default_config_hash: fOjer9hADYYnbCJVZMFZIIM1azTFWyg84ZkFDHfAbUg
+                                                                                                                                                                                                                                                                                                                                                                                                                         taxonomy.settings.yml                                                                               000664  000106  000024  00000000230 13054310141 015416  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         maintain_index_table: true
+override_selector: false
+terms_per_page_admin: 100
+_core:
+  default_config_hash: zKpaWT6cJc1tVQQaTqatGELaCqU_oyRym6zTl27Yias
+                                                                                                                                                                                                                                                                                                                                                                        taxonomy.vocabulary.tags.yml                                                                        000664  000106  000024  00000000433 13054310141 016667  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 6bead085-0a88-4dc2-8467-cf854329975b
+langcode: en
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: lO5ziR5dVI1PpEeHZsSOfQ-Y7NWihSDKW8-MMf6uoms
+name: Tags
+vid: tags
+description: 'Use tags to group articles on similar topics into categories.'
+hierarchy: 0
+weight: 0
+                                                                                                                                                                                                                                     text.settings.yml                                                                                   000664  000106  000024  00000000146 13054310141 014532  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         default_summary_length: 600
+_core:
+  default_config_hash: Bkewb77RBOK3_aXMPsp8p87gbc03NvmC5gBLzPl7hVA
+                                                                                                                                                                                                                                                                                                                                                                                                                          tour.tour.views-ui.yml                                                                              000664  000106  000024  00000006353 13054310141 015445  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: f674f372-1bd6-4d6c-ae44-2845b5f7fec8
+langcode: en
+status: true
+dependencies:
+  module:
+    - views_ui
+_core:
+  default_config_hash: c-HMyZwgeP8H6AITDcq4hznePkd7azpe8xl_WTnx2O0
+id: views-ui
+label: 'View edit page'
+module: views_ui
+routes:
+  -
+    route_name: entity.view.edit_form
+  -
+    route_name: entity.view.edit_display_form
+tips:
+  views-main:
+    id: views-main
+    plugin: text
+    label: 'Manage view settings'
+    body: 'View or edit the configuration.'
+    weight: 1
+  views-ui-displays:
+    id: views-ui-displays
+    plugin: text
+    label: 'Displays in this view'
+    body: 'A display is a way of outputting the results, e.g., as a page or a block. A view can contain multiple displays, which are listed here. The active display is highlighted.'
+    weight: 2
+    attributes:
+      data-id: views-display-top
+  views-ui-view-admin:
+    id: views-ui-view-admin
+    plugin: text
+    label: 'View administration'
+    body: 'Perform administrative tasks, including adding a description and creating a clone. Click the drop-down button to view the available options.'
+    weight: 3
+    location: left
+    attributes:
+      data-id: views-display-extra-actions
+  views-ui-format:
+    id: views-ui-format
+    plugin: text
+    label: 'Output format'
+    body: 'Choose how to output results. E.g., choose <em>Content</em> to output each item completely, using your configured display settings. Or choose <em>Fields</em>, which allows you to output only specific fields for each result. Additional formats can be added by installing modules to <em>extend</em> Drupal''s base functionality.'
+    weight: 4
+    attributes:
+      data-class: views-ui-display-tab-bucket.format
+  views-ui-fields:
+    id: views-ui-fields
+    plugin: text
+    label: Fields
+    body: 'If this view uses fields, they are listed here. You can click on a field to configure it.'
+    weight: 5
+    attributes:
+      data-class: views-ui-display-tab-bucket.field
+  views-ui-filter:
+    id: views-ui-filter
+    plugin: text
+    label: 'Filter your view'
+    body: 'Add filters to limit the results in the output. E.g., to only show content that is <em>published</em>, you would add a filter for <em>Published</em> and select <em>Yes</em>.'
+    weight: 6
+    attributes:
+      data-class: views-ui-display-tab-bucket.filter
+  views-ui-filter-operations:
+    id: views-ui-filter-operations
+    plugin: text
+    label: 'Filter actions'
+    body: 'Add, rearrange or remove filters.'
+    weight: 7
+    attributes:
+      data-class: 'views-ui-display-tab-bucket.filter .dropbutton-widget'
+  views-ui-sorts:
+    id: views-ui-sorts
+    plugin: text
+    label: 'Sort Criteria'
+    body: 'Control the order in which the results are output. Click on an active sort rule to configure it.'
+    weight: 8
+    attributes:
+      data-class: views-ui-display-tab-bucket.sort
+  views-ui-sorts-operations:
+    id: views-ui-sorts-operations
+    plugin: text
+    label: 'Sort actions'
+    body: 'Add, rearrange or remove sorting rules.'
+    weight: 9
+    attributes:
+      data-class: 'views-ui-display-tab-bucket.sort .dropbutton-widget'
+  views-ui-preview:
+    id: views-ui-preview
+    plugin: text
+    label: Preview
+    body: 'Show a preview of the view output.'
+    weight: 10
+    location: left
+    attributes:
+      data-id: preview-submit
+                                                                                                                                                                                                                                                                                     user.flood.yml                                                                                      000664  000106  000024  00000000230 13054310141 013761  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uid_only: false
+ip_limit: 50
+ip_window: 3600
+user_limit: 5
+user_window: 21600
+_core:
+  default_config_hash: UYfMzeP1S8jKm9PSvxf7nQNe8DsNS-3bc2WSNNXBQWs
+                                                                                                                                                                                                                                                                                                                                                                        user.mail.yml                                                                                       000664  000106  000024  00000007455 13054310141 013620  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         cancel_confirm:
+  body: "[user:display-name],\n\nA request to cancel your account has been made at [site:name].\n\nYou may now cancel your account on [site:url-brief] by clicking this link or copying and pasting it into your browser:\n\n[user:cancel-url]\n\nNOTE: The cancellation of your account is not reversible.\n\nThis link expires in one day and nothing will happen if it is not used.\n\n--  [site:name] team"
+  subject: 'Account cancellation request for [user:display-name] at [site:name]'
+password_reset:
+  body: "[user:display-name],\n\nA request to reset the password for your account has been made at [site:name].\n\nYou may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password. It expires after one day and nothing will happen if it's not used.\n\n--  [site:name] team"
+  subject: 'Replacement login information for [user:display-name] at [site:name]'
+register_admin_created:
+  body: "[user:display-name],\n\nA site administrator at [site:name] has created an account for you. You may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password.\n\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\n\nusername: [user:name]\npassword: Your password\n\n--  [site:name] team"
+  subject: 'An administrator created an account for you at [site:name]'
+register_no_approval_required:
+  body: "[user:display-name],\n\nThank you for registering at [site:name]. You may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password.\n\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\n\nusername: [user:name]\npassword: Your password\n\n--  [site:name] team"
+  subject: 'Account details for [user:display-name] at [site:name]'
+register_pending_approval:
+  body: "[user:display-name],\n\nThank you for registering at [site:name]. Your application for an account is currently pending approval. Once it has been approved, you will receive another email containing information about how to log in, set your password, and other details.\n\n\n--  [site:name] team"
+  subject: 'Account details for [user:display-name] at [site:name] (pending admin approval)'
+register_pending_approval_admin:
+  body: "[user:display-name] has applied for an account.\n\n[user:edit-url]"
+  subject: 'Account details for [user:display-name] at [site:name] (pending admin approval)'
+status_activated:
+  body: "[user:display-name],\n\nYour account at [site:name] has been activated.\n\nYou may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password.\n\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\n\nusername: [user:account-name]\npassword: Your password\n\n--  [site:name] team"
+  subject: 'Account details for [user:display-name] at [site:name] (approved)'
+status_blocked:
+  body: "[user:display-name],\n\nYour account on [site:name] has been blocked.\n\n--  [site:name] team"
+  subject: 'Account details for [user:display-name] at [site:name] (blocked)'
+status_canceled:
+  body: "[user:display-name],\n\nYour account on [site:name] has been canceled.\n\n--  [site:name] team"
+  subject: 'Account details for [user:display-name] at [site:name] (canceled)'
+langcode: en
+_core:
+  default_config_hash: m4J3ROov32OEquRYGLbx3SpdDGuqx9l_zJtNvihqdCg
+                                                                                                                                                                                                                   user.role.administrator.yml                                                                         000664  000106  000024  00000000364 13054310141 016506  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 1224e77b-9d10-47a0-b304-d99113dc4f9a
+langcode: en
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: Om6FEO7vZZMkPIbVvfxtdkWerQ2PvQM4sWUd6Q3ZnfI
+id: administrator
+label: Administrator
+weight: 2
+is_admin: true
+permissions: {  }
+                                                                                                                                                                                                                                                                            user.role.anonymous.yml                                                                             000664  000106  000024  00000000571 13054310141 015656  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: fde0cee3-d7fa-4f79-9595-25a170b165b3
+langcode: en
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: j5zLMOdJBqC0bMvSdth5UebkprJB8g_2FXHqhfpJzow
+id: anonymous
+label: 'Anonymous user'
+weight: 0
+is_admin: false
+permissions:
+  - 'access comments'
+  - 'access content'
+  - 'access site-wide contact form'
+  - 'search content'
+  - 'use text format restricted_html'
+                                                                                                                                       user.role.authenticated.yml                                                                         000664  000106  000024  00000000703 13054310141 016445  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 008d136e-55b1-408f-8b3c-e13c1db4f3f5
+langcode: en
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: dJ0L2DNSj5q6XVZAGsuVDpJTh5UeYkIPwKrUOOpr8YI
+id: authenticated
+label: 'Authenticated user'
+weight: 1
+is_admin: false
+permissions:
+  - 'access comments'
+  - 'access content'
+  - 'access shortcuts'
+  - 'access site-wide contact form'
+  - 'post comments'
+  - 'search content'
+  - 'skip comment approval'
+  - 'use text format basic_html'
+                                                             user.settings.yml                                                                                   000664  000106  000024  00000000736 13054310141 014531  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         anonymous: Anonymous
+verify_mail: true
+notify:
+  cancel_confirm: true
+  password_reset: true
+  status_activated: true
+  status_blocked: false
+  status_canceled: false
+  register_admin_created: true
+  register_no_approval_required: true
+  register_pending_approval: true
+register: visitors_admin_approval
+cancel_method: user_cancel_block
+password_reset_timeout: 86400
+password_strength: true
+langcode: en
+_core:
+  default_config_hash: r4kwhOM0IWXVMUZDz744Yc16EOh37ZhYbA8kGOhSmLk
+                                  views.settings.yml                                                                                  000664  000106  000024  00000001505 13054310141 014703  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         display_extenders: {  }
+skip_cache: false
+sql_signature: false
+ui:
+  show:
+    additional_queries: false
+    advanced_column: false
+    master_display: false
+    performance_statistics: false
+    preview_information: true
+    sql_query:
+      enabled: false
+      where: above
+    display_embed: false
+  always_live_preview: true
+  exposed_filter_any_label: old_any
+field_rewrite_elements:
+  div: DIV
+  span: SPAN
+  h1: H1
+  h2: H2
+  h3: H3
+  h4: H4
+  h5: H5
+  h6: H6
+  p: P
+  header: HEADER
+  footer: FOOTER
+  article: ARTICLE
+  section: SECTION
+  aside: ASIDE
+  details: DETAILS
+  blockquote: BLOCKQUOTE
+  figure: FIGURE
+  address: ADDRESS
+  code: CODE
+  pre: PRE
+  var: VAR
+  samp: SAMP
+  kbd: KBD
+  strong: STRONG
+  em: EM
+  del: DEL
+  ins: INS
+  q: Q
+  s: S
+_core:
+  default_config_hash: RaRd9EIcwA4u3qCSRLL8EnCicbda1kV__ASmVbyehvQ
+                                                                                                                                                                                           views.view.archive.yml                                                                              000664  000106  000024  00000014052 13054310141 015436  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: da85b293-42eb-476e-a143-9bbf1477c5c0
+langcode: en
+status: false
+dependencies:
+  config:
+    - core.entity_view_mode.node.teaser
+  module:
+    - node
+    - user
+_core:
+  default_config_hash: Ea3cxQo9FjYVScZDVackg-6ID_GgTkdKORm_APgV-5I
+id: archive
+label: Archive
+module: node
+description: 'All content, by month.'
+tag: default
+base_table: node_field_data
+base_field: nid
+core: '8'
+display:
+  default:
+    id: default
+    display_title: Master
+    display_plugin: default
+    position: 0
+    display_options:
+      query:
+        type: views_query
+        options:
+          query_comment: ''
+          disable_sql_rewrite: false
+          distinct: false
+          replica: false
+          query_tags: {  }
+      title: 'Monthly archive'
+      access:
+        type: perm
+        options:
+          perm: 'access content'
+      cache:
+        type: tag
+        options: {  }
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Apply
+          reset_button: false
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+      pager:
+        type: mini
+        options:
+          items_per_page: 10
+          offset: 0
+          id: 0
+          total_pages: 0
+          expose:
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 25, 50'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
+          tags:
+            previous: ‹‹
+            next: ››
+      sorts:
+        created:
+          id: created
+          table: node_field_data
+          field: created
+          order: DESC
+          plugin_id: date
+          relationship: none
+          group_type: group
+          admin_label: ''
+          exposed: false
+          expose:
+            label: ''
+          granularity: second
+          entity_type: node
+          entity_field: created
+      arguments:
+        created_year_month:
+          id: created_year_month
+          table: node_field_data
+          field: created_year_month
+          default_action: summary
+          exception:
+            title_enable: true
+          title_enable: true
+          title: '{{ arguments.created_year_month }}'
+          default_argument_type: fixed
+          summary:
+            sort_order: desc
+            format: default_summary
+          summary_options:
+            override: true
+            items_per_page: 30
+          specify_validation: true
+          plugin_id: date_year_month
+          entity_type: node
+      filters:
+        status:
+          id: status
+          table: node_field_data
+          field: status
+          value: '1'
+          group: 0
+          expose:
+            operator: '0'
+          plugin_id: boolean
+          entity_type: node
+          entity_field: status
+        langcode:
+          id: langcode
+          table: node_field_data
+          field: langcode
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: in
+          value:
+            '***LANGUAGE_language_content***': '***LANGUAGE_language_content***'
+          group: 1
+          exposed: false
+          expose:
+            operator_id: ''
+            label: ''
+            description: ''
+            use_operator: false
+            operator: ''
+            identifier: ''
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+            reduce: false
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          plugin_id: language
+          entity_type: node
+          entity_field: langcode
+      style:
+        type: default
+        options:
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          uses_fields: false
+      row:
+        type: 'entity:node'
+        options:
+          view_mode: teaser
+      header: {  }
+      footer: {  }
+      empty: {  }
+      relationships: {  }
+      fields: {  }
+      display_extenders: {  }
+    cache_metadata:
+      contexts:
+        - 'languages:language_interface'
+        - url
+        - url.query_args
+        - 'user.node_grants:view'
+        - user.permissions
+      max-age: -1
+      tags: {  }
+  block_1:
+    id: block_1
+    display_title: Block
+    display_plugin: block
+    position: 1
+    display_options:
+      query:
+        type: views_query
+        options: {  }
+      defaults:
+        arguments: false
+      arguments:
+        created_year_month:
+          id: created_year_month
+          table: node_field_data
+          field: created_year_month
+          default_action: summary
+          exception:
+            title_enable: true
+          title_enable: true
+          title: '{{ arguments.created_year_month }}'
+          default_argument_type: fixed
+          summary:
+            format: default_summary
+          summary_options:
+            items_per_page: 30
+          specify_validation: true
+          plugin_id: date_year_month
+          entity_type: node
+      display_extenders: {  }
+    cache_metadata:
+      contexts:
+        - 'languages:language_interface'
+        - url
+        - url.query_args
+        - 'user.node_grants:view'
+        - user.permissions
+      max-age: -1
+      tags: {  }
+  page_1:
+    id: page_1
+    display_title: Page
+    display_plugin: page
+    position: 2
+    display_options:
+      query:
+        type: views_query
+        options: {  }
+      path: archive
+      display_extenders: {  }
+    cache_metadata:
+      contexts:
+        - 'languages:language_interface'
+        - url
+        - url.query_args
+        - 'user.node_grants:view'
+        - user.permissions
+      max-age: -1
+      tags: {  }
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      views.view.block_content.yml                                                                        000664  000106  000024  00000032514 13054310141 016644  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 18318b94-33af-4a28-ae6b-da83ab9bc328
+langcode: en
+status: true
+dependencies:
+  module:
+    - block_content
+    - user
+_core:
+  default_config_hash: tp4wP6wVrEPZfApiCfkpoCxUzN-B1ceGcGv5sEzQ2Sg
+id: block_content
+label: 'Custom block library'
+module: views
+description: 'Find and manage custom blocks.'
+tag: default
+base_table: block_content_field_data
+base_field: id
+core: 8.x
+display:
+  default:
+    display_plugin: default
+    id: default
+    display_title: Master
+    position: 0
+    display_options:
+      access:
+        type: perm
+        options:
+          perm: 'administer blocks'
+      cache:
+        type: tag
+        options: {  }
+      query:
+        type: views_query
+        options:
+          disable_sql_rewrite: false
+          distinct: false
+          replica: false
+          query_comment: ''
+          query_tags: {  }
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Apply
+          reset_button: false
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+      pager:
+        type: mini
+        options:
+          items_per_page: 50
+          offset: 0
+          id: 0
+          total_pages: null
+          tags:
+            previous: '‹ Previous'
+            next: 'Next ›'
+          expose:
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 25, 50'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
+      style:
+        type: table
+        options:
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          override: true
+          sticky: false
+          caption: ''
+          summary: ''
+          description: ''
+          columns:
+            info: info
+            type: type
+            changed: changed
+            operations: operations
+          info:
+            info:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            type:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            changed:
+              sortable: true
+              default_sort_order: desc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            operations:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+          default: changed
+          empty_table: true
+      row:
+        type: fields
+      fields:
+        info:
+          id: info
+          table: block_content_field_data
+          field: info
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: 'Block description'
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          click_sort_column: value
+          type: string
+          settings:
+            link_to_entity: true
+          group_column: value
+          group_columns: {  }
+          group_rows: true
+          delta_limit: 0
+          delta_offset: 0
+          delta_reversed: false
+          delta_first_last: false
+          multi_type: separator
+          separator: ', '
+          field_api_classes: false
+          entity_type: null
+          entity_field: info
+          plugin_id: field
+        type:
+          id: type
+          table: block_content_field_data
+          field: type
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: 'Block type'
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          click_sort_column: target_id
+          type: entity_reference_label
+          settings:
+            link: false
+          group_column: target_id
+          group_columns: {  }
+          group_rows: true
+          delta_limit: 0
+          delta_offset: 0
+          delta_reversed: false
+          delta_first_last: false
+          multi_type: separator
+          separator: ', '
+          field_api_classes: false
+          entity_type: block_content
+          entity_field: type
+          plugin_id: field
+        changed:
+          id: changed
+          table: block_content_field_data
+          field: changed
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Updated
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          entity_type: block_content
+          entity_field: changed
+          type: timestamp
+          settings:
+            date_format: short
+            custom_date_format: ''
+            timezone: ''
+          plugin_id: field
+        operations:
+          id: operations
+          table: block_content
+          field: operations
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Operations
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          destination: true
+          entity_type: block_content
+          plugin_id: entity_operations
+      filters:
+        info:
+          id: info
+          table: block_content_field_data
+          field: info
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: contains
+          value: ''
+          group: 1
+          exposed: true
+          expose:
+            operator_id: info_op
+            label: 'Block description'
+            description: ''
+            use_operator: false
+            operator: info_op
+            identifier: info
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          entity_type: block_content
+          entity_field: info
+          plugin_id: string
+        type:
+          id: type
+          table: block_content
+          field: type
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: in
+          value: {  }
+          group: 1
+          exposed: true
+          expose:
+            operator_id: type_op
+            label: 'Block type'
+            description: ''
+            use_operator: false
+            operator: type_op
+            identifier: type
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+            reduce: false
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          entity_type: block_content
+          entity_field: type
+          plugin_id: bundle
+      sorts: {  }
+      title: 'Custom block library'
+      header: {  }
+      footer: {  }
+      empty:
+        area_text_custom:
+          id: area_text_custom
+          table: views
+          field: area_text_custom
+          relationship: none
+          group_type: group
+          admin_label: ''
+          empty: true
+          tokenize: false
+          content: 'There are no custom blocks available. '
+          plugin_id: text_custom
+        block_content_listing_empty:
+          admin_label: ''
+          empty: true
+          field: block_content_listing_empty
+          group_type: group
+          id: block_content_listing_empty
+          label: ''
+          relationship: none
+          table: block_content
+          plugin_id: block_content_listing_empty
+          entity_type: block_content
+      relationships: {  }
+      arguments: {  }
+      display_extenders: {  }
+    cache_metadata:
+      contexts:
+        - 'languages:language_content'
+        - 'languages:language_interface'
+        - url
+        - url.query_args
+        - user.permissions
+      max-age: 0
+      tags: {  }
+  page_1:
+    display_plugin: page
+    id: page_1
+    display_title: Page
+    position: 1
+    display_options:
+      display_extenders: {  }
+      path: admin/structure/block/block-content
+      menu:
+        type: tab
+        title: 'Custom block library'
+        description: ''
+        parent: block.admin_display
+        weight: 0
+        context: '0'
+        menu_name: admin
+    cache_metadata:
+      contexts:
+        - 'languages:language_content'
+        - 'languages:language_interface'
+        - url
+        - url.query_args
+        - user.permissions
+      max-age: 0
+      tags: {  }
+                                                                                                                                                                                    views.view.comments_recent.yml                                                                      000664  000106  000024  00000015155 13054310141 017207  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 9ae55696-a1d5-4b22-b4dc-db3354b7f977
+langcode: en
+status: true
+dependencies:
+  module:
+    - comment
+    - node
+    - user
+_core:
+  default_config_hash: jmfZ73IDUpneecqVXUK3whGzTcvwLBBll9U3ZTCzndo
+id: comments_recent
+label: 'Recent comments'
+module: views
+description: 'Recent comments.'
+tag: default
+base_table: comment_field_data
+base_field: cid
+core: 8.x
+display:
+  default:
+    display_plugin: default
+    id: default
+    display_title: Master
+    position: 0
+    display_options:
+      access:
+        type: perm
+        options:
+          perm: 'access comments'
+      cache:
+        type: tag
+      query:
+        type: views_query
+      exposed_form:
+        type: basic
+      pager:
+        type: some
+        options:
+          items_per_page: 10
+          offset: 0
+      style:
+        type: html_list
+        options:
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          type: ul
+          wrapper_class: item-list
+          class: ''
+      row:
+        type: fields
+        options:
+          default_field_elements: true
+          inline:
+            subject: subject
+            changed: changed
+          separator: ' '
+          hide_empty: false
+      relationships:
+        node:
+          field: node
+          id: node
+          table: comment_field_data
+          required: true
+          plugin_id: standard
+      fields:
+        subject:
+          id: subject
+          table: comment_field_data
+          field: subject
+          relationship: none
+          type: string
+          settings:
+            link_to_entity: true
+          plugin_id: field
+          group_type: group
+          admin_label: ''
+          label: ''
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: false
+            ellipsis: false
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: false
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          entity_type: comment
+          entity_field: subject
+        changed:
+          id: changed
+          table: comment_field_data
+          field: changed
+          relationship: none
+          plugin_id: field
+          group_type: group
+          admin_label: ''
+          label: ''
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: false
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          type: timestamp_ago
+          settings:
+            future_format: '@interval hence'
+            past_format: '@interval ago'
+            granularity: 2
+          entity_type: comment
+          entity_field: changed
+      filters:
+        status:
+          value: '1'
+          table: comment_field_data
+          field: status
+          id: status
+          plugin_id: boolean
+          expose:
+            operator: ''
+          group: 1
+          entity_type: comment
+          entity_field: status
+        status_node:
+          value: '1'
+          table: node_field_data
+          field: status
+          relationship: node
+          id: status_node
+          plugin_id: boolean
+          expose:
+            operator: ''
+          group: 1
+          entity_type: node
+          entity_field: status
+      sorts:
+        created:
+          id: created
+          table: comment_field_data
+          field: created
+          relationship: none
+          group_type: group
+          admin_label: ''
+          order: DESC
+          exposed: false
+          expose:
+            label: ''
+          plugin_id: date
+          entity_type: comment
+          entity_field: created
+        cid:
+          id: cid
+          table: comment_field_data
+          field: cid
+          relationship: none
+          group_type: group
+          admin_label: ''
+          order: DESC
+          exposed: false
+          plugin_id: field
+          entity_type: comment
+          entity_field: cid
+      title: 'Recent comments'
+      empty:
+        area_text_custom:
+          id: area_text_custom
+          table: views
+          field: area_text_custom
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: ''
+          empty: true
+          content: 'No comments available.'
+          tokenize: false
+          plugin_id: text_custom
+      display_extenders: {  }
+    cache_metadata:
+      contexts:
+        - 'languages:language_content'
+        - 'languages:language_interface'
+        - user.permissions
+      max-age: -1
+      tags: {  }
+  block_1:
+    display_plugin: block
+    id: block_1
+    display_title: Block
+    position: 1
+    display_options:
+      block_description: 'Recent comments'
+      block_category: 'Lists (Views)'
+      allow:
+        items_per_page: true
+      display_extenders: {  }
+    cache_metadata:
+      contexts:
+        - 'languages:language_content'
+        - 'languages:language_interface'
+        - user.permissions
+      max-age: -1
+      tags: {  }
+                                                                                                                                                                                                                                                                                                                                                                                                                   views.view.content.yml                                                                              000664  000106  000024  00000037574 13054310141 015505  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: f35696c4-cec1-433d-b58f-52ee49349b31
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+    - user
+_core:
+  default_config_hash: YIwhIF9MSP1E_HMam6MrYeti_UqMXQiLDMjDsPFKK8s
+id: content
+label: Content
+module: node
+description: 'Find and manage content.'
+tag: default
+base_table: node_field_data
+base_field: nid
+core: 8.x
+display:
+  default:
+    display_options:
+      access:
+        type: perm
+        options:
+          perm: 'access content overview'
+      cache:
+        type: tag
+      query:
+        type: views_query
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Filter
+          reset_button: true
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+      pager:
+        type: full
+        options:
+          items_per_page: 50
+          tags:
+            previous: '‹ Previous'
+            next: 'Next ›'
+            first: '« First'
+            last: 'Last »'
+      style:
+        type: table
+        options:
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          override: true
+          sticky: true
+          caption: ''
+          summary: ''
+          description: ''
+          columns:
+            node_bulk_form: node_bulk_form
+            title: title
+            type: type
+            name: name
+            status: status
+            changed: changed
+            edit_node: edit_node
+            delete_node: delete_node
+            dropbutton: dropbutton
+            timestamp: title
+          info:
+            node_bulk_form:
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            title:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            type:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            name:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-low
+            status:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            changed:
+              sortable: true
+              default_sort_order: desc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-low
+            edit_node:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            delete_node:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            dropbutton:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            timestamp:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+          default: changed
+          empty_table: true
+      row:
+        type: fields
+      fields:
+        node_bulk_form:
+          id: node_bulk_form
+          table: node
+          field: node_bulk_form
+          label: ''
+          exclude: false
+          alter:
+            alter_text: false
+          element_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          plugin_id: node_bulk_form
+          entity_type: node
+        title:
+          id: title
+          table: node_field_data
+          field: title
+          label: Title
+          exclude: false
+          alter:
+            alter_text: false
+          element_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          entity_type: node
+          entity_field: title
+          type: string
+          settings:
+            link_to_entity: true
+          plugin_id: field
+        type:
+          id: type
+          table: node_field_data
+          field: type
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: 'Content type'
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          click_sort_column: target_id
+          type: entity_reference_label
+          settings:
+            link: false
+          group_column: target_id
+          group_columns: {  }
+          group_rows: true
+          delta_limit: 0
+          delta_offset: 0
+          delta_reversed: false
+          delta_first_last: false
+          multi_type: separator
+          separator: ', '
+          field_api_classes: false
+          entity_type: node
+          entity_field: type
+          plugin_id: field
+        name:
+          id: name
+          table: users_field_data
+          field: name
+          relationship: uid
+          label: Author
+          exclude: false
+          alter:
+            alter_text: false
+          element_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          plugin_id: field
+          type: user_name
+          entity_type: user
+          entity_field: name
+        status:
+          id: status
+          table: node_field_data
+          field: status
+          label: Status
+          exclude: false
+          alter:
+            alter_text: false
+          element_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          type: boolean
+          settings:
+            format: custom
+            format_custom_true: Published
+            format_custom_false: Unpublished
+          plugin_id: field
+          entity_type: node
+          entity_field: status
+        changed:
+          id: changed
+          table: node_field_data
+          field: changed
+          label: Updated
+          exclude: false
+          alter:
+            alter_text: false
+          element_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          type: timestamp
+          settings:
+            date_format: short
+            custom_date_format: ''
+            timezone: ''
+          plugin_id: field
+          entity_type: node
+          entity_field: changed
+        operations:
+          id: operations
+          table: node
+          field: operations
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Operations
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          destination: true
+          plugin_id: entity_operations
+      filters:
+        status_extra:
+          id: status_extra
+          table: node_field_data
+          field: status_extra
+          operator: '='
+          value: false
+          plugin_id: node_status
+          group: 1
+          entity_type: node
+        status:
+          id: status
+          table: node_field_data
+          field: status
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: '='
+          value: '1'
+          group: 1
+          exposed: true
+          expose:
+            operator_id: ''
+            label: Status
+            description: ''
+            use_operator: false
+            operator: status_op
+            identifier: status
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+          is_grouped: true
+          group_info:
+            label: 'Published status'
+            description: ''
+            identifier: status
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items:
+              1:
+                title: Published
+                operator: '='
+                value: '1'
+              2:
+                title: Unpublished
+                operator: '='
+                value: '0'
+          plugin_id: boolean
+          entity_type: node
+          entity_field: status
+        type:
+          id: type
+          table: node_field_data
+          field: type
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: in
+          value: {  }
+          group: 1
+          exposed: true
+          expose:
+            operator_id: type_op
+            label: 'Content type'
+            description: ''
+            use_operator: false
+            operator: type_op
+            identifier: type
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+            reduce: false
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          plugin_id: bundle
+          entity_type: node
+          entity_field: type
+        title:
+          id: title
+          table: node_field_data
+          field: title
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: contains
+          value: ''
+          group: 1
+          exposed: true
+          expose:
+            operator_id: title_op
+            label: Title
+            description: ''
+            use_operator: false
+            operator: title_op
+            identifier: title
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          plugin_id: string
+          entity_type: node
+          entity_field: title
+        langcode:
+          id: langcode
+          table: node_field_data
+          field: langcode
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: in
+          value: {  }
+          group: 1
+          exposed: true
+          expose:
+            operator_id: langcode_op
+            label: Language
+            description: ''
+            use_operator: false
+            operator: langcode_op
+            identifier: langcode
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+            reduce: false
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          plugin_id: language
+          entity_type: node
+          entity_field: langcode
+      sorts: {  }
+      title: Content
+      empty:
+        area_text_custom:
+          id: area_text_custom
+          table: views
+          field: area_text_custom
+          empty: true
+          content: 'No content available.'
+          plugin_id: text_custom
+      arguments: {  }
+      relationships:
+        uid:
+          id: uid
+          table: node_field_data
+          field: uid
+          admin_label: author
+          required: true
+          plugin_id: standard
+      show_admin_links: false
+      filter_groups:
+        operator: AND
+        groups:
+          1: AND
+      display_extenders: {  }
+    display_plugin: default
+    display_title: Master
+    id: default
+    position: 0
+    cache_metadata:
+      contexts:
+        - 'languages:language_content'
+        - 'languages:language_interface'
+        - url
+        - url.query_args
+        - user
+        - 'user.node_grants:view'
+        - user.permissions
+      max-age: 0
+      tags: {  }
+  page_1:
+    display_options:
+      path: admin/content/node
+      menu:
+        type: 'default tab'
+        title: Content
+        description: ''
+        menu_name: admin
+        weight: -10
+        context: ''
+      tab_options:
+        type: normal
+        title: Content
+        description: 'Find and manage content'
+        menu_name: admin
+        weight: -10
+      display_extenders: {  }
+    display_plugin: page
+    display_title: Page
+    id: page_1
+    position: 1
+    cache_metadata:
+      contexts:
+        - 'languages:language_content'
+        - 'languages:language_interface'
+        - url
+        - url.query_args
+        - user
+        - 'user.node_grants:view'
+        - user.permissions
+      max-age: 0
+      tags: {  }
+                                                                                                                                    views.view.content_recent.yml                                                                       000664  000106  000024  00000020147 13054310141 017031  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 9fe33c6c-3612-4085-aee9-06bcc529cc0b
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+    - user
+_core:
+  default_config_hash: tDcmzGfShE0XJbfwJzyA6lJTUYC6X4iVu887dgoFfDg
+id: content_recent
+label: 'Recent content'
+module: node
+description: 'Recent content.'
+tag: default
+base_table: node_field_data
+base_field: nid
+core: 8.x
+display:
+  default:
+    display_plugin: default
+    id: default
+    display_title: Master
+    position: 0
+    display_options:
+      access:
+        type: perm
+        options:
+          perm: 'access content'
+      cache:
+        type: tag
+        options: {  }
+      query:
+        type: views_query
+        options:
+          disable_sql_rewrite: false
+          distinct: false
+          replica: false
+          query_comment: ''
+          query_tags: {  }
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Apply
+          reset_button: false
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+      pager:
+        type: some
+        options:
+          items_per_page: 10
+          offset: 0
+      style:
+        type: html_list
+        options:
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          type: ul
+          wrapper_class: item-list
+          class: ''
+      row:
+        type: fields
+      fields:
+        title:
+          id: title
+          table: node_field_data
+          field: title
+          entity_type: node
+          entity_field: title
+          label: ''
+          exclude: false
+          alter:
+            alter_text: false
+            make_link: false
+            absolute: false
+            trim: false
+            word_boundary: false
+            ellipsis: false
+            strip_tags: false
+            html: false
+          hide_empty: false
+          empty_zero: false
+          relationship: none
+          group_type: group
+          admin_label: ''
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: false
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_alter_empty: true
+          type: string
+          settings:
+            link_to_entity: true
+          plugin_id: field
+        changed:
+          id: changed
+          table: node_field_data
+          field: changed
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: ''
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: false
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          click_sort_column: value
+          type: timestamp_ago
+          settings: {  }
+          group_column: value
+          group_columns: {  }
+          group_rows: true
+          delta_limit: 0
+          delta_offset: 0
+          delta_reversed: false
+          delta_first_last: false
+          multi_type: separator
+          separator: ', '
+          field_api_classes: false
+          entity_type: node
+          entity_field: changed
+          plugin_id: field
+      filters:
+        status_extra:
+          id: status_extra
+          table: node_field_data
+          field: status_extra
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: '='
+          value: false
+          group: 1
+          exposed: false
+          expose:
+            operator_id: ''
+            label: ''
+            description: ''
+            use_operator: false
+            operator: ''
+            identifier: ''
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          entity_type: node
+          plugin_id: node_status
+        langcode:
+          id: langcode
+          table: node_field_data
+          field: langcode
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: in
+          value:
+            '***LANGUAGE_language_content***': '***LANGUAGE_language_content***'
+          group: 1
+          exposed: false
+          expose:
+            operator_id: ''
+            label: ''
+            description: ''
+            use_operator: false
+            operator: ''
+            identifier: ''
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+            reduce: false
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          entity_type: node
+          entity_field: langcode
+          plugin_id: language
+      sorts:
+        changed:
+          id: changed
+          table: node_field_data
+          field: changed
+          relationship: none
+          group_type: group
+          admin_label: ''
+          order: DESC
+          exposed: false
+          expose:
+            label: ''
+          granularity: second
+          entity_type: node
+          entity_field: changed
+          plugin_id: date
+      title: 'Recent content'
+      header: {  }
+      footer: {  }
+      empty:
+        area_text_custom:
+          id: area_text_custom
+          table: views
+          field: area_text_custom
+          relationship: none
+          group_type: group
+          admin_label: ''
+          empty: true
+          tokenize: false
+          content: 'No content available.'
+          plugin_id: text_custom
+      relationships:
+        uid:
+          id: uid
+          table: node_field_data
+          field: uid
+          relationship: none
+          group_type: group
+          admin_label: author
+          required: true
+          entity_type: node
+          entity_field: uid
+          plugin_id: standard
+      arguments: {  }
+      display_extenders: {  }
+      use_more: false
+      use_more_always: false
+      use_more_text: More
+      link_url: ''
+      link_display: '0'
+    cache_metadata:
+      contexts:
+        - 'languages:language_content'
+        - 'languages:language_interface'
+        - user
+        - 'user.node_grants:view'
+        - user.permissions
+      max-age: -1
+      tags: {  }
+  block_1:
+    display_plugin: block
+    id: block_1
+    display_title: Block
+    position: 1
+    display_options:
+      display_extenders: {  }
+    cache_metadata:
+      contexts:
+        - 'languages:language_content'
+        - 'languages:language_interface'
+        - user
+        - 'user.node_grants:view'
+        - user.permissions
+      max-age: -1
+      tags: {  }
+                                                                                                                                                                                                                                                                                                                                                                                                                         views.view.files.yml                                                                                000664  000106  000024  00000073505 13054310141 015127  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: ccbc8c02-8979-4e28-8fde-70dcae0d66e4
+langcode: en
+status: true
+dependencies:
+  module:
+    - file
+    - user
+_core:
+  default_config_hash: rRWxAX-IQkJ5viACQRovRkC784EyCl9493GU_G23n2Q
+id: files
+label: Files
+module: file
+description: 'Find and manage files.'
+tag: default
+base_table: file_managed
+base_field: fid
+core: 8.x
+display:
+  default:
+    display_plugin: default
+    id: default
+    display_title: Master
+    position: 0
+    display_options:
+      access:
+        type: perm
+        options:
+          perm: 'access files overview'
+      cache:
+        type: tag
+        options: {  }
+      query:
+        type: views_query
+        options:
+          disable_sql_rewrite: false
+          distinct: false
+          replica: false
+          query_comment: ''
+          query_tags: {  }
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Filter
+          reset_button: false
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+      pager:
+        type: mini
+        options:
+          items_per_page: 50
+          offset: 0
+          id: 0
+          total_pages: 0
+          tags:
+            previous: '‹ Previous'
+            next: 'Next ›'
+          expose:
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 25, 50'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
+      style:
+        type: table
+        options:
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          override: true
+          sticky: false
+          caption: ''
+          summary: ''
+          description: ''
+          columns:
+            fid: fid
+            filename: filename
+            filemime: filemime
+            filesize: filesize
+            status: status
+            created: created
+            changed: changed
+            count: count
+          info:
+            fid:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            filename:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            filemime:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-medium
+            filesize:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-low
+            status:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-low
+            created:
+              sortable: true
+              default_sort_order: desc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            changed:
+              sortable: true
+              default_sort_order: desc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            count:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-medium
+          default: changed
+          empty_table: true
+      row:
+        type: fields
+      fields:
+        fid:
+          id: fid
+          table: file_managed
+          field: fid
+          alter:
+            alter_text: false
+            make_link: false
+            absolute: false
+            trim: false
+            word_boundary: false
+            ellipsis: false
+            strip_tags: false
+            html: false
+          hide_empty: false
+          empty_zero: false
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Fid
+          exclude: true
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_alter_empty: true
+          plugin_id: field
+          entity_type: file
+          entity_field: fid
+        filename:
+          id: filename
+          table: file_managed
+          field: filename
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Name
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: false
+            ellipsis: false
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          click_sort_column: value
+          type: file_link
+          group_column: value
+          group_columns: {  }
+          group_rows: true
+          delta_limit: 0
+          delta_offset: 0
+          delta_reversed: false
+          delta_first_last: false
+          multi_type: separator
+          separator: ', '
+          field_api_classes: false
+          plugin_id: field
+          entity_type: file
+          entity_field: filename
+        filemime:
+          id: filemime
+          table: file_managed
+          field: filemime
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: 'MIME type'
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          type: file_filemime
+          plugin_id: field
+          entity_type: file
+          entity_field: filemime
+        filesize:
+          id: filesize
+          table: file_managed
+          field: filesize
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Size
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          type: file_size
+          plugin_id: field
+          entity_type: file
+          entity_field: filesize
+        status:
+          id: status
+          table: file_managed
+          field: status
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Status
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          type: boolean
+          settings:
+            format: custom
+            format_custom_false: Temporary
+            format_custom_true: Permanent
+          plugin_id: field
+          entity_type: file
+          entity_field: status
+        created:
+          id: created
+          table: file_managed
+          field: created
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: 'Upload date'
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          type: timestamp
+          settings:
+            date_format: medium
+            custom_date_format: ''
+            timezone: ''
+          plugin_id: field
+          entity_type: file
+          entity_field: created
+        changed:
+          id: changed
+          table: file_managed
+          field: changed
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: 'Changed date'
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          type: timestamp
+          settings:
+            date_format: medium
+            custom_date_format: ''
+            timezone: ''
+          plugin_id: field
+          entity_type: file
+          entity_field: changed
+        count:
+          id: count
+          table: file_usage
+          field: count
+          relationship: fid
+          group_type: sum
+          admin_label: ''
+          label: 'Used in'
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: true
+            path: 'admin/content/files/usage/{{ fid }}'
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          set_precision: false
+          precision: 0
+          decimal: .
+          separator: ','
+          format_plural: true
+          format_plural_string: "1 place\x03@count places"
+          prefix: ''
+          suffix: ''
+          plugin_id: numeric
+      filters:
+        filename:
+          id: filename
+          table: file_managed
+          field: filename
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: word
+          value: ''
+          group: 1
+          exposed: true
+          expose:
+            operator_id: filemime_op
+            label: Filename
+            description: ''
+            use_operator: false
+            operator: filename_op
+            identifier: filename
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          plugin_id: string
+          entity_type: file
+          entity_field: filename
+        filemime:
+          id: filemime
+          table: file_managed
+          field: filemime
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: word
+          value: ''
+          group: 1
+          exposed: true
+          expose:
+            operator_id: filemime_op
+            label: 'MIME type'
+            description: ''
+            use_operator: false
+            operator: filemime_op
+            identifier: filemime
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          plugin_id: string
+          entity_type: file
+          entity_field: filemime
+        status:
+          id: status
+          table: file_managed
+          field: status
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: in
+          value: {  }
+          group: 1
+          exposed: true
+          expose:
+            operator_id: status_op
+            label: Status
+            description: ''
+            use_operator: false
+            operator: status_op
+            identifier: status
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+            reduce: false
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          plugin_id: file_status
+          entity_type: file
+          entity_field: status
+      sorts: {  }
+      title: Files
+      header: {  }
+      footer: {  }
+      empty:
+        area_text_custom:
+          id: area_text_custom
+          table: views
+          field: area_text_custom
+          empty: true
+          content: 'No files available.'
+          plugin_id: text_custom
+      relationships:
+        fid:
+          id: fid
+          table: file_managed
+          field: fid
+          relationship: none
+          group_type: group
+          admin_label: 'File usage'
+          required: true
+      arguments: {  }
+      group_by: true
+      show_admin_links: true
+      display_extenders: {  }
+    cache_metadata:
+      contexts:
+        - 'languages:language_content'
+        - 'languages:language_interface'
+        - url
+        - url.query_args
+        - user.permissions
+      max-age: 0
+      tags: {  }
+  page_1:
+    display_plugin: page
+    id: page_1
+    display_title: 'Files overview'
+    position: 1
+    display_options:
+      path: admin/content/files
+      menu:
+        type: tab
+        title: Files
+        description: ''
+        menu_name: admin
+        weight: 0
+        context: ''
+      display_description: ''
+      defaults:
+        pager: true
+        relationships: false
+      relationships:
+        fid:
+          id: fid
+          table: file_managed
+          field: fid
+          relationship: none
+          group_type: group
+          admin_label: 'File usage'
+          required: false
+      display_extenders: {  }
+    cache_metadata:
+      contexts:
+        - 'languages:language_content'
+        - 'languages:language_interface'
+        - url
+        - url.query_args
+        - user.permissions
+      max-age: 0
+      tags: {  }
+  page_2:
+    display_plugin: page
+    id: page_2
+    display_title: 'File usage'
+    position: 2
+    display_options:
+      display_description: ''
+      path: admin/content/files/usage/%
+      empty: {  }
+      defaults:
+        empty: false
+        pager: false
+        filters: false
+        filter_groups: false
+        fields: false
+        group_by: false
+        title: false
+        arguments: false
+        style: false
+        row: false
+        relationships: false
+      pager:
+        type: mini
+        options:
+          items_per_page: 10
+          offset: 0
+          id: 0
+          total_pages: 0
+          tags:
+            previous: '‹ Previous'
+            next: 'Next ›'
+          expose:
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 25, 50'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
+      filters: {  }
+      filter_groups:
+        operator: AND
+        groups: {  }
+      fields:
+        entity_label:
+          id: entity_label
+          table: file_usage
+          field: entity_label
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Entity
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          link_to_entity: true
+          plugin_id: entity_label
+        type:
+          id: type
+          table: file_usage
+          field: type
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: 'Entity type'
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          plugin_id: standard
+        module:
+          id: module
+          table: file_usage
+          field: module
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: 'Registering module'
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          plugin_id: standard
+        count:
+          id: count
+          table: file_usage
+          field: count
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: 'Use count'
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          set_precision: false
+          precision: 0
+          decimal: .
+          separator: ','
+          format_plural: false
+          format_plural_string: "1\x03@count"
+          prefix: ''
+          suffix: ''
+          plugin_id: numeric
+      group_by: false
+      title: 'File usage'
+      arguments:
+        fid:
+          id: fid
+          table: file_managed
+          field: fid
+          relationship: none
+          group_type: group
+          admin_label: ''
+          default_action: 'not found'
+          exception:
+            value: all
+            title_enable: false
+            title: All
+          title_enable: true
+          title: 'File usage information for {{ arguments.fid }}'
+          default_argument_type: fixed
+          default_argument_options:
+            argument: ''
+          default_argument_skip_url: false
+          summary_options:
+            base_path: ''
+            count: true
+            items_per_page: 25
+            override: false
+          summary:
+            sort_order: asc
+            number_of_records: 0
+            format: default_summary
+          specify_validation: false
+          validate:
+            type: none
+            fail: 'not found'
+          validate_options: {  }
+          break_phrase: false
+          not: false
+          plugin_id: file_fid
+          entity_type: file
+          entity_field: fid
+      style:
+        type: table
+        options:
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          override: true
+          sticky: false
+          caption: ''
+          summary: ''
+          description: ''
+          columns:
+            entity_label: entity_label
+            type: type
+            module: module
+            count: count
+          info:
+            entity_label:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            type:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-medium
+            module:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-low
+            count:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+          default: entity_label
+          empty_table: true
+      row:
+        type: fields
+        options: {  }
+      relationships:
+        fid:
+          id: fid
+          table: file_managed
+          field: fid
+          relationship: none
+          group_type: group
+          admin_label: 'File usage'
+          required: true
+      display_extenders: {  }
+    cache_metadata:
+      contexts:
+        - 'languages:language_interface'
+        - url
+        - url.query_args
+        - user.permissions
+      max-age: 0
+      tags: {  }
+                                                                                                                                                                                           views.view.frontpage.yml                                                                            000664  000106  000024  00000016776 13054310141 016021  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 3b9f825d-a0f9-4e04-952c-7f81fab03ea0
+langcode: en
+status: true
+dependencies:
+  config:
+    - core.entity_view_mode.node.rss
+    - core.entity_view_mode.node.teaser
+  module:
+    - node
+    - user
+_core:
+  default_config_hash: rwRoOr3DiobxwoWSmtUcna1LQz5_HxHvS7H5dl7_-Uo
+id: frontpage
+label: Frontpage
+module: node
+description: 'All content promoted to the front page.'
+tag: default
+base_table: node_field_data
+base_field: nid
+core: 8.x
+display:
+  default:
+    display_options:
+      access:
+        type: perm
+        options:
+          perm: 'access content'
+      cache:
+        type: tag
+        options: {  }
+      empty:
+        area_text_custom:
+          admin_label: ''
+          content: 'No front page content has been created yet.'
+          empty: true
+          field: area_text_custom
+          group_type: group
+          id: area_text_custom
+          label: ''
+          relationship: none
+          table: views
+          tokenize: false
+          plugin_id: text_custom
+        node_listing_empty:
+          admin_label: ''
+          empty: true
+          field: node_listing_empty
+          group_type: group
+          id: node_listing_empty
+          label: ''
+          relationship: none
+          table: node
+          plugin_id: node_listing_empty
+          entity_type: node
+        title:
+          id: title
+          table: views
+          field: title
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: ''
+          empty: true
+          title: 'Welcome to [site:name]'
+          plugin_id: title
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Apply
+          reset_button: false
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+      filters:
+        promote:
+          admin_label: ''
+          expose:
+            description: ''
+            identifier: ''
+            label: ''
+            multiple: false
+            operator: ''
+            operator_id: ''
+            remember: false
+            remember_roles:
+              authenticated: authenticated
+            required: false
+            use_operator: false
+          exposed: false
+          field: promote
+          group: 1
+          group_info:
+            default_group: All
+            default_group_multiple: {  }
+            description: ''
+            group_items: {  }
+            identifier: ''
+            label: ''
+            multiple: false
+            optional: true
+            remember: false
+            widget: select
+          group_type: group
+          id: promote
+          is_grouped: false
+          operator: '='
+          relationship: none
+          table: node_field_data
+          value: '1'
+          plugin_id: boolean
+          entity_type: node
+          entity_field: promote
+        status:
+          expose:
+            operator: ''
+          field: status
+          group: 1
+          id: status
+          table: node_field_data
+          value: '1'
+          plugin_id: boolean
+          entity_type: node
+          entity_field: status
+        langcode:
+          id: langcode
+          table: node_field_data
+          field: langcode
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: in
+          value:
+            '***LANGUAGE_language_content***': '***LANGUAGE_language_content***'
+          group: 1
+          exposed: false
+          expose:
+            operator_id: ''
+            label: ''
+            description: ''
+            use_operator: false
+            operator: ''
+            identifier: ''
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+            reduce: false
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          plugin_id: language
+          entity_type: node
+          entity_field: langcode
+      pager:
+        type: full
+        options:
+          items_per_page: 10
+          offset: 0
+          id: 0
+          total_pages: 0
+          expose:
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 25, 50'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
+          tags:
+            previous: '‹ Previous'
+            next: 'Next ›'
+            first: '« First'
+            last: 'Last »'
+          quantity: 9
+      query:
+        type: views_query
+        options:
+          disable_sql_rewrite: false
+          distinct: false
+          replica: false
+          query_comment: ''
+          query_tags: {  }
+      row:
+        type: 'entity:node'
+        options:
+          view_mode: teaser
+      sorts:
+        sticky:
+          admin_label: ''
+          expose:
+            label: ''
+          exposed: false
+          field: sticky
+          group_type: group
+          id: sticky
+          order: DESC
+          relationship: none
+          table: node_field_data
+          plugin_id: boolean
+          entity_type: node
+          entity_field: sticky
+        created:
+          field: created
+          id: created
+          order: DESC
+          table: node_field_data
+          plugin_id: date
+          relationship: none
+          group_type: group
+          admin_label: ''
+          exposed: false
+          expose:
+            label: ''
+          granularity: second
+          entity_type: node
+          entity_field: created
+      style:
+        type: default
+        options:
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          uses_fields: false
+      title: ''
+      header: {  }
+      footer: {  }
+      relationships: {  }
+      fields: {  }
+      arguments: {  }
+      display_extenders: {  }
+    display_plugin: default
+    display_title: Master
+    id: default
+    position: 0
+    cache_metadata:
+      contexts:
+        - 'languages:language_interface'
+        - url.query_args
+        - 'user.node_grants:view'
+        - user.permissions
+      max-age: -1
+      tags: {  }
+  feed_1:
+    display_plugin: feed
+    id: feed_1
+    display_title: Feed
+    position: 2
+    display_options:
+      sitename_title: true
+      path: rss.xml
+      displays:
+        page_1: page_1
+        default: ''
+      pager:
+        type: some
+        options:
+          items_per_page: 10
+          offset: 0
+      style:
+        type: rss
+        options:
+          description: ''
+          grouping: {  }
+          uses_fields: false
+      row:
+        type: node_rss
+        options:
+          relationship: none
+          view_mode: rss
+      display_extenders: {  }
+    cache_metadata:
+      contexts:
+        - 'languages:language_interface'
+        - 'user.node_grants:view'
+        - user.permissions
+      max-age: -1
+      tags: {  }
+  page_1:
+    display_options:
+      path: node
+      display_extenders: {  }
+    display_plugin: page
+    display_title: Page
+    id: page_1
+    position: 1
+    cache_metadata:
+      contexts:
+        - 'languages:language_interface'
+        - url.query_args
+        - 'user.node_grants:view'
+        - user.permissions
+      max-age: -1
+      tags: {  }
+  views.view.glossary.yml                                                                             000664  000106  000024  00000027165 13054310141 015671  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 4208f195-cf6e-4182-af0e-4b47a329b405
+langcode: en
+status: false
+dependencies:
+  config:
+    - system.menu.main
+  module:
+    - node
+    - user
+_core:
+  default_config_hash: '-pCFOVfbt__jaohFffTLnVavh4OBC6CjREAnchiRomQ'
+id: glossary
+label: Glossary
+module: node
+description: 'All content, by letter.'
+tag: default
+base_table: node_field_data
+base_field: nid
+core: '8'
+display:
+  default:
+    id: default
+    display_title: Master
+    display_plugin: default
+    position: 0
+    display_options:
+      query:
+        type: views_query
+        options:
+          query_comment: ''
+          disable_sql_rewrite: false
+          distinct: false
+          replica: false
+          query_tags: {  }
+      use_ajax: true
+      access:
+        type: perm
+        options:
+          perm: 'access content'
+      cache:
+        type: tag
+        options: {  }
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Apply
+          reset_button: false
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+      pager:
+        type: mini
+        options:
+          items_per_page: 36
+          offset: 0
+          id: 0
+          total_pages: 0
+          expose:
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 25, 50'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
+          tags:
+            previous: ‹‹
+            next: ››
+      fields:
+        title:
+          id: title
+          table: node_field_data
+          field: title
+          plugin_id: field
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Title
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          entity_type: node
+          entity_field: title
+        name:
+          id: name
+          table: users_field_data
+          field: name
+          label: Author
+          relationship: uid
+          plugin_id: field
+          type: user_name
+          group_type: group
+          admin_label: ''
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          entity_type: user
+          entity_field: name
+        changed:
+          id: changed
+          table: node_field_data
+          field: changed
+          label: 'Last update'
+          type: timestamp
+          settings:
+            date_format: long
+            custom_date_format: ''
+            timezone: ''
+          plugin_id: field
+          relationship: none
+          group_type: group
+          admin_label: ''
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          entity_type: node
+          entity_field: changed
+      arguments:
+        title:
+          id: title
+          table: node_field_data
+          field: title
+          default_action: default
+          exception:
+            title_enable: true
+          default_argument_type: fixed
+          default_argument_options:
+            argument: a
+          summary:
+            format: default_summary
+          specify_validation: true
+          glossary: true
+          limit: 1
+          case: upper
+          path_case: lower
+          transform_dash: false
+          plugin_id: string
+          relationship: none
+          group_type: group
+          admin_label: ''
+          title_enable: false
+          title: ''
+          default_argument_skip_url: false
+          summary_options: {  }
+          validate:
+            type: none
+            fail: 'not found'
+          validate_options: {  }
+          break_phrase: false
+          entity_type: node
+          entity_field: title
+      relationships:
+        uid:
+          id: uid
+          table: node_field_data
+          field: uid
+          plugin_id: standard
+          relationship: none
+          group_type: group
+          admin_label: author
+          required: false
+      style:
+        type: table
+        options:
+          columns:
+            title: title
+            name: name
+            changed: changed
+          default: title
+          info:
+            title:
+              sortable: true
+              separator: ''
+            name:
+              sortable: true
+              separator: ''
+            changed:
+              sortable: true
+              separator: ''
+          override: true
+          sticky: false
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          uses_fields: false
+          order: asc
+          summary: ''
+          empty_table: false
+      row:
+        type: fields
+        options:
+          inline: {  }
+          separator: ''
+          hide_empty: false
+          default_field_elements: true
+      header: {  }
+      footer: {  }
+      empty: {  }
+      sorts: {  }
+      filters:
+        langcode:
+          id: langcode
+          table: node_field_data
+          field: langcode
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: in
+          value:
+            '***LANGUAGE_language_content***': '***LANGUAGE_language_content***'
+          group: 1
+          exposed: false
+          expose:
+            operator_id: ''
+            label: ''
+            description: ''
+            use_operator: false
+            operator: ''
+            identifier: ''
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+            reduce: false
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          plugin_id: language
+          entity_type: node
+          entity_field: langcode
+      display_extenders: {  }
+    cache_metadata:
+      contexts:
+        - 'languages:language_content'
+        - 'languages:language_interface'
+        - url
+        - url.query_args
+        - 'user.node_grants:view'
+        - user.permissions
+      max-age: 0
+      tags: {  }
+  attachment_1:
+    id: attachment_1
+    display_title: Attachment
+    display_plugin: attachment
+    position: 2
+    display_options:
+      query:
+        type: views_query
+        options: {  }
+      pager:
+        type: none
+        options:
+          offset: 0
+          items_per_page: 0
+      defaults:
+        arguments: false
+      arguments:
+        title:
+          id: title
+          table: node_field_data
+          field: title
+          default_action: summary
+          exception:
+            title_enable: true
+          default_argument_type: fixed
+          default_argument_options:
+            argument: a
+          summary:
+            format: unformatted_summary
+          summary_options:
+            items_per_page: 25
+            inline: true
+            separator: ' | '
+          specify_validation: true
+          glossary: true
+          limit: 1
+          case: upper
+          path_case: lower
+          transform_dash: false
+          plugin_id: string
+          relationship: none
+          group_type: group
+          admin_label: ''
+          title_enable: false
+          title: ''
+          default_argument_skip_url: false
+          validate:
+            type: none
+            fail: 'not found'
+          validate_options: {  }
+          break_phrase: false
+          entity_type: node
+          entity_field: title
+      displays:
+        default: default
+        page_1: page_1
+      inherit_arguments: false
+      display_extenders: {  }
+    cache_metadata:
+      contexts:
+        - 'languages:language_content'
+        - 'languages:language_interface'
+        - url
+        - url.query_args
+        - 'user.node_grants:view'
+        - user.permissions
+      max-age: 0
+      tags: {  }
+  page_1:
+    id: page_1
+    display_title: Page
+    display_plugin: page
+    position: 1
+    display_options:
+      query:
+        type: views_query
+        options: {  }
+      path: glossary
+      menu:
+        type: normal
+        title: Glossary
+        weight: 0
+        menu_name: main
+        parent: ''
+      display_extenders: {  }
+    cache_metadata:
+      contexts:
+        - 'languages:language_content'
+        - 'languages:language_interface'
+        - url
+        - url.query_args
+        - 'user.node_grants:view'
+        - user.permissions
+      max-age: 0
+      tags: {  }
+                                                                                                                                                                                                                                                                                                                                                                                                           views.view.taxonomy_term.yml                                                                        000664  000106  000024  00000017413 13054310141 016726  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 9d4af671-4473-4153-b245-f60dc2026260
+langcode: en
+status: true
+dependencies:
+  config:
+    - core.entity_view_mode.node.teaser
+  module:
+    - node
+    - taxonomy
+    - user
+_core:
+  default_config_hash: YY-QIsPmXCITvYjAnlCzaqASCB1Telev3U0IKOztZkc
+id: taxonomy_term
+label: 'Taxonomy term'
+module: taxonomy
+description: 'Content belonging to a certain taxonomy term.'
+tag: default
+base_table: node_field_data
+base_field: nid
+core: '8'
+display:
+  default:
+    id: default
+    display_title: Master
+    display_plugin: default
+    position: 0
+    display_options:
+      query:
+        type: views_query
+        options:
+          query_comment: ''
+          disable_sql_rewrite: false
+          distinct: false
+          replica: false
+          query_tags: {  }
+      access:
+        type: perm
+        options:
+          perm: 'access content'
+      cache:
+        type: tag
+        options: {  }
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Apply
+          reset_button: false
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+      pager:
+        type: mini
+        options:
+          items_per_page: 10
+          offset: 0
+          id: 0
+          total_pages: 0
+          expose:
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 25, 50'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
+          tags:
+            previous: ‹‹
+            next: ››
+      sorts:
+        sticky:
+          id: sticky
+          table: taxonomy_index
+          field: sticky
+          order: DESC
+          plugin_id: standard
+          relationship: none
+          group_type: group
+          admin_label: ''
+          exposed: false
+          expose:
+            label: ''
+        created:
+          id: created
+          table: taxonomy_index
+          field: created
+          order: DESC
+          plugin_id: date
+          relationship: none
+          group_type: group
+          admin_label: ''
+          exposed: false
+          expose:
+            label: ''
+          granularity: second
+      arguments:
+        tid:
+          id: tid
+          table: taxonomy_index
+          field: tid
+          relationship: none
+          group_type: group
+          admin_label: ''
+          default_action: 'not found'
+          exception:
+            value: ''
+            title_enable: false
+            title: All
+          title_enable: true
+          title: '{{ arguments.tid }}'
+          default_argument_type: fixed
+          default_argument_options:
+            argument: ''
+          default_argument_skip_url: false
+          summary_options:
+            base_path: ''
+            count: true
+            items_per_page: 25
+            override: false
+          summary:
+            sort_order: asc
+            number_of_records: 0
+            format: default_summary
+          specify_validation: true
+          validate:
+            type: 'entity:taxonomy_term'
+            fail: 'not found'
+          validate_options:
+            access: true
+            operation: view
+            multiple: 0
+            bundles: {  }
+          break_phrase: false
+          add_table: false
+          require_value: false
+          reduce_duplicates: false
+          plugin_id: taxonomy_index_tid
+      filters:
+        langcode:
+          id: langcode
+          table: node_field_data
+          field: langcode
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: in
+          value:
+            '***LANGUAGE_language_content***': '***LANGUAGE_language_content***'
+          group: 1
+          exposed: false
+          expose:
+            operator_id: ''
+            label: ''
+            description: ''
+            use_operator: false
+            operator: ''
+            identifier: ''
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+            reduce: false
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          plugin_id: language
+          entity_type: node
+          entity_field: langcode
+        status:
+          id: status
+          table: taxonomy_index
+          field: status
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: '='
+          value: '1'
+          group: 1
+          exposed: false
+          expose:
+            operator_id: ''
+            label: ''
+            description: ''
+            use_operator: false
+            operator: ''
+            identifier: ''
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          plugin_id: boolean
+      style:
+        type: default
+        options:
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          uses_fields: false
+      row:
+        type: 'entity:node'
+        options:
+          view_mode: teaser
+      header:
+        entity_taxonomy_term:
+          id: entity_taxonomy_term
+          table: views
+          field: entity_taxonomy_term
+          relationship: none
+          group_type: group
+          admin_label: ''
+          empty: true
+          tokenize: true
+          target: '{{ raw_arguments.tid }}'
+          view_mode: full
+          bypass_access: false
+          plugin_id: entity
+      footer: {  }
+      empty: {  }
+      relationships: {  }
+      fields: {  }
+      display_extenders: {  }
+      link_url: ''
+      link_display: page_1
+    cache_metadata:
+      contexts:
+        - 'languages:language_interface'
+        - url
+        - url.query_args
+        - 'user.node_grants:view'
+        - user.permissions
+      max-age: -1
+      tags: {  }
+  feed_1:
+    id: feed_1
+    display_title: Feed
+    display_plugin: feed
+    position: 2
+    display_options:
+      query:
+        type: views_query
+        options: {  }
+      pager:
+        type: some
+        options:
+          items_per_page: 10
+          offset: 0
+      path: taxonomy/term/%/feed
+      displays:
+        page_1: page_1
+        default: '0'
+      style:
+        type: rss
+        options:
+          description: ''
+          grouping: {  }
+          uses_fields: false
+      row:
+        type: node_rss
+        options:
+          relationship: none
+          view_mode: default
+      display_extenders: {  }
+    cache_metadata:
+      contexts:
+        - 'languages:language_interface'
+        - url
+        - 'user.node_grants:view'
+        - user.permissions
+      max-age: -1
+      tags: {  }
+  page_1:
+    id: page_1
+    display_title: Page
+    display_plugin: page
+    position: 1
+    display_options:
+      query:
+        type: views_query
+        options: {  }
+      path: taxonomy/term/%
+      display_extenders: {  }
+    cache_metadata:
+      contexts:
+        - 'languages:language_interface'
+        - url
+        - url.query_args
+        - 'user.node_grants:view'
+        - user.permissions
+      max-age: -1
+      tags: {  }
+                                                                                                                                                                                                                                                     views.view.user_admin_people.yml                                                                    000664  000106  000024  00000060757 13054310141 017524  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 6c24e1ac-143b-45e8-a2fd-56d1aad264dc
+langcode: en
+status: true
+dependencies:
+  module:
+    - user
+_core:
+  default_config_hash: queuLjhKGUQ_b-lNh_TkhCvOPrVunfJopvVGOf3cjAo
+id: user_admin_people
+label: People
+module: user
+description: 'Find and manage people interacting with your site.'
+tag: default
+base_table: users_field_data
+base_field: uid
+core: 8.x
+display:
+  default:
+    display_plugin: default
+    id: default
+    display_title: Master
+    position: 0
+    display_options:
+      access:
+        type: perm
+        options:
+          perm: 'administer users'
+      cache:
+        type: tag
+      query:
+        type: views_query
+        options:
+          disable_sql_rewrite: false
+          distinct: false
+          replica: false
+          query_comment: ''
+          query_tags: {  }
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Filter
+          reset_button: true
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+      pager:
+        type: full
+        options:
+          items_per_page: 50
+          offset: 0
+          id: 0
+          total_pages: 0
+          tags:
+            previous: '‹ Previous'
+            next: 'Next ›'
+            first: '« First'
+            last: 'Last »'
+          expose:
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 25, 50'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
+          quantity: 9
+      style:
+        type: table
+        options:
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          override: true
+          sticky: false
+          summary: ''
+          columns:
+            user_bulk_form: user_bulk_form
+            name: name
+            status: status
+            rid: rid
+            created: created
+            access: access
+            edit_node: edit_node
+            dropbutton: dropbutton
+          info:
+            user_bulk_form:
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            name:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            status:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-low
+            rid:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-low
+            created:
+              sortable: true
+              default_sort_order: desc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-low
+            access:
+              sortable: true
+              default_sort_order: desc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-low
+            edit_node:
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-low
+            dropbutton:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+          default: created
+          empty_table: true
+      row:
+        type: fields
+      fields:
+        user_bulk_form:
+          id: user_bulk_form
+          table: users
+          field: user_bulk_form
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: 'Bulk update'
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          plugin_id: user_bulk_form
+          entity_type: user
+        name:
+          id: name
+          table: users_field_data
+          field: name
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Username
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          plugin_id: field
+          type: user_name
+          entity_type: user
+          entity_field: name
+        status:
+          id: status
+          table: users_field_data
+          field: status
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Status
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          plugin_id: field
+          type: boolean
+          settings:
+            format: custom
+            format_custom_true: Active
+            format_custom_false: Blocked
+          entity_type: user
+          entity_field: status
+        roles_target_id:
+          id: roles_target_id
+          table: user__roles
+          field: roles_target_id
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Roles
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          type: ul
+          separator: ', '
+          plugin_id: user_roles
+        created:
+          id: created
+          table: users_field_data
+          field: created
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: 'Member for'
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          type: timestamp_ago
+          settings:
+            future_format: '@interval'
+            past_format: '@interval'
+            granularity: 2
+          plugin_id: field
+          entity_type: user
+          entity_field: created
+        access:
+          id: access
+          table: users_field_data
+          field: access
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: 'Last access'
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          type: timestamp_ago
+          settings:
+            future_format: '@interval hence'
+            past_format: '@interval ago'
+            granularity: 2
+          plugin_id: field
+          entity_type: user
+          entity_field: access
+        operations:
+          id: operations
+          table: users
+          field: operations
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Operations
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          destination: true
+          entity_type: user
+          plugin_id: entity_operations
+        mail:
+          id: mail
+          table: users_field_data
+          field: mail
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: ''
+          exclude: true
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: false
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          click_sort_column: value
+          type: basic_string
+          settings: {  }
+          group_column: value
+          group_columns: {  }
+          group_rows: true
+          delta_limit: 0
+          delta_offset: 0
+          delta_reversed: false
+          delta_first_last: false
+          multi_type: separator
+          separator: ', '
+          field_api_classes: false
+          plugin_id: field
+          entity_type: user
+          entity_field: mail
+      filters:
+        combine:
+          id: combine
+          table: views
+          field: combine
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: contains
+          value: ''
+          group: 1
+          exposed: true
+          expose:
+            operator_id: combine_op
+            label: 'Name or email contains'
+            description: ''
+            use_operator: false
+            operator: combine_op
+            identifier: user
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          fields:
+            name: name
+            mail: mail
+          plugin_id: combine
+        roles_target_id:
+          id: roles_target_id
+          table: user__roles
+          field: roles_target_id
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: or
+          value: {  }
+          group: 1
+          exposed: true
+          expose:
+            operator_id: roles_target_id_op
+            label: Role
+            description: ''
+            use_operator: false
+            operator: roles_target_id_op
+            identifier: role
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+            reduce: false
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          reduce_duplicates: false
+          plugin_id: user_roles
+        permission:
+          id: permission
+          table: user__roles
+          field: permission
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: or
+          value: {  }
+          group: 1
+          exposed: true
+          expose:
+            operator_id: permission_op
+            label: Permission
+            description: ''
+            use_operator: false
+            operator: permission_op
+            identifier: permission
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+            reduce: false
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          reduce_duplicates: false
+          plugin_id: user_permissions
+        status:
+          id: status
+          table: users_field_data
+          field: status
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: '='
+          value: '1'
+          group: 1
+          exposed: true
+          expose:
+            operator_id: ''
+            label: ''
+            description: ''
+            use_operator: false
+            operator: status_op
+            identifier: status
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+          is_grouped: true
+          group_info:
+            label: Status
+            description: ''
+            identifier: status
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items:
+              1:
+                title: Active
+                operator: '='
+                value: '1'
+              2:
+                title: Blocked
+                operator: '='
+                value: '0'
+          plugin_id: boolean
+          entity_type: user
+          entity_field: status
+        default_langcode:
+          id: default_langcode
+          table: users_field_data
+          field: default_langcode
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: '='
+          value: '1'
+          group: 1
+          exposed: false
+          expose:
+            operator_id: ''
+            label: ''
+            description: ''
+            use_operator: false
+            operator: ''
+            identifier: ''
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          entity_type: user
+          entity_field: default_langcode
+          plugin_id: boolean
+        uid_raw:
+          id: uid_raw
+          table: users_field_data
+          field: uid_raw
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: '!='
+          value:
+            min: ''
+            max: ''
+            value: '0'
+          group: 1
+          exposed: false
+          expose:
+            operator_id: '0'
+            label: ''
+            description: ''
+            use_operator: false
+            operator: ''
+            identifier: ''
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          plugin_id: numeric
+          entity_type: user
+      sorts:
+        created:
+          id: created
+          table: users_field_data
+          field: created
+          relationship: none
+          group_type: group
+          admin_label: ''
+          order: DESC
+          exposed: false
+          expose:
+            label: ''
+          granularity: second
+          plugin_id: date
+          entity_type: user
+          entity_field: created
+      title: People
+      empty:
+        area_text_custom:
+          id: area_text_custom
+          table: views
+          field: area_text_custom
+          relationship: none
+          group_type: group
+          admin_label: ''
+          empty: true
+          tokenize: false
+          content: 'No people available.'
+          plugin_id: text_custom
+      use_more: false
+      use_more_always: false
+      use_more_text: more
+      display_comment: ''
+      use_ajax: false
+      hide_attachment_summary: false
+      show_admin_links: true
+      group_by: false
+      link_url: ''
+      link_display: page_1
+      css_class: ''
+      filter_groups:
+        operator: AND
+        groups:
+          1: AND
+      display_extenders: {  }
+    cache_metadata:
+      contexts:
+        - 'languages:language_content'
+        - 'languages:language_interface'
+        - url
+        - url.query_args
+        - user.permissions
+      max-age: 0
+      tags: {  }
+  page_1:
+    display_plugin: page
+    id: page_1
+    display_title: Page
+    position: 1
+    display_options:
+      path: admin/people/list
+      show_admin_links: false
+      menu:
+        type: 'default tab'
+        title: List
+        description: 'Find and manage people interacting with your site.'
+        menu_name: admin
+        weight: -10
+        context: ''
+      tab_options:
+        type: normal
+        title: People
+        description: 'Manage user accounts, roles, and permissions.'
+        menu_name: admin
+        weight: 0
+      defaults:
+        show_admin_links: false
+      display_extenders: {  }
+    cache_metadata:
+      contexts:
+        - 'languages:language_content'
+        - 'languages:language_interface'
+        - url
+        - url.query_args
+        - user.permissions
+      max-age: 0
+      tags: {  }
+                 views.view.who_s_new.yml                                                                            000664  000106  000024  00000011326 13054310141 016006  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 22a01d29-ab0d-4e8e-a2a3-7fff44573885
+langcode: en
+status: true
+dependencies:
+  module:
+    - user
+_core:
+  default_config_hash: B2M6BoNVm-hHVnH2ILCpbhCZV71T6zLNs8Ag5QH-oNE
+id: who_s_new
+label: 'Who''s new'
+module: user
+description: 'Shows a list of the newest user accounts on the site.'
+tag: default
+base_table: users_field_data
+base_field: uid
+core: 8.x
+display:
+  default:
+    display_plugin: default
+    id: default
+    display_title: Master
+    position: 0
+    display_options:
+      access:
+        type: perm
+        options:
+          perm: 'access content'
+      cache:
+        type: tag
+        options: {  }
+      query:
+        type: views_query
+        options:
+          disable_sql_rewrite: false
+          distinct: false
+          replica: false
+          query_comment: ''
+          query_tags: {  }
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Apply
+          reset_button: false
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+      pager:
+        type: some
+        options:
+          items_per_page: 5
+          offset: 0
+      style:
+        type: html_list
+      row:
+        type: fields
+      fields:
+        name:
+          id: name
+          table: users_field_data
+          field: name
+          label: ''
+          plugin_id: field
+          type: user_name
+          alter:
+            alter_text: false
+            make_link: false
+            absolute: false
+            trim: false
+            word_boundary: false
+            ellipsis: false
+            strip_tags: false
+            html: false
+          hide_empty: false
+          empty_zero: false
+          relationship: none
+          group_type: group
+          admin_label: ''
+          exclude: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_alter_empty: true
+          entity_type: user
+          entity_field: name
+      filters:
+        status:
+          value: '1'
+          table: users_field_data
+          field: status
+          id: status
+          expose:
+            operator: '0'
+          group: 1
+          plugin_id: boolean
+          entity_type: user
+          entity_field: status
+        access:
+          id: access
+          table: users_field_data
+          field: access
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: '>'
+          value:
+            min: ''
+            max: ''
+            value: '1970-01-01'
+            type: date
+          group: 1
+          exposed: false
+          expose:
+            operator_id: '0'
+            label: ''
+            description: ''
+            use_operator: false
+            operator: ''
+            identifier: ''
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          plugin_id: date
+          entity_type: user
+          entity_field: access
+      sorts:
+        created:
+          id: created
+          table: users_field_data
+          field: created
+          relationship: none
+          group_type: group
+          admin_label: ''
+          order: DESC
+          exposed: false
+          expose:
+            label: ''
+          granularity: second
+          plugin_id: date
+          entity_type: user
+          entity_field: created
+      title: 'Who''s new'
+      header: {  }
+      footer: {  }
+      empty: {  }
+      relationships: {  }
+      arguments: {  }
+      display_extenders: {  }
+    cache_metadata:
+      contexts:
+        - 'languages:language_content'
+        - 'languages:language_interface'
+        - user.permissions
+      max-age: -1
+      tags: {  }
+  block_1:
+    display_plugin: block
+    id: block_1
+    display_title: 'Who''s new'
+    position: 1
+    display_options:
+      display_description: 'A list of new users'
+      block_description: 'Who''s new'
+      block_category: User
+      display_extenders: {  }
+    cache_metadata:
+      contexts:
+        - 'languages:language_content'
+        - 'languages:language_interface'
+        - user.permissions
+      max-age: -1
+      tags: {  }
+                                                                                                                                                                                                                                                                                                          views.view.who_s_online.yml                                                                         000664  000106  000024  00000013341 13054310141 016500  0                                                                                                    ustar 00_www                            staff                           000000  000000                                                                                                                                                                         uuid: 9f255e95-e39b-4058-b342-768f040ba3ac
+langcode: en
+status: true
+dependencies:
+  module:
+    - user
+_core:
+  default_config_hash: DWLCIpl8ku4NbiI9t3GgDeuW13KSOy2l1zho7ReP_Bg
+id: who_s_online
+label: 'Who''s online block'
+module: user
+description: 'Shows the user names of the most recently active users, and the total number of active users.'
+tag: default
+base_table: users_field_data
+base_field: uid
+core: 8.x
+display:
+  default:
+    display_plugin: default
+    id: default
+    display_title: Master
+    position: 0
+    display_options:
+      access:
+        type: perm
+        options:
+          perm: 'access user profiles'
+      cache:
+        type: tag
+        options: {  }
+      query:
+        type: views_query
+        options:
+          disable_sql_rewrite: false
+          distinct: false
+          replica: false
+          query_comment: ''
+          query_tags: {  }
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Apply
+          reset_button: false
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+      pager:
+        type: some
+        options:
+          items_per_page: 10
+          offset: 0
+      style:
+        type: html_list
+        options:
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          type: ul
+          wrapper_class: item-list
+          class: ''
+      row:
+        type: fields
+      fields:
+        name:
+          id: name
+          table: users_field_data
+          field: name
+          label: ''
+          plugin_id: field
+          type: user_name
+          alter:
+            alter_text: false
+            make_link: false
+            absolute: false
+            trim: false
+            word_boundary: false
+            ellipsis: false
+            strip_tags: false
+            html: false
+          hide_empty: false
+          empty_zero: false
+          relationship: none
+          group_type: group
+          admin_label: ''
+          exclude: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_alter_empty: true
+          entity_type: user
+          entity_field: name
+      filters:
+        status:
+          value: '1'
+          table: users_field_data
+          field: status
+          id: status
+          expose:
+            operator: '0'
+          group: 1
+          plugin_id: boolean
+          entity_type: user
+          entity_field: status
+        access:
+          id: access
+          table: users_field_data
+          field: access
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: '>='
+          value:
+            min: ''
+            max: ''
+            value: '-15 minutes'
+            type: offset
+          group: 1
+          exposed: false
+          expose:
+            operator_id: access_op
+            label: 'Last access'
+            description: 'A user is considered online for this long after they have last viewed a page.'
+            use_operator: false
+            operator: access_op
+            identifier: access
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          plugin_id: date
+          entity_type: user
+          entity_field: access
+      sorts:
+        access:
+          id: access
+          table: users_field_data
+          field: access
+          order: DESC
+          relationship: none
+          group_type: group
+          admin_label: ''
+          exposed: false
+          expose:
+            label: ''
+          granularity: second
+          plugin_id: date
+          entity_type: user
+          entity_field: access
+      title: 'Who''s online'
+      header:
+        result:
+          id: result
+          table: views
+          field: result
+          relationship: none
+          group_type: group
+          admin_label: ''
+          empty: false
+          content: 'There are currently @total users online.'
+          plugin_id: result
+      footer: {  }
+      empty:
+        area_text_custom:
+          id: area_text_custom
+          table: views
+          field: area_text_custom
+          relationship: none
+          group_type: group
+          admin_label: ''
+          empty: true
+          tokenize: false
+          content: 'There are currently 0 users online.'
+          plugin_id: text_custom
+      relationships: {  }
+      arguments: {  }
+      display_extenders: {  }
+    cache_metadata:
+      contexts:
+        - 'languages:language_content'
+        - 'languages:language_interface'
+        - user.permissions
+      max-age: -1
+      tags: {  }
+  who_s_online_block:
+    display_plugin: block
+    id: who_s_online_block
+    display_title: 'Who''s online'
+    position: 1
+    display_options:
+      block_description: 'Who''s online'
+      display_description: 'A list of users that are currently logged in.'
+      display_extenders: {  }
+    cache_metadata:
+      contexts:
+        - 'languages:language_content'
+        - 'languages:language_interface'
+        - user.permissions
+      max-age: -1
+      tags: {  }
+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
\ No newline at end of file
diff --git a/core/modules/system/src/Tests/Installer/UninstalledProfileModulesTest.php b/core/modules/system/src/Tests/Installer/UninstalledProfileModulesTest.php
new file mode 100644
index 0000000..8b818d7
--- /dev/null
+++ b/core/modules/system/src/Tests/Installer/UninstalledProfileModulesTest.php
@@ -0,0 +1,37 @@
+<?php
+
+namespace Drupal\system\Tests\Installer;
+
+/**
+ * Tests config installer when module dependencies of a profile are uninstalled.
+ *
+ * Profile dependencies are not true dependencies. After the Standard profile
+ * has been installed it is possible to uninstall the Contact module even though
+ * it is listed in the dependencies. Install profiles are special.
+ *
+ * @group ConfigInstaller
+ */
+class UninstalledProfileModulesTest extends ConfigInstallerTestBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function getTarball() {
+    // Exported configuration after a minimal profile install.
+    return $this->versionTarball('standard-without-config.tar.gz');
+  }
+
+  /**
+   * Runs tests after install.
+   */
+  public function testInstaller() {
+    $this->assertResponse(200);
+    // Ensure that all modules, profile and themes have been installed and have
+    // expected weights.
+    $sync = \Drupal::service('config.storage.sync');
+    $sync_core_extension = $sync->read('core.extension');
+    $this->assertIdentical($sync_core_extension, \Drupal::config('core.extension')->get());
+    $this->assertFalse(\Drupal::moduleHandler()->moduleExists('contact'), 'Contact module is not installed.');
+  }
+
+}
diff --git a/core/tests/Drupal/KernelTests/Core/Config/Storage/StorageReplaceDataWrapperTest.php b/core/tests/Drupal/KernelTests/Core/Config/Storage/StorageReplaceDataWrapperTest.php
index 44ce495..fedd27f 100644
--- a/core/tests/Drupal/KernelTests/Core/Config/Storage/StorageReplaceDataWrapperTest.php
+++ b/core/tests/Drupal/KernelTests/Core/Config/Storage/StorageReplaceDataWrapperTest.php
@@ -2,7 +2,7 @@
 
 namespace Drupal\KernelTests\Core\Config\Storage;
 
-use Drupal\config\StorageReplaceDataWrapper;
+use Drupal\Core\Config\StorageReplaceDataWrapper;
 use Drupal\Core\Config\StorageInterface;
 
 /**
