@@ -230,21 +181,17 @@
diff --git a/app/views/layouts/_head_tags.html.erb b/app/views/layouts/_head_tags.html.erb
index 9eb52a35..91abfd86 100644
--- a/app/views/layouts/_head_tags.html.erb
+++ b/app/views/layouts/_head_tags.html.erb
@@ -1,5 +1,5 @@
- <%= content_for(:html_title) || (signed_in? ? 'Intébec Signature' : 'Intébec | Signature') %>
+ <%= content_for(:html_title) || (signed_in? ? wl.page_title(signed_in: true) : wl.page_title(signed_in: false)) %>
<%= render 'shared/meta' %>
diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb
index 5558e869..9f279c64 100644
--- a/app/views/layouts/application.html.erb
+++ b/app/views/layouts/application.html.erb
@@ -2,6 +2,9 @@
<%= render 'layouts/head_tags' %>
+
+
+
<% if Docuseal.enable_pwa? %>
<% end %>
diff --git a/app/views/layouts/form.html.erb b/app/views/layouts/form.html.erb
index 756f8f83..4fb31192 100644
--- a/app/views/layouts/form.html.erb
+++ b/app/views/layouts/form.html.erb
@@ -2,6 +2,9 @@
<%= render 'layouts/head_tags' %>
+
+
+
<%= csrf_meta_tags %>
<% if ENV['ROLLBAR_CLIENT_TOKEN'] %>
diff --git a/app/views/pwa/manifest.json.erb b/app/views/pwa/manifest.json.erb
index 68022061..542c308b 100644
--- a/app/views/pwa/manifest.json.erb
+++ b/app/views/pwa/manifest.json.erb
@@ -1,15 +1,15 @@
{
- "name": "<%= Docuseal.product_name %>",
- "short_name": "<%= Docuseal.product_name %>",
+ "name": "<%= Whitelabel.brand_name %>",
+ "short_name": "<%= Whitelabel.brand_short_name %>",
"id": "/",
"icons": [
{
- "src": "/favicon.svg",
+ "src": "<%= Whitelabel.favicon_svg %>",
"type": "image/svg+xml",
"sizes": "any"
},
{
- "src": "/apple-touch-icon.png",
+ "src": "<%= Whitelabel.apple_touch_icon %>",
"type": "image/png",
"sizes": "192x192"
}
@@ -18,8 +18,8 @@
"display": "standalone",
"scope": "/",
"orientation": "any",
- "description": "<%= Docuseal.product_name %> is an open source platform that provides secure and efficient digital document signing and processing.",
+ "description": "<%= Whitelabel.pwa_description %>",
"categories": ["productivity", "utilities"],
- "theme_color": "#FAF7F4",
- "background_color": "#FAF7F4"
+ "theme_color": "<%= Whitelabel.pwa_theme_color %>",
+ "background_color": "<%= Whitelabel.pwa_background_color %>"
}
diff --git a/app/views/shared/_email_attribution.html.erb b/app/views/shared/_email_attribution.html.erb
index 17cf6ac9..e6f9423a 100644
--- a/app/views/shared/_email_attribution.html.erb
+++ b/app/views/shared/_email_attribution.html.erb
@@ -5,5 +5,5 @@
---
- Envoyé avec Intébec — signature de documents sécurisée.
+ <%= Whitelabel.email_attribution_html.html_safe %>
diff --git a/app/views/shared/_github_button.html.erb b/app/views/shared/_github_button.html.erb
index 5bb4bdde..c7ac2858 100644
--- a/app/views/shared/_github_button.html.erb
+++ b/app/views/shared/_github_button.html.erb
@@ -1,10 +1,12 @@
-
-
-
-
-
- Star on GitHub
-
-
+<% if Whitelabel.show_github_button? && Whitelabel.github_url.present? %>
+
+
+
+
+
+ Star on GitHub
+
+
+<% end %>
diff --git a/app/views/shared/_logo.html.erb b/app/views/shared/_logo.html.erb
index 1f848620..d3b69a79 100644
--- a/app/views/shared/_logo.html.erb
+++ b/app/views/shared/_logo.html.erb
@@ -1 +1 @@
-

+

diff --git a/app/views/shared/_meta.html.erb b/app/views/shared/_meta.html.erb
index d9b7f33e..c6dfe70b 100644
--- a/app/views/shared/_meta.html.erb
+++ b/app/views/shared/_meta.html.erb
@@ -1,14 +1,14 @@
<% if Docuseal.demo? || (request.path != '/' && !devise_controller?) %>
<% end %>
-<% title = content_for(:html_title) || (signed_in? ? 'Intébec Signature' : 'Intébec | Signature') %>
-<% description = content_for(:html_description) || 'Outil de signature fait par Intébec. Permet de signer des documents facilement.' %>
+<% title = content_for(:html_title) || (signed_in? ? wl.page_title(signed_in: true) : wl.page_title(signed_in: false)) %>
+<% description = content_for(:html_description) || wl.description %>
-
+
<% if content_for(:disable_image_preview) %>
@@ -19,13 +19,15 @@
">
<% end %>
-
-
+<% if wl.twitter_handle.present? %>
+
+
+<% end %>
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/app/views/shared/_navbar.html.erb b/app/views/shared/_navbar.html.erb
index 6d66674c..c463ad68 100644
--- a/app/views/shared/_navbar.html.erb
+++ b/app/views/shared/_navbar.html.erb
@@ -11,7 +11,7 @@
<% if signed_in? %>
<% if Docuseal.demo? %>
-
+
<%= t('sign_up') %>
@@ -50,7 +50,7 @@
<% end %>
<% end %>
- <% if Docuseal.multitenant? || current_user.role == 'superadmin' %>
+ <% if Whitelabel.show_ai_link? && (Docuseal.multitenant? || current_user.role == 'superadmin') %>
<%= link_to Docuseal::CHATGPT_URL, target: 'blank', class: 'flex items-center' do %>
<%= svg_icon('sparkles', class: 'w-5 h-5 flex-shrink-0 stroke-2') %>
diff --git a/app/views/shared/_powered_by.html.erb b/app/views/shared/_powered_by.html.erb
index dd0ee3fd..b2ebd0bf 100644
--- a/app/views/shared/_powered_by.html.erb
+++ b/app/views/shared/_powered_by.html.erb
@@ -1,13 +1,15 @@
-
- <% if local_assigns[:with_counter] %>
- <% count = CompletedSubmitter.distinct.count(:submission_id) %>
- <% if count > 1 %>
- <%= t('count_documents_signed_with_html', count:) %>
+<% if Whitelabel.show_powered_by? %>
+
+ <% if local_assigns[:with_counter] %>
+ <% count = CompletedSubmitter.distinct.count(:submission_id) %>
+ <% if count > 1 %>
+ <%= t('count_documents_signed_with_html', count:) %>
+ <% else %>
+ <%= t('powered_by') %>
+ <% end %>
<% else %>
<%= t('powered_by') %>
<% end %>
- <% else %>
- <%= t('powered_by') %>
- <% end %>
-
<%= Docuseal.product_name %> - <%= t('open_source_documents_software') %>
-
+
<%= Whitelabel.powered_by_text %> - <%= t('open_source_documents_software') %>
+
+<% end %>
diff --git a/app/views/shared/_title.html.erb b/app/views/shared/_title.html.erb
index 0bc369f8..d6e3f755 100644
--- a/app/views/shared/_title.html.erb
+++ b/app/views/shared/_title.html.erb
@@ -1,2 +1,2 @@
<%= render 'shared/logo' %>
-Intébec
+<%= wl.brand_name %>
diff --git a/app/views/start_form/_docuseal_logo.html.erb b/app/views/start_form/_docuseal_logo.html.erb
index 735c607c..1c7d64e2 100644
--- a/app/views/start_form/_docuseal_logo.html.erb
+++ b/app/views/start_form/_docuseal_logo.html.erb
@@ -2,5 +2,5 @@
<%= render 'shared/logo', width: '50px', height: '50px' %>
- DocuSeal
+ <%= Whitelabel.brand_name %>
diff --git a/app/views/start_form/email_verification.html.erb b/app/views/start_form/email_verification.html.erb
index 70983e8d..bed5fcc2 100644
--- a/app/views/start_form/email_verification.html.erb
+++ b/app/views/start_form/email_verification.html.erb
@@ -1,4 +1,4 @@
-<% content_for(:html_title, "#{@template.name} | DocuSeal") %>
+<% content_for(:html_title, "#{@template.name} | #{Whitelabel.brand_name}") %>
<% I18n.with_locale(@template.account.locale) do %>
<% content_for(:html_description, t('account_name_has_invited_you_to_fill_and_sign_documents_online_effortlessly_with_a_secure_fast_and_user_friendly_digital_document_signing_solution', account_name: @template.account.name)) %>
<% end %>
diff --git a/app/views/start_form/private.html.erb b/app/views/start_form/private.html.erb
index 6b8104d6..cc2e3723 100644
--- a/app/views/start_form/private.html.erb
+++ b/app/views/start_form/private.html.erb
@@ -1,4 +1,4 @@
-<% content_for(:html_title, "#{@template.name} | DocuSeal") %>
+<% content_for(:html_title, "#{@template.name} | #{Whitelabel.brand_name}") %>
<% I18n.with_locale(@template.account.locale) do %>
<% content_for(:html_description, t('share_link_is_currently_disabled')) %>
<% end %>
diff --git a/app/views/start_form/show.html.erb b/app/views/start_form/show.html.erb
index 271b50c1..9258a033 100644
--- a/app/views/start_form/show.html.erb
+++ b/app/views/start_form/show.html.erb
@@ -1,4 +1,4 @@
-<% content_for(:html_title, "#{@template.name} | DocuSeal") %>
+<% content_for(:html_title, "#{@template.name} | #{Whitelabel.brand_name}") %>
<% I18n.with_locale(@template.account.locale) do %>
<% content_for(:html_description, t('account_name_has_invited_you_to_fill_and_sign_documents_online_effortlessly_with_a_secure_fast_and_user_friendly_digital_document_signing_solution', account_name: @template.account.name)) %>
<% end %>
diff --git a/app/views/submit_form/_docuseal_logo.html.erb b/app/views/submit_form/_docuseal_logo.html.erb
index 645f7fc5..a6eb7482 100644
--- a/app/views/submit_form/_docuseal_logo.html.erb
+++ b/app/views/submit_form/_docuseal_logo.html.erb
@@ -1,4 +1,4 @@
<%= render 'shared/logo', class: 'w-9 h-9 md:w-12 md:h-12' %>
- <%= Docuseal.product_name %>
+ <%= Whitelabel.brand_name %>
diff --git a/app/views/submit_form/email_2fa.html.erb b/app/views/submit_form/email_2fa.html.erb
index 74d2e52b..819f1314 100644
--- a/app/views/submit_form/email_2fa.html.erb
+++ b/app/views/submit_form/email_2fa.html.erb
@@ -1,4 +1,4 @@
-<% content_for(:html_title, "#{@submitter.submission.name || @submitter.submission.template.name} | DocuSeal") %>
+<% content_for(:html_title, "#{@submitter.submission.name || @submitter.submission.template.name} | #{Whitelabel.brand_name}") %>
<% I18n.with_locale(@submitter.account.locale) do %>
<% content_for(:html_description, t('account_name_has_invited_you_to_fill_and_sign_documents_online_effortlessly_with_a_secure_fast_and_user_friendly_digital_document_signing_solution', account_name: @submitter.account.name)) %>
<% end %>
diff --git a/app/views/submit_form/show.html.erb b/app/views/submit_form/show.html.erb
index e22629c2..7e0ff623 100644
--- a/app/views/submit_form/show.html.erb
+++ b/app/views/submit_form/show.html.erb
@@ -1,4 +1,4 @@
-<% content_for(:html_title, "#{@submitter.submission.name || @submitter.submission.template.name} | DocuSeal") %>
+<% content_for(:html_title, "#{@submitter.submission.name || @submitter.submission.template.name} | #{Whitelabel.brand_name}") %>
<% I18n.with_locale(@submitter.account.locale) do %>
<% content_for(:html_description, t('account_name_has_invited_you_to_fill_and_sign_documents_online_effortlessly_with_a_secure_fast_and_user_friendly_digital_document_signing_solution', account_name: @submitter.account.name)) %>
<% end %>
diff --git a/config/initializers/whitelabel.rb b/config/initializers/whitelabel.rb
new file mode 100644
index 00000000..3e9a6a7c
--- /dev/null
+++ b/config/initializers/whitelabel.rb
@@ -0,0 +1,59 @@
+# frozen_string_literal: true
+
+# =============================================================================
+# Whitelabel initializer
+# =============================================================================
+# Loads config/whitelabel.yml and patches the Docuseal module constants so that
+# every existing call to Docuseal.product_name, Docuseal::PRODUCT_URL, etc.
+# automatically returns the white-labelled value.
+#
+# This approach means we do NOT have to change every single call-site — the
+# existing code keeps working, but returns branded values.
+# =============================================================================
+
+require_relative '../../lib/whitelabel'
+
+# Ensure lib/docuseal.rb is fully loaded before we reopen and patch the module.
+# Without this, Zeitwerk sees `module Docuseal` below and marks the constant as
+# already defined, so it never loads lib/docuseal.rb — leaving multitenant? and
+# other module_function methods undefined during eager loading.
+require Rails.root.join('lib/docuseal')
+
+# Patch Docuseal module to delegate brand-related values to Whitelabel
+module Docuseal
+ # Override the product_name method to use Whitelabel config
+ def self.product_name
+ Whitelabel.brand_name
+ end
+
+ # Override constants that are used in views/mailers — we make them
+ # methods instead so they pick up the Whitelabel config dynamically.
+ # The constants still exist for backward compat but the methods take
+ # precedence when called as Docuseal.xxx.
+
+ def self.product_url
+ Whitelabel.website_url
+ end
+
+ def self.support_email_address
+ Whitelabel.support_email
+ end
+
+ def self.github_url_value
+ Whitelabel.github_url || ''
+ end
+
+ def self.twitter_url_value
+ Whitelabel.twitter_url || ''
+ end
+
+ def self.twitter_handle_value
+ Whitelabel.twitter_handle || ''
+ end
+
+ def self.discord_url_value
+ Whitelabel.discord_url || ''
+ end
+end
+
+Rails.logger.info "[Whitelabel] Loaded brand: #{Whitelabel.brand_name}"
diff --git a/config/locales/whitelabel.yml b/config/locales/whitelabel.yml
new file mode 100644
index 00000000..cd78397f
--- /dev/null
+++ b/config/locales/whitelabel.yml
@@ -0,0 +1,77 @@
+# =============================================================================
+# White-Label Locale Overrides
+# =============================================================================
+# This file overrides i18n keys that contain brand-specific text (DocuSeal).
+# Rails automatically merges locale files, so keys here take precedence.
+#
+# When upstream DocuSeal updates add new branded keys to i18n.yml,
+# add the override here — keeping the main file untouched for easy merging.
+#
+# Languages: English (en) + French (fr)
+# =============================================================================
+
+en:
+ docuseal_trusted_signature: "Intébec Trusted Signature"
+ sent_with_docuseal_pro_html: 'Sent with Intébec Pro'
+ show_send_with_docuseal_pro_attribution_in_emails_html: 'Show "Sent with Intébec Pro" attribution in emails'
+ sign_documents_with_trusted_certificate_provided_by_docu_seal_your_documents_and_data_are_never_shared_with_docu_seal_p_d_f_checksum_is_provided_to_generate_a_trusted_signature: "Sign documents with trusted certificate provided by Intébec. Your documents and data are never shared with Intébec. PDF checksum is provided to generate a trusted signature."
+ by_creating_an_account_you_agree_to_our_html: 'By creating an account, you agree to our Privacy Policy and Terms of Service.'
+ connect_salesforce_account_to_integrate_with_docuseal: "Connect Salesforce account to integrate with Intébec"
+ sign_up_in_docuseal_console_to_upgrade_on_premises_app_is_completely_standalone_console_is_used_only_to_manage_your_license: "Sign up in Intébec Console to upgrade. On-premises app is completely standalone, Console is used only to manage your license."
+ unlock_with_docuseal_pro: "Unlock with Intébec Pro"
+ activate_with_docuseal_pro: "Activate with Intébec Pro"
+ send_signature_request_emails_without_limits_with_docuseal_pro: "Send signature request emails without limits with Intébec Pro"
+ unlock_more_user_roles_with_docuseal_pro: "Unlock more user roles with Intébec Pro."
+ docuseal_support: "Intébec Support"
+ click_here_to_learn_more_about_user_roles_and_permissions_html: 'Click here to learn more about user roles and permissions.'
+ on_a_scale_of_1_to_10_how_satisfied_are_you_with_the_docuseal_product_: "On a scale of 1 to 10, how satisfied are you with the Intébec product?"
+ your_pro_plan_has_been_suspended_due_to_unpaid_invoices_you_can_update_your_payment_details_to_settle_the_invoice_and_continue_using_docuseal_or_cancel_your_subscription: "Your Pro Plan has been suspended due to unpaid invoices. You can update your payment details to settle the invoice and continue using Intébec or cancel your subscription."
+ this_submission_has_multiple_signers_which_prevents_the_use_of_a_sharing_link_html: 'This submission has multiple signers, which prevents the use of a sharing link as it''s unclear which signer is responsible for specific fields. To resolve this, follow this guide to define the default signer details.'
+ welcome_to_docuseal: "Welcome to Intébec"
+ your_email_could_not_be_reached_this_may_happen_if_there_was_a_typo_in_your_address_or_if_your_mailbox_is_not_available_please_contact_support_email_to_log_in: "Your email could not be reached. This may happen if there was a typo in your address or if your mailbox is not available. Please contact support@intebec.ca to log in."
+ add_a_unique_signature_id_and_timestamp_to_each_signature_for_audit_and_traceability_purposes_along_with_the_timestamp_part_of_docuseals_21_cfr_part_11_compliance_settings: "Add a unique Signature ID and timestamp to each signature for audit and traceability purposes along with the timestamp. Part of Intébec's 21 CFR Part 11 compliance settings."
+ require_signer_to_provide_a_reason_for_signing_before_completing_their_signature_e_g_approvals_certifications_part_of_docuseals_21_cfr_part_11_compliance_settings: "Require signers to provide a reason for signing before completing their signature (e.g., approvals, certifications). Part of Intébec's 21 CFR Part 11 compliance settings."
+ onboarding:
+ support_description: "You can use our self-service AI assistant or email us at support@intebec.ca if you have any questions."
+
+fr:
+ docuseal_trusted_signature: "Signature de confiance Intébec"
+ sent_with_docuseal_pro_html: 'Envoyé avec Intébec Pro'
+ show_send_with_docuseal_pro_attribution_in_emails_html: 'Afficher l''attribution « Envoyé avec Intébec Pro » dans les courriels'
+ sign_documents_with_trusted_certificate_provided_by_docu_seal_your_documents_and_data_are_never_shared_with_docu_seal_p_d_f_checksum_is_provided_to_generate_a_trusted_signature: "Signez des documents avec un certificat de confiance fourni par Intébec. Vos documents et données ne sont jamais partagés avec Intébec. Une somme de contrôle PDF est fournie pour générer une signature de confiance."
+ by_creating_an_account_you_agree_to_our_html: 'En créant un compte, vous acceptez notre Politique de confidentialité et nos Conditions d''utilisation.'
+ connect_salesforce_account_to_integrate_with_docuseal: "Connectez votre compte Salesforce pour l'intégrer à Intébec"
+ sign_up_in_docuseal_console_to_upgrade_on_premises_app_is_completely_standalone_console_is_used_only_to_manage_your_license: "Inscrivez-vous dans la console Intébec pour effectuer la mise à niveau. L'application sur site est entièrement autonome, la console est utilisée uniquement pour gérer votre licence."
+ unlock_with_docuseal_pro: "Débloquer avec Intébec Pro"
+ activate_with_docuseal_pro: "Activer avec Intébec Pro"
+ send_signature_request_emails_without_limits_with_docuseal_pro: "Envoyez des courriels de demande de signature sans limites avec Intébec Pro"
+ unlock_more_user_roles_with_docuseal_pro: "Débloquez plus de rôles utilisateurs avec Intébec Pro."
+ docuseal_support: "Soutien Intébec"
+ click_here_to_learn_more_about_user_roles_and_permissions_html: 'Cliquez ici pour en savoir plus sur les rôles et les permissions des utilisateurs.'
+ on_a_scale_of_1_to_10_how_satisfied_are_you_with_the_docuseal_product_: "Sur une échelle de 1 à 10, à quel point êtes-vous satisfait du produit Intébec?"
+ your_pro_plan_has_been_suspended_due_to_unpaid_invoices_you_can_update_your_payment_details_to_settle_the_invoice_and_continue_using_docuseal_or_cancel_your_subscription: "Votre plan Pro a été suspendu en raison de factures impayées. Vous pouvez mettre à jour vos informations de paiement pour régler la facture et continuer à utiliser Intébec ou annuler votre abonnement."
+ this_submission_has_multiple_signers_which_prevents_the_use_of_a_sharing_link_html: 'Cette soumission comporte plusieurs signataires, ce qui empêche l''utilisation d''un lien de partage car on ne sait pas quel signataire est responsable de quels champs. Pour résoudre ce problème, suivez ce guide pour définir les détails du signataire par défaut.'
+ welcome_to_docuseal: "Bienvenue sur Intébec"
+ your_email_could_not_be_reached_this_may_happen_if_there_was_a_typo_in_your_address_or_if_your_mailbox_is_not_available_please_contact_support_email_to_log_in: "Votre courriel n'a pas pu être atteint. Cela peut arriver s'il y a une faute de frappe dans votre adresse ou si votre boîte de réception n'est pas disponible. Veuillez contacter support@intebec.ca pour vous connecter."
+ add_a_unique_signature_id_and_timestamp_to_each_signature_for_audit_and_traceability_purposes_along_with_the_timestamp_part_of_docuseals_21_cfr_part_11_compliance_settings: "Ajoutez un identifiant de signature unique et un horodatage à chaque signature à des fins d'audit et de traçabilité, ainsi que l'horodatage. Fait partie des paramètres de conformité 21 CFR Part 11 d'Intébec."
+ require_signer_to_provide_a_reason_for_signing_before_completing_their_signature_e_g_approvals_certifications_part_of_docuseals_21_cfr_part_11_compliance_settings: "Exiger que le signataire fournisse une raison de signature avant de terminer sa signature (ex. : approbations, certifications). Fait partie des paramètres de conformité 21 CFR Part 11 d'Intébec."
+ onboarding:
+ support_description: "Vous pouvez utiliser notre assistant IA en libre-service ou nous écrire à support@intebec.ca si vous avez des questions."
+ # -------------------------------------------------------------------------
+ # Common French overrides for base UI strings
+ # -------------------------------------------------------------------------
+ sign_in: "Connexion"
+ sign_out: "Déconnexion"
+ sign_up: "Inscription"
+ settings: "Paramètres"
+ profile: "Profil"
+ password: "Mot de passe"
+ email: "Courriel"
+ submit: "Soumettre"
+ save: "Enregistrer"
+ cancel: "Annuler"
+ delete: "Supprimer"
+ search: "Rechercher"
+ download: "Télécharger"
+ powered_by: "Propulsé par"
+ open_source_documents_software: "logiciel de signature de documents"
diff --git a/config/whitelabel.yml b/config/whitelabel.yml
new file mode 100644
index 00000000..ce9c2e23
--- /dev/null
+++ b/config/whitelabel.yml
@@ -0,0 +1,177 @@
+# =============================================================================
+# White-Label Configuration — Single source of truth for all branding
+# =============================================================================
+#
+# Change the values below to rebrand the entire application for any client.
+# The application reads this file once at boot (and caches it).
+# After editing, restart the app (or call Whitelabel.reload! in a console).
+#
+# IMPORTANT: Keep the YAML keys exactly as they are — only change the values.
+# This file is designed to survive upstream DocuSeal merges since it lives in
+# a file that does not exist in the upstream repo.
+# =============================================================================
+
+# ---------------------------------------------------------------------------
+# Brand identity
+# ---------------------------------------------------------------------------
+brand:
+ # The name shown in the navbar, page titles, emails, PDFs, PWA manifest, etc.
+ name: "Intébec"
+
+ # Shorter variant (used in PWA short_name, compact UI areas)
+ short_name: "Intébec"
+
+ # Tagline — appears alongside the brand name in page titles, meta tags, etc.
+ tagline: "Signature"
+
+ # Description for meta tags, PWA manifest, and default OG description
+ description: "Outil de signature fait par Intébec. Permet de signer des documents facilement."
+
+ # Default page titles (signed_in / signed_out)
+ page_title_signed_in: "Intébec Signature"
+ page_title_signed_out: "Intébec | Signature"
+
+# ---------------------------------------------------------------------------
+# URLs — your company's own links
+# ---------------------------------------------------------------------------
+urls:
+ # Main website (replaces docuseal.com links)
+ website: "https://intebec.ca"
+
+ # Support / contact email
+ support_email: "support@intebec.ca"
+
+ # Privacy policy & terms pages (set to null to hide links)
+ privacy_policy: "https://intebec.ca/privacy"
+ terms_of_service: "https://intebec.ca/terms"
+
+ # Social handles (set to null to hide)
+ twitter_url: ~
+ twitter_handle: ~
+ github_url: ~
+ discord_url: ~
+
+# ---------------------------------------------------------------------------
+# Email settings
+# ---------------------------------------------------------------------------
+email:
+ # "From" header: "Brand Name "
+ from_name: "Intébec"
+ from_address: "info@intebec.ca"
+
+ # Attribution line at the bottom of transactional emails
+ # Supports basic HTML. Use %{brand} as a placeholder for the brand name.
+ # Use %{website} as a placeholder for the website URL.
+ attribution_html: 'Envoyé avec %{brand} — signature de documents sécurisée.'
+
+# ---------------------------------------------------------------------------
+# Assets — paths are relative to /public or full URLs
+# ---------------------------------------------------------------------------
+assets:
+ # Logo shown in the navbar and form banners
+ logo_path: "/logo.svg"
+ logo_width: 37
+ logo_height: 37
+
+ # Favicon files (place your files in /public)
+ favicon_svg: "/favicon.svg"
+ favicon_ico: "/favicon.ico"
+ favicon_16: "/favicon-16x16.png"
+ favicon_32: "/favicon-32x32.png"
+ favicon_96: "/favicon-96x96.png"
+ apple_touch_icon: "/apple-icon-180x180.png"
+
+ # Open Graph / social preview image
+ preview_image: "/preview.png"
+
+# ---------------------------------------------------------------------------
+# Theme — CSS custom properties injected into the DaisyUI `docuseal` theme
+# Values are HSL triplets "H S% L%" to match DaisyUI conventions.
+# Set a key to null to keep the compiled Tailwind default.
+# ---------------------------------------------------------------------------
+theme:
+ # Primary action colour (buttons, links, focus rings)
+ primary: "216 77% 52%"
+ primary_focus: "216 77% 44%"
+ primary_content: "0 0% 100%"
+
+ # Secondary colour
+ secondary: "220 12% 45%"
+ secondary_focus: "220 14% 36%"
+ secondary_content: "0 0% 100%"
+
+ # Accent colour
+ accent: "160 50% 40%"
+ accent_focus: "160 50% 34%"
+ accent_content: "0 0% 100%"
+
+ # Neutral / dark tones
+ neutral: "220 16% 12%"
+ neutral_focus: "220 16% 8%"
+ neutral_content: "0 0% 100%"
+
+ # Surfaces / backgrounds
+ base_100: "0 0% 100%"
+ base_200: "220 14% 96%"
+ base_300: "220 12% 93%"
+ base_content: "220 14% 10%"
+
+ # Functional colours
+ info: "205 80% 50%"
+ success: "154 55% 38%"
+ warning: "38 88% 48%"
+ error: "0 72% 50%"
+
+ # Border radius & misc
+ rounded_btn: "1.9rem"
+ tab_border: "2px"
+ tab_radius: ".5rem"
+
+# ---------------------------------------------------------------------------
+# PDF / Audit trail branding
+# ---------------------------------------------------------------------------
+pdf:
+ # Text embedded in PDF digital signatures (use %{name} for the signer name)
+ sign_reason: "Signed by %{name} with Intébec"
+
+ # Audit trail footer text
+ audit_trail_footer: "Signed with Intébec"
+
+ # PDF Creator metadata
+ creator: "Intébec"
+
+ # E-sign certificate default name
+ cert_name: "Intébec Self-Host Autogenerated"
+
+# ---------------------------------------------------------------------------
+# PWA (Progressive Web App) manifest
+# ---------------------------------------------------------------------------
+pwa:
+ description: "Intébec is a secure platform for digital document signing and processing."
+ theme_color: "#FAF7F4"
+ background_color: "#FAF7F4"
+
+# ---------------------------------------------------------------------------
+# Webhook user-agent string
+# ---------------------------------------------------------------------------
+webhooks:
+ user_agent: "Intébec Webhook"
+
+# ---------------------------------------------------------------------------
+# Feature flags — toggle upstream DocuSeal features
+# ---------------------------------------------------------------------------
+features:
+ # Show the "Star on GitHub" button in the navbar
+ show_github_button: false
+
+ # Show "Powered by …" attribution on public signing pages
+ show_powered_by: true
+
+ # Text for the "powered by" line (null = use brand name)
+ powered_by_text: ~
+
+ # Show the "Ask AI / ChatGPT" link in the user menu
+ show_ai_link: false
+
+ # Show the Discord link
+ show_discord_link: false
diff --git a/docker-compose.yml b/docker-compose.yml
index fcc697be..ca4e04ef 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -3,7 +3,8 @@ services:
depends_on:
postgres:
condition: service_healthy
- image: docuseal/docuseal:latest
+ build: .
+ image: intebec/docuseal:latest
ports:
- 3000:3000
volumes:
@@ -15,7 +16,7 @@ services:
postgres:
image: postgres:18
volumes:
- - './pg_data:/var/lib/postgresql/18/docker'
+ - "./pg_data:/var/lib/postgresql/18/docker"
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
diff --git a/docs/WHITELABEL.md b/docs/WHITELABEL.md
new file mode 100644
index 00000000..3ed66429
--- /dev/null
+++ b/docs/WHITELABEL.md
@@ -0,0 +1,152 @@
+# White-Label Configuration Guide
+
+## Overview
+
+This fork of DocuSeal uses a **centralised white-label configuration system** that lets you rebrand the entire application for any client by editing a single YAML file. No need to create a separate repo for each client.
+
+## Architecture
+
+```
+config/whitelabel.yml ← Single source of truth (brand, URLs, theme, PDF, features)
+lib/whitelabel.rb ← Ruby module that loads + exposes the config
+config/initializers/whitelabel.rb ← Patches Docuseal module at boot so existing code uses new values
+app/helpers/whitelabel_helper.rb ← View helper (use `wl.xxx` in any ERB template)
+config/locales/whitelabel.yml ← Locale overrides for branded i18n keys (EN + FR)
+public/intebec.css ← CSS theme overrides (DaisyUI custom properties)
+```
+
+## How to Rebrand for a New Client
+
+### 1. Edit `config/whitelabel.yml`
+
+Change the values under each section:
+
+| Section | What it controls |
+| ---------- | ---------------------------------------------- |
+| `brand` | Name, tagline, description, page titles |
+| `urls` | Website, support email, privacy/terms, socials |
+| `email` | From address, email attribution |
+| `assets` | Logo, favicons, preview image |
+| `theme` | DaisyUI colour palette (HSL values) |
+| `pdf` | Signing reason, audit trail footer, cert name |
+| `pwa` | PWA manifest name, colours |
+| `webhooks` | User-Agent string |
+| `features` | Toggle GitHub button, AI link, powered-by text |
+
+### 2. Replace Asset Files
+
+Put your client's files in `/public`:
+
+- `logo.svg` — navbar + form logo
+- `favicon.ico`, `favicon-16x16.png`, `favicon-32x32.png`, `favicon-96x96.png`
+- `favicon.svg` — SVG favicon
+- `apple-icon-180x180.png` — iOS home screen icon
+- `preview.png` — Open Graph social preview
+
+### 3. Update Theme Colours
+
+Two options:
+
+**Option A** — Edit `theme:` in `config/whitelabel.yml` (DaisyUI tokens, HSL format):
+
+```yaml
+theme:
+ primary: "216 77% 52%"
+ secondary: "220 12% 45%"
+ accent: "160 50% 40%"
+```
+
+**Option B** — Edit `public/intebec.css` for fine-grained CSS overrides.
+
+### 4. Update Locale Overrides
+
+Edit `config/locales/whitelabel.yml` to change branded text in both English and French. This file **overrides** the base `config/locales/i18n.yml` — Rails merges them automatically.
+
+### 5. Restart
+
+After editing, restart the app:
+
+```bash
+docker compose down && docker compose up -d --build
+```
+
+Or in a Rails console:
+
+```ruby
+Whitelabel.reload!
+```
+
+## Usage in Code
+
+### In ERB views
+
+```erb
+<%= wl.brand_name %>
+<%= wl.logo_path %>
+<%= wl.support_email %>
+<%= wl.page_title(signed_in: true) %>
+```
+
+### In Ruby (controllers, mailers, lib)
+
+```ruby
+Whitelabel.brand_name # => "Intébec"
+Whitelabel.website_url # => "https://intebec.ca"
+Whitelabel.email_from # => "Intébec "
+Whitelabel.sign_reason("John") # => "Signed by John with Intébec"
+Whitelabel.theme(:primary) # => "216 77% 52%"
+```
+
+### In JavaScript
+
+Brand values are available via `` tags in the page head:
+
+```javascript
+document.querySelector('meta[name="brand-name"]').content; // "Intébec"
+document.querySelector('meta[name="brand-website-url"]').content; // "https://intebec.ca"
+```
+
+## Upstream Merge Strategy
+
+This system is designed to minimise merge conflicts with the upstream DocuSeal repo:
+
+1. **New files** (no conflicts): `config/whitelabel.yml`, `lib/whitelabel.rb`, `config/initializers/whitelabel.rb`, `app/helpers/whitelabel_helper.rb`, `config/locales/whitelabel.yml`
+2. **Patched files** (potential conflicts, but isolated changes):
+ - `lib/docuseal.rb` — only added a comment block; the `product_name` method is overridden at runtime
+ - View templates — changes are surgical (replacing one hardcoded string with a `Whitelabel.xxx` call)
+3. **Untouched internal identifiers**: `data-theme="docuseal"`, `Docuseal` module name, `#docuseal_modal_container`, `docuseal_clipboard` localStorage keys — all kept as-is for compatibility
+
+### When Upstream Adds New Branded Content
+
+1. Check if new views/lib files have hardcoded "DocuSeal" text
+2. Replace with `Whitelabel.brand_name` or `wl.brand_name`
+3. If it's an i18n key, add the override to `config/locales/whitelabel.yml`
+
+## Feature Flags
+
+Toggle upstream features without removing code:
+
+```yaml
+features:
+ show_github_button: false # Hide "Star on GitHub"
+ show_powered_by: true # Show/hide "Powered by" on signing pages
+ show_ai_link: false # Hide "Ask AI" in user menu
+ show_discord_link: false # Hide Discord link
+```
+
+## File Reference
+
+| File | Purpose | Upstream risk |
+| ---------------------------------------- | ------------------ | ----------------------- |
+| `config/whitelabel.yml` | All brand config | New file — zero risk |
+| `lib/whitelabel.rb` | Config loader | New file — zero risk |
+| `config/initializers/whitelabel.rb` | Boot-time patching | New file — zero risk |
+| `app/helpers/whitelabel_helper.rb` | View helper | New file — zero risk |
+| `config/locales/whitelabel.yml` | i18n overrides | New file — zero risk |
+| `public/intebec.css` | Theme CSS | Custom file — zero risk |
+| `lib/docuseal.rb` | Added comment | Low risk — comment only |
+| `app/views/shared/_logo.html.erb` | Dynamic logo path | Low risk |
+| `app/views/shared/_meta.html.erb` | Dynamic meta tags | Low risk |
+| `app/views/shared/_title.html.erb` | Dynamic brand name | Low risk |
+| `app/views/layouts/application.html.erb` | Added meta tags | Low risk |
+| `app/views/layouts/form.html.erb` | Added meta tags | Low risk |
diff --git a/lib/docuseal.rb b/lib/docuseal.rb
index 7bba653c..84bcbcdd 100644
--- a/lib/docuseal.rb
+++ b/lib/docuseal.rb
@@ -2,6 +2,9 @@
module Docuseal
URL_CACHE = ActiveSupport::Cache::MemoryStore.new
+ # NOTE: These constants are kept for backward compatibility with upstream
+ # DocuSeal code. User-visible values are overridden at runtime by the
+ # Whitelabel module (see config/whitelabel.yml + config/initializers/whitelabel.rb).
PRODUCT_URL = 'https://www.docuseal.com'
PRODUCT_EMAIL_URL = ENV.fetch('PRODUCT_EMAIL_URL', PRODUCT_URL)
NEWSLETTER_URL = "#{PRODUCT_URL}/newsletters".freeze
diff --git a/lib/send_webhook_request.rb b/lib/send_webhook_request.rb
index 87de376a..f7111c4f 100644
--- a/lib/send_webhook_request.rb
+++ b/lib/send_webhook_request.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
module SendWebhookRequest
- USER_AGENT = 'DocuSeal.com Webhook'
+ USER_AGENT = Whitelabel.webhook_user_agent
LOCALHOSTS = DownloadUtils::LOCALHOSTS
diff --git a/lib/submissions/generate_audit_trail.rb b/lib/submissions/generate_audit_trail.rb
index ed80a86d..100d0d0e 100644
--- a/lib/submissions/generate_audit_trail.rb
+++ b/lib/submissions/generate_audit_trail.rb
@@ -43,7 +43,7 @@ module Submissions
io = StringIO.new
- document.trailer.info[:Creator] = "#{Docuseal.product_name} (#{Docuseal::PRODUCT_URL})"
+ document.trailer.info[:Creator] = Whitelabel.pdf_creator
if pkcs
sign_params = {
@@ -506,7 +506,7 @@ module Submissions
end
def sign_reason
- 'Signed with DocuSeal.com'
+ Whitelabel.audit_trail_footer
end
def select_attachments(submitter)
@@ -528,8 +528,8 @@ module Submissions
def add_logo(column, _submission = nil)
column.image(PdfIcons.logo_io, width: 40, height: 40, position: :float)
- column.formatted_text([{ text: 'DocuSeal',
- link: Docuseal::PRODUCT_EMAIL_URL }],
+ column.formatted_text([{ text: Whitelabel.brand_name,
+ link: Whitelabel.website_url }],
font_size: 20,
font: [FONT_NAME, { variant: :bold }],
width: 100,
diff --git a/lib/submissions/generate_result_attachments.rb b/lib/submissions/generate_result_attachments.rb
index ec3964c2..737b8002 100644
--- a/lib/submissions/generate_result_attachments.rb
+++ b/lib/submissions/generate_result_attachments.rb
@@ -37,7 +37,7 @@ module Submissions
bold_italic: FONT_BOLD_NAME
}.freeze
- SIGN_REASON = 'Signed by %s with DocuSeal.com'
+ SIGN_REASON = "Signed by %s with #{Whitelabel.brand_name}"
RTL_REGEXP = TextUtils::RTL_REGEXP
@@ -952,7 +952,7 @@ module Submissions
end
def info_creator
- "#{Docuseal.product_name} (#{Docuseal::PRODUCT_URL})"
+ Whitelabel.pdf_creator
end
def detached_signature?(_submitter)
diff --git a/lib/submitters/form_configs.rb b/lib/submitters/form_configs.rb
index 4db19b32..859d0bde 100644
--- a/lib/submitters/form_configs.rb
+++ b/lib/submitters/form_configs.rb
@@ -2,27 +2,29 @@
module Submitters
module FormConfigs
- DEFAULT_KEYS = [AccountConfig::FORM_COMPLETED_BUTTON_KEY,
- AccountConfig::FORM_COMPLETED_MESSAGE_KEY,
- AccountConfig::FORM_WITH_CONFETTI_KEY,
- AccountConfig::FORM_PREFILL_SIGNATURE_KEY,
- AccountConfig::WITH_SIGNATURE_ID,
- AccountConfig::ALLOW_TO_DECLINE_KEY,
- AccountConfig::ENFORCE_SIGNING_ORDER_KEY,
- AccountConfig::REQUIRE_SIGNING_REASON_KEY,
- AccountConfig::REUSE_SIGNATURE_KEY,
- AccountConfig::WITH_FIELD_LABELS_KEY,
- AccountConfig::ALLOW_TO_PARTIAL_DOWNLOAD_KEY,
- AccountConfig::ALLOW_TYPED_SIGNATURE,
- AccountConfig::WITH_SUBMITTER_TIMEZONE_KEY,
- AccountConfig::WITH_TIMESTAMP_SECONDS_KEY,
- AccountConfig::WITH_SIGNATURE_ID_REASON_KEY,
- *(Docuseal.multitenant? ? [] : [AccountConfig::POLICY_LINKS_KEY])].freeze
-
module_function
+ def default_keys
+ [AccountConfig::FORM_COMPLETED_BUTTON_KEY,
+ AccountConfig::FORM_COMPLETED_MESSAGE_KEY,
+ AccountConfig::FORM_WITH_CONFETTI_KEY,
+ AccountConfig::FORM_PREFILL_SIGNATURE_KEY,
+ AccountConfig::WITH_SIGNATURE_ID,
+ AccountConfig::ALLOW_TO_DECLINE_KEY,
+ AccountConfig::ENFORCE_SIGNING_ORDER_KEY,
+ AccountConfig::REQUIRE_SIGNING_REASON_KEY,
+ AccountConfig::REUSE_SIGNATURE_KEY,
+ AccountConfig::WITH_FIELD_LABELS_KEY,
+ AccountConfig::ALLOW_TO_PARTIAL_DOWNLOAD_KEY,
+ AccountConfig::ALLOW_TYPED_SIGNATURE,
+ AccountConfig::WITH_SUBMITTER_TIMEZONE_KEY,
+ AccountConfig::WITH_TIMESTAMP_SECONDS_KEY,
+ AccountConfig::WITH_SIGNATURE_ID_REASON_KEY,
+ *(Docuseal.multitenant? ? [] : [AccountConfig::POLICY_LINKS_KEY])]
+ end
+
def call(submitter, keys = [])
- configs = submitter.submission.account.account_configs.where(key: DEFAULT_KEYS + keys)
+ configs = submitter.submission.account.account_configs.where(key: default_keys + keys)
completed_button = find_safe_value(configs, AccountConfig::FORM_COMPLETED_BUTTON_KEY) || {}
completed_message = find_safe_value(configs, AccountConfig::FORM_COMPLETED_MESSAGE_KEY) || {}
diff --git a/lib/whitelabel.rb b/lib/whitelabel.rb
new file mode 100644
index 00000000..f4e360e0
--- /dev/null
+++ b/lib/whitelabel.rb
@@ -0,0 +1,247 @@
+# frozen_string_literal: true
+
+# =============================================================================
+# Whitelabel — Centralised brand configuration loader
+# =============================================================================
+# Reads config/whitelabel.yml once at boot and exposes every value through
+# simple accessor methods. All view helpers, mailers, PDF generators and
+# other call-sites should use Whitelabel.xxx instead of hard-coding strings.
+#
+# Usage examples:
+# Whitelabel.brand_name # => "Intébec"
+# Whitelabel.support_email # => "support@intebec.ca"
+# Whitelabel.theme(:primary) # => "216 77% 52%"
+# Whitelabel.email_from # => "Intébec "
+# Whitelabel.sign_reason("John") # => "Signed by John with Intébec"
+#
+# After editing config/whitelabel.yml, call Whitelabel.reload! or restart.
+# =============================================================================
+
+require 'yaml'
+
+module Whitelabel
+ CONFIG_PATH = Rails.root.join('config', 'whitelabel.yml').freeze
+
+ class << self
+ # -----------------------------------------------------------------------
+ # Core loader
+ # -----------------------------------------------------------------------
+
+ def config
+ @config ||= load_config
+ end
+
+ def reload!
+ @config = load_config
+ end
+
+ # -----------------------------------------------------------------------
+ # Brand identity
+ # -----------------------------------------------------------------------
+
+ def brand_name
+ config.dig('brand', 'name') || 'DocuSeal'
+ end
+
+ def brand_short_name
+ config.dig('brand', 'short_name') || brand_name
+ end
+
+ def tagline
+ config.dig('brand', 'tagline') || ''
+ end
+
+ def description
+ config.dig('brand', 'description') || ''
+ end
+
+ def page_title(signed_in: false)
+ key = signed_in ? 'page_title_signed_in' : 'page_title_signed_out'
+ config.dig('brand', key) || brand_name
+ end
+
+ # -----------------------------------------------------------------------
+ # URLs
+ # -----------------------------------------------------------------------
+
+ def website_url
+ config.dig('urls', 'website') || 'https://intebec.ca'
+ end
+
+ def support_email
+ config.dig('urls', 'support_email') || 'support@intebec.ca'
+ end
+
+ def privacy_policy_url
+ config.dig('urls', 'privacy_policy')
+ end
+
+ def terms_url
+ config.dig('urls', 'terms_of_service')
+ end
+
+ def twitter_url
+ config.dig('urls', 'twitter_url')
+ end
+
+ def twitter_handle
+ config.dig('urls', 'twitter_handle')
+ end
+
+ def github_url
+ config.dig('urls', 'github_url')
+ end
+
+ def discord_url
+ config.dig('urls', 'discord_url')
+ end
+
+ # -----------------------------------------------------------------------
+ # Email
+ # -----------------------------------------------------------------------
+
+ def email_from
+ name = config.dig('email', 'from_name') || brand_name
+ addr = config.dig('email', 'from_address') || support_email
+ "#{name} <#{addr}>"
+ end
+
+ def email_attribution_html
+ raw = config.dig('email', 'attribution_html') || ''
+ raw.gsub('%{brand}', brand_name).gsub('%{website}', website_url)
+ end
+
+ # -----------------------------------------------------------------------
+ # Assets
+ # -----------------------------------------------------------------------
+
+ def logo_path
+ config.dig('assets', 'logo_path') || '/logo.svg'
+ end
+
+ def logo_width
+ config.dig('assets', 'logo_width') || 37
+ end
+
+ def logo_height
+ config.dig('assets', 'logo_height') || 37
+ end
+
+ def favicon_svg
+ config.dig('assets', 'favicon_svg') || '/favicon.svg'
+ end
+
+ def favicon_ico
+ config.dig('assets', 'favicon_ico') || '/favicon.ico'
+ end
+
+ def favicon_16
+ config.dig('assets', 'favicon_16') || '/favicon-16x16.png'
+ end
+
+ def favicon_32
+ config.dig('assets', 'favicon_32') || '/favicon-32x32.png'
+ end
+
+ def favicon_96
+ config.dig('assets', 'favicon_96') || '/favicon-96x96.png'
+ end
+
+ def apple_touch_icon
+ config.dig('assets', 'apple_touch_icon') || '/apple-icon-180x180.png'
+ end
+
+ def preview_image
+ config.dig('assets', 'preview_image') || '/preview.png'
+ end
+
+ # -----------------------------------------------------------------------
+ # Theme — returns HSL triplets for DaisyUI / CSS custom properties
+ # -----------------------------------------------------------------------
+
+ def theme(key)
+ config.dig('theme', key.to_s)
+ end
+
+ # -----------------------------------------------------------------------
+ # PDF / Audit trail
+ # -----------------------------------------------------------------------
+
+ def sign_reason(name)
+ template = config.dig('pdf', 'sign_reason') || "Signed by %{name} with #{brand_name}"
+ template.gsub('%{name}', name.to_s)
+ end
+
+ def audit_trail_footer
+ config.dig('pdf', 'audit_trail_footer') || "Signed with #{brand_name}"
+ end
+
+ def pdf_creator
+ creator = config.dig('pdf', 'creator') || brand_name
+ "#{creator} (#{website_url})"
+ end
+
+ def cert_name
+ config.dig('pdf', 'cert_name') || "#{brand_name} Self-Host Autogenerated"
+ end
+
+ # -----------------------------------------------------------------------
+ # PWA
+ # -----------------------------------------------------------------------
+
+ def pwa_description
+ config.dig('pwa', 'description') || "#{brand_name} is a secure platform for digital document signing."
+ end
+
+ def pwa_theme_color
+ config.dig('pwa', 'theme_color') || '#FAF7F4'
+ end
+
+ def pwa_background_color
+ config.dig('pwa', 'background_color') || '#FAF7F4'
+ end
+
+ # -----------------------------------------------------------------------
+ # Webhooks
+ # -----------------------------------------------------------------------
+
+ def webhook_user_agent
+ config.dig('webhooks', 'user_agent') || "#{brand_name} Webhook"
+ end
+
+ # -----------------------------------------------------------------------
+ # Feature flags
+ # -----------------------------------------------------------------------
+
+ def show_github_button?
+ config.dig('features', 'show_github_button') == true
+ end
+
+ def show_powered_by?
+ config.dig('features', 'show_powered_by') != false
+ end
+
+ def powered_by_text
+ config.dig('features', 'powered_by_text') || brand_name
+ end
+
+ def show_ai_link?
+ config.dig('features', 'show_ai_link') == true
+ end
+
+ def show_discord_link?
+ config.dig('features', 'show_discord_link') == true
+ end
+
+ private
+
+ def load_config
+ return {} unless CONFIG_PATH.exist?
+
+ YAML.safe_load_file(CONFIG_PATH, permitted_classes: [Symbol]) || {}
+ rescue Psych::SyntaxError => e
+ Rails.logger.error("[Whitelabel] Failed to parse #{CONFIG_PATH}: #{e.message}")
+ {}
+ end
+ end
+end
diff --git a/pg_data/PG_VERSION b/pg_data/PG_VERSION
deleted file mode 100644
index 3c032078..00000000
--- a/pg_data/PG_VERSION
+++ /dev/null
@@ -1 +0,0 @@
-18
diff --git a/pg_data/base/1/112 b/pg_data/base/1/112
deleted file mode 100644
index 6bf1e4e1..00000000
Binary files a/pg_data/base/1/112 and /dev/null differ
diff --git a/pg_data/base/1/113 b/pg_data/base/1/113
deleted file mode 100644
index 62f33de5..00000000
Binary files a/pg_data/base/1/113 and /dev/null differ
diff --git a/pg_data/base/1/1247 b/pg_data/base/1/1247
deleted file mode 100644
index 748a378d..00000000
Binary files a/pg_data/base/1/1247 and /dev/null differ
diff --git a/pg_data/base/1/1247_fsm b/pg_data/base/1/1247_fsm
deleted file mode 100644
index 103cd46a..00000000
Binary files a/pg_data/base/1/1247_fsm and /dev/null differ
diff --git a/pg_data/base/1/1247_vm b/pg_data/base/1/1247_vm
deleted file mode 100644
index 335e9c47..00000000
Binary files a/pg_data/base/1/1247_vm and /dev/null differ
diff --git a/pg_data/base/1/1249 b/pg_data/base/1/1249
deleted file mode 100644
index d352cc66..00000000
Binary files a/pg_data/base/1/1249 and /dev/null differ
diff --git a/pg_data/base/1/1249_fsm b/pg_data/base/1/1249_fsm
deleted file mode 100644
index e506f183..00000000
Binary files a/pg_data/base/1/1249_fsm and /dev/null differ
diff --git a/pg_data/base/1/1249_vm b/pg_data/base/1/1249_vm
deleted file mode 100644
index 0012c20e..00000000
Binary files a/pg_data/base/1/1249_vm and /dev/null differ
diff --git a/pg_data/base/1/1255 b/pg_data/base/1/1255
deleted file mode 100644
index 79a1aee2..00000000
Binary files a/pg_data/base/1/1255 and /dev/null differ
diff --git a/pg_data/base/1/1255_fsm b/pg_data/base/1/1255_fsm
deleted file mode 100644
index 5598c706..00000000
Binary files a/pg_data/base/1/1255_fsm and /dev/null differ
diff --git a/pg_data/base/1/1255_vm b/pg_data/base/1/1255_vm
deleted file mode 100644
index cf110f8c..00000000
Binary files a/pg_data/base/1/1255_vm and /dev/null differ
diff --git a/pg_data/base/1/1259 b/pg_data/base/1/1259
deleted file mode 100644
index c57a5ddd..00000000
Binary files a/pg_data/base/1/1259 and /dev/null differ
diff --git a/pg_data/base/1/1259_fsm b/pg_data/base/1/1259_fsm
deleted file mode 100644
index 569d3b56..00000000
Binary files a/pg_data/base/1/1259_fsm and /dev/null differ
diff --git a/pg_data/base/1/1259_vm b/pg_data/base/1/1259_vm
deleted file mode 100644
index 4c9e2ef3..00000000
Binary files a/pg_data/base/1/1259_vm and /dev/null differ
diff --git a/pg_data/base/1/13476 b/pg_data/base/1/13476
deleted file mode 100644
index 3ffad271..00000000
Binary files a/pg_data/base/1/13476 and /dev/null differ
diff --git a/pg_data/base/1/13476_fsm b/pg_data/base/1/13476_fsm
deleted file mode 100644
index 8f510a10..00000000
Binary files a/pg_data/base/1/13476_fsm and /dev/null differ
diff --git a/pg_data/base/1/13476_vm b/pg_data/base/1/13476_vm
deleted file mode 100644
index 70c9527a..00000000
Binary files a/pg_data/base/1/13476_vm and /dev/null differ
diff --git a/pg_data/base/1/13479 b/pg_data/base/1/13479
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/13480 b/pg_data/base/1/13480
deleted file mode 100644
index 4e4aa016..00000000
Binary files a/pg_data/base/1/13480 and /dev/null differ
diff --git a/pg_data/base/1/13481 b/pg_data/base/1/13481
deleted file mode 100644
index 66e03248..00000000
Binary files a/pg_data/base/1/13481 and /dev/null differ
diff --git a/pg_data/base/1/13481_fsm b/pg_data/base/1/13481_fsm
deleted file mode 100644
index 2d7759ff..00000000
Binary files a/pg_data/base/1/13481_fsm and /dev/null differ
diff --git a/pg_data/base/1/13481_vm b/pg_data/base/1/13481_vm
deleted file mode 100644
index 8f1fd527..00000000
Binary files a/pg_data/base/1/13481_vm and /dev/null differ
diff --git a/pg_data/base/1/13484 b/pg_data/base/1/13484
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/13485 b/pg_data/base/1/13485
deleted file mode 100644
index 6f4c233b..00000000
Binary files a/pg_data/base/1/13485 and /dev/null differ
diff --git a/pg_data/base/1/13486 b/pg_data/base/1/13486
deleted file mode 100644
index c85c6e48..00000000
Binary files a/pg_data/base/1/13486 and /dev/null differ
diff --git a/pg_data/base/1/13486_fsm b/pg_data/base/1/13486_fsm
deleted file mode 100644
index 9a4e1393..00000000
Binary files a/pg_data/base/1/13486_fsm and /dev/null differ
diff --git a/pg_data/base/1/13486_vm b/pg_data/base/1/13486_vm
deleted file mode 100644
index aeec4b64..00000000
Binary files a/pg_data/base/1/13486_vm and /dev/null differ
diff --git a/pg_data/base/1/13489 b/pg_data/base/1/13489
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/13490 b/pg_data/base/1/13490
deleted file mode 100644
index fce6ea3e..00000000
Binary files a/pg_data/base/1/13490 and /dev/null differ
diff --git a/pg_data/base/1/13491 b/pg_data/base/1/13491
deleted file mode 100644
index 2ccecc06..00000000
Binary files a/pg_data/base/1/13491 and /dev/null differ
diff --git a/pg_data/base/1/13491_fsm b/pg_data/base/1/13491_fsm
deleted file mode 100644
index 081ecfe0..00000000
Binary files a/pg_data/base/1/13491_fsm and /dev/null differ
diff --git a/pg_data/base/1/13491_vm b/pg_data/base/1/13491_vm
deleted file mode 100644
index c7b22e2d..00000000
Binary files a/pg_data/base/1/13491_vm and /dev/null differ
diff --git a/pg_data/base/1/13494 b/pg_data/base/1/13494
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/13495 b/pg_data/base/1/13495
deleted file mode 100644
index 8f9f9dd7..00000000
Binary files a/pg_data/base/1/13495 and /dev/null differ
diff --git a/pg_data/base/1/1417 b/pg_data/base/1/1417
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/1418 b/pg_data/base/1/1418
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/174 b/pg_data/base/1/174
deleted file mode 100644
index b135120f..00000000
Binary files a/pg_data/base/1/174 and /dev/null differ
diff --git a/pg_data/base/1/175 b/pg_data/base/1/175
deleted file mode 100644
index 29ea7817..00000000
Binary files a/pg_data/base/1/175 and /dev/null differ
diff --git a/pg_data/base/1/2187 b/pg_data/base/1/2187
deleted file mode 100644
index fa480001..00000000
Binary files a/pg_data/base/1/2187 and /dev/null differ
diff --git a/pg_data/base/1/2224 b/pg_data/base/1/2224
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/2228 b/pg_data/base/1/2228
deleted file mode 100644
index e9c70b76..00000000
Binary files a/pg_data/base/1/2228 and /dev/null differ
diff --git a/pg_data/base/1/2328 b/pg_data/base/1/2328
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/2336 b/pg_data/base/1/2336
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/2337 b/pg_data/base/1/2337
deleted file mode 100644
index b1b33ecc..00000000
Binary files a/pg_data/base/1/2337 and /dev/null differ
diff --git a/pg_data/base/1/2579 b/pg_data/base/1/2579
deleted file mode 100644
index 80a8bc1e..00000000
Binary files a/pg_data/base/1/2579 and /dev/null differ
diff --git a/pg_data/base/1/2600 b/pg_data/base/1/2600
deleted file mode 100644
index d9db31e1..00000000
Binary files a/pg_data/base/1/2600 and /dev/null differ
diff --git a/pg_data/base/1/2600_fsm b/pg_data/base/1/2600_fsm
deleted file mode 100644
index 90c479d1..00000000
Binary files a/pg_data/base/1/2600_fsm and /dev/null differ
diff --git a/pg_data/base/1/2600_vm b/pg_data/base/1/2600_vm
deleted file mode 100644
index 026aaa5d..00000000
Binary files a/pg_data/base/1/2600_vm and /dev/null differ
diff --git a/pg_data/base/1/2601 b/pg_data/base/1/2601
deleted file mode 100644
index 2bbda385..00000000
Binary files a/pg_data/base/1/2601 and /dev/null differ
diff --git a/pg_data/base/1/2601_fsm b/pg_data/base/1/2601_fsm
deleted file mode 100644
index f0495219..00000000
Binary files a/pg_data/base/1/2601_fsm and /dev/null differ
diff --git a/pg_data/base/1/2601_vm b/pg_data/base/1/2601_vm
deleted file mode 100644
index 618363c9..00000000
Binary files a/pg_data/base/1/2601_vm and /dev/null differ
diff --git a/pg_data/base/1/2602 b/pg_data/base/1/2602
deleted file mode 100644
index e2c3df0c..00000000
Binary files a/pg_data/base/1/2602 and /dev/null differ
diff --git a/pg_data/base/1/2602_fsm b/pg_data/base/1/2602_fsm
deleted file mode 100644
index 28517412..00000000
Binary files a/pg_data/base/1/2602_fsm and /dev/null differ
diff --git a/pg_data/base/1/2602_vm b/pg_data/base/1/2602_vm
deleted file mode 100644
index 0e3590a4..00000000
Binary files a/pg_data/base/1/2602_vm and /dev/null differ
diff --git a/pg_data/base/1/2603 b/pg_data/base/1/2603
deleted file mode 100644
index 29a5301f..00000000
Binary files a/pg_data/base/1/2603 and /dev/null differ
diff --git a/pg_data/base/1/2603_fsm b/pg_data/base/1/2603_fsm
deleted file mode 100644
index 0d3d15ec..00000000
Binary files a/pg_data/base/1/2603_fsm and /dev/null differ
diff --git a/pg_data/base/1/2603_vm b/pg_data/base/1/2603_vm
deleted file mode 100644
index ac07da05..00000000
Binary files a/pg_data/base/1/2603_vm and /dev/null differ
diff --git a/pg_data/base/1/2604 b/pg_data/base/1/2604
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/2605 b/pg_data/base/1/2605
deleted file mode 100644
index 9d695df1..00000000
Binary files a/pg_data/base/1/2605 and /dev/null differ
diff --git a/pg_data/base/1/2605_fsm b/pg_data/base/1/2605_fsm
deleted file mode 100644
index a50386f2..00000000
Binary files a/pg_data/base/1/2605_fsm and /dev/null differ
diff --git a/pg_data/base/1/2605_vm b/pg_data/base/1/2605_vm
deleted file mode 100644
index 42078470..00000000
Binary files a/pg_data/base/1/2605_vm and /dev/null differ
diff --git a/pg_data/base/1/2606 b/pg_data/base/1/2606
deleted file mode 100644
index 6d61e0d3..00000000
Binary files a/pg_data/base/1/2606 and /dev/null differ
diff --git a/pg_data/base/1/2606_fsm b/pg_data/base/1/2606_fsm
deleted file mode 100644
index 2490517d..00000000
Binary files a/pg_data/base/1/2606_fsm and /dev/null differ
diff --git a/pg_data/base/1/2606_vm b/pg_data/base/1/2606_vm
deleted file mode 100644
index 8a0a047a..00000000
Binary files a/pg_data/base/1/2606_vm and /dev/null differ
diff --git a/pg_data/base/1/2607 b/pg_data/base/1/2607
deleted file mode 100644
index b704bdb1..00000000
Binary files a/pg_data/base/1/2607 and /dev/null differ
diff --git a/pg_data/base/1/2607_fsm b/pg_data/base/1/2607_fsm
deleted file mode 100644
index 0eb053ac..00000000
Binary files a/pg_data/base/1/2607_fsm and /dev/null differ
diff --git a/pg_data/base/1/2607_vm b/pg_data/base/1/2607_vm
deleted file mode 100644
index 092a7990..00000000
Binary files a/pg_data/base/1/2607_vm and /dev/null differ
diff --git a/pg_data/base/1/2608 b/pg_data/base/1/2608
deleted file mode 100644
index 1e07aa5f..00000000
Binary files a/pg_data/base/1/2608 and /dev/null differ
diff --git a/pg_data/base/1/2608_fsm b/pg_data/base/1/2608_fsm
deleted file mode 100644
index bcc30645..00000000
Binary files a/pg_data/base/1/2608_fsm and /dev/null differ
diff --git a/pg_data/base/1/2608_vm b/pg_data/base/1/2608_vm
deleted file mode 100644
index 4c919686..00000000
Binary files a/pg_data/base/1/2608_vm and /dev/null differ
diff --git a/pg_data/base/1/2609 b/pg_data/base/1/2609
deleted file mode 100644
index 57a6de1e..00000000
Binary files a/pg_data/base/1/2609 and /dev/null differ
diff --git a/pg_data/base/1/2609_fsm b/pg_data/base/1/2609_fsm
deleted file mode 100644
index 23a34f6e..00000000
Binary files a/pg_data/base/1/2609_fsm and /dev/null differ
diff --git a/pg_data/base/1/2609_vm b/pg_data/base/1/2609_vm
deleted file mode 100644
index 93912c54..00000000
Binary files a/pg_data/base/1/2609_vm and /dev/null differ
diff --git a/pg_data/base/1/2610 b/pg_data/base/1/2610
deleted file mode 100644
index 8d391a35..00000000
Binary files a/pg_data/base/1/2610 and /dev/null differ
diff --git a/pg_data/base/1/2610_fsm b/pg_data/base/1/2610_fsm
deleted file mode 100644
index 71b934d9..00000000
Binary files a/pg_data/base/1/2610_fsm and /dev/null differ
diff --git a/pg_data/base/1/2610_vm b/pg_data/base/1/2610_vm
deleted file mode 100644
index 56ff8243..00000000
Binary files a/pg_data/base/1/2610_vm and /dev/null differ
diff --git a/pg_data/base/1/2611 b/pg_data/base/1/2611
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/2612 b/pg_data/base/1/2612
deleted file mode 100644
index f8f37e9d..00000000
Binary files a/pg_data/base/1/2612 and /dev/null differ
diff --git a/pg_data/base/1/2612_fsm b/pg_data/base/1/2612_fsm
deleted file mode 100644
index c6aa3717..00000000
Binary files a/pg_data/base/1/2612_fsm and /dev/null differ
diff --git a/pg_data/base/1/2612_vm b/pg_data/base/1/2612_vm
deleted file mode 100644
index 8f5ced21..00000000
Binary files a/pg_data/base/1/2612_vm and /dev/null differ
diff --git a/pg_data/base/1/2613 b/pg_data/base/1/2613
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/2615 b/pg_data/base/1/2615
deleted file mode 100644
index c766eaa6..00000000
Binary files a/pg_data/base/1/2615 and /dev/null differ
diff --git a/pg_data/base/1/2615_fsm b/pg_data/base/1/2615_fsm
deleted file mode 100644
index 4586b693..00000000
Binary files a/pg_data/base/1/2615_fsm and /dev/null differ
diff --git a/pg_data/base/1/2615_vm b/pg_data/base/1/2615_vm
deleted file mode 100644
index 43b43033..00000000
Binary files a/pg_data/base/1/2615_vm and /dev/null differ
diff --git a/pg_data/base/1/2616 b/pg_data/base/1/2616
deleted file mode 100644
index ff499dcb..00000000
Binary files a/pg_data/base/1/2616 and /dev/null differ
diff --git a/pg_data/base/1/2616_fsm b/pg_data/base/1/2616_fsm
deleted file mode 100644
index 61959975..00000000
Binary files a/pg_data/base/1/2616_fsm and /dev/null differ
diff --git a/pg_data/base/1/2616_vm b/pg_data/base/1/2616_vm
deleted file mode 100644
index 74f1bf83..00000000
Binary files a/pg_data/base/1/2616_vm and /dev/null differ
diff --git a/pg_data/base/1/2617 b/pg_data/base/1/2617
deleted file mode 100644
index 320b8a86..00000000
Binary files a/pg_data/base/1/2617 and /dev/null differ
diff --git a/pg_data/base/1/2617_fsm b/pg_data/base/1/2617_fsm
deleted file mode 100644
index d6c4086e..00000000
Binary files a/pg_data/base/1/2617_fsm and /dev/null differ
diff --git a/pg_data/base/1/2617_vm b/pg_data/base/1/2617_vm
deleted file mode 100644
index f42274ff..00000000
Binary files a/pg_data/base/1/2617_vm and /dev/null differ
diff --git a/pg_data/base/1/2618 b/pg_data/base/1/2618
deleted file mode 100644
index 044acfb8..00000000
Binary files a/pg_data/base/1/2618 and /dev/null differ
diff --git a/pg_data/base/1/2618_fsm b/pg_data/base/1/2618_fsm
deleted file mode 100644
index b3164752..00000000
Binary files a/pg_data/base/1/2618_fsm and /dev/null differ
diff --git a/pg_data/base/1/2618_vm b/pg_data/base/1/2618_vm
deleted file mode 100644
index 9ee20df7..00000000
Binary files a/pg_data/base/1/2618_vm and /dev/null differ
diff --git a/pg_data/base/1/2619 b/pg_data/base/1/2619
deleted file mode 100644
index 33eb65bc..00000000
Binary files a/pg_data/base/1/2619 and /dev/null differ
diff --git a/pg_data/base/1/2619_fsm b/pg_data/base/1/2619_fsm
deleted file mode 100644
index efc7fe9b..00000000
Binary files a/pg_data/base/1/2619_fsm and /dev/null differ
diff --git a/pg_data/base/1/2619_vm b/pg_data/base/1/2619_vm
deleted file mode 100644
index 5bdcc977..00000000
Binary files a/pg_data/base/1/2619_vm and /dev/null differ
diff --git a/pg_data/base/1/2620 b/pg_data/base/1/2620
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/2650 b/pg_data/base/1/2650
deleted file mode 100644
index 9b77cd79..00000000
Binary files a/pg_data/base/1/2650 and /dev/null differ
diff --git a/pg_data/base/1/2651 b/pg_data/base/1/2651
deleted file mode 100644
index de9c117b..00000000
Binary files a/pg_data/base/1/2651 and /dev/null differ
diff --git a/pg_data/base/1/2652 b/pg_data/base/1/2652
deleted file mode 100644
index 667d35f2..00000000
Binary files a/pg_data/base/1/2652 and /dev/null differ
diff --git a/pg_data/base/1/2653 b/pg_data/base/1/2653
deleted file mode 100644
index 43dd6d2d..00000000
Binary files a/pg_data/base/1/2653 and /dev/null differ
diff --git a/pg_data/base/1/2654 b/pg_data/base/1/2654
deleted file mode 100644
index 6a25f47f..00000000
Binary files a/pg_data/base/1/2654 and /dev/null differ
diff --git a/pg_data/base/1/2655 b/pg_data/base/1/2655
deleted file mode 100644
index 462c3fd7..00000000
Binary files a/pg_data/base/1/2655 and /dev/null differ
diff --git a/pg_data/base/1/2656 b/pg_data/base/1/2656
deleted file mode 100644
index fc16ea88..00000000
Binary files a/pg_data/base/1/2656 and /dev/null differ
diff --git a/pg_data/base/1/2657 b/pg_data/base/1/2657
deleted file mode 100644
index 917662d9..00000000
Binary files a/pg_data/base/1/2657 and /dev/null differ
diff --git a/pg_data/base/1/2658 b/pg_data/base/1/2658
deleted file mode 100644
index e8d9249a..00000000
Binary files a/pg_data/base/1/2658 and /dev/null differ
diff --git a/pg_data/base/1/2659 b/pg_data/base/1/2659
deleted file mode 100644
index 2bf406e7..00000000
Binary files a/pg_data/base/1/2659 and /dev/null differ
diff --git a/pg_data/base/1/2660 b/pg_data/base/1/2660
deleted file mode 100644
index 3f36c6db..00000000
Binary files a/pg_data/base/1/2660 and /dev/null differ
diff --git a/pg_data/base/1/2661 b/pg_data/base/1/2661
deleted file mode 100644
index ab367624..00000000
Binary files a/pg_data/base/1/2661 and /dev/null differ
diff --git a/pg_data/base/1/2662 b/pg_data/base/1/2662
deleted file mode 100644
index a62fe4e6..00000000
Binary files a/pg_data/base/1/2662 and /dev/null differ
diff --git a/pg_data/base/1/2663 b/pg_data/base/1/2663
deleted file mode 100644
index 9bf8666f..00000000
Binary files a/pg_data/base/1/2663 and /dev/null differ
diff --git a/pg_data/base/1/2664 b/pg_data/base/1/2664
deleted file mode 100644
index b213b561..00000000
Binary files a/pg_data/base/1/2664 and /dev/null differ
diff --git a/pg_data/base/1/2665 b/pg_data/base/1/2665
deleted file mode 100644
index d62993d4..00000000
Binary files a/pg_data/base/1/2665 and /dev/null differ
diff --git a/pg_data/base/1/2666 b/pg_data/base/1/2666
deleted file mode 100644
index 14294d70..00000000
Binary files a/pg_data/base/1/2666 and /dev/null differ
diff --git a/pg_data/base/1/2667 b/pg_data/base/1/2667
deleted file mode 100644
index d722c443..00000000
Binary files a/pg_data/base/1/2667 and /dev/null differ
diff --git a/pg_data/base/1/2668 b/pg_data/base/1/2668
deleted file mode 100644
index a91f7e89..00000000
Binary files a/pg_data/base/1/2668 and /dev/null differ
diff --git a/pg_data/base/1/2669 b/pg_data/base/1/2669
deleted file mode 100644
index 9f2485ca..00000000
Binary files a/pg_data/base/1/2669 and /dev/null differ
diff --git a/pg_data/base/1/2670 b/pg_data/base/1/2670
deleted file mode 100644
index 282e3c0c..00000000
Binary files a/pg_data/base/1/2670 and /dev/null differ
diff --git a/pg_data/base/1/2673 b/pg_data/base/1/2673
deleted file mode 100644
index 1f0e207c..00000000
Binary files a/pg_data/base/1/2673 and /dev/null differ
diff --git a/pg_data/base/1/2674 b/pg_data/base/1/2674
deleted file mode 100644
index e5c6c24e..00000000
Binary files a/pg_data/base/1/2674 and /dev/null differ
diff --git a/pg_data/base/1/2675 b/pg_data/base/1/2675
deleted file mode 100644
index b2cf85f2..00000000
Binary files a/pg_data/base/1/2675 and /dev/null differ
diff --git a/pg_data/base/1/2678 b/pg_data/base/1/2678
deleted file mode 100644
index d9f007f4..00000000
Binary files a/pg_data/base/1/2678 and /dev/null differ
diff --git a/pg_data/base/1/2679 b/pg_data/base/1/2679
deleted file mode 100644
index 63371c89..00000000
Binary files a/pg_data/base/1/2679 and /dev/null differ
diff --git a/pg_data/base/1/2680 b/pg_data/base/1/2680
deleted file mode 100644
index fc919b78..00000000
Binary files a/pg_data/base/1/2680 and /dev/null differ
diff --git a/pg_data/base/1/2681 b/pg_data/base/1/2681
deleted file mode 100644
index 9571e387..00000000
Binary files a/pg_data/base/1/2681 and /dev/null differ
diff --git a/pg_data/base/1/2682 b/pg_data/base/1/2682
deleted file mode 100644
index 9c9fa755..00000000
Binary files a/pg_data/base/1/2682 and /dev/null differ
diff --git a/pg_data/base/1/2683 b/pg_data/base/1/2683
deleted file mode 100644
index 3ecf046a..00000000
Binary files a/pg_data/base/1/2683 and /dev/null differ
diff --git a/pg_data/base/1/2684 b/pg_data/base/1/2684
deleted file mode 100644
index e8f3f7b1..00000000
Binary files a/pg_data/base/1/2684 and /dev/null differ
diff --git a/pg_data/base/1/2685 b/pg_data/base/1/2685
deleted file mode 100644
index 8035bbae..00000000
Binary files a/pg_data/base/1/2685 and /dev/null differ
diff --git a/pg_data/base/1/2686 b/pg_data/base/1/2686
deleted file mode 100644
index 8c54aa8d..00000000
Binary files a/pg_data/base/1/2686 and /dev/null differ
diff --git a/pg_data/base/1/2687 b/pg_data/base/1/2687
deleted file mode 100644
index 5f4cc821..00000000
Binary files a/pg_data/base/1/2687 and /dev/null differ
diff --git a/pg_data/base/1/2688 b/pg_data/base/1/2688
deleted file mode 100644
index 67a922dd..00000000
Binary files a/pg_data/base/1/2688 and /dev/null differ
diff --git a/pg_data/base/1/2689 b/pg_data/base/1/2689
deleted file mode 100644
index 40b21d6e..00000000
Binary files a/pg_data/base/1/2689 and /dev/null differ
diff --git a/pg_data/base/1/2690 b/pg_data/base/1/2690
deleted file mode 100644
index 78556177..00000000
Binary files a/pg_data/base/1/2690 and /dev/null differ
diff --git a/pg_data/base/1/2691 b/pg_data/base/1/2691
deleted file mode 100644
index 8a7d74cc..00000000
Binary files a/pg_data/base/1/2691 and /dev/null differ
diff --git a/pg_data/base/1/2692 b/pg_data/base/1/2692
deleted file mode 100644
index 86d568f6..00000000
Binary files a/pg_data/base/1/2692 and /dev/null differ
diff --git a/pg_data/base/1/2693 b/pg_data/base/1/2693
deleted file mode 100644
index 94c25c65..00000000
Binary files a/pg_data/base/1/2693 and /dev/null differ
diff --git a/pg_data/base/1/2696 b/pg_data/base/1/2696
deleted file mode 100644
index fa304e35..00000000
Binary files a/pg_data/base/1/2696 and /dev/null differ
diff --git a/pg_data/base/1/2699 b/pg_data/base/1/2699
deleted file mode 100644
index 80405eb0..00000000
Binary files a/pg_data/base/1/2699 and /dev/null differ
diff --git a/pg_data/base/1/2701 b/pg_data/base/1/2701
deleted file mode 100644
index 44d6a07e..00000000
Binary files a/pg_data/base/1/2701 and /dev/null differ
diff --git a/pg_data/base/1/2702 b/pg_data/base/1/2702
deleted file mode 100644
index 641e027c..00000000
Binary files a/pg_data/base/1/2702 and /dev/null differ
diff --git a/pg_data/base/1/2703 b/pg_data/base/1/2703
deleted file mode 100644
index 325a5cf2..00000000
Binary files a/pg_data/base/1/2703 and /dev/null differ
diff --git a/pg_data/base/1/2704 b/pg_data/base/1/2704
deleted file mode 100644
index c6661f47..00000000
Binary files a/pg_data/base/1/2704 and /dev/null differ
diff --git a/pg_data/base/1/2753 b/pg_data/base/1/2753
deleted file mode 100644
index 34b60a54..00000000
Binary files a/pg_data/base/1/2753 and /dev/null differ
diff --git a/pg_data/base/1/2753_fsm b/pg_data/base/1/2753_fsm
deleted file mode 100644
index 50ff81fb..00000000
Binary files a/pg_data/base/1/2753_fsm and /dev/null differ
diff --git a/pg_data/base/1/2753_vm b/pg_data/base/1/2753_vm
deleted file mode 100644
index 1935ad03..00000000
Binary files a/pg_data/base/1/2753_vm and /dev/null differ
diff --git a/pg_data/base/1/2754 b/pg_data/base/1/2754
deleted file mode 100644
index 982d5ea9..00000000
Binary files a/pg_data/base/1/2754 and /dev/null differ
diff --git a/pg_data/base/1/2755 b/pg_data/base/1/2755
deleted file mode 100644
index bca69e69..00000000
Binary files a/pg_data/base/1/2755 and /dev/null differ
diff --git a/pg_data/base/1/2756 b/pg_data/base/1/2756
deleted file mode 100644
index 429461b2..00000000
Binary files a/pg_data/base/1/2756 and /dev/null differ
diff --git a/pg_data/base/1/2757 b/pg_data/base/1/2757
deleted file mode 100644
index 19daa2d6..00000000
Binary files a/pg_data/base/1/2757 and /dev/null differ
diff --git a/pg_data/base/1/2830 b/pg_data/base/1/2830
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/2831 b/pg_data/base/1/2831
deleted file mode 100644
index 055e729c..00000000
Binary files a/pg_data/base/1/2831 and /dev/null differ
diff --git a/pg_data/base/1/2832 b/pg_data/base/1/2832
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/2833 b/pg_data/base/1/2833
deleted file mode 100644
index d55eccf8..00000000
Binary files a/pg_data/base/1/2833 and /dev/null differ
diff --git a/pg_data/base/1/2834 b/pg_data/base/1/2834
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/2835 b/pg_data/base/1/2835
deleted file mode 100644
index 1b347a02..00000000
Binary files a/pg_data/base/1/2835 and /dev/null differ
diff --git a/pg_data/base/1/2836 b/pg_data/base/1/2836
deleted file mode 100644
index 1ba89995..00000000
Binary files a/pg_data/base/1/2836 and /dev/null differ
diff --git a/pg_data/base/1/2836_fsm b/pg_data/base/1/2836_fsm
deleted file mode 100644
index d884400a..00000000
Binary files a/pg_data/base/1/2836_fsm and /dev/null differ
diff --git a/pg_data/base/1/2836_vm b/pg_data/base/1/2836_vm
deleted file mode 100644
index 6fad7576..00000000
Binary files a/pg_data/base/1/2836_vm and /dev/null differ
diff --git a/pg_data/base/1/2837 b/pg_data/base/1/2837
deleted file mode 100644
index 6e813fcc..00000000
Binary files a/pg_data/base/1/2837 and /dev/null differ
diff --git a/pg_data/base/1/2838 b/pg_data/base/1/2838
deleted file mode 100644
index eb5ac333..00000000
Binary files a/pg_data/base/1/2838 and /dev/null differ
diff --git a/pg_data/base/1/2838_fsm b/pg_data/base/1/2838_fsm
deleted file mode 100644
index 553d3013..00000000
Binary files a/pg_data/base/1/2838_fsm and /dev/null differ
diff --git a/pg_data/base/1/2838_vm b/pg_data/base/1/2838_vm
deleted file mode 100644
index 5da83fdd..00000000
Binary files a/pg_data/base/1/2838_vm and /dev/null differ
diff --git a/pg_data/base/1/2839 b/pg_data/base/1/2839
deleted file mode 100644
index 15255064..00000000
Binary files a/pg_data/base/1/2839 and /dev/null differ
diff --git a/pg_data/base/1/2840 b/pg_data/base/1/2840
deleted file mode 100644
index 283fa246..00000000
Binary files a/pg_data/base/1/2840 and /dev/null differ
diff --git a/pg_data/base/1/2840_fsm b/pg_data/base/1/2840_fsm
deleted file mode 100644
index a71fda29..00000000
Binary files a/pg_data/base/1/2840_fsm and /dev/null differ
diff --git a/pg_data/base/1/2840_vm b/pg_data/base/1/2840_vm
deleted file mode 100644
index 6929e00b..00000000
Binary files a/pg_data/base/1/2840_vm and /dev/null differ
diff --git a/pg_data/base/1/2841 b/pg_data/base/1/2841
deleted file mode 100644
index eb0d63f9..00000000
Binary files a/pg_data/base/1/2841 and /dev/null differ
diff --git a/pg_data/base/1/2995 b/pg_data/base/1/2995
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/2996 b/pg_data/base/1/2996
deleted file mode 100644
index 26fdc5ad..00000000
Binary files a/pg_data/base/1/2996 and /dev/null differ
diff --git a/pg_data/base/1/3079 b/pg_data/base/1/3079
deleted file mode 100644
index 9a5392a2..00000000
Binary files a/pg_data/base/1/3079 and /dev/null differ
diff --git a/pg_data/base/1/3079_fsm b/pg_data/base/1/3079_fsm
deleted file mode 100644
index 162e2a50..00000000
Binary files a/pg_data/base/1/3079_fsm and /dev/null differ
diff --git a/pg_data/base/1/3079_vm b/pg_data/base/1/3079_vm
deleted file mode 100644
index 62755fcc..00000000
Binary files a/pg_data/base/1/3079_vm and /dev/null differ
diff --git a/pg_data/base/1/3080 b/pg_data/base/1/3080
deleted file mode 100644
index f0611ff2..00000000
Binary files a/pg_data/base/1/3080 and /dev/null differ
diff --git a/pg_data/base/1/3081 b/pg_data/base/1/3081
deleted file mode 100644
index 72d651e1..00000000
Binary files a/pg_data/base/1/3081 and /dev/null differ
diff --git a/pg_data/base/1/3085 b/pg_data/base/1/3085
deleted file mode 100644
index 7f471602..00000000
Binary files a/pg_data/base/1/3085 and /dev/null differ
diff --git a/pg_data/base/1/3118 b/pg_data/base/1/3118
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/3119 b/pg_data/base/1/3119
deleted file mode 100644
index 4366a64d..00000000
Binary files a/pg_data/base/1/3119 and /dev/null differ
diff --git a/pg_data/base/1/3164 b/pg_data/base/1/3164
deleted file mode 100644
index 1f8bbb9e..00000000
Binary files a/pg_data/base/1/3164 and /dev/null differ
diff --git a/pg_data/base/1/3256 b/pg_data/base/1/3256
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/3257 b/pg_data/base/1/3257
deleted file mode 100644
index 93e0b3db..00000000
Binary files a/pg_data/base/1/3257 and /dev/null differ
diff --git a/pg_data/base/1/3258 b/pg_data/base/1/3258
deleted file mode 100644
index cc352690..00000000
Binary files a/pg_data/base/1/3258 and /dev/null differ
diff --git a/pg_data/base/1/3350 b/pg_data/base/1/3350
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/3351 b/pg_data/base/1/3351
deleted file mode 100644
index dbbcd8e6..00000000
Binary files a/pg_data/base/1/3351 and /dev/null differ
diff --git a/pg_data/base/1/3379 b/pg_data/base/1/3379
deleted file mode 100644
index 7baadf3c..00000000
Binary files a/pg_data/base/1/3379 and /dev/null differ
diff --git a/pg_data/base/1/3380 b/pg_data/base/1/3380
deleted file mode 100644
index feef5c51..00000000
Binary files a/pg_data/base/1/3380 and /dev/null differ
diff --git a/pg_data/base/1/3381 b/pg_data/base/1/3381
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/3394 b/pg_data/base/1/3394
deleted file mode 100644
index 2a9d1a83..00000000
Binary files a/pg_data/base/1/3394 and /dev/null differ
diff --git a/pg_data/base/1/3394_fsm b/pg_data/base/1/3394_fsm
deleted file mode 100644
index a552a3af..00000000
Binary files a/pg_data/base/1/3394_fsm and /dev/null differ
diff --git a/pg_data/base/1/3394_vm b/pg_data/base/1/3394_vm
deleted file mode 100644
index 94c1d58e..00000000
Binary files a/pg_data/base/1/3394_vm and /dev/null differ
diff --git a/pg_data/base/1/3395 b/pg_data/base/1/3395
deleted file mode 100644
index 86c4b57f..00000000
Binary files a/pg_data/base/1/3395 and /dev/null differ
diff --git a/pg_data/base/1/3429 b/pg_data/base/1/3429
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/3430 b/pg_data/base/1/3430
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/3431 b/pg_data/base/1/3431
deleted file mode 100644
index 35aa3b3b..00000000
Binary files a/pg_data/base/1/3431 and /dev/null differ
diff --git a/pg_data/base/1/3433 b/pg_data/base/1/3433
deleted file mode 100644
index 1b220f52..00000000
Binary files a/pg_data/base/1/3433 and /dev/null differ
diff --git a/pg_data/base/1/3439 b/pg_data/base/1/3439
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/3440 b/pg_data/base/1/3440
deleted file mode 100644
index d681222e..00000000
Binary files a/pg_data/base/1/3440 and /dev/null differ
diff --git a/pg_data/base/1/3455 b/pg_data/base/1/3455
deleted file mode 100644
index 38030676..00000000
Binary files a/pg_data/base/1/3455 and /dev/null differ
diff --git a/pg_data/base/1/3456 b/pg_data/base/1/3456
deleted file mode 100644
index 3b984eef..00000000
Binary files a/pg_data/base/1/3456 and /dev/null differ
diff --git a/pg_data/base/1/3456_fsm b/pg_data/base/1/3456_fsm
deleted file mode 100644
index c81fd33e..00000000
Binary files a/pg_data/base/1/3456_fsm and /dev/null differ
diff --git a/pg_data/base/1/3456_vm b/pg_data/base/1/3456_vm
deleted file mode 100644
index 3ad93c1e..00000000
Binary files a/pg_data/base/1/3456_vm and /dev/null differ
diff --git a/pg_data/base/1/3466 b/pg_data/base/1/3466
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/3467 b/pg_data/base/1/3467
deleted file mode 100644
index f0659a97..00000000
Binary files a/pg_data/base/1/3467 and /dev/null differ
diff --git a/pg_data/base/1/3468 b/pg_data/base/1/3468
deleted file mode 100644
index ee39717f..00000000
Binary files a/pg_data/base/1/3468 and /dev/null differ
diff --git a/pg_data/base/1/3501 b/pg_data/base/1/3501
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/3502 b/pg_data/base/1/3502
deleted file mode 100644
index 1b7967e4..00000000
Binary files a/pg_data/base/1/3502 and /dev/null differ
diff --git a/pg_data/base/1/3503 b/pg_data/base/1/3503
deleted file mode 100644
index 2343fc33..00000000
Binary files a/pg_data/base/1/3503 and /dev/null differ
diff --git a/pg_data/base/1/3534 b/pg_data/base/1/3534
deleted file mode 100644
index 987c7d69..00000000
Binary files a/pg_data/base/1/3534 and /dev/null differ
diff --git a/pg_data/base/1/3541 b/pg_data/base/1/3541
deleted file mode 100644
index 2136ea79..00000000
Binary files a/pg_data/base/1/3541 and /dev/null differ
diff --git a/pg_data/base/1/3541_fsm b/pg_data/base/1/3541_fsm
deleted file mode 100644
index 6e9f55a8..00000000
Binary files a/pg_data/base/1/3541_fsm and /dev/null differ
diff --git a/pg_data/base/1/3541_vm b/pg_data/base/1/3541_vm
deleted file mode 100644
index 24a6f920..00000000
Binary files a/pg_data/base/1/3541_vm and /dev/null differ
diff --git a/pg_data/base/1/3542 b/pg_data/base/1/3542
deleted file mode 100644
index 9608ce67..00000000
Binary files a/pg_data/base/1/3542 and /dev/null differ
diff --git a/pg_data/base/1/3574 b/pg_data/base/1/3574
deleted file mode 100644
index 5834e041..00000000
Binary files a/pg_data/base/1/3574 and /dev/null differ
diff --git a/pg_data/base/1/3575 b/pg_data/base/1/3575
deleted file mode 100644
index 2cc5f4cb..00000000
Binary files a/pg_data/base/1/3575 and /dev/null differ
diff --git a/pg_data/base/1/3576 b/pg_data/base/1/3576
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/3596 b/pg_data/base/1/3596
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/3597 b/pg_data/base/1/3597
deleted file mode 100644
index 02e55672..00000000
Binary files a/pg_data/base/1/3597 and /dev/null differ
diff --git a/pg_data/base/1/3598 b/pg_data/base/1/3598
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/3599 b/pg_data/base/1/3599
deleted file mode 100644
index b37a085d..00000000
Binary files a/pg_data/base/1/3599 and /dev/null differ
diff --git a/pg_data/base/1/3600 b/pg_data/base/1/3600
deleted file mode 100644
index 72bcae12..00000000
Binary files a/pg_data/base/1/3600 and /dev/null differ
diff --git a/pg_data/base/1/3600_fsm b/pg_data/base/1/3600_fsm
deleted file mode 100644
index 499a0c2a..00000000
Binary files a/pg_data/base/1/3600_fsm and /dev/null differ
diff --git a/pg_data/base/1/3600_vm b/pg_data/base/1/3600_vm
deleted file mode 100644
index dff6b7b8..00000000
Binary files a/pg_data/base/1/3600_vm and /dev/null differ
diff --git a/pg_data/base/1/3601 b/pg_data/base/1/3601
deleted file mode 100644
index bb1b3c1b..00000000
Binary files a/pg_data/base/1/3601 and /dev/null differ
diff --git a/pg_data/base/1/3601_fsm b/pg_data/base/1/3601_fsm
deleted file mode 100644
index edc65176..00000000
Binary files a/pg_data/base/1/3601_fsm and /dev/null differ
diff --git a/pg_data/base/1/3601_vm b/pg_data/base/1/3601_vm
deleted file mode 100644
index 7a487e4a..00000000
Binary files a/pg_data/base/1/3601_vm and /dev/null differ
diff --git a/pg_data/base/1/3602 b/pg_data/base/1/3602
deleted file mode 100644
index f2003544..00000000
Binary files a/pg_data/base/1/3602 and /dev/null differ
diff --git a/pg_data/base/1/3602_fsm b/pg_data/base/1/3602_fsm
deleted file mode 100644
index 116ac28a..00000000
Binary files a/pg_data/base/1/3602_fsm and /dev/null differ
diff --git a/pg_data/base/1/3602_vm b/pg_data/base/1/3602_vm
deleted file mode 100644
index a892a1de..00000000
Binary files a/pg_data/base/1/3602_vm and /dev/null differ
diff --git a/pg_data/base/1/3603 b/pg_data/base/1/3603
deleted file mode 100644
index 697edb1e..00000000
Binary files a/pg_data/base/1/3603 and /dev/null differ
diff --git a/pg_data/base/1/3603_fsm b/pg_data/base/1/3603_fsm
deleted file mode 100644
index d2d495bf..00000000
Binary files a/pg_data/base/1/3603_fsm and /dev/null differ
diff --git a/pg_data/base/1/3603_vm b/pg_data/base/1/3603_vm
deleted file mode 100644
index 8ce9a569..00000000
Binary files a/pg_data/base/1/3603_vm and /dev/null differ
diff --git a/pg_data/base/1/3604 b/pg_data/base/1/3604
deleted file mode 100644
index f70243e5..00000000
Binary files a/pg_data/base/1/3604 and /dev/null differ
diff --git a/pg_data/base/1/3605 b/pg_data/base/1/3605
deleted file mode 100644
index ed0c072c..00000000
Binary files a/pg_data/base/1/3605 and /dev/null differ
diff --git a/pg_data/base/1/3606 b/pg_data/base/1/3606
deleted file mode 100644
index 1eafef8e..00000000
Binary files a/pg_data/base/1/3606 and /dev/null differ
diff --git a/pg_data/base/1/3607 b/pg_data/base/1/3607
deleted file mode 100644
index 13bebb42..00000000
Binary files a/pg_data/base/1/3607 and /dev/null differ
diff --git a/pg_data/base/1/3608 b/pg_data/base/1/3608
deleted file mode 100644
index 6ee9023e..00000000
Binary files a/pg_data/base/1/3608 and /dev/null differ
diff --git a/pg_data/base/1/3609 b/pg_data/base/1/3609
deleted file mode 100644
index ed4aa8eb..00000000
Binary files a/pg_data/base/1/3609 and /dev/null differ
diff --git a/pg_data/base/1/3712 b/pg_data/base/1/3712
deleted file mode 100644
index 22c569ed..00000000
Binary files a/pg_data/base/1/3712 and /dev/null differ
diff --git a/pg_data/base/1/3764 b/pg_data/base/1/3764
deleted file mode 100644
index ee6190f3..00000000
Binary files a/pg_data/base/1/3764 and /dev/null differ
diff --git a/pg_data/base/1/3764_fsm b/pg_data/base/1/3764_fsm
deleted file mode 100644
index 6b20410c..00000000
Binary files a/pg_data/base/1/3764_fsm and /dev/null differ
diff --git a/pg_data/base/1/3764_vm b/pg_data/base/1/3764_vm
deleted file mode 100644
index dbc16086..00000000
Binary files a/pg_data/base/1/3764_vm and /dev/null differ
diff --git a/pg_data/base/1/3766 b/pg_data/base/1/3766
deleted file mode 100644
index 19085451..00000000
Binary files a/pg_data/base/1/3766 and /dev/null differ
diff --git a/pg_data/base/1/3767 b/pg_data/base/1/3767
deleted file mode 100644
index 766fa1ef..00000000
Binary files a/pg_data/base/1/3767 and /dev/null differ
diff --git a/pg_data/base/1/3997 b/pg_data/base/1/3997
deleted file mode 100644
index b495878b..00000000
Binary files a/pg_data/base/1/3997 and /dev/null differ
diff --git a/pg_data/base/1/4143 b/pg_data/base/1/4143
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/4144 b/pg_data/base/1/4144
deleted file mode 100644
index dd2eea87..00000000
Binary files a/pg_data/base/1/4144 and /dev/null differ
diff --git a/pg_data/base/1/4145 b/pg_data/base/1/4145
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/4146 b/pg_data/base/1/4146
deleted file mode 100644
index 3316de77..00000000
Binary files a/pg_data/base/1/4146 and /dev/null differ
diff --git a/pg_data/base/1/4147 b/pg_data/base/1/4147
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/4148 b/pg_data/base/1/4148
deleted file mode 100644
index bcbe3ae1..00000000
Binary files a/pg_data/base/1/4148 and /dev/null differ
diff --git a/pg_data/base/1/4149 b/pg_data/base/1/4149
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/4150 b/pg_data/base/1/4150
deleted file mode 100644
index 2b63ae9a..00000000
Binary files a/pg_data/base/1/4150 and /dev/null differ
diff --git a/pg_data/base/1/4151 b/pg_data/base/1/4151
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/4152 b/pg_data/base/1/4152
deleted file mode 100644
index 91b17f45..00000000
Binary files a/pg_data/base/1/4152 and /dev/null differ
diff --git a/pg_data/base/1/4153 b/pg_data/base/1/4153
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/4154 b/pg_data/base/1/4154
deleted file mode 100644
index fe00f95e..00000000
Binary files a/pg_data/base/1/4154 and /dev/null differ
diff --git a/pg_data/base/1/4155 b/pg_data/base/1/4155
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/4156 b/pg_data/base/1/4156
deleted file mode 100644
index 7378f8d7..00000000
Binary files a/pg_data/base/1/4156 and /dev/null differ
diff --git a/pg_data/base/1/4157 b/pg_data/base/1/4157
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/4158 b/pg_data/base/1/4158
deleted file mode 100644
index d01b91a2..00000000
Binary files a/pg_data/base/1/4158 and /dev/null differ
diff --git a/pg_data/base/1/4159 b/pg_data/base/1/4159
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/4160 b/pg_data/base/1/4160
deleted file mode 100644
index 3d3ea729..00000000
Binary files a/pg_data/base/1/4160 and /dev/null differ
diff --git a/pg_data/base/1/4163 b/pg_data/base/1/4163
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/4164 b/pg_data/base/1/4164
deleted file mode 100644
index 6e7a9181..00000000
Binary files a/pg_data/base/1/4164 and /dev/null differ
diff --git a/pg_data/base/1/4165 b/pg_data/base/1/4165
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/4166 b/pg_data/base/1/4166
deleted file mode 100644
index 4bc6369b..00000000
Binary files a/pg_data/base/1/4166 and /dev/null differ
diff --git a/pg_data/base/1/4167 b/pg_data/base/1/4167
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/4168 b/pg_data/base/1/4168
deleted file mode 100644
index 1faf4836..00000000
Binary files a/pg_data/base/1/4168 and /dev/null differ
diff --git a/pg_data/base/1/4169 b/pg_data/base/1/4169
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/4170 b/pg_data/base/1/4170
deleted file mode 100644
index 998dd8ee..00000000
Binary files a/pg_data/base/1/4170 and /dev/null differ
diff --git a/pg_data/base/1/4171 b/pg_data/base/1/4171
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/4172 b/pg_data/base/1/4172
deleted file mode 100644
index 87a43dd2..00000000
Binary files a/pg_data/base/1/4172 and /dev/null differ
diff --git a/pg_data/base/1/4173 b/pg_data/base/1/4173
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/4174 b/pg_data/base/1/4174
deleted file mode 100644
index 3887ea03..00000000
Binary files a/pg_data/base/1/4174 and /dev/null differ
diff --git a/pg_data/base/1/5002 b/pg_data/base/1/5002
deleted file mode 100644
index d793036d..00000000
Binary files a/pg_data/base/1/5002 and /dev/null differ
diff --git a/pg_data/base/1/548 b/pg_data/base/1/548
deleted file mode 100644
index 1191e21f..00000000
Binary files a/pg_data/base/1/548 and /dev/null differ
diff --git a/pg_data/base/1/549 b/pg_data/base/1/549
deleted file mode 100644
index 8b8b1d2c..00000000
Binary files a/pg_data/base/1/549 and /dev/null differ
diff --git a/pg_data/base/1/6102 b/pg_data/base/1/6102
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/6104 b/pg_data/base/1/6104
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/6106 b/pg_data/base/1/6106
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/6110 b/pg_data/base/1/6110
deleted file mode 100644
index 60cce00a..00000000
Binary files a/pg_data/base/1/6110 and /dev/null differ
diff --git a/pg_data/base/1/6111 b/pg_data/base/1/6111
deleted file mode 100644
index b2cff8e7..00000000
Binary files a/pg_data/base/1/6111 and /dev/null differ
diff --git a/pg_data/base/1/6112 b/pg_data/base/1/6112
deleted file mode 100644
index 5dbbebf7..00000000
Binary files a/pg_data/base/1/6112 and /dev/null differ
diff --git a/pg_data/base/1/6113 b/pg_data/base/1/6113
deleted file mode 100644
index 0ebfc0f2..00000000
Binary files a/pg_data/base/1/6113 and /dev/null differ
diff --git a/pg_data/base/1/6116 b/pg_data/base/1/6116
deleted file mode 100644
index 350ab3f3..00000000
Binary files a/pg_data/base/1/6116 and /dev/null differ
diff --git a/pg_data/base/1/6117 b/pg_data/base/1/6117
deleted file mode 100644
index e2d987ca..00000000
Binary files a/pg_data/base/1/6117 and /dev/null differ
diff --git a/pg_data/base/1/6175 b/pg_data/base/1/6175
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/6176 b/pg_data/base/1/6176
deleted file mode 100644
index fa40414d..00000000
Binary files a/pg_data/base/1/6176 and /dev/null differ
diff --git a/pg_data/base/1/6228 b/pg_data/base/1/6228
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/6229 b/pg_data/base/1/6229
deleted file mode 100644
index edc8a3ad..00000000
Binary files a/pg_data/base/1/6229 and /dev/null differ
diff --git a/pg_data/base/1/6237 b/pg_data/base/1/6237
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/6238 b/pg_data/base/1/6238
deleted file mode 100644
index 1a06df74..00000000
Binary files a/pg_data/base/1/6238 and /dev/null differ
diff --git a/pg_data/base/1/6239 b/pg_data/base/1/6239
deleted file mode 100644
index 3f1e40c6..00000000
Binary files a/pg_data/base/1/6239 and /dev/null differ
diff --git a/pg_data/base/1/6351 b/pg_data/base/1/6351
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/6352 b/pg_data/base/1/6352
deleted file mode 100644
index 2ad318b9..00000000
Binary files a/pg_data/base/1/6352 and /dev/null differ
diff --git a/pg_data/base/1/826 b/pg_data/base/1/826
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/1/827 b/pg_data/base/1/827
deleted file mode 100644
index be40fb08..00000000
Binary files a/pg_data/base/1/827 and /dev/null differ
diff --git a/pg_data/base/1/828 b/pg_data/base/1/828
deleted file mode 100644
index 2b660b4d..00000000
Binary files a/pg_data/base/1/828 and /dev/null differ
diff --git a/pg_data/base/1/PG_VERSION b/pg_data/base/1/PG_VERSION
deleted file mode 100644
index 3c032078..00000000
--- a/pg_data/base/1/PG_VERSION
+++ /dev/null
@@ -1 +0,0 @@
-18
diff --git a/pg_data/base/1/pg_filenode.map b/pg_data/base/1/pg_filenode.map
deleted file mode 100644
index 4fc801aa..00000000
Binary files a/pg_data/base/1/pg_filenode.map and /dev/null differ
diff --git a/pg_data/base/1/pg_internal.init b/pg_data/base/1/pg_internal.init
deleted file mode 100644
index 27e93fe5..00000000
Binary files a/pg_data/base/1/pg_internal.init and /dev/null differ
diff --git a/pg_data/base/16384/112 b/pg_data/base/16384/112
deleted file mode 100644
index 81eb3057..00000000
Binary files a/pg_data/base/16384/112 and /dev/null differ
diff --git a/pg_data/base/16384/113 b/pg_data/base/16384/113
deleted file mode 100644
index 68d1a39c..00000000
Binary files a/pg_data/base/16384/113 and /dev/null differ
diff --git a/pg_data/base/16384/1247 b/pg_data/base/16384/1247
deleted file mode 100644
index 596920af..00000000
Binary files a/pg_data/base/16384/1247 and /dev/null differ
diff --git a/pg_data/base/16384/1247_fsm b/pg_data/base/16384/1247_fsm
deleted file mode 100644
index a1b879ac..00000000
Binary files a/pg_data/base/16384/1247_fsm and /dev/null differ
diff --git a/pg_data/base/16384/1247_vm b/pg_data/base/16384/1247_vm
deleted file mode 100644
index 3e7dfb8c..00000000
Binary files a/pg_data/base/16384/1247_vm and /dev/null differ
diff --git a/pg_data/base/16384/1249 b/pg_data/base/16384/1249
deleted file mode 100644
index e7d83b88..00000000
Binary files a/pg_data/base/16384/1249 and /dev/null differ
diff --git a/pg_data/base/16384/1249_fsm b/pg_data/base/16384/1249_fsm
deleted file mode 100644
index ea45f419..00000000
Binary files a/pg_data/base/16384/1249_fsm and /dev/null differ
diff --git a/pg_data/base/16384/1249_vm b/pg_data/base/16384/1249_vm
deleted file mode 100644
index 48d6a79c..00000000
Binary files a/pg_data/base/16384/1249_vm and /dev/null differ
diff --git a/pg_data/base/16384/1255 b/pg_data/base/16384/1255
deleted file mode 100644
index 9b1b6a20..00000000
Binary files a/pg_data/base/16384/1255 and /dev/null differ
diff --git a/pg_data/base/16384/1255_fsm b/pg_data/base/16384/1255_fsm
deleted file mode 100644
index 4b44eb38..00000000
Binary files a/pg_data/base/16384/1255_fsm and /dev/null differ
diff --git a/pg_data/base/16384/1255_vm b/pg_data/base/16384/1255_vm
deleted file mode 100644
index b13a5334..00000000
Binary files a/pg_data/base/16384/1255_vm and /dev/null differ
diff --git a/pg_data/base/16384/1259 b/pg_data/base/16384/1259
deleted file mode 100644
index 21623492..00000000
Binary files a/pg_data/base/16384/1259 and /dev/null differ
diff --git a/pg_data/base/16384/1259_fsm b/pg_data/base/16384/1259_fsm
deleted file mode 100644
index b0409824..00000000
Binary files a/pg_data/base/16384/1259_fsm and /dev/null differ
diff --git a/pg_data/base/16384/1259_vm b/pg_data/base/16384/1259_vm
deleted file mode 100644
index e224b536..00000000
Binary files a/pg_data/base/16384/1259_vm and /dev/null differ
diff --git a/pg_data/base/16384/13476 b/pg_data/base/16384/13476
deleted file mode 100644
index 802335b9..00000000
Binary files a/pg_data/base/16384/13476 and /dev/null differ
diff --git a/pg_data/base/16384/13476_fsm b/pg_data/base/16384/13476_fsm
deleted file mode 100644
index 59faee98..00000000
Binary files a/pg_data/base/16384/13476_fsm and /dev/null differ
diff --git a/pg_data/base/16384/13476_vm b/pg_data/base/16384/13476_vm
deleted file mode 100644
index ba689939..00000000
Binary files a/pg_data/base/16384/13476_vm and /dev/null differ
diff --git a/pg_data/base/16384/13479 b/pg_data/base/16384/13479
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/13480 b/pg_data/base/16384/13480
deleted file mode 100644
index 1916e27f..00000000
Binary files a/pg_data/base/16384/13480 and /dev/null differ
diff --git a/pg_data/base/16384/13481 b/pg_data/base/16384/13481
deleted file mode 100644
index d698d314..00000000
Binary files a/pg_data/base/16384/13481 and /dev/null differ
diff --git a/pg_data/base/16384/13481_fsm b/pg_data/base/16384/13481_fsm
deleted file mode 100644
index d1f434a1..00000000
Binary files a/pg_data/base/16384/13481_fsm and /dev/null differ
diff --git a/pg_data/base/16384/13481_vm b/pg_data/base/16384/13481_vm
deleted file mode 100644
index be15a2c0..00000000
Binary files a/pg_data/base/16384/13481_vm and /dev/null differ
diff --git a/pg_data/base/16384/13484 b/pg_data/base/16384/13484
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/13485 b/pg_data/base/16384/13485
deleted file mode 100644
index 9897bcf6..00000000
Binary files a/pg_data/base/16384/13485 and /dev/null differ
diff --git a/pg_data/base/16384/13486 b/pg_data/base/16384/13486
deleted file mode 100644
index be6ec20b..00000000
Binary files a/pg_data/base/16384/13486 and /dev/null differ
diff --git a/pg_data/base/16384/13486_fsm b/pg_data/base/16384/13486_fsm
deleted file mode 100644
index eca3d85f..00000000
Binary files a/pg_data/base/16384/13486_fsm and /dev/null differ
diff --git a/pg_data/base/16384/13486_vm b/pg_data/base/16384/13486_vm
deleted file mode 100644
index adb541e8..00000000
Binary files a/pg_data/base/16384/13486_vm and /dev/null differ
diff --git a/pg_data/base/16384/13489 b/pg_data/base/16384/13489
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/13490 b/pg_data/base/16384/13490
deleted file mode 100644
index 68232425..00000000
Binary files a/pg_data/base/16384/13490 and /dev/null differ
diff --git a/pg_data/base/16384/13491 b/pg_data/base/16384/13491
deleted file mode 100644
index cb36e3ba..00000000
Binary files a/pg_data/base/16384/13491 and /dev/null differ
diff --git a/pg_data/base/16384/13491_fsm b/pg_data/base/16384/13491_fsm
deleted file mode 100644
index 94851344..00000000
Binary files a/pg_data/base/16384/13491_fsm and /dev/null differ
diff --git a/pg_data/base/16384/13491_vm b/pg_data/base/16384/13491_vm
deleted file mode 100644
index ec206ba9..00000000
Binary files a/pg_data/base/16384/13491_vm and /dev/null differ
diff --git a/pg_data/base/16384/13494 b/pg_data/base/16384/13494
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/13495 b/pg_data/base/16384/13495
deleted file mode 100644
index 54bc4a39..00000000
Binary files a/pg_data/base/16384/13495 and /dev/null differ
diff --git a/pg_data/base/16384/1417 b/pg_data/base/16384/1417
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/1418 b/pg_data/base/16384/1418
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16385 b/pg_data/base/16384/16385
deleted file mode 100644
index 1e55b45a..00000000
Binary files a/pg_data/base/16384/16385 and /dev/null differ
diff --git a/pg_data/base/16384/16389 b/pg_data/base/16384/16389
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16390 b/pg_data/base/16384/16390
deleted file mode 100644
index 91e34ce5..00000000
Binary files a/pg_data/base/16384/16390 and /dev/null differ
diff --git a/pg_data/base/16384/16391 b/pg_data/base/16384/16391
deleted file mode 100644
index c4af9777..00000000
Binary files a/pg_data/base/16384/16391 and /dev/null differ
diff --git a/pg_data/base/16384/16393 b/pg_data/base/16384/16393
deleted file mode 100644
index 96946d79..00000000
Binary files a/pg_data/base/16384/16393 and /dev/null differ
diff --git a/pg_data/base/16384/16399 b/pg_data/base/16384/16399
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16400 b/pg_data/base/16384/16400
deleted file mode 100644
index bfd66eda..00000000
Binary files a/pg_data/base/16384/16400 and /dev/null differ
diff --git a/pg_data/base/16384/16401 b/pg_data/base/16384/16401
deleted file mode 100644
index a6519525..00000000
Binary files a/pg_data/base/16384/16401 and /dev/null differ
diff --git a/pg_data/base/16384/16403 b/pg_data/base/16384/16403
deleted file mode 100644
index 03e841ed..00000000
Binary files a/pg_data/base/16384/16403 and /dev/null differ
diff --git a/pg_data/base/16384/16404 b/pg_data/base/16384/16404
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16414 b/pg_data/base/16384/16414
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16415 b/pg_data/base/16384/16415
deleted file mode 100644
index 6eca12b1..00000000
Binary files a/pg_data/base/16384/16415 and /dev/null differ
diff --git a/pg_data/base/16384/16416 b/pg_data/base/16384/16416
deleted file mode 100644
index 40b4242d..00000000
Binary files a/pg_data/base/16384/16416 and /dev/null differ
diff --git a/pg_data/base/16384/16418 b/pg_data/base/16384/16418
deleted file mode 100644
index 68d2ea16..00000000
Binary files a/pg_data/base/16384/16418 and /dev/null differ
diff --git a/pg_data/base/16384/16419 b/pg_data/base/16384/16419
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16436 b/pg_data/base/16384/16436
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16437 b/pg_data/base/16384/16437
deleted file mode 100644
index 25c3dc77..00000000
Binary files a/pg_data/base/16384/16437 and /dev/null differ
diff --git a/pg_data/base/16384/16438 b/pg_data/base/16384/16438
deleted file mode 100644
index 304f67c9..00000000
Binary files a/pg_data/base/16384/16438 and /dev/null differ
diff --git a/pg_data/base/16384/16445 b/pg_data/base/16384/16445
deleted file mode 100644
index c102c0d4..00000000
Binary files a/pg_data/base/16384/16445 and /dev/null differ
diff --git a/pg_data/base/16384/16446 b/pg_data/base/16384/16446
deleted file mode 100644
index e215be33..00000000
Binary files a/pg_data/base/16384/16446 and /dev/null differ
diff --git a/pg_data/base/16384/16447 b/pg_data/base/16384/16447
deleted file mode 100644
index 9d7ed979..00000000
Binary files a/pg_data/base/16384/16447 and /dev/null differ
diff --git a/pg_data/base/16384/16448 b/pg_data/base/16384/16448
deleted file mode 100644
index 178181e0..00000000
Binary files a/pg_data/base/16384/16448 and /dev/null differ
diff --git a/pg_data/base/16384/16449 b/pg_data/base/16384/16449
deleted file mode 100644
index f695e766..00000000
Binary files a/pg_data/base/16384/16449 and /dev/null differ
diff --git a/pg_data/base/16384/16450 b/pg_data/base/16384/16450
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16460 b/pg_data/base/16384/16460
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16461 b/pg_data/base/16384/16461
deleted file mode 100644
index f0bbee08..00000000
Binary files a/pg_data/base/16384/16461 and /dev/null differ
diff --git a/pg_data/base/16384/16462 b/pg_data/base/16384/16462
deleted file mode 100644
index dffb8ab7..00000000
Binary files a/pg_data/base/16384/16462 and /dev/null differ
diff --git a/pg_data/base/16384/16469 b/pg_data/base/16384/16469
deleted file mode 100644
index 5d4239fa..00000000
Binary files a/pg_data/base/16384/16469 and /dev/null differ
diff --git a/pg_data/base/16384/16470 b/pg_data/base/16384/16470
deleted file mode 100644
index a802f8ea..00000000
Binary files a/pg_data/base/16384/16470 and /dev/null differ
diff --git a/pg_data/base/16384/16471 b/pg_data/base/16384/16471
deleted file mode 100644
index 04dbcf87..00000000
Binary files a/pg_data/base/16384/16471 and /dev/null differ
diff --git a/pg_data/base/16384/16472 b/pg_data/base/16384/16472
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16482 b/pg_data/base/16384/16482
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16483 b/pg_data/base/16384/16483
deleted file mode 100644
index a1315868..00000000
Binary files a/pg_data/base/16384/16483 and /dev/null differ
diff --git a/pg_data/base/16384/16484 b/pg_data/base/16384/16484
deleted file mode 100644
index f6fbf9f3..00000000
Binary files a/pg_data/base/16384/16484 and /dev/null differ
diff --git a/pg_data/base/16384/16486 b/pg_data/base/16384/16486
deleted file mode 100644
index a11e2fbc..00000000
Binary files a/pg_data/base/16384/16486 and /dev/null differ
diff --git a/pg_data/base/16384/16487 b/pg_data/base/16384/16487
deleted file mode 100644
index 5dc8fd50..00000000
Binary files a/pg_data/base/16384/16487 and /dev/null differ
diff --git a/pg_data/base/16384/16488 b/pg_data/base/16384/16488
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16499 b/pg_data/base/16384/16499
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16500 b/pg_data/base/16384/16500
deleted file mode 100644
index 658d7ec4..00000000
Binary files a/pg_data/base/16384/16500 and /dev/null differ
diff --git a/pg_data/base/16384/16501 b/pg_data/base/16384/16501
deleted file mode 100644
index f4f3fbf3..00000000
Binary files a/pg_data/base/16384/16501 and /dev/null differ
diff --git a/pg_data/base/16384/16508 b/pg_data/base/16384/16508
deleted file mode 100644
index e4515116..00000000
Binary files a/pg_data/base/16384/16508 and /dev/null differ
diff --git a/pg_data/base/16384/16510 b/pg_data/base/16384/16510
deleted file mode 100644
index 765c0958..00000000
Binary files a/pg_data/base/16384/16510 and /dev/null differ
diff --git a/pg_data/base/16384/16511 b/pg_data/base/16384/16511
deleted file mode 100644
index b176459d..00000000
Binary files a/pg_data/base/16384/16511 and /dev/null differ
diff --git a/pg_data/base/16384/16512 b/pg_data/base/16384/16512
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16519 b/pg_data/base/16384/16519
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16520 b/pg_data/base/16384/16520
deleted file mode 100644
index 53f20c0a..00000000
Binary files a/pg_data/base/16384/16520 and /dev/null differ
diff --git a/pg_data/base/16384/16521 b/pg_data/base/16384/16521
deleted file mode 100644
index 46bd6619..00000000
Binary files a/pg_data/base/16384/16521 and /dev/null differ
diff --git a/pg_data/base/16384/16528 b/pg_data/base/16384/16528
deleted file mode 100644
index c9b236c7..00000000
Binary files a/pg_data/base/16384/16528 and /dev/null differ
diff --git a/pg_data/base/16384/16529 b/pg_data/base/16384/16529
deleted file mode 100644
index e05e47db..00000000
Binary files a/pg_data/base/16384/16529 and /dev/null differ
diff --git a/pg_data/base/16384/16530 b/pg_data/base/16384/16530
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16544 b/pg_data/base/16384/16544
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16545 b/pg_data/base/16384/16545
deleted file mode 100644
index 4f3bfc73..00000000
Binary files a/pg_data/base/16384/16545 and /dev/null differ
diff --git a/pg_data/base/16384/16546 b/pg_data/base/16384/16546
deleted file mode 100644
index 2b02c0fd..00000000
Binary files a/pg_data/base/16384/16546 and /dev/null differ
diff --git a/pg_data/base/16384/16558 b/pg_data/base/16384/16558
deleted file mode 100644
index 0a3ed75f..00000000
Binary files a/pg_data/base/16384/16558 and /dev/null differ
diff --git a/pg_data/base/16384/16559 b/pg_data/base/16384/16559
deleted file mode 100644
index 89403462..00000000
Binary files a/pg_data/base/16384/16559 and /dev/null differ
diff --git a/pg_data/base/16384/16560 b/pg_data/base/16384/16560
deleted file mode 100644
index 92b998f1..00000000
Binary files a/pg_data/base/16384/16560 and /dev/null differ
diff --git a/pg_data/base/16384/16561 b/pg_data/base/16384/16561
deleted file mode 100644
index 757b050f..00000000
Binary files a/pg_data/base/16384/16561 and /dev/null differ
diff --git a/pg_data/base/16384/16562 b/pg_data/base/16384/16562
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16570 b/pg_data/base/16384/16570
deleted file mode 100644
index 4fba1a1c..00000000
Binary files a/pg_data/base/16384/16570 and /dev/null differ
diff --git a/pg_data/base/16384/16582 b/pg_data/base/16384/16582
deleted file mode 100644
index 0c249c9a..00000000
Binary files a/pg_data/base/16384/16582 and /dev/null differ
diff --git a/pg_data/base/16384/16583 b/pg_data/base/16384/16583
deleted file mode 100644
index 097a727e..00000000
Binary files a/pg_data/base/16384/16583 and /dev/null differ
diff --git a/pg_data/base/16384/16584 b/pg_data/base/16384/16584
deleted file mode 100644
index 8033cc40..00000000
Binary files a/pg_data/base/16384/16584 and /dev/null differ
diff --git a/pg_data/base/16384/16585 b/pg_data/base/16384/16585
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16597 b/pg_data/base/16384/16597
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16598 b/pg_data/base/16384/16598
deleted file mode 100644
index 11f0a76c..00000000
Binary files a/pg_data/base/16384/16598 and /dev/null differ
diff --git a/pg_data/base/16384/16599 b/pg_data/base/16384/16599
deleted file mode 100644
index 3a0b1025..00000000
Binary files a/pg_data/base/16384/16599 and /dev/null differ
diff --git a/pg_data/base/16384/16606 b/pg_data/base/16384/16606
deleted file mode 100644
index e90f51a9..00000000
Binary files a/pg_data/base/16384/16606 and /dev/null differ
diff --git a/pg_data/base/16384/16607 b/pg_data/base/16384/16607
deleted file mode 100644
index f81ae7dc..00000000
Binary files a/pg_data/base/16384/16607 and /dev/null differ
diff --git a/pg_data/base/16384/16608 b/pg_data/base/16384/16608
deleted file mode 100644
index 226c737f..00000000
Binary files a/pg_data/base/16384/16608 and /dev/null differ
diff --git a/pg_data/base/16384/16609 b/pg_data/base/16384/16609
deleted file mode 100644
index 0a4348d7..00000000
Binary files a/pg_data/base/16384/16609 and /dev/null differ
diff --git a/pg_data/base/16384/16610 b/pg_data/base/16384/16610
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16619 b/pg_data/base/16384/16619
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16620 b/pg_data/base/16384/16620
deleted file mode 100644
index 89fa491d..00000000
Binary files a/pg_data/base/16384/16620 and /dev/null differ
diff --git a/pg_data/base/16384/16621 b/pg_data/base/16384/16621
deleted file mode 100644
index 510617be..00000000
Binary files a/pg_data/base/16384/16621 and /dev/null differ
diff --git a/pg_data/base/16384/16628 b/pg_data/base/16384/16628
deleted file mode 100644
index d3fc4125..00000000
Binary files a/pg_data/base/16384/16628 and /dev/null differ
diff --git a/pg_data/base/16384/16629 b/pg_data/base/16384/16629
deleted file mode 100644
index 1028befe..00000000
Binary files a/pg_data/base/16384/16629 and /dev/null differ
diff --git a/pg_data/base/16384/16630 b/pg_data/base/16384/16630
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16631 b/pg_data/base/16384/16631
deleted file mode 100644
index 27673f09..00000000
Binary files a/pg_data/base/16384/16631 and /dev/null differ
diff --git a/pg_data/base/16384/16632 b/pg_data/base/16384/16632
deleted file mode 100644
index cd953b0e..00000000
Binary files a/pg_data/base/16384/16632 and /dev/null differ
diff --git a/pg_data/base/16384/16635 b/pg_data/base/16384/16635
deleted file mode 100644
index 37dc791e..00000000
Binary files a/pg_data/base/16384/16635 and /dev/null differ
diff --git a/pg_data/base/16384/16636 b/pg_data/base/16384/16636
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16646 b/pg_data/base/16384/16646
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16647 b/pg_data/base/16384/16647
deleted file mode 100644
index 18c61b2d..00000000
Binary files a/pg_data/base/16384/16647 and /dev/null differ
diff --git a/pg_data/base/16384/16648 b/pg_data/base/16384/16648
deleted file mode 100644
index 32e69d76..00000000
Binary files a/pg_data/base/16384/16648 and /dev/null differ
diff --git a/pg_data/base/16384/16655 b/pg_data/base/16384/16655
deleted file mode 100644
index caeb9d8c..00000000
Binary files a/pg_data/base/16384/16655 and /dev/null differ
diff --git a/pg_data/base/16384/16656 b/pg_data/base/16384/16656
deleted file mode 100644
index 3b69be73..00000000
Binary files a/pg_data/base/16384/16656 and /dev/null differ
diff --git a/pg_data/base/16384/16657 b/pg_data/base/16384/16657
deleted file mode 100644
index 37065031..00000000
Binary files a/pg_data/base/16384/16657 and /dev/null differ
diff --git a/pg_data/base/16384/16658 b/pg_data/base/16384/16658
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16668 b/pg_data/base/16384/16668
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16669 b/pg_data/base/16384/16669
deleted file mode 100644
index 43e7e19a..00000000
Binary files a/pg_data/base/16384/16669 and /dev/null differ
diff --git a/pg_data/base/16384/16670 b/pg_data/base/16384/16670
deleted file mode 100644
index a3152ec5..00000000
Binary files a/pg_data/base/16384/16670 and /dev/null differ
diff --git a/pg_data/base/16384/16677 b/pg_data/base/16384/16677
deleted file mode 100644
index 5bc2dce3..00000000
Binary files a/pg_data/base/16384/16677 and /dev/null differ
diff --git a/pg_data/base/16384/16678 b/pg_data/base/16384/16678
deleted file mode 100644
index 83e72556..00000000
Binary files a/pg_data/base/16384/16678 and /dev/null differ
diff --git a/pg_data/base/16384/16681 b/pg_data/base/16384/16681
deleted file mode 100644
index 99848544..00000000
Binary files a/pg_data/base/16384/16681 and /dev/null differ
diff --git a/pg_data/base/16384/16682 b/pg_data/base/16384/16682
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16693 b/pg_data/base/16384/16693
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16694 b/pg_data/base/16384/16694
deleted file mode 100644
index 26dc03f2..00000000
Binary files a/pg_data/base/16384/16694 and /dev/null differ
diff --git a/pg_data/base/16384/16695 b/pg_data/base/16384/16695
deleted file mode 100644
index c00b0bc1..00000000
Binary files a/pg_data/base/16384/16695 and /dev/null differ
diff --git a/pg_data/base/16384/16707 b/pg_data/base/16384/16707
deleted file mode 100644
index e37b89a9..00000000
Binary files a/pg_data/base/16384/16707 and /dev/null differ
diff --git a/pg_data/base/16384/16708 b/pg_data/base/16384/16708
deleted file mode 100644
index 811abae5..00000000
Binary files a/pg_data/base/16384/16708 and /dev/null differ
diff --git a/pg_data/base/16384/16711 b/pg_data/base/16384/16711
deleted file mode 100644
index bae1c415..00000000
Binary files a/pg_data/base/16384/16711 and /dev/null differ
diff --git a/pg_data/base/16384/16712 b/pg_data/base/16384/16712
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16722 b/pg_data/base/16384/16722
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16723 b/pg_data/base/16384/16723
deleted file mode 100644
index dc9d3182..00000000
Binary files a/pg_data/base/16384/16723 and /dev/null differ
diff --git a/pg_data/base/16384/16724 b/pg_data/base/16384/16724
deleted file mode 100644
index 856703d7..00000000
Binary files a/pg_data/base/16384/16724 and /dev/null differ
diff --git a/pg_data/base/16384/16736 b/pg_data/base/16384/16736
deleted file mode 100644
index 1fa82fa9..00000000
Binary files a/pg_data/base/16384/16736 and /dev/null differ
diff --git a/pg_data/base/16384/16737 b/pg_data/base/16384/16737
deleted file mode 100644
index 34ad30f6..00000000
Binary files a/pg_data/base/16384/16737 and /dev/null differ
diff --git a/pg_data/base/16384/16738 b/pg_data/base/16384/16738
deleted file mode 100644
index 0eebfb81..00000000
Binary files a/pg_data/base/16384/16738 and /dev/null differ
diff --git a/pg_data/base/16384/16745 b/pg_data/base/16384/16745
deleted file mode 100644
index 37a16c38..00000000
Binary files a/pg_data/base/16384/16745 and /dev/null differ
diff --git a/pg_data/base/16384/16746 b/pg_data/base/16384/16746
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16756 b/pg_data/base/16384/16756
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16757 b/pg_data/base/16384/16757
deleted file mode 100644
index 607ea7d7..00000000
Binary files a/pg_data/base/16384/16757 and /dev/null differ
diff --git a/pg_data/base/16384/16758 b/pg_data/base/16384/16758
deleted file mode 100644
index d5c87ac7..00000000
Binary files a/pg_data/base/16384/16758 and /dev/null differ
diff --git a/pg_data/base/16384/16765 b/pg_data/base/16384/16765
deleted file mode 100644
index 1d9e327a..00000000
Binary files a/pg_data/base/16384/16765 and /dev/null differ
diff --git a/pg_data/base/16384/16766 b/pg_data/base/16384/16766
deleted file mode 100644
index 10d3ba01..00000000
Binary files a/pg_data/base/16384/16766 and /dev/null differ
diff --git a/pg_data/base/16384/16767 b/pg_data/base/16384/16767
deleted file mode 100644
index 8a4b268d..00000000
Binary files a/pg_data/base/16384/16767 and /dev/null differ
diff --git a/pg_data/base/16384/16768 b/pg_data/base/16384/16768
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16778 b/pg_data/base/16384/16778
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16779 b/pg_data/base/16384/16779
deleted file mode 100644
index 3399febb..00000000
Binary files a/pg_data/base/16384/16779 and /dev/null differ
diff --git a/pg_data/base/16384/16780 b/pg_data/base/16384/16780
deleted file mode 100644
index 2a954559..00000000
Binary files a/pg_data/base/16384/16780 and /dev/null differ
diff --git a/pg_data/base/16384/16787 b/pg_data/base/16384/16787
deleted file mode 100644
index b6e18a40..00000000
Binary files a/pg_data/base/16384/16787 and /dev/null differ
diff --git a/pg_data/base/16384/16788 b/pg_data/base/16384/16788
deleted file mode 100644
index 03a39859..00000000
Binary files a/pg_data/base/16384/16788 and /dev/null differ
diff --git a/pg_data/base/16384/16790 b/pg_data/base/16384/16790
deleted file mode 100644
index ba03e375..00000000
Binary files a/pg_data/base/16384/16790 and /dev/null differ
diff --git a/pg_data/base/16384/16793 b/pg_data/base/16384/16793
deleted file mode 100644
index 0f8a1a63..00000000
Binary files a/pg_data/base/16384/16793 and /dev/null differ
diff --git a/pg_data/base/16384/16794 b/pg_data/base/16384/16794
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16807 b/pg_data/base/16384/16807
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16808 b/pg_data/base/16384/16808
deleted file mode 100644
index 37ae1c91..00000000
Binary files a/pg_data/base/16384/16808 and /dev/null differ
diff --git a/pg_data/base/16384/16809 b/pg_data/base/16384/16809
deleted file mode 100644
index 781b0212..00000000
Binary files a/pg_data/base/16384/16809 and /dev/null differ
diff --git a/pg_data/base/16384/16821 b/pg_data/base/16384/16821
deleted file mode 100644
index d1032a6e..00000000
Binary files a/pg_data/base/16384/16821 and /dev/null differ
diff --git a/pg_data/base/16384/16822 b/pg_data/base/16384/16822
deleted file mode 100644
index f64a0808..00000000
Binary files a/pg_data/base/16384/16822 and /dev/null differ
diff --git a/pg_data/base/16384/16823 b/pg_data/base/16384/16823
deleted file mode 100644
index 12db976b..00000000
Binary files a/pg_data/base/16384/16823 and /dev/null differ
diff --git a/pg_data/base/16384/16824 b/pg_data/base/16384/16824
deleted file mode 100644
index 5e188ede..00000000
Binary files a/pg_data/base/16384/16824 and /dev/null differ
diff --git a/pg_data/base/16384/16825 b/pg_data/base/16384/16825
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16835 b/pg_data/base/16384/16835
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16836 b/pg_data/base/16384/16836
deleted file mode 100644
index 380b5538..00000000
Binary files a/pg_data/base/16384/16836 and /dev/null differ
diff --git a/pg_data/base/16384/16837 b/pg_data/base/16384/16837
deleted file mode 100644
index b249d3ee..00000000
Binary files a/pg_data/base/16384/16837 and /dev/null differ
diff --git a/pg_data/base/16384/16849 b/pg_data/base/16384/16849
deleted file mode 100644
index 777f645b..00000000
Binary files a/pg_data/base/16384/16849 and /dev/null differ
diff --git a/pg_data/base/16384/16850 b/pg_data/base/16384/16850
deleted file mode 100644
index 95b114a3..00000000
Binary files a/pg_data/base/16384/16850 and /dev/null differ
diff --git a/pg_data/base/16384/16851 b/pg_data/base/16384/16851
deleted file mode 100644
index 2a682eaf..00000000
Binary files a/pg_data/base/16384/16851 and /dev/null differ
diff --git a/pg_data/base/16384/16855 b/pg_data/base/16384/16855
deleted file mode 100644
index 37fe592f..00000000
Binary files a/pg_data/base/16384/16855 and /dev/null differ
diff --git a/pg_data/base/16384/16856 b/pg_data/base/16384/16856
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16866 b/pg_data/base/16384/16866
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16867 b/pg_data/base/16384/16867
deleted file mode 100644
index bab70873..00000000
Binary files a/pg_data/base/16384/16867 and /dev/null differ
diff --git a/pg_data/base/16384/16868 b/pg_data/base/16384/16868
deleted file mode 100644
index 42280bc8..00000000
Binary files a/pg_data/base/16384/16868 and /dev/null differ
diff --git a/pg_data/base/16384/16875 b/pg_data/base/16384/16875
deleted file mode 100644
index ef653422..00000000
Binary files a/pg_data/base/16384/16875 and /dev/null differ
diff --git a/pg_data/base/16384/16876 b/pg_data/base/16384/16876
deleted file mode 100644
index 0e85417b..00000000
Binary files a/pg_data/base/16384/16876 and /dev/null differ
diff --git a/pg_data/base/16384/16877 b/pg_data/base/16384/16877
deleted file mode 100644
index a34a3bd1..00000000
Binary files a/pg_data/base/16384/16877 and /dev/null differ
diff --git a/pg_data/base/16384/16878 b/pg_data/base/16384/16878
deleted file mode 100644
index 0ba61c68..00000000
Binary files a/pg_data/base/16384/16878 and /dev/null differ
diff --git a/pg_data/base/16384/16879 b/pg_data/base/16384/16879
deleted file mode 100644
index de520b82..00000000
Binary files a/pg_data/base/16384/16879 and /dev/null differ
diff --git a/pg_data/base/16384/16880 b/pg_data/base/16384/16880
deleted file mode 100644
index a32c61af..00000000
Binary files a/pg_data/base/16384/16880 and /dev/null differ
diff --git a/pg_data/base/16384/16883 b/pg_data/base/16384/16883
deleted file mode 100644
index be518a83..00000000
Binary files a/pg_data/base/16384/16883 and /dev/null differ
diff --git a/pg_data/base/16384/16884 b/pg_data/base/16384/16884
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16899 b/pg_data/base/16384/16899
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16900 b/pg_data/base/16384/16900
deleted file mode 100644
index 6afe682a..00000000
Binary files a/pg_data/base/16384/16900 and /dev/null differ
diff --git a/pg_data/base/16384/16901 b/pg_data/base/16384/16901
deleted file mode 100644
index 65a7cc2e..00000000
Binary files a/pg_data/base/16384/16901 and /dev/null differ
diff --git a/pg_data/base/16384/16909 b/pg_data/base/16384/16909
deleted file mode 100644
index 5e4ce55c..00000000
Binary files a/pg_data/base/16384/16909 and /dev/null differ
diff --git a/pg_data/base/16384/16910 b/pg_data/base/16384/16910
deleted file mode 100644
index 20c070c0..00000000
Binary files a/pg_data/base/16384/16910 and /dev/null differ
diff --git a/pg_data/base/16384/16911 b/pg_data/base/16384/16911
deleted file mode 100644
index ea562bab..00000000
Binary files a/pg_data/base/16384/16911 and /dev/null differ
diff --git a/pg_data/base/16384/16912 b/pg_data/base/16384/16912
deleted file mode 100644
index 4c9aafbf..00000000
Binary files a/pg_data/base/16384/16912 and /dev/null differ
diff --git a/pg_data/base/16384/16913 b/pg_data/base/16384/16913
deleted file mode 100644
index 9470bb7c..00000000
Binary files a/pg_data/base/16384/16913 and /dev/null differ
diff --git a/pg_data/base/16384/16914 b/pg_data/base/16384/16914
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16925 b/pg_data/base/16384/16925
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16926 b/pg_data/base/16384/16926
deleted file mode 100644
index e22229f3..00000000
Binary files a/pg_data/base/16384/16926 and /dev/null differ
diff --git a/pg_data/base/16384/16927 b/pg_data/base/16384/16927
deleted file mode 100644
index 5d1c34ed..00000000
Binary files a/pg_data/base/16384/16927 and /dev/null differ
diff --git a/pg_data/base/16384/16934 b/pg_data/base/16384/16934
deleted file mode 100644
index 288f251c..00000000
Binary files a/pg_data/base/16384/16934 and /dev/null differ
diff --git a/pg_data/base/16384/16935 b/pg_data/base/16384/16935
deleted file mode 100644
index a95ac0f5..00000000
Binary files a/pg_data/base/16384/16935 and /dev/null differ
diff --git a/pg_data/base/16384/16936 b/pg_data/base/16384/16936
deleted file mode 100644
index 4c4a1aba..00000000
Binary files a/pg_data/base/16384/16936 and /dev/null differ
diff --git a/pg_data/base/16384/16937 b/pg_data/base/16384/16937
deleted file mode 100644
index 2a568377..00000000
Binary files a/pg_data/base/16384/16937 and /dev/null differ
diff --git a/pg_data/base/16384/16938 b/pg_data/base/16384/16938
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16952 b/pg_data/base/16384/16952
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16953 b/pg_data/base/16384/16953
deleted file mode 100644
index 86b03147..00000000
Binary files a/pg_data/base/16384/16953 and /dev/null differ
diff --git a/pg_data/base/16384/16954 b/pg_data/base/16384/16954
deleted file mode 100644
index 561aff7c..00000000
Binary files a/pg_data/base/16384/16954 and /dev/null differ
diff --git a/pg_data/base/16384/16956 b/pg_data/base/16384/16956
deleted file mode 100644
index 6eef5fce..00000000
Binary files a/pg_data/base/16384/16956 and /dev/null differ
diff --git a/pg_data/base/16384/16957 b/pg_data/base/16384/16957
deleted file mode 100644
index cfc9c85e..00000000
Binary files a/pg_data/base/16384/16957 and /dev/null differ
diff --git a/pg_data/base/16384/16958 b/pg_data/base/16384/16958
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16971 b/pg_data/base/16384/16971
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16972 b/pg_data/base/16384/16972
deleted file mode 100644
index 46588f67..00000000
Binary files a/pg_data/base/16384/16972 and /dev/null differ
diff --git a/pg_data/base/16384/16973 b/pg_data/base/16384/16973
deleted file mode 100644
index b4f4f13a..00000000
Binary files a/pg_data/base/16384/16973 and /dev/null differ
diff --git a/pg_data/base/16384/16975 b/pg_data/base/16384/16975
deleted file mode 100644
index 077d1248..00000000
Binary files a/pg_data/base/16384/16975 and /dev/null differ
diff --git a/pg_data/base/16384/16976 b/pg_data/base/16384/16976
deleted file mode 100644
index 35063fb1..00000000
Binary files a/pg_data/base/16384/16976 and /dev/null differ
diff --git a/pg_data/base/16384/16977 b/pg_data/base/16384/16977
deleted file mode 100644
index 13bcc300..00000000
Binary files a/pg_data/base/16384/16977 and /dev/null differ
diff --git a/pg_data/base/16384/16983 b/pg_data/base/16384/16983
deleted file mode 100644
index 109fe6f5..00000000
Binary files a/pg_data/base/16384/16983 and /dev/null differ
diff --git a/pg_data/base/16384/16984 b/pg_data/base/16384/16984
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16994 b/pg_data/base/16384/16994
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/16995 b/pg_data/base/16384/16995
deleted file mode 100644
index 5e6faf61..00000000
Binary files a/pg_data/base/16384/16995 and /dev/null differ
diff --git a/pg_data/base/16384/16996 b/pg_data/base/16384/16996
deleted file mode 100644
index 75908777..00000000
Binary files a/pg_data/base/16384/16996 and /dev/null differ
diff --git a/pg_data/base/16384/16998 b/pg_data/base/16384/16998
deleted file mode 100644
index 2439748d..00000000
Binary files a/pg_data/base/16384/16998 and /dev/null differ
diff --git a/pg_data/base/16384/16999 b/pg_data/base/16384/16999
deleted file mode 100644
index 5861dd4d..00000000
Binary files a/pg_data/base/16384/16999 and /dev/null differ
diff --git a/pg_data/base/16384/17000 b/pg_data/base/16384/17000
deleted file mode 100644
index 32f5b13c..00000000
Binary files a/pg_data/base/16384/17000 and /dev/null differ
diff --git a/pg_data/base/16384/17001 b/pg_data/base/16384/17001
deleted file mode 100644
index 83a9d1bf..00000000
Binary files a/pg_data/base/16384/17001 and /dev/null differ
diff --git a/pg_data/base/16384/17017 b/pg_data/base/16384/17017
deleted file mode 100644
index 0f9925d7..00000000
Binary files a/pg_data/base/16384/17017 and /dev/null differ
diff --git a/pg_data/base/16384/17019 b/pg_data/base/16384/17019
deleted file mode 100644
index 25b48679..00000000
Binary files a/pg_data/base/16384/17019 and /dev/null differ
diff --git a/pg_data/base/16384/17020 b/pg_data/base/16384/17020
deleted file mode 100644
index 05b4cfbb..00000000
Binary files a/pg_data/base/16384/17020 and /dev/null differ
diff --git a/pg_data/base/16384/17021 b/pg_data/base/16384/17021
deleted file mode 100644
index c173d776..00000000
Binary files a/pg_data/base/16384/17021 and /dev/null differ
diff --git a/pg_data/base/16384/17022 b/pg_data/base/16384/17022
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/17036 b/pg_data/base/16384/17036
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/17037 b/pg_data/base/16384/17037
deleted file mode 100644
index ac8b4fcd..00000000
Binary files a/pg_data/base/16384/17037 and /dev/null differ
diff --git a/pg_data/base/16384/17038 b/pg_data/base/16384/17038
deleted file mode 100644
index 8afbe3de..00000000
Binary files a/pg_data/base/16384/17038 and /dev/null differ
diff --git a/pg_data/base/16384/17042 b/pg_data/base/16384/17042
deleted file mode 100644
index 32ece530..00000000
Binary files a/pg_data/base/16384/17042 and /dev/null differ
diff --git a/pg_data/base/16384/17043 b/pg_data/base/16384/17043
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/17052 b/pg_data/base/16384/17052
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/17053 b/pg_data/base/16384/17053
deleted file mode 100644
index d76be6b4..00000000
Binary files a/pg_data/base/16384/17053 and /dev/null differ
diff --git a/pg_data/base/16384/17054 b/pg_data/base/16384/17054
deleted file mode 100644
index eb02bdf9..00000000
Binary files a/pg_data/base/16384/17054 and /dev/null differ
diff --git a/pg_data/base/16384/17056 b/pg_data/base/16384/17056
deleted file mode 100644
index f7a00b6e..00000000
Binary files a/pg_data/base/16384/17056 and /dev/null differ
diff --git a/pg_data/base/16384/17057 b/pg_data/base/16384/17057
deleted file mode 100644
index 2ebddb5f..00000000
Binary files a/pg_data/base/16384/17057 and /dev/null differ
diff --git a/pg_data/base/16384/17058 b/pg_data/base/16384/17058
deleted file mode 100644
index 73632347..00000000
Binary files a/pg_data/base/16384/17058 and /dev/null differ
diff --git a/pg_data/base/16384/17060 b/pg_data/base/16384/17060
deleted file mode 100644
index 1f250eb7..00000000
Binary files a/pg_data/base/16384/17060 and /dev/null differ
diff --git a/pg_data/base/16384/17061 b/pg_data/base/16384/17061
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/17070 b/pg_data/base/16384/17070
deleted file mode 100644
index 07f1eae8..00000000
Binary files a/pg_data/base/16384/17070 and /dev/null differ
diff --git a/pg_data/base/16384/17077 b/pg_data/base/16384/17077
deleted file mode 100644
index b73920f6..00000000
Binary files a/pg_data/base/16384/17077 and /dev/null differ
diff --git a/pg_data/base/16384/17078 b/pg_data/base/16384/17078
deleted file mode 100644
index 34bdba18..00000000
Binary files a/pg_data/base/16384/17078 and /dev/null differ
diff --git a/pg_data/base/16384/17079 b/pg_data/base/16384/17079
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/17087 b/pg_data/base/16384/17087
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/17088 b/pg_data/base/16384/17088
deleted file mode 100644
index beb1839b..00000000
Binary files a/pg_data/base/16384/17088 and /dev/null differ
diff --git a/pg_data/base/16384/17089 b/pg_data/base/16384/17089
deleted file mode 100644
index f832895a..00000000
Binary files a/pg_data/base/16384/17089 and /dev/null differ
diff --git a/pg_data/base/16384/17091 b/pg_data/base/16384/17091
deleted file mode 100644
index ec62f95c..00000000
Binary files a/pg_data/base/16384/17091 and /dev/null differ
diff --git a/pg_data/base/16384/17092 b/pg_data/base/16384/17092
deleted file mode 100644
index cf616f26..00000000
Binary files a/pg_data/base/16384/17092 and /dev/null differ
diff --git a/pg_data/base/16384/17093 b/pg_data/base/16384/17093
deleted file mode 100644
index cbefea60..00000000
Binary files a/pg_data/base/16384/17093 and /dev/null differ
diff --git a/pg_data/base/16384/17094 b/pg_data/base/16384/17094
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/17102 b/pg_data/base/16384/17102
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/17103 b/pg_data/base/16384/17103
deleted file mode 100644
index 9fdd40fa..00000000
Binary files a/pg_data/base/16384/17103 and /dev/null differ
diff --git a/pg_data/base/16384/17104 b/pg_data/base/16384/17104
deleted file mode 100644
index bb49e8bb..00000000
Binary files a/pg_data/base/16384/17104 and /dev/null differ
diff --git a/pg_data/base/16384/17106 b/pg_data/base/16384/17106
deleted file mode 100644
index bf282191..00000000
Binary files a/pg_data/base/16384/17106 and /dev/null differ
diff --git a/pg_data/base/16384/17107 b/pg_data/base/16384/17107
deleted file mode 100644
index fa250004..00000000
Binary files a/pg_data/base/16384/17107 and /dev/null differ
diff --git a/pg_data/base/16384/17108 b/pg_data/base/16384/17108
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/17116 b/pg_data/base/16384/17116
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/17117 b/pg_data/base/16384/17117
deleted file mode 100644
index 2eccc3bf..00000000
Binary files a/pg_data/base/16384/17117 and /dev/null differ
diff --git a/pg_data/base/16384/17118 b/pg_data/base/16384/17118
deleted file mode 100644
index fdf443d3..00000000
Binary files a/pg_data/base/16384/17118 and /dev/null differ
diff --git a/pg_data/base/16384/17120 b/pg_data/base/16384/17120
deleted file mode 100644
index e814398a..00000000
Binary files a/pg_data/base/16384/17120 and /dev/null differ
diff --git a/pg_data/base/16384/17121 b/pg_data/base/16384/17121
deleted file mode 100644
index 437b3321..00000000
Binary files a/pg_data/base/16384/17121 and /dev/null differ
diff --git a/pg_data/base/16384/17122 b/pg_data/base/16384/17122
deleted file mode 100644
index 5d9af4ea..00000000
Binary files a/pg_data/base/16384/17122 and /dev/null differ
diff --git a/pg_data/base/16384/17123 b/pg_data/base/16384/17123
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/17131 b/pg_data/base/16384/17131
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/17132 b/pg_data/base/16384/17132
deleted file mode 100644
index 89f5c699..00000000
Binary files a/pg_data/base/16384/17132 and /dev/null differ
diff --git a/pg_data/base/16384/17133 b/pg_data/base/16384/17133
deleted file mode 100644
index ae906ee9..00000000
Binary files a/pg_data/base/16384/17133 and /dev/null differ
diff --git a/pg_data/base/16384/17135 b/pg_data/base/16384/17135
deleted file mode 100644
index 934ec8f9..00000000
Binary files a/pg_data/base/16384/17135 and /dev/null differ
diff --git a/pg_data/base/16384/17136 b/pg_data/base/16384/17136
deleted file mode 100644
index b892211e..00000000
Binary files a/pg_data/base/16384/17136 and /dev/null differ
diff --git a/pg_data/base/16384/17137 b/pg_data/base/16384/17137
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/17146 b/pg_data/base/16384/17146
deleted file mode 100644
index 01fb3e32..00000000
Binary files a/pg_data/base/16384/17146 and /dev/null differ
diff --git a/pg_data/base/16384/17153 b/pg_data/base/16384/17153
deleted file mode 100644
index 00ddec0c..00000000
Binary files a/pg_data/base/16384/17153 and /dev/null differ
diff --git a/pg_data/base/16384/17156 b/pg_data/base/16384/17156
deleted file mode 100644
index 4033d498..00000000
Binary files a/pg_data/base/16384/17156 and /dev/null differ
diff --git a/pg_data/base/16384/17157 b/pg_data/base/16384/17157
deleted file mode 100644
index 03abfb95..00000000
Binary files a/pg_data/base/16384/17157 and /dev/null differ
diff --git a/pg_data/base/16384/17158 b/pg_data/base/16384/17158
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/17169 b/pg_data/base/16384/17169
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/17170 b/pg_data/base/16384/17170
deleted file mode 100644
index 7c2d3faa..00000000
Binary files a/pg_data/base/16384/17170 and /dev/null differ
diff --git a/pg_data/base/16384/17171 b/pg_data/base/16384/17171
deleted file mode 100644
index 54d601b8..00000000
Binary files a/pg_data/base/16384/17171 and /dev/null differ
diff --git a/pg_data/base/16384/174 b/pg_data/base/16384/174
deleted file mode 100644
index 0496f926..00000000
Binary files a/pg_data/base/16384/174 and /dev/null differ
diff --git a/pg_data/base/16384/175 b/pg_data/base/16384/175
deleted file mode 100644
index 003c4578..00000000
Binary files a/pg_data/base/16384/175 and /dev/null differ
diff --git a/pg_data/base/16384/17609 b/pg_data/base/16384/17609
deleted file mode 100644
index f6aedefd..00000000
Binary files a/pg_data/base/16384/17609 and /dev/null differ
diff --git a/pg_data/base/16384/17610 b/pg_data/base/16384/17610
deleted file mode 100644
index 30c2f4b9..00000000
Binary files a/pg_data/base/16384/17610 and /dev/null differ
diff --git a/pg_data/base/16384/17611 b/pg_data/base/16384/17611
deleted file mode 100644
index ee8569db..00000000
Binary files a/pg_data/base/16384/17611 and /dev/null differ
diff --git a/pg_data/base/16384/17612 b/pg_data/base/16384/17612
deleted file mode 100644
index 06b4b349..00000000
Binary files a/pg_data/base/16384/17612 and /dev/null differ
diff --git a/pg_data/base/16384/17613 b/pg_data/base/16384/17613
deleted file mode 100644
index 279d843c..00000000
Binary files a/pg_data/base/16384/17613 and /dev/null differ
diff --git a/pg_data/base/16384/17614 b/pg_data/base/16384/17614
deleted file mode 100644
index ad51c97d..00000000
Binary files a/pg_data/base/16384/17614 and /dev/null differ
diff --git a/pg_data/base/16384/17615 b/pg_data/base/16384/17615
deleted file mode 100644
index c3d079fe..00000000
Binary files a/pg_data/base/16384/17615 and /dev/null differ
diff --git a/pg_data/base/16384/17616 b/pg_data/base/16384/17616
deleted file mode 100644
index a90893b2..00000000
Binary files a/pg_data/base/16384/17616 and /dev/null differ
diff --git a/pg_data/base/16384/17618 b/pg_data/base/16384/17618
deleted file mode 100644
index 7cb09f36..00000000
Binary files a/pg_data/base/16384/17618 and /dev/null differ
diff --git a/pg_data/base/16384/17619 b/pg_data/base/16384/17619
deleted file mode 100644
index fd2c30fb..00000000
Binary files a/pg_data/base/16384/17619 and /dev/null differ
diff --git a/pg_data/base/16384/17620 b/pg_data/base/16384/17620
deleted file mode 100644
index f6d0a1ef..00000000
Binary files a/pg_data/base/16384/17620 and /dev/null differ
diff --git a/pg_data/base/16384/17621 b/pg_data/base/16384/17621
deleted file mode 100644
index b70f5f23..00000000
Binary files a/pg_data/base/16384/17621 and /dev/null differ
diff --git a/pg_data/base/16384/17622 b/pg_data/base/16384/17622
deleted file mode 100644
index cf2eee3f..00000000
Binary files a/pg_data/base/16384/17622 and /dev/null differ
diff --git a/pg_data/base/16384/17623 b/pg_data/base/16384/17623
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/17637 b/pg_data/base/16384/17637
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/17638 b/pg_data/base/16384/17638
deleted file mode 100644
index aae21939..00000000
Binary files a/pg_data/base/16384/17638 and /dev/null differ
diff --git a/pg_data/base/16384/17639 b/pg_data/base/16384/17639
deleted file mode 100644
index 0238650f..00000000
Binary files a/pg_data/base/16384/17639 and /dev/null differ
diff --git a/pg_data/base/16384/17641 b/pg_data/base/16384/17641
deleted file mode 100644
index 7cee21a9..00000000
Binary files a/pg_data/base/16384/17641 and /dev/null differ
diff --git a/pg_data/base/16384/17642 b/pg_data/base/16384/17642
deleted file mode 100644
index 09d2de2a..00000000
Binary files a/pg_data/base/16384/17642 and /dev/null differ
diff --git a/pg_data/base/16384/17643 b/pg_data/base/16384/17643
deleted file mode 100644
index beb5dafa..00000000
Binary files a/pg_data/base/16384/17643 and /dev/null differ
diff --git a/pg_data/base/16384/17644 b/pg_data/base/16384/17644
deleted file mode 100644
index 520d6fb5..00000000
Binary files a/pg_data/base/16384/17644 and /dev/null differ
diff --git a/pg_data/base/16384/17645 b/pg_data/base/16384/17645
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/17655 b/pg_data/base/16384/17655
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/17656 b/pg_data/base/16384/17656
deleted file mode 100644
index 9479ee0c..00000000
Binary files a/pg_data/base/16384/17656 and /dev/null differ
diff --git a/pg_data/base/16384/17657 b/pg_data/base/16384/17657
deleted file mode 100644
index 06762a86..00000000
Binary files a/pg_data/base/16384/17657 and /dev/null differ
diff --git a/pg_data/base/16384/17659 b/pg_data/base/16384/17659
deleted file mode 100644
index 7bbd5afb..00000000
Binary files a/pg_data/base/16384/17659 and /dev/null differ
diff --git a/pg_data/base/16384/17660 b/pg_data/base/16384/17660
deleted file mode 100644
index 49ef4a08..00000000
Binary files a/pg_data/base/16384/17660 and /dev/null differ
diff --git a/pg_data/base/16384/17666 b/pg_data/base/16384/17666
deleted file mode 100644
index 4a3a0495..00000000
Binary files a/pg_data/base/16384/17666 and /dev/null differ
diff --git a/pg_data/base/16384/17667 b/pg_data/base/16384/17667
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/17676 b/pg_data/base/16384/17676
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/17677 b/pg_data/base/16384/17677
deleted file mode 100644
index 7f0d8e04..00000000
Binary files a/pg_data/base/16384/17677 and /dev/null differ
diff --git a/pg_data/base/16384/17678 b/pg_data/base/16384/17678
deleted file mode 100644
index 1ea91cab..00000000
Binary files a/pg_data/base/16384/17678 and /dev/null differ
diff --git a/pg_data/base/16384/17680 b/pg_data/base/16384/17680
deleted file mode 100644
index bca117b5..00000000
Binary files a/pg_data/base/16384/17680 and /dev/null differ
diff --git a/pg_data/base/16384/17681 b/pg_data/base/16384/17681
deleted file mode 100644
index 4a57b3bb..00000000
Binary files a/pg_data/base/16384/17681 and /dev/null differ
diff --git a/pg_data/base/16384/17682 b/pg_data/base/16384/17682
deleted file mode 100644
index d5d6d253..00000000
Binary files a/pg_data/base/16384/17682 and /dev/null differ
diff --git a/pg_data/base/16384/17683 b/pg_data/base/16384/17683
deleted file mode 100644
index c1b5debc..00000000
Binary files a/pg_data/base/16384/17683 and /dev/null differ
diff --git a/pg_data/base/16384/17689 b/pg_data/base/16384/17689
deleted file mode 100644
index 1309711d..00000000
Binary files a/pg_data/base/16384/17689 and /dev/null differ
diff --git a/pg_data/base/16384/17690 b/pg_data/base/16384/17690
deleted file mode 100644
index 877819b3..00000000
Binary files a/pg_data/base/16384/17690 and /dev/null differ
diff --git a/pg_data/base/16384/17691 b/pg_data/base/16384/17691
deleted file mode 100644
index 542e3c8a..00000000
Binary files a/pg_data/base/16384/17691 and /dev/null differ
diff --git a/pg_data/base/16384/17692 b/pg_data/base/16384/17692
deleted file mode 100644
index 2dc4b907..00000000
Binary files a/pg_data/base/16384/17692 and /dev/null differ
diff --git a/pg_data/base/16384/2187 b/pg_data/base/16384/2187
deleted file mode 100644
index e030c672..00000000
Binary files a/pg_data/base/16384/2187 and /dev/null differ
diff --git a/pg_data/base/16384/2224 b/pg_data/base/16384/2224
deleted file mode 100644
index 5a9ada59..00000000
Binary files a/pg_data/base/16384/2224 and /dev/null differ
diff --git a/pg_data/base/16384/2228 b/pg_data/base/16384/2228
deleted file mode 100644
index 381c71ef..00000000
Binary files a/pg_data/base/16384/2228 and /dev/null differ
diff --git a/pg_data/base/16384/2328 b/pg_data/base/16384/2328
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/2336 b/pg_data/base/16384/2336
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/2337 b/pg_data/base/16384/2337
deleted file mode 100644
index 90e6530d..00000000
Binary files a/pg_data/base/16384/2337 and /dev/null differ
diff --git a/pg_data/base/16384/2579 b/pg_data/base/16384/2579
deleted file mode 100644
index e7812978..00000000
Binary files a/pg_data/base/16384/2579 and /dev/null differ
diff --git a/pg_data/base/16384/2600 b/pg_data/base/16384/2600
deleted file mode 100644
index 1007d07a..00000000
Binary files a/pg_data/base/16384/2600 and /dev/null differ
diff --git a/pg_data/base/16384/2600_fsm b/pg_data/base/16384/2600_fsm
deleted file mode 100644
index 8cd7c000..00000000
Binary files a/pg_data/base/16384/2600_fsm and /dev/null differ
diff --git a/pg_data/base/16384/2600_vm b/pg_data/base/16384/2600_vm
deleted file mode 100644
index 02c665f8..00000000
Binary files a/pg_data/base/16384/2600_vm and /dev/null differ
diff --git a/pg_data/base/16384/2601 b/pg_data/base/16384/2601
deleted file mode 100644
index 96772935..00000000
Binary files a/pg_data/base/16384/2601 and /dev/null differ
diff --git a/pg_data/base/16384/2601_fsm b/pg_data/base/16384/2601_fsm
deleted file mode 100644
index 6767e937..00000000
Binary files a/pg_data/base/16384/2601_fsm and /dev/null differ
diff --git a/pg_data/base/16384/2601_vm b/pg_data/base/16384/2601_vm
deleted file mode 100644
index 9f13f0ac..00000000
Binary files a/pg_data/base/16384/2601_vm and /dev/null differ
diff --git a/pg_data/base/16384/2602 b/pg_data/base/16384/2602
deleted file mode 100644
index bfe4e0db..00000000
Binary files a/pg_data/base/16384/2602 and /dev/null differ
diff --git a/pg_data/base/16384/2602_fsm b/pg_data/base/16384/2602_fsm
deleted file mode 100644
index 4ebc65cc..00000000
Binary files a/pg_data/base/16384/2602_fsm and /dev/null differ
diff --git a/pg_data/base/16384/2602_vm b/pg_data/base/16384/2602_vm
deleted file mode 100644
index 70e6f2ee..00000000
Binary files a/pg_data/base/16384/2602_vm and /dev/null differ
diff --git a/pg_data/base/16384/2603 b/pg_data/base/16384/2603
deleted file mode 100644
index ff697230..00000000
Binary files a/pg_data/base/16384/2603 and /dev/null differ
diff --git a/pg_data/base/16384/2603_fsm b/pg_data/base/16384/2603_fsm
deleted file mode 100644
index dce3137e..00000000
Binary files a/pg_data/base/16384/2603_fsm and /dev/null differ
diff --git a/pg_data/base/16384/2603_vm b/pg_data/base/16384/2603_vm
deleted file mode 100644
index 74f65a00..00000000
Binary files a/pg_data/base/16384/2603_vm and /dev/null differ
diff --git a/pg_data/base/16384/2604 b/pg_data/base/16384/2604
deleted file mode 100644
index 718fc2d2..00000000
Binary files a/pg_data/base/16384/2604 and /dev/null differ
diff --git a/pg_data/base/16384/2604_fsm b/pg_data/base/16384/2604_fsm
deleted file mode 100644
index 6215a7e1..00000000
Binary files a/pg_data/base/16384/2604_fsm and /dev/null differ
diff --git a/pg_data/base/16384/2605 b/pg_data/base/16384/2605
deleted file mode 100644
index b46b7880..00000000
Binary files a/pg_data/base/16384/2605 and /dev/null differ
diff --git a/pg_data/base/16384/2605_fsm b/pg_data/base/16384/2605_fsm
deleted file mode 100644
index 0fe531ae..00000000
Binary files a/pg_data/base/16384/2605_fsm and /dev/null differ
diff --git a/pg_data/base/16384/2605_vm b/pg_data/base/16384/2605_vm
deleted file mode 100644
index 5a9b21ed..00000000
Binary files a/pg_data/base/16384/2605_vm and /dev/null differ
diff --git a/pg_data/base/16384/2606 b/pg_data/base/16384/2606
deleted file mode 100644
index eadb8beb..00000000
Binary files a/pg_data/base/16384/2606 and /dev/null differ
diff --git a/pg_data/base/16384/2606_fsm b/pg_data/base/16384/2606_fsm
deleted file mode 100644
index b636aa80..00000000
Binary files a/pg_data/base/16384/2606_fsm and /dev/null differ
diff --git a/pg_data/base/16384/2606_vm b/pg_data/base/16384/2606_vm
deleted file mode 100644
index 11a78712..00000000
Binary files a/pg_data/base/16384/2606_vm and /dev/null differ
diff --git a/pg_data/base/16384/2607 b/pg_data/base/16384/2607
deleted file mode 100644
index 58f26c5a..00000000
Binary files a/pg_data/base/16384/2607 and /dev/null differ
diff --git a/pg_data/base/16384/2607_fsm b/pg_data/base/16384/2607_fsm
deleted file mode 100644
index d253ba95..00000000
Binary files a/pg_data/base/16384/2607_fsm and /dev/null differ
diff --git a/pg_data/base/16384/2607_vm b/pg_data/base/16384/2607_vm
deleted file mode 100644
index 5ef08c76..00000000
Binary files a/pg_data/base/16384/2607_vm and /dev/null differ
diff --git a/pg_data/base/16384/2608 b/pg_data/base/16384/2608
deleted file mode 100644
index 50e16907..00000000
Binary files a/pg_data/base/16384/2608 and /dev/null differ
diff --git a/pg_data/base/16384/2608_fsm b/pg_data/base/16384/2608_fsm
deleted file mode 100644
index 987d1341..00000000
Binary files a/pg_data/base/16384/2608_fsm and /dev/null differ
diff --git a/pg_data/base/16384/2608_vm b/pg_data/base/16384/2608_vm
deleted file mode 100644
index 241bce9b..00000000
Binary files a/pg_data/base/16384/2608_vm and /dev/null differ
diff --git a/pg_data/base/16384/2609 b/pg_data/base/16384/2609
deleted file mode 100644
index fbe21ea2..00000000
Binary files a/pg_data/base/16384/2609 and /dev/null differ
diff --git a/pg_data/base/16384/2609_fsm b/pg_data/base/16384/2609_fsm
deleted file mode 100644
index 2263f964..00000000
Binary files a/pg_data/base/16384/2609_fsm and /dev/null differ
diff --git a/pg_data/base/16384/2609_vm b/pg_data/base/16384/2609_vm
deleted file mode 100644
index 1c6b9a28..00000000
Binary files a/pg_data/base/16384/2609_vm and /dev/null differ
diff --git a/pg_data/base/16384/2610 b/pg_data/base/16384/2610
deleted file mode 100644
index dae8409f..00000000
Binary files a/pg_data/base/16384/2610 and /dev/null differ
diff --git a/pg_data/base/16384/2610_fsm b/pg_data/base/16384/2610_fsm
deleted file mode 100644
index c1bb837f..00000000
Binary files a/pg_data/base/16384/2610_fsm and /dev/null differ
diff --git a/pg_data/base/16384/2610_vm b/pg_data/base/16384/2610_vm
deleted file mode 100644
index 5590f9bc..00000000
Binary files a/pg_data/base/16384/2610_vm and /dev/null differ
diff --git a/pg_data/base/16384/2611 b/pg_data/base/16384/2611
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/2612 b/pg_data/base/16384/2612
deleted file mode 100644
index 4b60e5f3..00000000
Binary files a/pg_data/base/16384/2612 and /dev/null differ
diff --git a/pg_data/base/16384/2612_fsm b/pg_data/base/16384/2612_fsm
deleted file mode 100644
index 813c7c26..00000000
Binary files a/pg_data/base/16384/2612_fsm and /dev/null differ
diff --git a/pg_data/base/16384/2612_vm b/pg_data/base/16384/2612_vm
deleted file mode 100644
index dd0bc20e..00000000
Binary files a/pg_data/base/16384/2612_vm and /dev/null differ
diff --git a/pg_data/base/16384/2613 b/pg_data/base/16384/2613
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/2615 b/pg_data/base/16384/2615
deleted file mode 100644
index a51be537..00000000
Binary files a/pg_data/base/16384/2615 and /dev/null differ
diff --git a/pg_data/base/16384/2615_fsm b/pg_data/base/16384/2615_fsm
deleted file mode 100644
index 4debc229..00000000
Binary files a/pg_data/base/16384/2615_fsm and /dev/null differ
diff --git a/pg_data/base/16384/2615_vm b/pg_data/base/16384/2615_vm
deleted file mode 100644
index b4d16a30..00000000
Binary files a/pg_data/base/16384/2615_vm and /dev/null differ
diff --git a/pg_data/base/16384/2616 b/pg_data/base/16384/2616
deleted file mode 100644
index 32001789..00000000
Binary files a/pg_data/base/16384/2616 and /dev/null differ
diff --git a/pg_data/base/16384/2616_fsm b/pg_data/base/16384/2616_fsm
deleted file mode 100644
index 238283b1..00000000
Binary files a/pg_data/base/16384/2616_fsm and /dev/null differ
diff --git a/pg_data/base/16384/2616_vm b/pg_data/base/16384/2616_vm
deleted file mode 100644
index 692ecf26..00000000
Binary files a/pg_data/base/16384/2616_vm and /dev/null differ
diff --git a/pg_data/base/16384/2617 b/pg_data/base/16384/2617
deleted file mode 100644
index c1134c02..00000000
Binary files a/pg_data/base/16384/2617 and /dev/null differ
diff --git a/pg_data/base/16384/2617_fsm b/pg_data/base/16384/2617_fsm
deleted file mode 100644
index 7c5aa08e..00000000
Binary files a/pg_data/base/16384/2617_fsm and /dev/null differ
diff --git a/pg_data/base/16384/2617_vm b/pg_data/base/16384/2617_vm
deleted file mode 100644
index c50ad9bb..00000000
Binary files a/pg_data/base/16384/2617_vm and /dev/null differ
diff --git a/pg_data/base/16384/2618 b/pg_data/base/16384/2618
deleted file mode 100644
index 6bae6598..00000000
Binary files a/pg_data/base/16384/2618 and /dev/null differ
diff --git a/pg_data/base/16384/2618_fsm b/pg_data/base/16384/2618_fsm
deleted file mode 100644
index 3fda572c..00000000
Binary files a/pg_data/base/16384/2618_fsm and /dev/null differ
diff --git a/pg_data/base/16384/2618_vm b/pg_data/base/16384/2618_vm
deleted file mode 100644
index 4022c6a1..00000000
Binary files a/pg_data/base/16384/2618_vm and /dev/null differ
diff --git a/pg_data/base/16384/2619 b/pg_data/base/16384/2619
deleted file mode 100644
index 78a62236..00000000
Binary files a/pg_data/base/16384/2619 and /dev/null differ
diff --git a/pg_data/base/16384/2619_fsm b/pg_data/base/16384/2619_fsm
deleted file mode 100644
index c7c5d553..00000000
Binary files a/pg_data/base/16384/2619_fsm and /dev/null differ
diff --git a/pg_data/base/16384/2619_vm b/pg_data/base/16384/2619_vm
deleted file mode 100644
index 5b3cd610..00000000
Binary files a/pg_data/base/16384/2619_vm and /dev/null differ
diff --git a/pg_data/base/16384/2620 b/pg_data/base/16384/2620
deleted file mode 100644
index d38e2adc..00000000
Binary files a/pg_data/base/16384/2620 and /dev/null differ
diff --git a/pg_data/base/16384/2620_fsm b/pg_data/base/16384/2620_fsm
deleted file mode 100644
index 28c2ddd3..00000000
Binary files a/pg_data/base/16384/2620_fsm and /dev/null differ
diff --git a/pg_data/base/16384/2650 b/pg_data/base/16384/2650
deleted file mode 100644
index 8278ca27..00000000
Binary files a/pg_data/base/16384/2650 and /dev/null differ
diff --git a/pg_data/base/16384/2651 b/pg_data/base/16384/2651
deleted file mode 100644
index 9ee5df81..00000000
Binary files a/pg_data/base/16384/2651 and /dev/null differ
diff --git a/pg_data/base/16384/2652 b/pg_data/base/16384/2652
deleted file mode 100644
index 30501dd2..00000000
Binary files a/pg_data/base/16384/2652 and /dev/null differ
diff --git a/pg_data/base/16384/2653 b/pg_data/base/16384/2653
deleted file mode 100644
index a5cba504..00000000
Binary files a/pg_data/base/16384/2653 and /dev/null differ
diff --git a/pg_data/base/16384/2654 b/pg_data/base/16384/2654
deleted file mode 100644
index da3cf45b..00000000
Binary files a/pg_data/base/16384/2654 and /dev/null differ
diff --git a/pg_data/base/16384/2655 b/pg_data/base/16384/2655
deleted file mode 100644
index 4ec2457c..00000000
Binary files a/pg_data/base/16384/2655 and /dev/null differ
diff --git a/pg_data/base/16384/2656 b/pg_data/base/16384/2656
deleted file mode 100644
index 6e0988a7..00000000
Binary files a/pg_data/base/16384/2656 and /dev/null differ
diff --git a/pg_data/base/16384/2657 b/pg_data/base/16384/2657
deleted file mode 100644
index be6128be..00000000
Binary files a/pg_data/base/16384/2657 and /dev/null differ
diff --git a/pg_data/base/16384/2658 b/pg_data/base/16384/2658
deleted file mode 100644
index 8d893cdb..00000000
Binary files a/pg_data/base/16384/2658 and /dev/null differ
diff --git a/pg_data/base/16384/2659 b/pg_data/base/16384/2659
deleted file mode 100644
index 76491bd2..00000000
Binary files a/pg_data/base/16384/2659 and /dev/null differ
diff --git a/pg_data/base/16384/2660 b/pg_data/base/16384/2660
deleted file mode 100644
index 772949b3..00000000
Binary files a/pg_data/base/16384/2660 and /dev/null differ
diff --git a/pg_data/base/16384/2661 b/pg_data/base/16384/2661
deleted file mode 100644
index a44ffc33..00000000
Binary files a/pg_data/base/16384/2661 and /dev/null differ
diff --git a/pg_data/base/16384/2662 b/pg_data/base/16384/2662
deleted file mode 100644
index f9b512f8..00000000
Binary files a/pg_data/base/16384/2662 and /dev/null differ
diff --git a/pg_data/base/16384/2663 b/pg_data/base/16384/2663
deleted file mode 100644
index c2bfbabf..00000000
Binary files a/pg_data/base/16384/2663 and /dev/null differ
diff --git a/pg_data/base/16384/2664 b/pg_data/base/16384/2664
deleted file mode 100644
index 10de4c0e..00000000
Binary files a/pg_data/base/16384/2664 and /dev/null differ
diff --git a/pg_data/base/16384/2665 b/pg_data/base/16384/2665
deleted file mode 100644
index 565d5a01..00000000
Binary files a/pg_data/base/16384/2665 and /dev/null differ
diff --git a/pg_data/base/16384/2666 b/pg_data/base/16384/2666
deleted file mode 100644
index 726f4db5..00000000
Binary files a/pg_data/base/16384/2666 and /dev/null differ
diff --git a/pg_data/base/16384/2667 b/pg_data/base/16384/2667
deleted file mode 100644
index 253851b9..00000000
Binary files a/pg_data/base/16384/2667 and /dev/null differ
diff --git a/pg_data/base/16384/2668 b/pg_data/base/16384/2668
deleted file mode 100644
index e4c9d060..00000000
Binary files a/pg_data/base/16384/2668 and /dev/null differ
diff --git a/pg_data/base/16384/2669 b/pg_data/base/16384/2669
deleted file mode 100644
index 127514f8..00000000
Binary files a/pg_data/base/16384/2669 and /dev/null differ
diff --git a/pg_data/base/16384/2670 b/pg_data/base/16384/2670
deleted file mode 100644
index e39b467f..00000000
Binary files a/pg_data/base/16384/2670 and /dev/null differ
diff --git a/pg_data/base/16384/2673 b/pg_data/base/16384/2673
deleted file mode 100644
index 374d0bbb..00000000
Binary files a/pg_data/base/16384/2673 and /dev/null differ
diff --git a/pg_data/base/16384/2674 b/pg_data/base/16384/2674
deleted file mode 100644
index 9789ca77..00000000
Binary files a/pg_data/base/16384/2674 and /dev/null differ
diff --git a/pg_data/base/16384/2675 b/pg_data/base/16384/2675
deleted file mode 100644
index 78cf0471..00000000
Binary files a/pg_data/base/16384/2675 and /dev/null differ
diff --git a/pg_data/base/16384/2678 b/pg_data/base/16384/2678
deleted file mode 100644
index b5250fc9..00000000
Binary files a/pg_data/base/16384/2678 and /dev/null differ
diff --git a/pg_data/base/16384/2679 b/pg_data/base/16384/2679
deleted file mode 100644
index b09a3aa0..00000000
Binary files a/pg_data/base/16384/2679 and /dev/null differ
diff --git a/pg_data/base/16384/2680 b/pg_data/base/16384/2680
deleted file mode 100644
index 4a35ab2c..00000000
Binary files a/pg_data/base/16384/2680 and /dev/null differ
diff --git a/pg_data/base/16384/2681 b/pg_data/base/16384/2681
deleted file mode 100644
index 6879ec8a..00000000
Binary files a/pg_data/base/16384/2681 and /dev/null differ
diff --git a/pg_data/base/16384/2682 b/pg_data/base/16384/2682
deleted file mode 100644
index 1bc0a19f..00000000
Binary files a/pg_data/base/16384/2682 and /dev/null differ
diff --git a/pg_data/base/16384/2683 b/pg_data/base/16384/2683
deleted file mode 100644
index 1f234bde..00000000
Binary files a/pg_data/base/16384/2683 and /dev/null differ
diff --git a/pg_data/base/16384/2684 b/pg_data/base/16384/2684
deleted file mode 100644
index 8b07685b..00000000
Binary files a/pg_data/base/16384/2684 and /dev/null differ
diff --git a/pg_data/base/16384/2685 b/pg_data/base/16384/2685
deleted file mode 100644
index 4ead92b3..00000000
Binary files a/pg_data/base/16384/2685 and /dev/null differ
diff --git a/pg_data/base/16384/2686 b/pg_data/base/16384/2686
deleted file mode 100644
index 52cb3c6f..00000000
Binary files a/pg_data/base/16384/2686 and /dev/null differ
diff --git a/pg_data/base/16384/2687 b/pg_data/base/16384/2687
deleted file mode 100644
index 3cb3615a..00000000
Binary files a/pg_data/base/16384/2687 and /dev/null differ
diff --git a/pg_data/base/16384/2688 b/pg_data/base/16384/2688
deleted file mode 100644
index 779f0df7..00000000
Binary files a/pg_data/base/16384/2688 and /dev/null differ
diff --git a/pg_data/base/16384/2689 b/pg_data/base/16384/2689
deleted file mode 100644
index 0f8a1ea8..00000000
Binary files a/pg_data/base/16384/2689 and /dev/null differ
diff --git a/pg_data/base/16384/2690 b/pg_data/base/16384/2690
deleted file mode 100644
index ab2feed7..00000000
Binary files a/pg_data/base/16384/2690 and /dev/null differ
diff --git a/pg_data/base/16384/2691 b/pg_data/base/16384/2691
deleted file mode 100644
index 325b1045..00000000
Binary files a/pg_data/base/16384/2691 and /dev/null differ
diff --git a/pg_data/base/16384/2692 b/pg_data/base/16384/2692
deleted file mode 100644
index ceceadcb..00000000
Binary files a/pg_data/base/16384/2692 and /dev/null differ
diff --git a/pg_data/base/16384/2693 b/pg_data/base/16384/2693
deleted file mode 100644
index 8c5303a8..00000000
Binary files a/pg_data/base/16384/2693 and /dev/null differ
diff --git a/pg_data/base/16384/2696 b/pg_data/base/16384/2696
deleted file mode 100644
index ad9e03fd..00000000
Binary files a/pg_data/base/16384/2696 and /dev/null differ
diff --git a/pg_data/base/16384/2699 b/pg_data/base/16384/2699
deleted file mode 100644
index 60dbb7fd..00000000
Binary files a/pg_data/base/16384/2699 and /dev/null differ
diff --git a/pg_data/base/16384/2701 b/pg_data/base/16384/2701
deleted file mode 100644
index 972af6bb..00000000
Binary files a/pg_data/base/16384/2701 and /dev/null differ
diff --git a/pg_data/base/16384/2702 b/pg_data/base/16384/2702
deleted file mode 100644
index 09a56d11..00000000
Binary files a/pg_data/base/16384/2702 and /dev/null differ
diff --git a/pg_data/base/16384/2703 b/pg_data/base/16384/2703
deleted file mode 100644
index 052cc0c4..00000000
Binary files a/pg_data/base/16384/2703 and /dev/null differ
diff --git a/pg_data/base/16384/2704 b/pg_data/base/16384/2704
deleted file mode 100644
index bd4c0839..00000000
Binary files a/pg_data/base/16384/2704 and /dev/null differ
diff --git a/pg_data/base/16384/2753 b/pg_data/base/16384/2753
deleted file mode 100644
index 88454662..00000000
Binary files a/pg_data/base/16384/2753 and /dev/null differ
diff --git a/pg_data/base/16384/2753_fsm b/pg_data/base/16384/2753_fsm
deleted file mode 100644
index 6155ab3f..00000000
Binary files a/pg_data/base/16384/2753_fsm and /dev/null differ
diff --git a/pg_data/base/16384/2753_vm b/pg_data/base/16384/2753_vm
deleted file mode 100644
index e968b04a..00000000
Binary files a/pg_data/base/16384/2753_vm and /dev/null differ
diff --git a/pg_data/base/16384/2754 b/pg_data/base/16384/2754
deleted file mode 100644
index d88fbb19..00000000
Binary files a/pg_data/base/16384/2754 and /dev/null differ
diff --git a/pg_data/base/16384/2755 b/pg_data/base/16384/2755
deleted file mode 100644
index 57073977..00000000
Binary files a/pg_data/base/16384/2755 and /dev/null differ
diff --git a/pg_data/base/16384/2756 b/pg_data/base/16384/2756
deleted file mode 100644
index f56d3e28..00000000
Binary files a/pg_data/base/16384/2756 and /dev/null differ
diff --git a/pg_data/base/16384/2757 b/pg_data/base/16384/2757
deleted file mode 100644
index 5fe0fe8a..00000000
Binary files a/pg_data/base/16384/2757 and /dev/null differ
diff --git a/pg_data/base/16384/2830 b/pg_data/base/16384/2830
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/2831 b/pg_data/base/16384/2831
deleted file mode 100644
index f07cf68d..00000000
Binary files a/pg_data/base/16384/2831 and /dev/null differ
diff --git a/pg_data/base/16384/2832 b/pg_data/base/16384/2832
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/2833 b/pg_data/base/16384/2833
deleted file mode 100644
index 60765966..00000000
Binary files a/pg_data/base/16384/2833 and /dev/null differ
diff --git a/pg_data/base/16384/2834 b/pg_data/base/16384/2834
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/2835 b/pg_data/base/16384/2835
deleted file mode 100644
index 6b5a2225..00000000
Binary files a/pg_data/base/16384/2835 and /dev/null differ
diff --git a/pg_data/base/16384/2836 b/pg_data/base/16384/2836
deleted file mode 100644
index 785352cc..00000000
Binary files a/pg_data/base/16384/2836 and /dev/null differ
diff --git a/pg_data/base/16384/2836_fsm b/pg_data/base/16384/2836_fsm
deleted file mode 100644
index 457c4e5c..00000000
Binary files a/pg_data/base/16384/2836_fsm and /dev/null differ
diff --git a/pg_data/base/16384/2836_vm b/pg_data/base/16384/2836_vm
deleted file mode 100644
index 4b2ab922..00000000
Binary files a/pg_data/base/16384/2836_vm and /dev/null differ
diff --git a/pg_data/base/16384/2837 b/pg_data/base/16384/2837
deleted file mode 100644
index fd40dd86..00000000
Binary files a/pg_data/base/16384/2837 and /dev/null differ
diff --git a/pg_data/base/16384/2838 b/pg_data/base/16384/2838
deleted file mode 100644
index 9558f5e5..00000000
Binary files a/pg_data/base/16384/2838 and /dev/null differ
diff --git a/pg_data/base/16384/2838_fsm b/pg_data/base/16384/2838_fsm
deleted file mode 100644
index 515552e4..00000000
Binary files a/pg_data/base/16384/2838_fsm and /dev/null differ
diff --git a/pg_data/base/16384/2838_vm b/pg_data/base/16384/2838_vm
deleted file mode 100644
index 75f83892..00000000
Binary files a/pg_data/base/16384/2838_vm and /dev/null differ
diff --git a/pg_data/base/16384/2839 b/pg_data/base/16384/2839
deleted file mode 100644
index bc6f0107..00000000
Binary files a/pg_data/base/16384/2839 and /dev/null differ
diff --git a/pg_data/base/16384/2840 b/pg_data/base/16384/2840
deleted file mode 100644
index e31abb08..00000000
Binary files a/pg_data/base/16384/2840 and /dev/null differ
diff --git a/pg_data/base/16384/2840_fsm b/pg_data/base/16384/2840_fsm
deleted file mode 100644
index c5b34895..00000000
Binary files a/pg_data/base/16384/2840_fsm and /dev/null differ
diff --git a/pg_data/base/16384/2840_vm b/pg_data/base/16384/2840_vm
deleted file mode 100644
index 46c0de48..00000000
Binary files a/pg_data/base/16384/2840_vm and /dev/null differ
diff --git a/pg_data/base/16384/2841 b/pg_data/base/16384/2841
deleted file mode 100644
index 91fa9ce4..00000000
Binary files a/pg_data/base/16384/2841 and /dev/null differ
diff --git a/pg_data/base/16384/2995 b/pg_data/base/16384/2995
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/2996 b/pg_data/base/16384/2996
deleted file mode 100644
index c358eb3f..00000000
Binary files a/pg_data/base/16384/2996 and /dev/null differ
diff --git a/pg_data/base/16384/3079 b/pg_data/base/16384/3079
deleted file mode 100644
index cd2f46e2..00000000
Binary files a/pg_data/base/16384/3079 and /dev/null differ
diff --git a/pg_data/base/16384/3079_fsm b/pg_data/base/16384/3079_fsm
deleted file mode 100644
index 521e5e89..00000000
Binary files a/pg_data/base/16384/3079_fsm and /dev/null differ
diff --git a/pg_data/base/16384/3079_vm b/pg_data/base/16384/3079_vm
deleted file mode 100644
index d9779d34..00000000
Binary files a/pg_data/base/16384/3079_vm and /dev/null differ
diff --git a/pg_data/base/16384/3080 b/pg_data/base/16384/3080
deleted file mode 100644
index e0e9aaf3..00000000
Binary files a/pg_data/base/16384/3080 and /dev/null differ
diff --git a/pg_data/base/16384/3081 b/pg_data/base/16384/3081
deleted file mode 100644
index 7130b431..00000000
Binary files a/pg_data/base/16384/3081 and /dev/null differ
diff --git a/pg_data/base/16384/3085 b/pg_data/base/16384/3085
deleted file mode 100644
index 87999469..00000000
Binary files a/pg_data/base/16384/3085 and /dev/null differ
diff --git a/pg_data/base/16384/3118 b/pg_data/base/16384/3118
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/3119 b/pg_data/base/16384/3119
deleted file mode 100644
index b65e5dd9..00000000
Binary files a/pg_data/base/16384/3119 and /dev/null differ
diff --git a/pg_data/base/16384/3164 b/pg_data/base/16384/3164
deleted file mode 100644
index 72e4c03c..00000000
Binary files a/pg_data/base/16384/3164 and /dev/null differ
diff --git a/pg_data/base/16384/3256 b/pg_data/base/16384/3256
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/3257 b/pg_data/base/16384/3257
deleted file mode 100644
index 92cfb8ef..00000000
Binary files a/pg_data/base/16384/3257 and /dev/null differ
diff --git a/pg_data/base/16384/3258 b/pg_data/base/16384/3258
deleted file mode 100644
index 3a600a47..00000000
Binary files a/pg_data/base/16384/3258 and /dev/null differ
diff --git a/pg_data/base/16384/3350 b/pg_data/base/16384/3350
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/3351 b/pg_data/base/16384/3351
deleted file mode 100644
index 8de7bc8f..00000000
Binary files a/pg_data/base/16384/3351 and /dev/null differ
diff --git a/pg_data/base/16384/3379 b/pg_data/base/16384/3379
deleted file mode 100644
index 10b6164d..00000000
Binary files a/pg_data/base/16384/3379 and /dev/null differ
diff --git a/pg_data/base/16384/3380 b/pg_data/base/16384/3380
deleted file mode 100644
index 47ca6e21..00000000
Binary files a/pg_data/base/16384/3380 and /dev/null differ
diff --git a/pg_data/base/16384/3381 b/pg_data/base/16384/3381
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/3394 b/pg_data/base/16384/3394
deleted file mode 100644
index 19da04b9..00000000
Binary files a/pg_data/base/16384/3394 and /dev/null differ
diff --git a/pg_data/base/16384/3394_fsm b/pg_data/base/16384/3394_fsm
deleted file mode 100644
index 3cbd2619..00000000
Binary files a/pg_data/base/16384/3394_fsm and /dev/null differ
diff --git a/pg_data/base/16384/3394_vm b/pg_data/base/16384/3394_vm
deleted file mode 100644
index fdde78b6..00000000
Binary files a/pg_data/base/16384/3394_vm and /dev/null differ
diff --git a/pg_data/base/16384/3395 b/pg_data/base/16384/3395
deleted file mode 100644
index 64378f57..00000000
Binary files a/pg_data/base/16384/3395 and /dev/null differ
diff --git a/pg_data/base/16384/3429 b/pg_data/base/16384/3429
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/3430 b/pg_data/base/16384/3430
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/3431 b/pg_data/base/16384/3431
deleted file mode 100644
index e007294b..00000000
Binary files a/pg_data/base/16384/3431 and /dev/null differ
diff --git a/pg_data/base/16384/3433 b/pg_data/base/16384/3433
deleted file mode 100644
index 971f2ac7..00000000
Binary files a/pg_data/base/16384/3433 and /dev/null differ
diff --git a/pg_data/base/16384/3439 b/pg_data/base/16384/3439
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/3440 b/pg_data/base/16384/3440
deleted file mode 100644
index fe794884..00000000
Binary files a/pg_data/base/16384/3440 and /dev/null differ
diff --git a/pg_data/base/16384/3455 b/pg_data/base/16384/3455
deleted file mode 100644
index 72f03373..00000000
Binary files a/pg_data/base/16384/3455 and /dev/null differ
diff --git a/pg_data/base/16384/3456 b/pg_data/base/16384/3456
deleted file mode 100644
index a1148f21..00000000
Binary files a/pg_data/base/16384/3456 and /dev/null differ
diff --git a/pg_data/base/16384/3456_fsm b/pg_data/base/16384/3456_fsm
deleted file mode 100644
index 44f72b9c..00000000
Binary files a/pg_data/base/16384/3456_fsm and /dev/null differ
diff --git a/pg_data/base/16384/3456_vm b/pg_data/base/16384/3456_vm
deleted file mode 100644
index 45a3fead..00000000
Binary files a/pg_data/base/16384/3456_vm and /dev/null differ
diff --git a/pg_data/base/16384/3466 b/pg_data/base/16384/3466
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/3467 b/pg_data/base/16384/3467
deleted file mode 100644
index b8f9ee1b..00000000
Binary files a/pg_data/base/16384/3467 and /dev/null differ
diff --git a/pg_data/base/16384/3468 b/pg_data/base/16384/3468
deleted file mode 100644
index b99c719f..00000000
Binary files a/pg_data/base/16384/3468 and /dev/null differ
diff --git a/pg_data/base/16384/3501 b/pg_data/base/16384/3501
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/3502 b/pg_data/base/16384/3502
deleted file mode 100644
index 28baef2c..00000000
Binary files a/pg_data/base/16384/3502 and /dev/null differ
diff --git a/pg_data/base/16384/3503 b/pg_data/base/16384/3503
deleted file mode 100644
index 2f008df8..00000000
Binary files a/pg_data/base/16384/3503 and /dev/null differ
diff --git a/pg_data/base/16384/3534 b/pg_data/base/16384/3534
deleted file mode 100644
index 5bc53942..00000000
Binary files a/pg_data/base/16384/3534 and /dev/null differ
diff --git a/pg_data/base/16384/3541 b/pg_data/base/16384/3541
deleted file mode 100644
index 4dbcc4b0..00000000
Binary files a/pg_data/base/16384/3541 and /dev/null differ
diff --git a/pg_data/base/16384/3541_fsm b/pg_data/base/16384/3541_fsm
deleted file mode 100644
index 59226655..00000000
Binary files a/pg_data/base/16384/3541_fsm and /dev/null differ
diff --git a/pg_data/base/16384/3541_vm b/pg_data/base/16384/3541_vm
deleted file mode 100644
index 007cf8bd..00000000
Binary files a/pg_data/base/16384/3541_vm and /dev/null differ
diff --git a/pg_data/base/16384/3542 b/pg_data/base/16384/3542
deleted file mode 100644
index 3792e899..00000000
Binary files a/pg_data/base/16384/3542 and /dev/null differ
diff --git a/pg_data/base/16384/3574 b/pg_data/base/16384/3574
deleted file mode 100644
index 7b81619f..00000000
Binary files a/pg_data/base/16384/3574 and /dev/null differ
diff --git a/pg_data/base/16384/3575 b/pg_data/base/16384/3575
deleted file mode 100644
index 72aeb514..00000000
Binary files a/pg_data/base/16384/3575 and /dev/null differ
diff --git a/pg_data/base/16384/3576 b/pg_data/base/16384/3576
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/3596 b/pg_data/base/16384/3596
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/3597 b/pg_data/base/16384/3597
deleted file mode 100644
index 8d9e6f95..00000000
Binary files a/pg_data/base/16384/3597 and /dev/null differ
diff --git a/pg_data/base/16384/3598 b/pg_data/base/16384/3598
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/3599 b/pg_data/base/16384/3599
deleted file mode 100644
index 50e1db63..00000000
Binary files a/pg_data/base/16384/3599 and /dev/null differ
diff --git a/pg_data/base/16384/3600 b/pg_data/base/16384/3600
deleted file mode 100644
index 3fae5a49..00000000
Binary files a/pg_data/base/16384/3600 and /dev/null differ
diff --git a/pg_data/base/16384/3600_fsm b/pg_data/base/16384/3600_fsm
deleted file mode 100644
index 3c2e4dbf..00000000
Binary files a/pg_data/base/16384/3600_fsm and /dev/null differ
diff --git a/pg_data/base/16384/3600_vm b/pg_data/base/16384/3600_vm
deleted file mode 100644
index 484d7418..00000000
Binary files a/pg_data/base/16384/3600_vm and /dev/null differ
diff --git a/pg_data/base/16384/3601 b/pg_data/base/16384/3601
deleted file mode 100644
index bbe24bd2..00000000
Binary files a/pg_data/base/16384/3601 and /dev/null differ
diff --git a/pg_data/base/16384/3601_fsm b/pg_data/base/16384/3601_fsm
deleted file mode 100644
index d14455c1..00000000
Binary files a/pg_data/base/16384/3601_fsm and /dev/null differ
diff --git a/pg_data/base/16384/3601_vm b/pg_data/base/16384/3601_vm
deleted file mode 100644
index e0641dd7..00000000
Binary files a/pg_data/base/16384/3601_vm and /dev/null differ
diff --git a/pg_data/base/16384/3602 b/pg_data/base/16384/3602
deleted file mode 100644
index e30cb5e4..00000000
Binary files a/pg_data/base/16384/3602 and /dev/null differ
diff --git a/pg_data/base/16384/3602_fsm b/pg_data/base/16384/3602_fsm
deleted file mode 100644
index bed51705..00000000
Binary files a/pg_data/base/16384/3602_fsm and /dev/null differ
diff --git a/pg_data/base/16384/3602_vm b/pg_data/base/16384/3602_vm
deleted file mode 100644
index f998ff4c..00000000
Binary files a/pg_data/base/16384/3602_vm and /dev/null differ
diff --git a/pg_data/base/16384/3603 b/pg_data/base/16384/3603
deleted file mode 100644
index 23032f13..00000000
Binary files a/pg_data/base/16384/3603 and /dev/null differ
diff --git a/pg_data/base/16384/3603_fsm b/pg_data/base/16384/3603_fsm
deleted file mode 100644
index 9596144b..00000000
Binary files a/pg_data/base/16384/3603_fsm and /dev/null differ
diff --git a/pg_data/base/16384/3603_vm b/pg_data/base/16384/3603_vm
deleted file mode 100644
index e19ec084..00000000
Binary files a/pg_data/base/16384/3603_vm and /dev/null differ
diff --git a/pg_data/base/16384/3604 b/pg_data/base/16384/3604
deleted file mode 100644
index 9e3242e0..00000000
Binary files a/pg_data/base/16384/3604 and /dev/null differ
diff --git a/pg_data/base/16384/3605 b/pg_data/base/16384/3605
deleted file mode 100644
index 58bf558f..00000000
Binary files a/pg_data/base/16384/3605 and /dev/null differ
diff --git a/pg_data/base/16384/3606 b/pg_data/base/16384/3606
deleted file mode 100644
index 4db76a64..00000000
Binary files a/pg_data/base/16384/3606 and /dev/null differ
diff --git a/pg_data/base/16384/3607 b/pg_data/base/16384/3607
deleted file mode 100644
index 043cb3e4..00000000
Binary files a/pg_data/base/16384/3607 and /dev/null differ
diff --git a/pg_data/base/16384/3608 b/pg_data/base/16384/3608
deleted file mode 100644
index 10fbc0de..00000000
Binary files a/pg_data/base/16384/3608 and /dev/null differ
diff --git a/pg_data/base/16384/3609 b/pg_data/base/16384/3609
deleted file mode 100644
index b15eb12f..00000000
Binary files a/pg_data/base/16384/3609 and /dev/null differ
diff --git a/pg_data/base/16384/3712 b/pg_data/base/16384/3712
deleted file mode 100644
index fc568449..00000000
Binary files a/pg_data/base/16384/3712 and /dev/null differ
diff --git a/pg_data/base/16384/3764 b/pg_data/base/16384/3764
deleted file mode 100644
index 14b5d3e9..00000000
Binary files a/pg_data/base/16384/3764 and /dev/null differ
diff --git a/pg_data/base/16384/3764_fsm b/pg_data/base/16384/3764_fsm
deleted file mode 100644
index 2f5494fc..00000000
Binary files a/pg_data/base/16384/3764_fsm and /dev/null differ
diff --git a/pg_data/base/16384/3764_vm b/pg_data/base/16384/3764_vm
deleted file mode 100644
index 654de462..00000000
Binary files a/pg_data/base/16384/3764_vm and /dev/null differ
diff --git a/pg_data/base/16384/3766 b/pg_data/base/16384/3766
deleted file mode 100644
index f78c6b8a..00000000
Binary files a/pg_data/base/16384/3766 and /dev/null differ
diff --git a/pg_data/base/16384/3767 b/pg_data/base/16384/3767
deleted file mode 100644
index 81a32942..00000000
Binary files a/pg_data/base/16384/3767 and /dev/null differ
diff --git a/pg_data/base/16384/3997 b/pg_data/base/16384/3997
deleted file mode 100644
index 56b91845..00000000
Binary files a/pg_data/base/16384/3997 and /dev/null differ
diff --git a/pg_data/base/16384/4143 b/pg_data/base/16384/4143
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/4144 b/pg_data/base/16384/4144
deleted file mode 100644
index 2bd3efcd..00000000
Binary files a/pg_data/base/16384/4144 and /dev/null differ
diff --git a/pg_data/base/16384/4145 b/pg_data/base/16384/4145
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/4146 b/pg_data/base/16384/4146
deleted file mode 100644
index 4be266f7..00000000
Binary files a/pg_data/base/16384/4146 and /dev/null differ
diff --git a/pg_data/base/16384/4147 b/pg_data/base/16384/4147
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/4148 b/pg_data/base/16384/4148
deleted file mode 100644
index 23271099..00000000
Binary files a/pg_data/base/16384/4148 and /dev/null differ
diff --git a/pg_data/base/16384/4149 b/pg_data/base/16384/4149
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/4150 b/pg_data/base/16384/4150
deleted file mode 100644
index 72e5f132..00000000
Binary files a/pg_data/base/16384/4150 and /dev/null differ
diff --git a/pg_data/base/16384/4151 b/pg_data/base/16384/4151
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/4152 b/pg_data/base/16384/4152
deleted file mode 100644
index 121889c8..00000000
Binary files a/pg_data/base/16384/4152 and /dev/null differ
diff --git a/pg_data/base/16384/4153 b/pg_data/base/16384/4153
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/4154 b/pg_data/base/16384/4154
deleted file mode 100644
index ccfcc42d..00000000
Binary files a/pg_data/base/16384/4154 and /dev/null differ
diff --git a/pg_data/base/16384/4155 b/pg_data/base/16384/4155
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/4156 b/pg_data/base/16384/4156
deleted file mode 100644
index 2f089df8..00000000
Binary files a/pg_data/base/16384/4156 and /dev/null differ
diff --git a/pg_data/base/16384/4157 b/pg_data/base/16384/4157
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/4158 b/pg_data/base/16384/4158
deleted file mode 100644
index d0c6f419..00000000
Binary files a/pg_data/base/16384/4158 and /dev/null differ
diff --git a/pg_data/base/16384/4159 b/pg_data/base/16384/4159
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/4160 b/pg_data/base/16384/4160
deleted file mode 100644
index b6c60c86..00000000
Binary files a/pg_data/base/16384/4160 and /dev/null differ
diff --git a/pg_data/base/16384/4163 b/pg_data/base/16384/4163
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/4164 b/pg_data/base/16384/4164
deleted file mode 100644
index 83230453..00000000
Binary files a/pg_data/base/16384/4164 and /dev/null differ
diff --git a/pg_data/base/16384/4165 b/pg_data/base/16384/4165
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/4166 b/pg_data/base/16384/4166
deleted file mode 100644
index 3b741aec..00000000
Binary files a/pg_data/base/16384/4166 and /dev/null differ
diff --git a/pg_data/base/16384/4167 b/pg_data/base/16384/4167
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/4168 b/pg_data/base/16384/4168
deleted file mode 100644
index 1f00c448..00000000
Binary files a/pg_data/base/16384/4168 and /dev/null differ
diff --git a/pg_data/base/16384/4169 b/pg_data/base/16384/4169
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/4170 b/pg_data/base/16384/4170
deleted file mode 100644
index 89a89029..00000000
Binary files a/pg_data/base/16384/4170 and /dev/null differ
diff --git a/pg_data/base/16384/4171 b/pg_data/base/16384/4171
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/4172 b/pg_data/base/16384/4172
deleted file mode 100644
index 91a517c8..00000000
Binary files a/pg_data/base/16384/4172 and /dev/null differ
diff --git a/pg_data/base/16384/4173 b/pg_data/base/16384/4173
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/4174 b/pg_data/base/16384/4174
deleted file mode 100644
index 5f8edee4..00000000
Binary files a/pg_data/base/16384/4174 and /dev/null differ
diff --git a/pg_data/base/16384/5002 b/pg_data/base/16384/5002
deleted file mode 100644
index 534f2bc9..00000000
Binary files a/pg_data/base/16384/5002 and /dev/null differ
diff --git a/pg_data/base/16384/548 b/pg_data/base/16384/548
deleted file mode 100644
index 6be827d0..00000000
Binary files a/pg_data/base/16384/548 and /dev/null differ
diff --git a/pg_data/base/16384/549 b/pg_data/base/16384/549
deleted file mode 100644
index 61a36c81..00000000
Binary files a/pg_data/base/16384/549 and /dev/null differ
diff --git a/pg_data/base/16384/6102 b/pg_data/base/16384/6102
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/6104 b/pg_data/base/16384/6104
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/6106 b/pg_data/base/16384/6106
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/6110 b/pg_data/base/16384/6110
deleted file mode 100644
index 07ed8ff1..00000000
Binary files a/pg_data/base/16384/6110 and /dev/null differ
diff --git a/pg_data/base/16384/6111 b/pg_data/base/16384/6111
deleted file mode 100644
index b7138278..00000000
Binary files a/pg_data/base/16384/6111 and /dev/null differ
diff --git a/pg_data/base/16384/6112 b/pg_data/base/16384/6112
deleted file mode 100644
index fa47a57c..00000000
Binary files a/pg_data/base/16384/6112 and /dev/null differ
diff --git a/pg_data/base/16384/6113 b/pg_data/base/16384/6113
deleted file mode 100644
index 7a1fce36..00000000
Binary files a/pg_data/base/16384/6113 and /dev/null differ
diff --git a/pg_data/base/16384/6116 b/pg_data/base/16384/6116
deleted file mode 100644
index 17406513..00000000
Binary files a/pg_data/base/16384/6116 and /dev/null differ
diff --git a/pg_data/base/16384/6117 b/pg_data/base/16384/6117
deleted file mode 100644
index 79c52eb6..00000000
Binary files a/pg_data/base/16384/6117 and /dev/null differ
diff --git a/pg_data/base/16384/6175 b/pg_data/base/16384/6175
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/6176 b/pg_data/base/16384/6176
deleted file mode 100644
index 39c1dc93..00000000
Binary files a/pg_data/base/16384/6176 and /dev/null differ
diff --git a/pg_data/base/16384/6228 b/pg_data/base/16384/6228
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/6229 b/pg_data/base/16384/6229
deleted file mode 100644
index ae24c93d..00000000
Binary files a/pg_data/base/16384/6229 and /dev/null differ
diff --git a/pg_data/base/16384/6237 b/pg_data/base/16384/6237
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/6238 b/pg_data/base/16384/6238
deleted file mode 100644
index 295bacd3..00000000
Binary files a/pg_data/base/16384/6238 and /dev/null differ
diff --git a/pg_data/base/16384/6239 b/pg_data/base/16384/6239
deleted file mode 100644
index 1587ab3d..00000000
Binary files a/pg_data/base/16384/6239 and /dev/null differ
diff --git a/pg_data/base/16384/6351 b/pg_data/base/16384/6351
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/6352 b/pg_data/base/16384/6352
deleted file mode 100644
index 536dd6d6..00000000
Binary files a/pg_data/base/16384/6352 and /dev/null differ
diff --git a/pg_data/base/16384/826 b/pg_data/base/16384/826
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/16384/827 b/pg_data/base/16384/827
deleted file mode 100644
index 429876de..00000000
Binary files a/pg_data/base/16384/827 and /dev/null differ
diff --git a/pg_data/base/16384/828 b/pg_data/base/16384/828
deleted file mode 100644
index d5af1d9d..00000000
Binary files a/pg_data/base/16384/828 and /dev/null differ
diff --git a/pg_data/base/16384/PG_VERSION b/pg_data/base/16384/PG_VERSION
deleted file mode 100644
index 3c032078..00000000
--- a/pg_data/base/16384/PG_VERSION
+++ /dev/null
@@ -1 +0,0 @@
-18
diff --git a/pg_data/base/16384/pg_filenode.map b/pg_data/base/16384/pg_filenode.map
deleted file mode 100644
index 4fc801aa..00000000
Binary files a/pg_data/base/16384/pg_filenode.map and /dev/null differ
diff --git a/pg_data/base/16384/pg_internal.init b/pg_data/base/16384/pg_internal.init
deleted file mode 100644
index f007b360..00000000
Binary files a/pg_data/base/16384/pg_internal.init and /dev/null differ
diff --git a/pg_data/base/4/112 b/pg_data/base/4/112
deleted file mode 100644
index 6bf1e4e1..00000000
Binary files a/pg_data/base/4/112 and /dev/null differ
diff --git a/pg_data/base/4/113 b/pg_data/base/4/113
deleted file mode 100644
index 62f33de5..00000000
Binary files a/pg_data/base/4/113 and /dev/null differ
diff --git a/pg_data/base/4/1247 b/pg_data/base/4/1247
deleted file mode 100644
index 748a378d..00000000
Binary files a/pg_data/base/4/1247 and /dev/null differ
diff --git a/pg_data/base/4/1247_fsm b/pg_data/base/4/1247_fsm
deleted file mode 100644
index 103cd46a..00000000
Binary files a/pg_data/base/4/1247_fsm and /dev/null differ
diff --git a/pg_data/base/4/1247_vm b/pg_data/base/4/1247_vm
deleted file mode 100644
index 335e9c47..00000000
Binary files a/pg_data/base/4/1247_vm and /dev/null differ
diff --git a/pg_data/base/4/1249 b/pg_data/base/4/1249
deleted file mode 100644
index d352cc66..00000000
Binary files a/pg_data/base/4/1249 and /dev/null differ
diff --git a/pg_data/base/4/1249_fsm b/pg_data/base/4/1249_fsm
deleted file mode 100644
index e506f183..00000000
Binary files a/pg_data/base/4/1249_fsm and /dev/null differ
diff --git a/pg_data/base/4/1249_vm b/pg_data/base/4/1249_vm
deleted file mode 100644
index 0012c20e..00000000
Binary files a/pg_data/base/4/1249_vm and /dev/null differ
diff --git a/pg_data/base/4/1255 b/pg_data/base/4/1255
deleted file mode 100644
index 79a1aee2..00000000
Binary files a/pg_data/base/4/1255 and /dev/null differ
diff --git a/pg_data/base/4/1255_fsm b/pg_data/base/4/1255_fsm
deleted file mode 100644
index 5598c706..00000000
Binary files a/pg_data/base/4/1255_fsm and /dev/null differ
diff --git a/pg_data/base/4/1255_vm b/pg_data/base/4/1255_vm
deleted file mode 100644
index cf110f8c..00000000
Binary files a/pg_data/base/4/1255_vm and /dev/null differ
diff --git a/pg_data/base/4/1259 b/pg_data/base/4/1259
deleted file mode 100644
index 8f4df2c6..00000000
Binary files a/pg_data/base/4/1259 and /dev/null differ
diff --git a/pg_data/base/4/1259_fsm b/pg_data/base/4/1259_fsm
deleted file mode 100644
index 569d3b56..00000000
Binary files a/pg_data/base/4/1259_fsm and /dev/null differ
diff --git a/pg_data/base/4/1259_vm b/pg_data/base/4/1259_vm
deleted file mode 100644
index 4c9e2ef3..00000000
Binary files a/pg_data/base/4/1259_vm and /dev/null differ
diff --git a/pg_data/base/4/13476 b/pg_data/base/4/13476
deleted file mode 100644
index 3ffad271..00000000
Binary files a/pg_data/base/4/13476 and /dev/null differ
diff --git a/pg_data/base/4/13476_fsm b/pg_data/base/4/13476_fsm
deleted file mode 100644
index 8f510a10..00000000
Binary files a/pg_data/base/4/13476_fsm and /dev/null differ
diff --git a/pg_data/base/4/13476_vm b/pg_data/base/4/13476_vm
deleted file mode 100644
index 70c9527a..00000000
Binary files a/pg_data/base/4/13476_vm and /dev/null differ
diff --git a/pg_data/base/4/13479 b/pg_data/base/4/13479
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/13480 b/pg_data/base/4/13480
deleted file mode 100644
index 4e4aa016..00000000
Binary files a/pg_data/base/4/13480 and /dev/null differ
diff --git a/pg_data/base/4/13481 b/pg_data/base/4/13481
deleted file mode 100644
index 66e03248..00000000
Binary files a/pg_data/base/4/13481 and /dev/null differ
diff --git a/pg_data/base/4/13481_fsm b/pg_data/base/4/13481_fsm
deleted file mode 100644
index 2d7759ff..00000000
Binary files a/pg_data/base/4/13481_fsm and /dev/null differ
diff --git a/pg_data/base/4/13481_vm b/pg_data/base/4/13481_vm
deleted file mode 100644
index 8f1fd527..00000000
Binary files a/pg_data/base/4/13481_vm and /dev/null differ
diff --git a/pg_data/base/4/13484 b/pg_data/base/4/13484
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/13485 b/pg_data/base/4/13485
deleted file mode 100644
index 6f4c233b..00000000
Binary files a/pg_data/base/4/13485 and /dev/null differ
diff --git a/pg_data/base/4/13486 b/pg_data/base/4/13486
deleted file mode 100644
index c85c6e48..00000000
Binary files a/pg_data/base/4/13486 and /dev/null differ
diff --git a/pg_data/base/4/13486_fsm b/pg_data/base/4/13486_fsm
deleted file mode 100644
index 9a4e1393..00000000
Binary files a/pg_data/base/4/13486_fsm and /dev/null differ
diff --git a/pg_data/base/4/13486_vm b/pg_data/base/4/13486_vm
deleted file mode 100644
index aeec4b64..00000000
Binary files a/pg_data/base/4/13486_vm and /dev/null differ
diff --git a/pg_data/base/4/13489 b/pg_data/base/4/13489
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/13490 b/pg_data/base/4/13490
deleted file mode 100644
index fce6ea3e..00000000
Binary files a/pg_data/base/4/13490 and /dev/null differ
diff --git a/pg_data/base/4/13491 b/pg_data/base/4/13491
deleted file mode 100644
index 2ccecc06..00000000
Binary files a/pg_data/base/4/13491 and /dev/null differ
diff --git a/pg_data/base/4/13491_fsm b/pg_data/base/4/13491_fsm
deleted file mode 100644
index 081ecfe0..00000000
Binary files a/pg_data/base/4/13491_fsm and /dev/null differ
diff --git a/pg_data/base/4/13491_vm b/pg_data/base/4/13491_vm
deleted file mode 100644
index c7b22e2d..00000000
Binary files a/pg_data/base/4/13491_vm and /dev/null differ
diff --git a/pg_data/base/4/13494 b/pg_data/base/4/13494
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/13495 b/pg_data/base/4/13495
deleted file mode 100644
index 8f9f9dd7..00000000
Binary files a/pg_data/base/4/13495 and /dev/null differ
diff --git a/pg_data/base/4/1417 b/pg_data/base/4/1417
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/1418 b/pg_data/base/4/1418
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/174 b/pg_data/base/4/174
deleted file mode 100644
index b135120f..00000000
Binary files a/pg_data/base/4/174 and /dev/null differ
diff --git a/pg_data/base/4/175 b/pg_data/base/4/175
deleted file mode 100644
index 29ea7817..00000000
Binary files a/pg_data/base/4/175 and /dev/null differ
diff --git a/pg_data/base/4/2187 b/pg_data/base/4/2187
deleted file mode 100644
index fa480001..00000000
Binary files a/pg_data/base/4/2187 and /dev/null differ
diff --git a/pg_data/base/4/2224 b/pg_data/base/4/2224
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/2228 b/pg_data/base/4/2228
deleted file mode 100644
index e9c70b76..00000000
Binary files a/pg_data/base/4/2228 and /dev/null differ
diff --git a/pg_data/base/4/2328 b/pg_data/base/4/2328
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/2336 b/pg_data/base/4/2336
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/2337 b/pg_data/base/4/2337
deleted file mode 100644
index b1b33ecc..00000000
Binary files a/pg_data/base/4/2337 and /dev/null differ
diff --git a/pg_data/base/4/2579 b/pg_data/base/4/2579
deleted file mode 100644
index 80a8bc1e..00000000
Binary files a/pg_data/base/4/2579 and /dev/null differ
diff --git a/pg_data/base/4/2600 b/pg_data/base/4/2600
deleted file mode 100644
index d9db31e1..00000000
Binary files a/pg_data/base/4/2600 and /dev/null differ
diff --git a/pg_data/base/4/2600_fsm b/pg_data/base/4/2600_fsm
deleted file mode 100644
index 90c479d1..00000000
Binary files a/pg_data/base/4/2600_fsm and /dev/null differ
diff --git a/pg_data/base/4/2600_vm b/pg_data/base/4/2600_vm
deleted file mode 100644
index 026aaa5d..00000000
Binary files a/pg_data/base/4/2600_vm and /dev/null differ
diff --git a/pg_data/base/4/2601 b/pg_data/base/4/2601
deleted file mode 100644
index 2bbda385..00000000
Binary files a/pg_data/base/4/2601 and /dev/null differ
diff --git a/pg_data/base/4/2601_fsm b/pg_data/base/4/2601_fsm
deleted file mode 100644
index f0495219..00000000
Binary files a/pg_data/base/4/2601_fsm and /dev/null differ
diff --git a/pg_data/base/4/2601_vm b/pg_data/base/4/2601_vm
deleted file mode 100644
index 618363c9..00000000
Binary files a/pg_data/base/4/2601_vm and /dev/null differ
diff --git a/pg_data/base/4/2602 b/pg_data/base/4/2602
deleted file mode 100644
index e2c3df0c..00000000
Binary files a/pg_data/base/4/2602 and /dev/null differ
diff --git a/pg_data/base/4/2602_fsm b/pg_data/base/4/2602_fsm
deleted file mode 100644
index 28517412..00000000
Binary files a/pg_data/base/4/2602_fsm and /dev/null differ
diff --git a/pg_data/base/4/2602_vm b/pg_data/base/4/2602_vm
deleted file mode 100644
index 0e3590a4..00000000
Binary files a/pg_data/base/4/2602_vm and /dev/null differ
diff --git a/pg_data/base/4/2603 b/pg_data/base/4/2603
deleted file mode 100644
index 29a5301f..00000000
Binary files a/pg_data/base/4/2603 and /dev/null differ
diff --git a/pg_data/base/4/2603_fsm b/pg_data/base/4/2603_fsm
deleted file mode 100644
index 0d3d15ec..00000000
Binary files a/pg_data/base/4/2603_fsm and /dev/null differ
diff --git a/pg_data/base/4/2603_vm b/pg_data/base/4/2603_vm
deleted file mode 100644
index ac07da05..00000000
Binary files a/pg_data/base/4/2603_vm and /dev/null differ
diff --git a/pg_data/base/4/2604 b/pg_data/base/4/2604
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/2605 b/pg_data/base/4/2605
deleted file mode 100644
index 9d695df1..00000000
Binary files a/pg_data/base/4/2605 and /dev/null differ
diff --git a/pg_data/base/4/2605_fsm b/pg_data/base/4/2605_fsm
deleted file mode 100644
index a50386f2..00000000
Binary files a/pg_data/base/4/2605_fsm and /dev/null differ
diff --git a/pg_data/base/4/2605_vm b/pg_data/base/4/2605_vm
deleted file mode 100644
index 42078470..00000000
Binary files a/pg_data/base/4/2605_vm and /dev/null differ
diff --git a/pg_data/base/4/2606 b/pg_data/base/4/2606
deleted file mode 100644
index 6d61e0d3..00000000
Binary files a/pg_data/base/4/2606 and /dev/null differ
diff --git a/pg_data/base/4/2606_fsm b/pg_data/base/4/2606_fsm
deleted file mode 100644
index 2490517d..00000000
Binary files a/pg_data/base/4/2606_fsm and /dev/null differ
diff --git a/pg_data/base/4/2606_vm b/pg_data/base/4/2606_vm
deleted file mode 100644
index 8a0a047a..00000000
Binary files a/pg_data/base/4/2606_vm and /dev/null differ
diff --git a/pg_data/base/4/2607 b/pg_data/base/4/2607
deleted file mode 100644
index b704bdb1..00000000
Binary files a/pg_data/base/4/2607 and /dev/null differ
diff --git a/pg_data/base/4/2607_fsm b/pg_data/base/4/2607_fsm
deleted file mode 100644
index 0eb053ac..00000000
Binary files a/pg_data/base/4/2607_fsm and /dev/null differ
diff --git a/pg_data/base/4/2607_vm b/pg_data/base/4/2607_vm
deleted file mode 100644
index 092a7990..00000000
Binary files a/pg_data/base/4/2607_vm and /dev/null differ
diff --git a/pg_data/base/4/2608 b/pg_data/base/4/2608
deleted file mode 100644
index 1e07aa5f..00000000
Binary files a/pg_data/base/4/2608 and /dev/null differ
diff --git a/pg_data/base/4/2608_fsm b/pg_data/base/4/2608_fsm
deleted file mode 100644
index bcc30645..00000000
Binary files a/pg_data/base/4/2608_fsm and /dev/null differ
diff --git a/pg_data/base/4/2608_vm b/pg_data/base/4/2608_vm
deleted file mode 100644
index 4c919686..00000000
Binary files a/pg_data/base/4/2608_vm and /dev/null differ
diff --git a/pg_data/base/4/2609 b/pg_data/base/4/2609
deleted file mode 100644
index 57a6de1e..00000000
Binary files a/pg_data/base/4/2609 and /dev/null differ
diff --git a/pg_data/base/4/2609_fsm b/pg_data/base/4/2609_fsm
deleted file mode 100644
index 23a34f6e..00000000
Binary files a/pg_data/base/4/2609_fsm and /dev/null differ
diff --git a/pg_data/base/4/2609_vm b/pg_data/base/4/2609_vm
deleted file mode 100644
index 93912c54..00000000
Binary files a/pg_data/base/4/2609_vm and /dev/null differ
diff --git a/pg_data/base/4/2610 b/pg_data/base/4/2610
deleted file mode 100644
index 8d391a35..00000000
Binary files a/pg_data/base/4/2610 and /dev/null differ
diff --git a/pg_data/base/4/2610_fsm b/pg_data/base/4/2610_fsm
deleted file mode 100644
index 71b934d9..00000000
Binary files a/pg_data/base/4/2610_fsm and /dev/null differ
diff --git a/pg_data/base/4/2610_vm b/pg_data/base/4/2610_vm
deleted file mode 100644
index 56ff8243..00000000
Binary files a/pg_data/base/4/2610_vm and /dev/null differ
diff --git a/pg_data/base/4/2611 b/pg_data/base/4/2611
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/2612 b/pg_data/base/4/2612
deleted file mode 100644
index f8f37e9d..00000000
Binary files a/pg_data/base/4/2612 and /dev/null differ
diff --git a/pg_data/base/4/2612_fsm b/pg_data/base/4/2612_fsm
deleted file mode 100644
index c6aa3717..00000000
Binary files a/pg_data/base/4/2612_fsm and /dev/null differ
diff --git a/pg_data/base/4/2612_vm b/pg_data/base/4/2612_vm
deleted file mode 100644
index 8f5ced21..00000000
Binary files a/pg_data/base/4/2612_vm and /dev/null differ
diff --git a/pg_data/base/4/2613 b/pg_data/base/4/2613
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/2615 b/pg_data/base/4/2615
deleted file mode 100644
index c766eaa6..00000000
Binary files a/pg_data/base/4/2615 and /dev/null differ
diff --git a/pg_data/base/4/2615_fsm b/pg_data/base/4/2615_fsm
deleted file mode 100644
index 4586b693..00000000
Binary files a/pg_data/base/4/2615_fsm and /dev/null differ
diff --git a/pg_data/base/4/2615_vm b/pg_data/base/4/2615_vm
deleted file mode 100644
index 43b43033..00000000
Binary files a/pg_data/base/4/2615_vm and /dev/null differ
diff --git a/pg_data/base/4/2616 b/pg_data/base/4/2616
deleted file mode 100644
index ff499dcb..00000000
Binary files a/pg_data/base/4/2616 and /dev/null differ
diff --git a/pg_data/base/4/2616_fsm b/pg_data/base/4/2616_fsm
deleted file mode 100644
index 61959975..00000000
Binary files a/pg_data/base/4/2616_fsm and /dev/null differ
diff --git a/pg_data/base/4/2616_vm b/pg_data/base/4/2616_vm
deleted file mode 100644
index 74f1bf83..00000000
Binary files a/pg_data/base/4/2616_vm and /dev/null differ
diff --git a/pg_data/base/4/2617 b/pg_data/base/4/2617
deleted file mode 100644
index 320b8a86..00000000
Binary files a/pg_data/base/4/2617 and /dev/null differ
diff --git a/pg_data/base/4/2617_fsm b/pg_data/base/4/2617_fsm
deleted file mode 100644
index d6c4086e..00000000
Binary files a/pg_data/base/4/2617_fsm and /dev/null differ
diff --git a/pg_data/base/4/2617_vm b/pg_data/base/4/2617_vm
deleted file mode 100644
index f42274ff..00000000
Binary files a/pg_data/base/4/2617_vm and /dev/null differ
diff --git a/pg_data/base/4/2618 b/pg_data/base/4/2618
deleted file mode 100644
index 044acfb8..00000000
Binary files a/pg_data/base/4/2618 and /dev/null differ
diff --git a/pg_data/base/4/2618_fsm b/pg_data/base/4/2618_fsm
deleted file mode 100644
index b3164752..00000000
Binary files a/pg_data/base/4/2618_fsm and /dev/null differ
diff --git a/pg_data/base/4/2618_vm b/pg_data/base/4/2618_vm
deleted file mode 100644
index 9ee20df7..00000000
Binary files a/pg_data/base/4/2618_vm and /dev/null differ
diff --git a/pg_data/base/4/2619 b/pg_data/base/4/2619
deleted file mode 100644
index 8535ad5f..00000000
Binary files a/pg_data/base/4/2619 and /dev/null differ
diff --git a/pg_data/base/4/2619_fsm b/pg_data/base/4/2619_fsm
deleted file mode 100644
index 2c00ad2f..00000000
Binary files a/pg_data/base/4/2619_fsm and /dev/null differ
diff --git a/pg_data/base/4/2619_vm b/pg_data/base/4/2619_vm
deleted file mode 100644
index d7019cab..00000000
Binary files a/pg_data/base/4/2619_vm and /dev/null differ
diff --git a/pg_data/base/4/2620 b/pg_data/base/4/2620
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/2650 b/pg_data/base/4/2650
deleted file mode 100644
index 9b77cd79..00000000
Binary files a/pg_data/base/4/2650 and /dev/null differ
diff --git a/pg_data/base/4/2651 b/pg_data/base/4/2651
deleted file mode 100644
index de9c117b..00000000
Binary files a/pg_data/base/4/2651 and /dev/null differ
diff --git a/pg_data/base/4/2652 b/pg_data/base/4/2652
deleted file mode 100644
index 667d35f2..00000000
Binary files a/pg_data/base/4/2652 and /dev/null differ
diff --git a/pg_data/base/4/2653 b/pg_data/base/4/2653
deleted file mode 100644
index 43dd6d2d..00000000
Binary files a/pg_data/base/4/2653 and /dev/null differ
diff --git a/pg_data/base/4/2654 b/pg_data/base/4/2654
deleted file mode 100644
index 6a25f47f..00000000
Binary files a/pg_data/base/4/2654 and /dev/null differ
diff --git a/pg_data/base/4/2655 b/pg_data/base/4/2655
deleted file mode 100644
index 462c3fd7..00000000
Binary files a/pg_data/base/4/2655 and /dev/null differ
diff --git a/pg_data/base/4/2656 b/pg_data/base/4/2656
deleted file mode 100644
index fc16ea88..00000000
Binary files a/pg_data/base/4/2656 and /dev/null differ
diff --git a/pg_data/base/4/2657 b/pg_data/base/4/2657
deleted file mode 100644
index 917662d9..00000000
Binary files a/pg_data/base/4/2657 and /dev/null differ
diff --git a/pg_data/base/4/2658 b/pg_data/base/4/2658
deleted file mode 100644
index e8d9249a..00000000
Binary files a/pg_data/base/4/2658 and /dev/null differ
diff --git a/pg_data/base/4/2659 b/pg_data/base/4/2659
deleted file mode 100644
index 2bf406e7..00000000
Binary files a/pg_data/base/4/2659 and /dev/null differ
diff --git a/pg_data/base/4/2660 b/pg_data/base/4/2660
deleted file mode 100644
index 3f36c6db..00000000
Binary files a/pg_data/base/4/2660 and /dev/null differ
diff --git a/pg_data/base/4/2661 b/pg_data/base/4/2661
deleted file mode 100644
index ab367624..00000000
Binary files a/pg_data/base/4/2661 and /dev/null differ
diff --git a/pg_data/base/4/2662 b/pg_data/base/4/2662
deleted file mode 100644
index a62fe4e6..00000000
Binary files a/pg_data/base/4/2662 and /dev/null differ
diff --git a/pg_data/base/4/2663 b/pg_data/base/4/2663
deleted file mode 100644
index 9bf8666f..00000000
Binary files a/pg_data/base/4/2663 and /dev/null differ
diff --git a/pg_data/base/4/2664 b/pg_data/base/4/2664
deleted file mode 100644
index b213b561..00000000
Binary files a/pg_data/base/4/2664 and /dev/null differ
diff --git a/pg_data/base/4/2665 b/pg_data/base/4/2665
deleted file mode 100644
index d62993d4..00000000
Binary files a/pg_data/base/4/2665 and /dev/null differ
diff --git a/pg_data/base/4/2666 b/pg_data/base/4/2666
deleted file mode 100644
index 14294d70..00000000
Binary files a/pg_data/base/4/2666 and /dev/null differ
diff --git a/pg_data/base/4/2667 b/pg_data/base/4/2667
deleted file mode 100644
index d722c443..00000000
Binary files a/pg_data/base/4/2667 and /dev/null differ
diff --git a/pg_data/base/4/2668 b/pg_data/base/4/2668
deleted file mode 100644
index a91f7e89..00000000
Binary files a/pg_data/base/4/2668 and /dev/null differ
diff --git a/pg_data/base/4/2669 b/pg_data/base/4/2669
deleted file mode 100644
index 9f2485ca..00000000
Binary files a/pg_data/base/4/2669 and /dev/null differ
diff --git a/pg_data/base/4/2670 b/pg_data/base/4/2670
deleted file mode 100644
index 282e3c0c..00000000
Binary files a/pg_data/base/4/2670 and /dev/null differ
diff --git a/pg_data/base/4/2673 b/pg_data/base/4/2673
deleted file mode 100644
index 1f0e207c..00000000
Binary files a/pg_data/base/4/2673 and /dev/null differ
diff --git a/pg_data/base/4/2674 b/pg_data/base/4/2674
deleted file mode 100644
index e5c6c24e..00000000
Binary files a/pg_data/base/4/2674 and /dev/null differ
diff --git a/pg_data/base/4/2675 b/pg_data/base/4/2675
deleted file mode 100644
index b2cf85f2..00000000
Binary files a/pg_data/base/4/2675 and /dev/null differ
diff --git a/pg_data/base/4/2678 b/pg_data/base/4/2678
deleted file mode 100644
index d9f007f4..00000000
Binary files a/pg_data/base/4/2678 and /dev/null differ
diff --git a/pg_data/base/4/2679 b/pg_data/base/4/2679
deleted file mode 100644
index 63371c89..00000000
Binary files a/pg_data/base/4/2679 and /dev/null differ
diff --git a/pg_data/base/4/2680 b/pg_data/base/4/2680
deleted file mode 100644
index fc919b78..00000000
Binary files a/pg_data/base/4/2680 and /dev/null differ
diff --git a/pg_data/base/4/2681 b/pg_data/base/4/2681
deleted file mode 100644
index 9571e387..00000000
Binary files a/pg_data/base/4/2681 and /dev/null differ
diff --git a/pg_data/base/4/2682 b/pg_data/base/4/2682
deleted file mode 100644
index 9c9fa755..00000000
Binary files a/pg_data/base/4/2682 and /dev/null differ
diff --git a/pg_data/base/4/2683 b/pg_data/base/4/2683
deleted file mode 100644
index 3ecf046a..00000000
Binary files a/pg_data/base/4/2683 and /dev/null differ
diff --git a/pg_data/base/4/2684 b/pg_data/base/4/2684
deleted file mode 100644
index e8f3f7b1..00000000
Binary files a/pg_data/base/4/2684 and /dev/null differ
diff --git a/pg_data/base/4/2685 b/pg_data/base/4/2685
deleted file mode 100644
index 8035bbae..00000000
Binary files a/pg_data/base/4/2685 and /dev/null differ
diff --git a/pg_data/base/4/2686 b/pg_data/base/4/2686
deleted file mode 100644
index 8c54aa8d..00000000
Binary files a/pg_data/base/4/2686 and /dev/null differ
diff --git a/pg_data/base/4/2687 b/pg_data/base/4/2687
deleted file mode 100644
index 5f4cc821..00000000
Binary files a/pg_data/base/4/2687 and /dev/null differ
diff --git a/pg_data/base/4/2688 b/pg_data/base/4/2688
deleted file mode 100644
index 67a922dd..00000000
Binary files a/pg_data/base/4/2688 and /dev/null differ
diff --git a/pg_data/base/4/2689 b/pg_data/base/4/2689
deleted file mode 100644
index 40b21d6e..00000000
Binary files a/pg_data/base/4/2689 and /dev/null differ
diff --git a/pg_data/base/4/2690 b/pg_data/base/4/2690
deleted file mode 100644
index 78556177..00000000
Binary files a/pg_data/base/4/2690 and /dev/null differ
diff --git a/pg_data/base/4/2691 b/pg_data/base/4/2691
deleted file mode 100644
index 8a7d74cc..00000000
Binary files a/pg_data/base/4/2691 and /dev/null differ
diff --git a/pg_data/base/4/2692 b/pg_data/base/4/2692
deleted file mode 100644
index 86d568f6..00000000
Binary files a/pg_data/base/4/2692 and /dev/null differ
diff --git a/pg_data/base/4/2693 b/pg_data/base/4/2693
deleted file mode 100644
index 94c25c65..00000000
Binary files a/pg_data/base/4/2693 and /dev/null differ
diff --git a/pg_data/base/4/2696 b/pg_data/base/4/2696
deleted file mode 100644
index 677570e5..00000000
Binary files a/pg_data/base/4/2696 and /dev/null differ
diff --git a/pg_data/base/4/2699 b/pg_data/base/4/2699
deleted file mode 100644
index 80405eb0..00000000
Binary files a/pg_data/base/4/2699 and /dev/null differ
diff --git a/pg_data/base/4/2701 b/pg_data/base/4/2701
deleted file mode 100644
index 44d6a07e..00000000
Binary files a/pg_data/base/4/2701 and /dev/null differ
diff --git a/pg_data/base/4/2702 b/pg_data/base/4/2702
deleted file mode 100644
index 641e027c..00000000
Binary files a/pg_data/base/4/2702 and /dev/null differ
diff --git a/pg_data/base/4/2703 b/pg_data/base/4/2703
deleted file mode 100644
index 325a5cf2..00000000
Binary files a/pg_data/base/4/2703 and /dev/null differ
diff --git a/pg_data/base/4/2704 b/pg_data/base/4/2704
deleted file mode 100644
index c6661f47..00000000
Binary files a/pg_data/base/4/2704 and /dev/null differ
diff --git a/pg_data/base/4/2753 b/pg_data/base/4/2753
deleted file mode 100644
index 34b60a54..00000000
Binary files a/pg_data/base/4/2753 and /dev/null differ
diff --git a/pg_data/base/4/2753_fsm b/pg_data/base/4/2753_fsm
deleted file mode 100644
index 50ff81fb..00000000
Binary files a/pg_data/base/4/2753_fsm and /dev/null differ
diff --git a/pg_data/base/4/2753_vm b/pg_data/base/4/2753_vm
deleted file mode 100644
index 1935ad03..00000000
Binary files a/pg_data/base/4/2753_vm and /dev/null differ
diff --git a/pg_data/base/4/2754 b/pg_data/base/4/2754
deleted file mode 100644
index 982d5ea9..00000000
Binary files a/pg_data/base/4/2754 and /dev/null differ
diff --git a/pg_data/base/4/2755 b/pg_data/base/4/2755
deleted file mode 100644
index bca69e69..00000000
Binary files a/pg_data/base/4/2755 and /dev/null differ
diff --git a/pg_data/base/4/2756 b/pg_data/base/4/2756
deleted file mode 100644
index 429461b2..00000000
Binary files a/pg_data/base/4/2756 and /dev/null differ
diff --git a/pg_data/base/4/2757 b/pg_data/base/4/2757
deleted file mode 100644
index 19daa2d6..00000000
Binary files a/pg_data/base/4/2757 and /dev/null differ
diff --git a/pg_data/base/4/2830 b/pg_data/base/4/2830
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/2831 b/pg_data/base/4/2831
deleted file mode 100644
index 055e729c..00000000
Binary files a/pg_data/base/4/2831 and /dev/null differ
diff --git a/pg_data/base/4/2832 b/pg_data/base/4/2832
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/2833 b/pg_data/base/4/2833
deleted file mode 100644
index d55eccf8..00000000
Binary files a/pg_data/base/4/2833 and /dev/null differ
diff --git a/pg_data/base/4/2834 b/pg_data/base/4/2834
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/2835 b/pg_data/base/4/2835
deleted file mode 100644
index 1b347a02..00000000
Binary files a/pg_data/base/4/2835 and /dev/null differ
diff --git a/pg_data/base/4/2836 b/pg_data/base/4/2836
deleted file mode 100644
index 1ba89995..00000000
Binary files a/pg_data/base/4/2836 and /dev/null differ
diff --git a/pg_data/base/4/2836_fsm b/pg_data/base/4/2836_fsm
deleted file mode 100644
index d884400a..00000000
Binary files a/pg_data/base/4/2836_fsm and /dev/null differ
diff --git a/pg_data/base/4/2836_vm b/pg_data/base/4/2836_vm
deleted file mode 100644
index 6fad7576..00000000
Binary files a/pg_data/base/4/2836_vm and /dev/null differ
diff --git a/pg_data/base/4/2837 b/pg_data/base/4/2837
deleted file mode 100644
index 6e813fcc..00000000
Binary files a/pg_data/base/4/2837 and /dev/null differ
diff --git a/pg_data/base/4/2838 b/pg_data/base/4/2838
deleted file mode 100644
index eb5ac333..00000000
Binary files a/pg_data/base/4/2838 and /dev/null differ
diff --git a/pg_data/base/4/2838_fsm b/pg_data/base/4/2838_fsm
deleted file mode 100644
index 553d3013..00000000
Binary files a/pg_data/base/4/2838_fsm and /dev/null differ
diff --git a/pg_data/base/4/2838_vm b/pg_data/base/4/2838_vm
deleted file mode 100644
index 5da83fdd..00000000
Binary files a/pg_data/base/4/2838_vm and /dev/null differ
diff --git a/pg_data/base/4/2839 b/pg_data/base/4/2839
deleted file mode 100644
index 15255064..00000000
Binary files a/pg_data/base/4/2839 and /dev/null differ
diff --git a/pg_data/base/4/2840 b/pg_data/base/4/2840
deleted file mode 100644
index f6694076..00000000
Binary files a/pg_data/base/4/2840 and /dev/null differ
diff --git a/pg_data/base/4/2840_fsm b/pg_data/base/4/2840_fsm
deleted file mode 100644
index e1059595..00000000
Binary files a/pg_data/base/4/2840_fsm and /dev/null differ
diff --git a/pg_data/base/4/2840_vm b/pg_data/base/4/2840_vm
deleted file mode 100644
index b29517c1..00000000
Binary files a/pg_data/base/4/2840_vm and /dev/null differ
diff --git a/pg_data/base/4/2841 b/pg_data/base/4/2841
deleted file mode 100644
index 830f133a..00000000
Binary files a/pg_data/base/4/2841 and /dev/null differ
diff --git a/pg_data/base/4/2995 b/pg_data/base/4/2995
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/2996 b/pg_data/base/4/2996
deleted file mode 100644
index 26fdc5ad..00000000
Binary files a/pg_data/base/4/2996 and /dev/null differ
diff --git a/pg_data/base/4/3079 b/pg_data/base/4/3079
deleted file mode 100644
index 9a5392a2..00000000
Binary files a/pg_data/base/4/3079 and /dev/null differ
diff --git a/pg_data/base/4/3079_fsm b/pg_data/base/4/3079_fsm
deleted file mode 100644
index 162e2a50..00000000
Binary files a/pg_data/base/4/3079_fsm and /dev/null differ
diff --git a/pg_data/base/4/3079_vm b/pg_data/base/4/3079_vm
deleted file mode 100644
index 62755fcc..00000000
Binary files a/pg_data/base/4/3079_vm and /dev/null differ
diff --git a/pg_data/base/4/3080 b/pg_data/base/4/3080
deleted file mode 100644
index f0611ff2..00000000
Binary files a/pg_data/base/4/3080 and /dev/null differ
diff --git a/pg_data/base/4/3081 b/pg_data/base/4/3081
deleted file mode 100644
index 72d651e1..00000000
Binary files a/pg_data/base/4/3081 and /dev/null differ
diff --git a/pg_data/base/4/3085 b/pg_data/base/4/3085
deleted file mode 100644
index 7f471602..00000000
Binary files a/pg_data/base/4/3085 and /dev/null differ
diff --git a/pg_data/base/4/3118 b/pg_data/base/4/3118
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/3119 b/pg_data/base/4/3119
deleted file mode 100644
index 4366a64d..00000000
Binary files a/pg_data/base/4/3119 and /dev/null differ
diff --git a/pg_data/base/4/3164 b/pg_data/base/4/3164
deleted file mode 100644
index 1f8bbb9e..00000000
Binary files a/pg_data/base/4/3164 and /dev/null differ
diff --git a/pg_data/base/4/3256 b/pg_data/base/4/3256
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/3257 b/pg_data/base/4/3257
deleted file mode 100644
index 93e0b3db..00000000
Binary files a/pg_data/base/4/3257 and /dev/null differ
diff --git a/pg_data/base/4/3258 b/pg_data/base/4/3258
deleted file mode 100644
index cc352690..00000000
Binary files a/pg_data/base/4/3258 and /dev/null differ
diff --git a/pg_data/base/4/3350 b/pg_data/base/4/3350
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/3351 b/pg_data/base/4/3351
deleted file mode 100644
index dbbcd8e6..00000000
Binary files a/pg_data/base/4/3351 and /dev/null differ
diff --git a/pg_data/base/4/3379 b/pg_data/base/4/3379
deleted file mode 100644
index 7baadf3c..00000000
Binary files a/pg_data/base/4/3379 and /dev/null differ
diff --git a/pg_data/base/4/3380 b/pg_data/base/4/3380
deleted file mode 100644
index feef5c51..00000000
Binary files a/pg_data/base/4/3380 and /dev/null differ
diff --git a/pg_data/base/4/3381 b/pg_data/base/4/3381
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/3394 b/pg_data/base/4/3394
deleted file mode 100644
index 2a9d1a83..00000000
Binary files a/pg_data/base/4/3394 and /dev/null differ
diff --git a/pg_data/base/4/3394_fsm b/pg_data/base/4/3394_fsm
deleted file mode 100644
index a552a3af..00000000
Binary files a/pg_data/base/4/3394_fsm and /dev/null differ
diff --git a/pg_data/base/4/3394_vm b/pg_data/base/4/3394_vm
deleted file mode 100644
index 94c1d58e..00000000
Binary files a/pg_data/base/4/3394_vm and /dev/null differ
diff --git a/pg_data/base/4/3395 b/pg_data/base/4/3395
deleted file mode 100644
index 86c4b57f..00000000
Binary files a/pg_data/base/4/3395 and /dev/null differ
diff --git a/pg_data/base/4/3429 b/pg_data/base/4/3429
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/3430 b/pg_data/base/4/3430
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/3431 b/pg_data/base/4/3431
deleted file mode 100644
index 35aa3b3b..00000000
Binary files a/pg_data/base/4/3431 and /dev/null differ
diff --git a/pg_data/base/4/3433 b/pg_data/base/4/3433
deleted file mode 100644
index 1b220f52..00000000
Binary files a/pg_data/base/4/3433 and /dev/null differ
diff --git a/pg_data/base/4/3439 b/pg_data/base/4/3439
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/3440 b/pg_data/base/4/3440
deleted file mode 100644
index d681222e..00000000
Binary files a/pg_data/base/4/3440 and /dev/null differ
diff --git a/pg_data/base/4/3455 b/pg_data/base/4/3455
deleted file mode 100644
index 38030676..00000000
Binary files a/pg_data/base/4/3455 and /dev/null differ
diff --git a/pg_data/base/4/3456 b/pg_data/base/4/3456
deleted file mode 100644
index 3b984eef..00000000
Binary files a/pg_data/base/4/3456 and /dev/null differ
diff --git a/pg_data/base/4/3456_fsm b/pg_data/base/4/3456_fsm
deleted file mode 100644
index c81fd33e..00000000
Binary files a/pg_data/base/4/3456_fsm and /dev/null differ
diff --git a/pg_data/base/4/3456_vm b/pg_data/base/4/3456_vm
deleted file mode 100644
index 3ad93c1e..00000000
Binary files a/pg_data/base/4/3456_vm and /dev/null differ
diff --git a/pg_data/base/4/3466 b/pg_data/base/4/3466
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/3467 b/pg_data/base/4/3467
deleted file mode 100644
index f0659a97..00000000
Binary files a/pg_data/base/4/3467 and /dev/null differ
diff --git a/pg_data/base/4/3468 b/pg_data/base/4/3468
deleted file mode 100644
index ee39717f..00000000
Binary files a/pg_data/base/4/3468 and /dev/null differ
diff --git a/pg_data/base/4/3501 b/pg_data/base/4/3501
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/3502 b/pg_data/base/4/3502
deleted file mode 100644
index 1b7967e4..00000000
Binary files a/pg_data/base/4/3502 and /dev/null differ
diff --git a/pg_data/base/4/3503 b/pg_data/base/4/3503
deleted file mode 100644
index 2343fc33..00000000
Binary files a/pg_data/base/4/3503 and /dev/null differ
diff --git a/pg_data/base/4/3534 b/pg_data/base/4/3534
deleted file mode 100644
index 987c7d69..00000000
Binary files a/pg_data/base/4/3534 and /dev/null differ
diff --git a/pg_data/base/4/3541 b/pg_data/base/4/3541
deleted file mode 100644
index 2136ea79..00000000
Binary files a/pg_data/base/4/3541 and /dev/null differ
diff --git a/pg_data/base/4/3541_fsm b/pg_data/base/4/3541_fsm
deleted file mode 100644
index 6e9f55a8..00000000
Binary files a/pg_data/base/4/3541_fsm and /dev/null differ
diff --git a/pg_data/base/4/3541_vm b/pg_data/base/4/3541_vm
deleted file mode 100644
index 24a6f920..00000000
Binary files a/pg_data/base/4/3541_vm and /dev/null differ
diff --git a/pg_data/base/4/3542 b/pg_data/base/4/3542
deleted file mode 100644
index 9608ce67..00000000
Binary files a/pg_data/base/4/3542 and /dev/null differ
diff --git a/pg_data/base/4/3574 b/pg_data/base/4/3574
deleted file mode 100644
index 5834e041..00000000
Binary files a/pg_data/base/4/3574 and /dev/null differ
diff --git a/pg_data/base/4/3575 b/pg_data/base/4/3575
deleted file mode 100644
index 2cc5f4cb..00000000
Binary files a/pg_data/base/4/3575 and /dev/null differ
diff --git a/pg_data/base/4/3576 b/pg_data/base/4/3576
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/3596 b/pg_data/base/4/3596
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/3597 b/pg_data/base/4/3597
deleted file mode 100644
index 02e55672..00000000
Binary files a/pg_data/base/4/3597 and /dev/null differ
diff --git a/pg_data/base/4/3598 b/pg_data/base/4/3598
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/3599 b/pg_data/base/4/3599
deleted file mode 100644
index b37a085d..00000000
Binary files a/pg_data/base/4/3599 and /dev/null differ
diff --git a/pg_data/base/4/3600 b/pg_data/base/4/3600
deleted file mode 100644
index 72bcae12..00000000
Binary files a/pg_data/base/4/3600 and /dev/null differ
diff --git a/pg_data/base/4/3600_fsm b/pg_data/base/4/3600_fsm
deleted file mode 100644
index 499a0c2a..00000000
Binary files a/pg_data/base/4/3600_fsm and /dev/null differ
diff --git a/pg_data/base/4/3600_vm b/pg_data/base/4/3600_vm
deleted file mode 100644
index dff6b7b8..00000000
Binary files a/pg_data/base/4/3600_vm and /dev/null differ
diff --git a/pg_data/base/4/3601 b/pg_data/base/4/3601
deleted file mode 100644
index bb1b3c1b..00000000
Binary files a/pg_data/base/4/3601 and /dev/null differ
diff --git a/pg_data/base/4/3601_fsm b/pg_data/base/4/3601_fsm
deleted file mode 100644
index edc65176..00000000
Binary files a/pg_data/base/4/3601_fsm and /dev/null differ
diff --git a/pg_data/base/4/3601_vm b/pg_data/base/4/3601_vm
deleted file mode 100644
index 7a487e4a..00000000
Binary files a/pg_data/base/4/3601_vm and /dev/null differ
diff --git a/pg_data/base/4/3602 b/pg_data/base/4/3602
deleted file mode 100644
index f2003544..00000000
Binary files a/pg_data/base/4/3602 and /dev/null differ
diff --git a/pg_data/base/4/3602_fsm b/pg_data/base/4/3602_fsm
deleted file mode 100644
index 116ac28a..00000000
Binary files a/pg_data/base/4/3602_fsm and /dev/null differ
diff --git a/pg_data/base/4/3602_vm b/pg_data/base/4/3602_vm
deleted file mode 100644
index a892a1de..00000000
Binary files a/pg_data/base/4/3602_vm and /dev/null differ
diff --git a/pg_data/base/4/3603 b/pg_data/base/4/3603
deleted file mode 100644
index 697edb1e..00000000
Binary files a/pg_data/base/4/3603 and /dev/null differ
diff --git a/pg_data/base/4/3603_fsm b/pg_data/base/4/3603_fsm
deleted file mode 100644
index d2d495bf..00000000
Binary files a/pg_data/base/4/3603_fsm and /dev/null differ
diff --git a/pg_data/base/4/3603_vm b/pg_data/base/4/3603_vm
deleted file mode 100644
index 8ce9a569..00000000
Binary files a/pg_data/base/4/3603_vm and /dev/null differ
diff --git a/pg_data/base/4/3604 b/pg_data/base/4/3604
deleted file mode 100644
index f70243e5..00000000
Binary files a/pg_data/base/4/3604 and /dev/null differ
diff --git a/pg_data/base/4/3605 b/pg_data/base/4/3605
deleted file mode 100644
index ed0c072c..00000000
Binary files a/pg_data/base/4/3605 and /dev/null differ
diff --git a/pg_data/base/4/3606 b/pg_data/base/4/3606
deleted file mode 100644
index 1eafef8e..00000000
Binary files a/pg_data/base/4/3606 and /dev/null differ
diff --git a/pg_data/base/4/3607 b/pg_data/base/4/3607
deleted file mode 100644
index 13bebb42..00000000
Binary files a/pg_data/base/4/3607 and /dev/null differ
diff --git a/pg_data/base/4/3608 b/pg_data/base/4/3608
deleted file mode 100644
index 6ee9023e..00000000
Binary files a/pg_data/base/4/3608 and /dev/null differ
diff --git a/pg_data/base/4/3609 b/pg_data/base/4/3609
deleted file mode 100644
index ed4aa8eb..00000000
Binary files a/pg_data/base/4/3609 and /dev/null differ
diff --git a/pg_data/base/4/3712 b/pg_data/base/4/3712
deleted file mode 100644
index 22c569ed..00000000
Binary files a/pg_data/base/4/3712 and /dev/null differ
diff --git a/pg_data/base/4/3764 b/pg_data/base/4/3764
deleted file mode 100644
index ee6190f3..00000000
Binary files a/pg_data/base/4/3764 and /dev/null differ
diff --git a/pg_data/base/4/3764_fsm b/pg_data/base/4/3764_fsm
deleted file mode 100644
index 6b20410c..00000000
Binary files a/pg_data/base/4/3764_fsm and /dev/null differ
diff --git a/pg_data/base/4/3764_vm b/pg_data/base/4/3764_vm
deleted file mode 100644
index dbc16086..00000000
Binary files a/pg_data/base/4/3764_vm and /dev/null differ
diff --git a/pg_data/base/4/3766 b/pg_data/base/4/3766
deleted file mode 100644
index 19085451..00000000
Binary files a/pg_data/base/4/3766 and /dev/null differ
diff --git a/pg_data/base/4/3767 b/pg_data/base/4/3767
deleted file mode 100644
index 766fa1ef..00000000
Binary files a/pg_data/base/4/3767 and /dev/null differ
diff --git a/pg_data/base/4/3997 b/pg_data/base/4/3997
deleted file mode 100644
index b495878b..00000000
Binary files a/pg_data/base/4/3997 and /dev/null differ
diff --git a/pg_data/base/4/4143 b/pg_data/base/4/4143
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/4144 b/pg_data/base/4/4144
deleted file mode 100644
index dd2eea87..00000000
Binary files a/pg_data/base/4/4144 and /dev/null differ
diff --git a/pg_data/base/4/4145 b/pg_data/base/4/4145
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/4146 b/pg_data/base/4/4146
deleted file mode 100644
index 3316de77..00000000
Binary files a/pg_data/base/4/4146 and /dev/null differ
diff --git a/pg_data/base/4/4147 b/pg_data/base/4/4147
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/4148 b/pg_data/base/4/4148
deleted file mode 100644
index bcbe3ae1..00000000
Binary files a/pg_data/base/4/4148 and /dev/null differ
diff --git a/pg_data/base/4/4149 b/pg_data/base/4/4149
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/4150 b/pg_data/base/4/4150
deleted file mode 100644
index 2b63ae9a..00000000
Binary files a/pg_data/base/4/4150 and /dev/null differ
diff --git a/pg_data/base/4/4151 b/pg_data/base/4/4151
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/4152 b/pg_data/base/4/4152
deleted file mode 100644
index 91b17f45..00000000
Binary files a/pg_data/base/4/4152 and /dev/null differ
diff --git a/pg_data/base/4/4153 b/pg_data/base/4/4153
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/4154 b/pg_data/base/4/4154
deleted file mode 100644
index fe00f95e..00000000
Binary files a/pg_data/base/4/4154 and /dev/null differ
diff --git a/pg_data/base/4/4155 b/pg_data/base/4/4155
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/4156 b/pg_data/base/4/4156
deleted file mode 100644
index 7378f8d7..00000000
Binary files a/pg_data/base/4/4156 and /dev/null differ
diff --git a/pg_data/base/4/4157 b/pg_data/base/4/4157
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/4158 b/pg_data/base/4/4158
deleted file mode 100644
index d01b91a2..00000000
Binary files a/pg_data/base/4/4158 and /dev/null differ
diff --git a/pg_data/base/4/4159 b/pg_data/base/4/4159
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/4160 b/pg_data/base/4/4160
deleted file mode 100644
index 3d3ea729..00000000
Binary files a/pg_data/base/4/4160 and /dev/null differ
diff --git a/pg_data/base/4/4163 b/pg_data/base/4/4163
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/4164 b/pg_data/base/4/4164
deleted file mode 100644
index 6e7a9181..00000000
Binary files a/pg_data/base/4/4164 and /dev/null differ
diff --git a/pg_data/base/4/4165 b/pg_data/base/4/4165
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/4166 b/pg_data/base/4/4166
deleted file mode 100644
index 4bc6369b..00000000
Binary files a/pg_data/base/4/4166 and /dev/null differ
diff --git a/pg_data/base/4/4167 b/pg_data/base/4/4167
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/4168 b/pg_data/base/4/4168
deleted file mode 100644
index 1faf4836..00000000
Binary files a/pg_data/base/4/4168 and /dev/null differ
diff --git a/pg_data/base/4/4169 b/pg_data/base/4/4169
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/4170 b/pg_data/base/4/4170
deleted file mode 100644
index 998dd8ee..00000000
Binary files a/pg_data/base/4/4170 and /dev/null differ
diff --git a/pg_data/base/4/4171 b/pg_data/base/4/4171
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/4172 b/pg_data/base/4/4172
deleted file mode 100644
index 87a43dd2..00000000
Binary files a/pg_data/base/4/4172 and /dev/null differ
diff --git a/pg_data/base/4/4173 b/pg_data/base/4/4173
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/4174 b/pg_data/base/4/4174
deleted file mode 100644
index 3887ea03..00000000
Binary files a/pg_data/base/4/4174 and /dev/null differ
diff --git a/pg_data/base/4/5002 b/pg_data/base/4/5002
deleted file mode 100644
index d793036d..00000000
Binary files a/pg_data/base/4/5002 and /dev/null differ
diff --git a/pg_data/base/4/548 b/pg_data/base/4/548
deleted file mode 100644
index 1191e21f..00000000
Binary files a/pg_data/base/4/548 and /dev/null differ
diff --git a/pg_data/base/4/549 b/pg_data/base/4/549
deleted file mode 100644
index 8b8b1d2c..00000000
Binary files a/pg_data/base/4/549 and /dev/null differ
diff --git a/pg_data/base/4/6102 b/pg_data/base/4/6102
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/6104 b/pg_data/base/4/6104
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/6106 b/pg_data/base/4/6106
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/6110 b/pg_data/base/4/6110
deleted file mode 100644
index 60cce00a..00000000
Binary files a/pg_data/base/4/6110 and /dev/null differ
diff --git a/pg_data/base/4/6111 b/pg_data/base/4/6111
deleted file mode 100644
index b2cff8e7..00000000
Binary files a/pg_data/base/4/6111 and /dev/null differ
diff --git a/pg_data/base/4/6112 b/pg_data/base/4/6112
deleted file mode 100644
index 5dbbebf7..00000000
Binary files a/pg_data/base/4/6112 and /dev/null differ
diff --git a/pg_data/base/4/6113 b/pg_data/base/4/6113
deleted file mode 100644
index 0ebfc0f2..00000000
Binary files a/pg_data/base/4/6113 and /dev/null differ
diff --git a/pg_data/base/4/6116 b/pg_data/base/4/6116
deleted file mode 100644
index 350ab3f3..00000000
Binary files a/pg_data/base/4/6116 and /dev/null differ
diff --git a/pg_data/base/4/6117 b/pg_data/base/4/6117
deleted file mode 100644
index e2d987ca..00000000
Binary files a/pg_data/base/4/6117 and /dev/null differ
diff --git a/pg_data/base/4/6175 b/pg_data/base/4/6175
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/6176 b/pg_data/base/4/6176
deleted file mode 100644
index fa40414d..00000000
Binary files a/pg_data/base/4/6176 and /dev/null differ
diff --git a/pg_data/base/4/6228 b/pg_data/base/4/6228
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/6229 b/pg_data/base/4/6229
deleted file mode 100644
index edc8a3ad..00000000
Binary files a/pg_data/base/4/6229 and /dev/null differ
diff --git a/pg_data/base/4/6237 b/pg_data/base/4/6237
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/6238 b/pg_data/base/4/6238
deleted file mode 100644
index 1a06df74..00000000
Binary files a/pg_data/base/4/6238 and /dev/null differ
diff --git a/pg_data/base/4/6239 b/pg_data/base/4/6239
deleted file mode 100644
index 3f1e40c6..00000000
Binary files a/pg_data/base/4/6239 and /dev/null differ
diff --git a/pg_data/base/4/6351 b/pg_data/base/4/6351
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/6352 b/pg_data/base/4/6352
deleted file mode 100644
index 2ad318b9..00000000
Binary files a/pg_data/base/4/6352 and /dev/null differ
diff --git a/pg_data/base/4/826 b/pg_data/base/4/826
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/4/827 b/pg_data/base/4/827
deleted file mode 100644
index be40fb08..00000000
Binary files a/pg_data/base/4/827 and /dev/null differ
diff --git a/pg_data/base/4/828 b/pg_data/base/4/828
deleted file mode 100644
index 2b660b4d..00000000
Binary files a/pg_data/base/4/828 and /dev/null differ
diff --git a/pg_data/base/4/PG_VERSION b/pg_data/base/4/PG_VERSION
deleted file mode 100644
index 3c032078..00000000
--- a/pg_data/base/4/PG_VERSION
+++ /dev/null
@@ -1 +0,0 @@
-18
diff --git a/pg_data/base/4/pg_filenode.map b/pg_data/base/4/pg_filenode.map
deleted file mode 100644
index 4fc801aa..00000000
Binary files a/pg_data/base/4/pg_filenode.map and /dev/null differ
diff --git a/pg_data/base/5/112 b/pg_data/base/5/112
deleted file mode 100644
index 6bf1e4e1..00000000
Binary files a/pg_data/base/5/112 and /dev/null differ
diff --git a/pg_data/base/5/113 b/pg_data/base/5/113
deleted file mode 100644
index 62f33de5..00000000
Binary files a/pg_data/base/5/113 and /dev/null differ
diff --git a/pg_data/base/5/1247 b/pg_data/base/5/1247
deleted file mode 100644
index 748a378d..00000000
Binary files a/pg_data/base/5/1247 and /dev/null differ
diff --git a/pg_data/base/5/1247_fsm b/pg_data/base/5/1247_fsm
deleted file mode 100644
index 103cd46a..00000000
Binary files a/pg_data/base/5/1247_fsm and /dev/null differ
diff --git a/pg_data/base/5/1247_vm b/pg_data/base/5/1247_vm
deleted file mode 100644
index 335e9c47..00000000
Binary files a/pg_data/base/5/1247_vm and /dev/null differ
diff --git a/pg_data/base/5/1249 b/pg_data/base/5/1249
deleted file mode 100644
index d352cc66..00000000
Binary files a/pg_data/base/5/1249 and /dev/null differ
diff --git a/pg_data/base/5/1249_fsm b/pg_data/base/5/1249_fsm
deleted file mode 100644
index e506f183..00000000
Binary files a/pg_data/base/5/1249_fsm and /dev/null differ
diff --git a/pg_data/base/5/1249_vm b/pg_data/base/5/1249_vm
deleted file mode 100644
index 0012c20e..00000000
Binary files a/pg_data/base/5/1249_vm and /dev/null differ
diff --git a/pg_data/base/5/1255 b/pg_data/base/5/1255
deleted file mode 100644
index 79a1aee2..00000000
Binary files a/pg_data/base/5/1255 and /dev/null differ
diff --git a/pg_data/base/5/1255_fsm b/pg_data/base/5/1255_fsm
deleted file mode 100644
index 5598c706..00000000
Binary files a/pg_data/base/5/1255_fsm and /dev/null differ
diff --git a/pg_data/base/5/1255_vm b/pg_data/base/5/1255_vm
deleted file mode 100644
index cf110f8c..00000000
Binary files a/pg_data/base/5/1255_vm and /dev/null differ
diff --git a/pg_data/base/5/1259 b/pg_data/base/5/1259
deleted file mode 100644
index d6c79f8f..00000000
Binary files a/pg_data/base/5/1259 and /dev/null differ
diff --git a/pg_data/base/5/1259_fsm b/pg_data/base/5/1259_fsm
deleted file mode 100644
index 569d3b56..00000000
Binary files a/pg_data/base/5/1259_fsm and /dev/null differ
diff --git a/pg_data/base/5/1259_vm b/pg_data/base/5/1259_vm
deleted file mode 100644
index 4c9e2ef3..00000000
Binary files a/pg_data/base/5/1259_vm and /dev/null differ
diff --git a/pg_data/base/5/13476 b/pg_data/base/5/13476
deleted file mode 100644
index 3ffad271..00000000
Binary files a/pg_data/base/5/13476 and /dev/null differ
diff --git a/pg_data/base/5/13476_fsm b/pg_data/base/5/13476_fsm
deleted file mode 100644
index 8f510a10..00000000
Binary files a/pg_data/base/5/13476_fsm and /dev/null differ
diff --git a/pg_data/base/5/13476_vm b/pg_data/base/5/13476_vm
deleted file mode 100644
index 70c9527a..00000000
Binary files a/pg_data/base/5/13476_vm and /dev/null differ
diff --git a/pg_data/base/5/13479 b/pg_data/base/5/13479
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/13480 b/pg_data/base/5/13480
deleted file mode 100644
index 4e4aa016..00000000
Binary files a/pg_data/base/5/13480 and /dev/null differ
diff --git a/pg_data/base/5/13481 b/pg_data/base/5/13481
deleted file mode 100644
index 66e03248..00000000
Binary files a/pg_data/base/5/13481 and /dev/null differ
diff --git a/pg_data/base/5/13481_fsm b/pg_data/base/5/13481_fsm
deleted file mode 100644
index 2d7759ff..00000000
Binary files a/pg_data/base/5/13481_fsm and /dev/null differ
diff --git a/pg_data/base/5/13481_vm b/pg_data/base/5/13481_vm
deleted file mode 100644
index 8f1fd527..00000000
Binary files a/pg_data/base/5/13481_vm and /dev/null differ
diff --git a/pg_data/base/5/13484 b/pg_data/base/5/13484
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/13485 b/pg_data/base/5/13485
deleted file mode 100644
index 6f4c233b..00000000
Binary files a/pg_data/base/5/13485 and /dev/null differ
diff --git a/pg_data/base/5/13486 b/pg_data/base/5/13486
deleted file mode 100644
index c85c6e48..00000000
Binary files a/pg_data/base/5/13486 and /dev/null differ
diff --git a/pg_data/base/5/13486_fsm b/pg_data/base/5/13486_fsm
deleted file mode 100644
index 9a4e1393..00000000
Binary files a/pg_data/base/5/13486_fsm and /dev/null differ
diff --git a/pg_data/base/5/13486_vm b/pg_data/base/5/13486_vm
deleted file mode 100644
index aeec4b64..00000000
Binary files a/pg_data/base/5/13486_vm and /dev/null differ
diff --git a/pg_data/base/5/13489 b/pg_data/base/5/13489
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/13490 b/pg_data/base/5/13490
deleted file mode 100644
index fce6ea3e..00000000
Binary files a/pg_data/base/5/13490 and /dev/null differ
diff --git a/pg_data/base/5/13491 b/pg_data/base/5/13491
deleted file mode 100644
index 2ccecc06..00000000
Binary files a/pg_data/base/5/13491 and /dev/null differ
diff --git a/pg_data/base/5/13491_fsm b/pg_data/base/5/13491_fsm
deleted file mode 100644
index 081ecfe0..00000000
Binary files a/pg_data/base/5/13491_fsm and /dev/null differ
diff --git a/pg_data/base/5/13491_vm b/pg_data/base/5/13491_vm
deleted file mode 100644
index c7b22e2d..00000000
Binary files a/pg_data/base/5/13491_vm and /dev/null differ
diff --git a/pg_data/base/5/13494 b/pg_data/base/5/13494
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/13495 b/pg_data/base/5/13495
deleted file mode 100644
index 8f9f9dd7..00000000
Binary files a/pg_data/base/5/13495 and /dev/null differ
diff --git a/pg_data/base/5/1417 b/pg_data/base/5/1417
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/1418 b/pg_data/base/5/1418
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/174 b/pg_data/base/5/174
deleted file mode 100644
index b135120f..00000000
Binary files a/pg_data/base/5/174 and /dev/null differ
diff --git a/pg_data/base/5/175 b/pg_data/base/5/175
deleted file mode 100644
index 29ea7817..00000000
Binary files a/pg_data/base/5/175 and /dev/null differ
diff --git a/pg_data/base/5/2187 b/pg_data/base/5/2187
deleted file mode 100644
index fa480001..00000000
Binary files a/pg_data/base/5/2187 and /dev/null differ
diff --git a/pg_data/base/5/2224 b/pg_data/base/5/2224
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/2228 b/pg_data/base/5/2228
deleted file mode 100644
index e9c70b76..00000000
Binary files a/pg_data/base/5/2228 and /dev/null differ
diff --git a/pg_data/base/5/2328 b/pg_data/base/5/2328
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/2336 b/pg_data/base/5/2336
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/2337 b/pg_data/base/5/2337
deleted file mode 100644
index b1b33ecc..00000000
Binary files a/pg_data/base/5/2337 and /dev/null differ
diff --git a/pg_data/base/5/2579 b/pg_data/base/5/2579
deleted file mode 100644
index 80a8bc1e..00000000
Binary files a/pg_data/base/5/2579 and /dev/null differ
diff --git a/pg_data/base/5/2600 b/pg_data/base/5/2600
deleted file mode 100644
index d9db31e1..00000000
Binary files a/pg_data/base/5/2600 and /dev/null differ
diff --git a/pg_data/base/5/2600_fsm b/pg_data/base/5/2600_fsm
deleted file mode 100644
index 90c479d1..00000000
Binary files a/pg_data/base/5/2600_fsm and /dev/null differ
diff --git a/pg_data/base/5/2600_vm b/pg_data/base/5/2600_vm
deleted file mode 100644
index 026aaa5d..00000000
Binary files a/pg_data/base/5/2600_vm and /dev/null differ
diff --git a/pg_data/base/5/2601 b/pg_data/base/5/2601
deleted file mode 100644
index 2bbda385..00000000
Binary files a/pg_data/base/5/2601 and /dev/null differ
diff --git a/pg_data/base/5/2601_fsm b/pg_data/base/5/2601_fsm
deleted file mode 100644
index f0495219..00000000
Binary files a/pg_data/base/5/2601_fsm and /dev/null differ
diff --git a/pg_data/base/5/2601_vm b/pg_data/base/5/2601_vm
deleted file mode 100644
index 618363c9..00000000
Binary files a/pg_data/base/5/2601_vm and /dev/null differ
diff --git a/pg_data/base/5/2602 b/pg_data/base/5/2602
deleted file mode 100644
index e2c3df0c..00000000
Binary files a/pg_data/base/5/2602 and /dev/null differ
diff --git a/pg_data/base/5/2602_fsm b/pg_data/base/5/2602_fsm
deleted file mode 100644
index 28517412..00000000
Binary files a/pg_data/base/5/2602_fsm and /dev/null differ
diff --git a/pg_data/base/5/2602_vm b/pg_data/base/5/2602_vm
deleted file mode 100644
index 0e3590a4..00000000
Binary files a/pg_data/base/5/2602_vm and /dev/null differ
diff --git a/pg_data/base/5/2603 b/pg_data/base/5/2603
deleted file mode 100644
index 29a5301f..00000000
Binary files a/pg_data/base/5/2603 and /dev/null differ
diff --git a/pg_data/base/5/2603_fsm b/pg_data/base/5/2603_fsm
deleted file mode 100644
index 0d3d15ec..00000000
Binary files a/pg_data/base/5/2603_fsm and /dev/null differ
diff --git a/pg_data/base/5/2603_vm b/pg_data/base/5/2603_vm
deleted file mode 100644
index ac07da05..00000000
Binary files a/pg_data/base/5/2603_vm and /dev/null differ
diff --git a/pg_data/base/5/2604 b/pg_data/base/5/2604
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/2605 b/pg_data/base/5/2605
deleted file mode 100644
index 9d695df1..00000000
Binary files a/pg_data/base/5/2605 and /dev/null differ
diff --git a/pg_data/base/5/2605_fsm b/pg_data/base/5/2605_fsm
deleted file mode 100644
index a50386f2..00000000
Binary files a/pg_data/base/5/2605_fsm and /dev/null differ
diff --git a/pg_data/base/5/2605_vm b/pg_data/base/5/2605_vm
deleted file mode 100644
index 42078470..00000000
Binary files a/pg_data/base/5/2605_vm and /dev/null differ
diff --git a/pg_data/base/5/2606 b/pg_data/base/5/2606
deleted file mode 100644
index 6d61e0d3..00000000
Binary files a/pg_data/base/5/2606 and /dev/null differ
diff --git a/pg_data/base/5/2606_fsm b/pg_data/base/5/2606_fsm
deleted file mode 100644
index 2490517d..00000000
Binary files a/pg_data/base/5/2606_fsm and /dev/null differ
diff --git a/pg_data/base/5/2606_vm b/pg_data/base/5/2606_vm
deleted file mode 100644
index 8a0a047a..00000000
Binary files a/pg_data/base/5/2606_vm and /dev/null differ
diff --git a/pg_data/base/5/2607 b/pg_data/base/5/2607
deleted file mode 100644
index b704bdb1..00000000
Binary files a/pg_data/base/5/2607 and /dev/null differ
diff --git a/pg_data/base/5/2607_fsm b/pg_data/base/5/2607_fsm
deleted file mode 100644
index 0eb053ac..00000000
Binary files a/pg_data/base/5/2607_fsm and /dev/null differ
diff --git a/pg_data/base/5/2607_vm b/pg_data/base/5/2607_vm
deleted file mode 100644
index 092a7990..00000000
Binary files a/pg_data/base/5/2607_vm and /dev/null differ
diff --git a/pg_data/base/5/2608 b/pg_data/base/5/2608
deleted file mode 100644
index 1e07aa5f..00000000
Binary files a/pg_data/base/5/2608 and /dev/null differ
diff --git a/pg_data/base/5/2608_fsm b/pg_data/base/5/2608_fsm
deleted file mode 100644
index bcc30645..00000000
Binary files a/pg_data/base/5/2608_fsm and /dev/null differ
diff --git a/pg_data/base/5/2608_vm b/pg_data/base/5/2608_vm
deleted file mode 100644
index 4c919686..00000000
Binary files a/pg_data/base/5/2608_vm and /dev/null differ
diff --git a/pg_data/base/5/2609 b/pg_data/base/5/2609
deleted file mode 100644
index 57a6de1e..00000000
Binary files a/pg_data/base/5/2609 and /dev/null differ
diff --git a/pg_data/base/5/2609_fsm b/pg_data/base/5/2609_fsm
deleted file mode 100644
index 23a34f6e..00000000
Binary files a/pg_data/base/5/2609_fsm and /dev/null differ
diff --git a/pg_data/base/5/2609_vm b/pg_data/base/5/2609_vm
deleted file mode 100644
index 93912c54..00000000
Binary files a/pg_data/base/5/2609_vm and /dev/null differ
diff --git a/pg_data/base/5/2610 b/pg_data/base/5/2610
deleted file mode 100644
index 8d391a35..00000000
Binary files a/pg_data/base/5/2610 and /dev/null differ
diff --git a/pg_data/base/5/2610_fsm b/pg_data/base/5/2610_fsm
deleted file mode 100644
index 71b934d9..00000000
Binary files a/pg_data/base/5/2610_fsm and /dev/null differ
diff --git a/pg_data/base/5/2610_vm b/pg_data/base/5/2610_vm
deleted file mode 100644
index 56ff8243..00000000
Binary files a/pg_data/base/5/2610_vm and /dev/null differ
diff --git a/pg_data/base/5/2611 b/pg_data/base/5/2611
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/2612 b/pg_data/base/5/2612
deleted file mode 100644
index f8f37e9d..00000000
Binary files a/pg_data/base/5/2612 and /dev/null differ
diff --git a/pg_data/base/5/2612_fsm b/pg_data/base/5/2612_fsm
deleted file mode 100644
index c6aa3717..00000000
Binary files a/pg_data/base/5/2612_fsm and /dev/null differ
diff --git a/pg_data/base/5/2612_vm b/pg_data/base/5/2612_vm
deleted file mode 100644
index 8f5ced21..00000000
Binary files a/pg_data/base/5/2612_vm and /dev/null differ
diff --git a/pg_data/base/5/2613 b/pg_data/base/5/2613
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/2615 b/pg_data/base/5/2615
deleted file mode 100644
index c766eaa6..00000000
Binary files a/pg_data/base/5/2615 and /dev/null differ
diff --git a/pg_data/base/5/2615_fsm b/pg_data/base/5/2615_fsm
deleted file mode 100644
index 4586b693..00000000
Binary files a/pg_data/base/5/2615_fsm and /dev/null differ
diff --git a/pg_data/base/5/2615_vm b/pg_data/base/5/2615_vm
deleted file mode 100644
index 43b43033..00000000
Binary files a/pg_data/base/5/2615_vm and /dev/null differ
diff --git a/pg_data/base/5/2616 b/pg_data/base/5/2616
deleted file mode 100644
index ff499dcb..00000000
Binary files a/pg_data/base/5/2616 and /dev/null differ
diff --git a/pg_data/base/5/2616_fsm b/pg_data/base/5/2616_fsm
deleted file mode 100644
index 61959975..00000000
Binary files a/pg_data/base/5/2616_fsm and /dev/null differ
diff --git a/pg_data/base/5/2616_vm b/pg_data/base/5/2616_vm
deleted file mode 100644
index 74f1bf83..00000000
Binary files a/pg_data/base/5/2616_vm and /dev/null differ
diff --git a/pg_data/base/5/2617 b/pg_data/base/5/2617
deleted file mode 100644
index 320b8a86..00000000
Binary files a/pg_data/base/5/2617 and /dev/null differ
diff --git a/pg_data/base/5/2617_fsm b/pg_data/base/5/2617_fsm
deleted file mode 100644
index d6c4086e..00000000
Binary files a/pg_data/base/5/2617_fsm and /dev/null differ
diff --git a/pg_data/base/5/2617_vm b/pg_data/base/5/2617_vm
deleted file mode 100644
index f42274ff..00000000
Binary files a/pg_data/base/5/2617_vm and /dev/null differ
diff --git a/pg_data/base/5/2618 b/pg_data/base/5/2618
deleted file mode 100644
index 044acfb8..00000000
Binary files a/pg_data/base/5/2618 and /dev/null differ
diff --git a/pg_data/base/5/2618_fsm b/pg_data/base/5/2618_fsm
deleted file mode 100644
index b3164752..00000000
Binary files a/pg_data/base/5/2618_fsm and /dev/null differ
diff --git a/pg_data/base/5/2618_vm b/pg_data/base/5/2618_vm
deleted file mode 100644
index 9ee20df7..00000000
Binary files a/pg_data/base/5/2618_vm and /dev/null differ
diff --git a/pg_data/base/5/2619 b/pg_data/base/5/2619
deleted file mode 100644
index 8535ad5f..00000000
Binary files a/pg_data/base/5/2619 and /dev/null differ
diff --git a/pg_data/base/5/2619_fsm b/pg_data/base/5/2619_fsm
deleted file mode 100644
index 2c00ad2f..00000000
Binary files a/pg_data/base/5/2619_fsm and /dev/null differ
diff --git a/pg_data/base/5/2619_vm b/pg_data/base/5/2619_vm
deleted file mode 100644
index d7019cab..00000000
Binary files a/pg_data/base/5/2619_vm and /dev/null differ
diff --git a/pg_data/base/5/2620 b/pg_data/base/5/2620
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/2650 b/pg_data/base/5/2650
deleted file mode 100644
index 9b77cd79..00000000
Binary files a/pg_data/base/5/2650 and /dev/null differ
diff --git a/pg_data/base/5/2651 b/pg_data/base/5/2651
deleted file mode 100644
index de9c117b..00000000
Binary files a/pg_data/base/5/2651 and /dev/null differ
diff --git a/pg_data/base/5/2652 b/pg_data/base/5/2652
deleted file mode 100644
index 667d35f2..00000000
Binary files a/pg_data/base/5/2652 and /dev/null differ
diff --git a/pg_data/base/5/2653 b/pg_data/base/5/2653
deleted file mode 100644
index 43dd6d2d..00000000
Binary files a/pg_data/base/5/2653 and /dev/null differ
diff --git a/pg_data/base/5/2654 b/pg_data/base/5/2654
deleted file mode 100644
index 6a25f47f..00000000
Binary files a/pg_data/base/5/2654 and /dev/null differ
diff --git a/pg_data/base/5/2655 b/pg_data/base/5/2655
deleted file mode 100644
index 462c3fd7..00000000
Binary files a/pg_data/base/5/2655 and /dev/null differ
diff --git a/pg_data/base/5/2656 b/pg_data/base/5/2656
deleted file mode 100644
index fc16ea88..00000000
Binary files a/pg_data/base/5/2656 and /dev/null differ
diff --git a/pg_data/base/5/2657 b/pg_data/base/5/2657
deleted file mode 100644
index 917662d9..00000000
Binary files a/pg_data/base/5/2657 and /dev/null differ
diff --git a/pg_data/base/5/2658 b/pg_data/base/5/2658
deleted file mode 100644
index e8d9249a..00000000
Binary files a/pg_data/base/5/2658 and /dev/null differ
diff --git a/pg_data/base/5/2659 b/pg_data/base/5/2659
deleted file mode 100644
index 2bf406e7..00000000
Binary files a/pg_data/base/5/2659 and /dev/null differ
diff --git a/pg_data/base/5/2660 b/pg_data/base/5/2660
deleted file mode 100644
index 3f36c6db..00000000
Binary files a/pg_data/base/5/2660 and /dev/null differ
diff --git a/pg_data/base/5/2661 b/pg_data/base/5/2661
deleted file mode 100644
index ab367624..00000000
Binary files a/pg_data/base/5/2661 and /dev/null differ
diff --git a/pg_data/base/5/2662 b/pg_data/base/5/2662
deleted file mode 100644
index a62fe4e6..00000000
Binary files a/pg_data/base/5/2662 and /dev/null differ
diff --git a/pg_data/base/5/2663 b/pg_data/base/5/2663
deleted file mode 100644
index 9bf8666f..00000000
Binary files a/pg_data/base/5/2663 and /dev/null differ
diff --git a/pg_data/base/5/2664 b/pg_data/base/5/2664
deleted file mode 100644
index b213b561..00000000
Binary files a/pg_data/base/5/2664 and /dev/null differ
diff --git a/pg_data/base/5/2665 b/pg_data/base/5/2665
deleted file mode 100644
index d62993d4..00000000
Binary files a/pg_data/base/5/2665 and /dev/null differ
diff --git a/pg_data/base/5/2666 b/pg_data/base/5/2666
deleted file mode 100644
index 14294d70..00000000
Binary files a/pg_data/base/5/2666 and /dev/null differ
diff --git a/pg_data/base/5/2667 b/pg_data/base/5/2667
deleted file mode 100644
index d722c443..00000000
Binary files a/pg_data/base/5/2667 and /dev/null differ
diff --git a/pg_data/base/5/2668 b/pg_data/base/5/2668
deleted file mode 100644
index a91f7e89..00000000
Binary files a/pg_data/base/5/2668 and /dev/null differ
diff --git a/pg_data/base/5/2669 b/pg_data/base/5/2669
deleted file mode 100644
index 9f2485ca..00000000
Binary files a/pg_data/base/5/2669 and /dev/null differ
diff --git a/pg_data/base/5/2670 b/pg_data/base/5/2670
deleted file mode 100644
index 282e3c0c..00000000
Binary files a/pg_data/base/5/2670 and /dev/null differ
diff --git a/pg_data/base/5/2673 b/pg_data/base/5/2673
deleted file mode 100644
index 1f0e207c..00000000
Binary files a/pg_data/base/5/2673 and /dev/null differ
diff --git a/pg_data/base/5/2674 b/pg_data/base/5/2674
deleted file mode 100644
index e5c6c24e..00000000
Binary files a/pg_data/base/5/2674 and /dev/null differ
diff --git a/pg_data/base/5/2675 b/pg_data/base/5/2675
deleted file mode 100644
index b2cf85f2..00000000
Binary files a/pg_data/base/5/2675 and /dev/null differ
diff --git a/pg_data/base/5/2678 b/pg_data/base/5/2678
deleted file mode 100644
index d9f007f4..00000000
Binary files a/pg_data/base/5/2678 and /dev/null differ
diff --git a/pg_data/base/5/2679 b/pg_data/base/5/2679
deleted file mode 100644
index 63371c89..00000000
Binary files a/pg_data/base/5/2679 and /dev/null differ
diff --git a/pg_data/base/5/2680 b/pg_data/base/5/2680
deleted file mode 100644
index fc919b78..00000000
Binary files a/pg_data/base/5/2680 and /dev/null differ
diff --git a/pg_data/base/5/2681 b/pg_data/base/5/2681
deleted file mode 100644
index 9571e387..00000000
Binary files a/pg_data/base/5/2681 and /dev/null differ
diff --git a/pg_data/base/5/2682 b/pg_data/base/5/2682
deleted file mode 100644
index 9c9fa755..00000000
Binary files a/pg_data/base/5/2682 and /dev/null differ
diff --git a/pg_data/base/5/2683 b/pg_data/base/5/2683
deleted file mode 100644
index 3ecf046a..00000000
Binary files a/pg_data/base/5/2683 and /dev/null differ
diff --git a/pg_data/base/5/2684 b/pg_data/base/5/2684
deleted file mode 100644
index e8f3f7b1..00000000
Binary files a/pg_data/base/5/2684 and /dev/null differ
diff --git a/pg_data/base/5/2685 b/pg_data/base/5/2685
deleted file mode 100644
index 8035bbae..00000000
Binary files a/pg_data/base/5/2685 and /dev/null differ
diff --git a/pg_data/base/5/2686 b/pg_data/base/5/2686
deleted file mode 100644
index 8c54aa8d..00000000
Binary files a/pg_data/base/5/2686 and /dev/null differ
diff --git a/pg_data/base/5/2687 b/pg_data/base/5/2687
deleted file mode 100644
index 5f4cc821..00000000
Binary files a/pg_data/base/5/2687 and /dev/null differ
diff --git a/pg_data/base/5/2688 b/pg_data/base/5/2688
deleted file mode 100644
index 67a922dd..00000000
Binary files a/pg_data/base/5/2688 and /dev/null differ
diff --git a/pg_data/base/5/2689 b/pg_data/base/5/2689
deleted file mode 100644
index 40b21d6e..00000000
Binary files a/pg_data/base/5/2689 and /dev/null differ
diff --git a/pg_data/base/5/2690 b/pg_data/base/5/2690
deleted file mode 100644
index 78556177..00000000
Binary files a/pg_data/base/5/2690 and /dev/null differ
diff --git a/pg_data/base/5/2691 b/pg_data/base/5/2691
deleted file mode 100644
index 8a7d74cc..00000000
Binary files a/pg_data/base/5/2691 and /dev/null differ
diff --git a/pg_data/base/5/2692 b/pg_data/base/5/2692
deleted file mode 100644
index 86d568f6..00000000
Binary files a/pg_data/base/5/2692 and /dev/null differ
diff --git a/pg_data/base/5/2693 b/pg_data/base/5/2693
deleted file mode 100644
index 94c25c65..00000000
Binary files a/pg_data/base/5/2693 and /dev/null differ
diff --git a/pg_data/base/5/2696 b/pg_data/base/5/2696
deleted file mode 100644
index 677570e5..00000000
Binary files a/pg_data/base/5/2696 and /dev/null differ
diff --git a/pg_data/base/5/2699 b/pg_data/base/5/2699
deleted file mode 100644
index 80405eb0..00000000
Binary files a/pg_data/base/5/2699 and /dev/null differ
diff --git a/pg_data/base/5/2701 b/pg_data/base/5/2701
deleted file mode 100644
index 44d6a07e..00000000
Binary files a/pg_data/base/5/2701 and /dev/null differ
diff --git a/pg_data/base/5/2702 b/pg_data/base/5/2702
deleted file mode 100644
index 641e027c..00000000
Binary files a/pg_data/base/5/2702 and /dev/null differ
diff --git a/pg_data/base/5/2703 b/pg_data/base/5/2703
deleted file mode 100644
index 325a5cf2..00000000
Binary files a/pg_data/base/5/2703 and /dev/null differ
diff --git a/pg_data/base/5/2704 b/pg_data/base/5/2704
deleted file mode 100644
index c6661f47..00000000
Binary files a/pg_data/base/5/2704 and /dev/null differ
diff --git a/pg_data/base/5/2753 b/pg_data/base/5/2753
deleted file mode 100644
index 34b60a54..00000000
Binary files a/pg_data/base/5/2753 and /dev/null differ
diff --git a/pg_data/base/5/2753_fsm b/pg_data/base/5/2753_fsm
deleted file mode 100644
index 50ff81fb..00000000
Binary files a/pg_data/base/5/2753_fsm and /dev/null differ
diff --git a/pg_data/base/5/2753_vm b/pg_data/base/5/2753_vm
deleted file mode 100644
index 1935ad03..00000000
Binary files a/pg_data/base/5/2753_vm and /dev/null differ
diff --git a/pg_data/base/5/2754 b/pg_data/base/5/2754
deleted file mode 100644
index 982d5ea9..00000000
Binary files a/pg_data/base/5/2754 and /dev/null differ
diff --git a/pg_data/base/5/2755 b/pg_data/base/5/2755
deleted file mode 100644
index bca69e69..00000000
Binary files a/pg_data/base/5/2755 and /dev/null differ
diff --git a/pg_data/base/5/2756 b/pg_data/base/5/2756
deleted file mode 100644
index 429461b2..00000000
Binary files a/pg_data/base/5/2756 and /dev/null differ
diff --git a/pg_data/base/5/2757 b/pg_data/base/5/2757
deleted file mode 100644
index 19daa2d6..00000000
Binary files a/pg_data/base/5/2757 and /dev/null differ
diff --git a/pg_data/base/5/2830 b/pg_data/base/5/2830
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/2831 b/pg_data/base/5/2831
deleted file mode 100644
index 055e729c..00000000
Binary files a/pg_data/base/5/2831 and /dev/null differ
diff --git a/pg_data/base/5/2832 b/pg_data/base/5/2832
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/2833 b/pg_data/base/5/2833
deleted file mode 100644
index d55eccf8..00000000
Binary files a/pg_data/base/5/2833 and /dev/null differ
diff --git a/pg_data/base/5/2834 b/pg_data/base/5/2834
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/2835 b/pg_data/base/5/2835
deleted file mode 100644
index 1b347a02..00000000
Binary files a/pg_data/base/5/2835 and /dev/null differ
diff --git a/pg_data/base/5/2836 b/pg_data/base/5/2836
deleted file mode 100644
index 1ba89995..00000000
Binary files a/pg_data/base/5/2836 and /dev/null differ
diff --git a/pg_data/base/5/2836_fsm b/pg_data/base/5/2836_fsm
deleted file mode 100644
index d884400a..00000000
Binary files a/pg_data/base/5/2836_fsm and /dev/null differ
diff --git a/pg_data/base/5/2836_vm b/pg_data/base/5/2836_vm
deleted file mode 100644
index 6fad7576..00000000
Binary files a/pg_data/base/5/2836_vm and /dev/null differ
diff --git a/pg_data/base/5/2837 b/pg_data/base/5/2837
deleted file mode 100644
index 6e813fcc..00000000
Binary files a/pg_data/base/5/2837 and /dev/null differ
diff --git a/pg_data/base/5/2838 b/pg_data/base/5/2838
deleted file mode 100644
index eb5ac333..00000000
Binary files a/pg_data/base/5/2838 and /dev/null differ
diff --git a/pg_data/base/5/2838_fsm b/pg_data/base/5/2838_fsm
deleted file mode 100644
index 553d3013..00000000
Binary files a/pg_data/base/5/2838_fsm and /dev/null differ
diff --git a/pg_data/base/5/2838_vm b/pg_data/base/5/2838_vm
deleted file mode 100644
index 5da83fdd..00000000
Binary files a/pg_data/base/5/2838_vm and /dev/null differ
diff --git a/pg_data/base/5/2839 b/pg_data/base/5/2839
deleted file mode 100644
index 15255064..00000000
Binary files a/pg_data/base/5/2839 and /dev/null differ
diff --git a/pg_data/base/5/2840 b/pg_data/base/5/2840
deleted file mode 100644
index f6694076..00000000
Binary files a/pg_data/base/5/2840 and /dev/null differ
diff --git a/pg_data/base/5/2840_fsm b/pg_data/base/5/2840_fsm
deleted file mode 100644
index e1059595..00000000
Binary files a/pg_data/base/5/2840_fsm and /dev/null differ
diff --git a/pg_data/base/5/2840_vm b/pg_data/base/5/2840_vm
deleted file mode 100644
index b29517c1..00000000
Binary files a/pg_data/base/5/2840_vm and /dev/null differ
diff --git a/pg_data/base/5/2841 b/pg_data/base/5/2841
deleted file mode 100644
index 830f133a..00000000
Binary files a/pg_data/base/5/2841 and /dev/null differ
diff --git a/pg_data/base/5/2995 b/pg_data/base/5/2995
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/2996 b/pg_data/base/5/2996
deleted file mode 100644
index 26fdc5ad..00000000
Binary files a/pg_data/base/5/2996 and /dev/null differ
diff --git a/pg_data/base/5/3079 b/pg_data/base/5/3079
deleted file mode 100644
index 9a5392a2..00000000
Binary files a/pg_data/base/5/3079 and /dev/null differ
diff --git a/pg_data/base/5/3079_fsm b/pg_data/base/5/3079_fsm
deleted file mode 100644
index 162e2a50..00000000
Binary files a/pg_data/base/5/3079_fsm and /dev/null differ
diff --git a/pg_data/base/5/3079_vm b/pg_data/base/5/3079_vm
deleted file mode 100644
index 62755fcc..00000000
Binary files a/pg_data/base/5/3079_vm and /dev/null differ
diff --git a/pg_data/base/5/3080 b/pg_data/base/5/3080
deleted file mode 100644
index f0611ff2..00000000
Binary files a/pg_data/base/5/3080 and /dev/null differ
diff --git a/pg_data/base/5/3081 b/pg_data/base/5/3081
deleted file mode 100644
index 72d651e1..00000000
Binary files a/pg_data/base/5/3081 and /dev/null differ
diff --git a/pg_data/base/5/3085 b/pg_data/base/5/3085
deleted file mode 100644
index 7f471602..00000000
Binary files a/pg_data/base/5/3085 and /dev/null differ
diff --git a/pg_data/base/5/3118 b/pg_data/base/5/3118
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/3119 b/pg_data/base/5/3119
deleted file mode 100644
index 4366a64d..00000000
Binary files a/pg_data/base/5/3119 and /dev/null differ
diff --git a/pg_data/base/5/3164 b/pg_data/base/5/3164
deleted file mode 100644
index 1f8bbb9e..00000000
Binary files a/pg_data/base/5/3164 and /dev/null differ
diff --git a/pg_data/base/5/3256 b/pg_data/base/5/3256
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/3257 b/pg_data/base/5/3257
deleted file mode 100644
index 93e0b3db..00000000
Binary files a/pg_data/base/5/3257 and /dev/null differ
diff --git a/pg_data/base/5/3258 b/pg_data/base/5/3258
deleted file mode 100644
index cc352690..00000000
Binary files a/pg_data/base/5/3258 and /dev/null differ
diff --git a/pg_data/base/5/3350 b/pg_data/base/5/3350
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/3351 b/pg_data/base/5/3351
deleted file mode 100644
index dbbcd8e6..00000000
Binary files a/pg_data/base/5/3351 and /dev/null differ
diff --git a/pg_data/base/5/3379 b/pg_data/base/5/3379
deleted file mode 100644
index 7baadf3c..00000000
Binary files a/pg_data/base/5/3379 and /dev/null differ
diff --git a/pg_data/base/5/3380 b/pg_data/base/5/3380
deleted file mode 100644
index feef5c51..00000000
Binary files a/pg_data/base/5/3380 and /dev/null differ
diff --git a/pg_data/base/5/3381 b/pg_data/base/5/3381
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/3394 b/pg_data/base/5/3394
deleted file mode 100644
index 2a9d1a83..00000000
Binary files a/pg_data/base/5/3394 and /dev/null differ
diff --git a/pg_data/base/5/3394_fsm b/pg_data/base/5/3394_fsm
deleted file mode 100644
index a552a3af..00000000
Binary files a/pg_data/base/5/3394_fsm and /dev/null differ
diff --git a/pg_data/base/5/3394_vm b/pg_data/base/5/3394_vm
deleted file mode 100644
index 94c1d58e..00000000
Binary files a/pg_data/base/5/3394_vm and /dev/null differ
diff --git a/pg_data/base/5/3395 b/pg_data/base/5/3395
deleted file mode 100644
index 86c4b57f..00000000
Binary files a/pg_data/base/5/3395 and /dev/null differ
diff --git a/pg_data/base/5/3429 b/pg_data/base/5/3429
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/3430 b/pg_data/base/5/3430
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/3431 b/pg_data/base/5/3431
deleted file mode 100644
index 35aa3b3b..00000000
Binary files a/pg_data/base/5/3431 and /dev/null differ
diff --git a/pg_data/base/5/3433 b/pg_data/base/5/3433
deleted file mode 100644
index 1b220f52..00000000
Binary files a/pg_data/base/5/3433 and /dev/null differ
diff --git a/pg_data/base/5/3439 b/pg_data/base/5/3439
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/3440 b/pg_data/base/5/3440
deleted file mode 100644
index d681222e..00000000
Binary files a/pg_data/base/5/3440 and /dev/null differ
diff --git a/pg_data/base/5/3455 b/pg_data/base/5/3455
deleted file mode 100644
index 38030676..00000000
Binary files a/pg_data/base/5/3455 and /dev/null differ
diff --git a/pg_data/base/5/3456 b/pg_data/base/5/3456
deleted file mode 100644
index 3b984eef..00000000
Binary files a/pg_data/base/5/3456 and /dev/null differ
diff --git a/pg_data/base/5/3456_fsm b/pg_data/base/5/3456_fsm
deleted file mode 100644
index c81fd33e..00000000
Binary files a/pg_data/base/5/3456_fsm and /dev/null differ
diff --git a/pg_data/base/5/3456_vm b/pg_data/base/5/3456_vm
deleted file mode 100644
index 3ad93c1e..00000000
Binary files a/pg_data/base/5/3456_vm and /dev/null differ
diff --git a/pg_data/base/5/3466 b/pg_data/base/5/3466
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/3467 b/pg_data/base/5/3467
deleted file mode 100644
index f0659a97..00000000
Binary files a/pg_data/base/5/3467 and /dev/null differ
diff --git a/pg_data/base/5/3468 b/pg_data/base/5/3468
deleted file mode 100644
index ee39717f..00000000
Binary files a/pg_data/base/5/3468 and /dev/null differ
diff --git a/pg_data/base/5/3501 b/pg_data/base/5/3501
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/3502 b/pg_data/base/5/3502
deleted file mode 100644
index 1b7967e4..00000000
Binary files a/pg_data/base/5/3502 and /dev/null differ
diff --git a/pg_data/base/5/3503 b/pg_data/base/5/3503
deleted file mode 100644
index 2343fc33..00000000
Binary files a/pg_data/base/5/3503 and /dev/null differ
diff --git a/pg_data/base/5/3534 b/pg_data/base/5/3534
deleted file mode 100644
index 987c7d69..00000000
Binary files a/pg_data/base/5/3534 and /dev/null differ
diff --git a/pg_data/base/5/3541 b/pg_data/base/5/3541
deleted file mode 100644
index 2136ea79..00000000
Binary files a/pg_data/base/5/3541 and /dev/null differ
diff --git a/pg_data/base/5/3541_fsm b/pg_data/base/5/3541_fsm
deleted file mode 100644
index 6e9f55a8..00000000
Binary files a/pg_data/base/5/3541_fsm and /dev/null differ
diff --git a/pg_data/base/5/3541_vm b/pg_data/base/5/3541_vm
deleted file mode 100644
index 24a6f920..00000000
Binary files a/pg_data/base/5/3541_vm and /dev/null differ
diff --git a/pg_data/base/5/3542 b/pg_data/base/5/3542
deleted file mode 100644
index 9608ce67..00000000
Binary files a/pg_data/base/5/3542 and /dev/null differ
diff --git a/pg_data/base/5/3574 b/pg_data/base/5/3574
deleted file mode 100644
index 5834e041..00000000
Binary files a/pg_data/base/5/3574 and /dev/null differ
diff --git a/pg_data/base/5/3575 b/pg_data/base/5/3575
deleted file mode 100644
index 2cc5f4cb..00000000
Binary files a/pg_data/base/5/3575 and /dev/null differ
diff --git a/pg_data/base/5/3576 b/pg_data/base/5/3576
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/3596 b/pg_data/base/5/3596
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/3597 b/pg_data/base/5/3597
deleted file mode 100644
index 02e55672..00000000
Binary files a/pg_data/base/5/3597 and /dev/null differ
diff --git a/pg_data/base/5/3598 b/pg_data/base/5/3598
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/3599 b/pg_data/base/5/3599
deleted file mode 100644
index b37a085d..00000000
Binary files a/pg_data/base/5/3599 and /dev/null differ
diff --git a/pg_data/base/5/3600 b/pg_data/base/5/3600
deleted file mode 100644
index 72bcae12..00000000
Binary files a/pg_data/base/5/3600 and /dev/null differ
diff --git a/pg_data/base/5/3600_fsm b/pg_data/base/5/3600_fsm
deleted file mode 100644
index 499a0c2a..00000000
Binary files a/pg_data/base/5/3600_fsm and /dev/null differ
diff --git a/pg_data/base/5/3600_vm b/pg_data/base/5/3600_vm
deleted file mode 100644
index dff6b7b8..00000000
Binary files a/pg_data/base/5/3600_vm and /dev/null differ
diff --git a/pg_data/base/5/3601 b/pg_data/base/5/3601
deleted file mode 100644
index bb1b3c1b..00000000
Binary files a/pg_data/base/5/3601 and /dev/null differ
diff --git a/pg_data/base/5/3601_fsm b/pg_data/base/5/3601_fsm
deleted file mode 100644
index edc65176..00000000
Binary files a/pg_data/base/5/3601_fsm and /dev/null differ
diff --git a/pg_data/base/5/3601_vm b/pg_data/base/5/3601_vm
deleted file mode 100644
index 7a487e4a..00000000
Binary files a/pg_data/base/5/3601_vm and /dev/null differ
diff --git a/pg_data/base/5/3602 b/pg_data/base/5/3602
deleted file mode 100644
index f2003544..00000000
Binary files a/pg_data/base/5/3602 and /dev/null differ
diff --git a/pg_data/base/5/3602_fsm b/pg_data/base/5/3602_fsm
deleted file mode 100644
index 116ac28a..00000000
Binary files a/pg_data/base/5/3602_fsm and /dev/null differ
diff --git a/pg_data/base/5/3602_vm b/pg_data/base/5/3602_vm
deleted file mode 100644
index a892a1de..00000000
Binary files a/pg_data/base/5/3602_vm and /dev/null differ
diff --git a/pg_data/base/5/3603 b/pg_data/base/5/3603
deleted file mode 100644
index 697edb1e..00000000
Binary files a/pg_data/base/5/3603 and /dev/null differ
diff --git a/pg_data/base/5/3603_fsm b/pg_data/base/5/3603_fsm
deleted file mode 100644
index d2d495bf..00000000
Binary files a/pg_data/base/5/3603_fsm and /dev/null differ
diff --git a/pg_data/base/5/3603_vm b/pg_data/base/5/3603_vm
deleted file mode 100644
index 8ce9a569..00000000
Binary files a/pg_data/base/5/3603_vm and /dev/null differ
diff --git a/pg_data/base/5/3604 b/pg_data/base/5/3604
deleted file mode 100644
index f70243e5..00000000
Binary files a/pg_data/base/5/3604 and /dev/null differ
diff --git a/pg_data/base/5/3605 b/pg_data/base/5/3605
deleted file mode 100644
index ed0c072c..00000000
Binary files a/pg_data/base/5/3605 and /dev/null differ
diff --git a/pg_data/base/5/3606 b/pg_data/base/5/3606
deleted file mode 100644
index 1eafef8e..00000000
Binary files a/pg_data/base/5/3606 and /dev/null differ
diff --git a/pg_data/base/5/3607 b/pg_data/base/5/3607
deleted file mode 100644
index 13bebb42..00000000
Binary files a/pg_data/base/5/3607 and /dev/null differ
diff --git a/pg_data/base/5/3608 b/pg_data/base/5/3608
deleted file mode 100644
index 6ee9023e..00000000
Binary files a/pg_data/base/5/3608 and /dev/null differ
diff --git a/pg_data/base/5/3609 b/pg_data/base/5/3609
deleted file mode 100644
index ed4aa8eb..00000000
Binary files a/pg_data/base/5/3609 and /dev/null differ
diff --git a/pg_data/base/5/3712 b/pg_data/base/5/3712
deleted file mode 100644
index 22c569ed..00000000
Binary files a/pg_data/base/5/3712 and /dev/null differ
diff --git a/pg_data/base/5/3764 b/pg_data/base/5/3764
deleted file mode 100644
index ee6190f3..00000000
Binary files a/pg_data/base/5/3764 and /dev/null differ
diff --git a/pg_data/base/5/3764_fsm b/pg_data/base/5/3764_fsm
deleted file mode 100644
index 6b20410c..00000000
Binary files a/pg_data/base/5/3764_fsm and /dev/null differ
diff --git a/pg_data/base/5/3764_vm b/pg_data/base/5/3764_vm
deleted file mode 100644
index dbc16086..00000000
Binary files a/pg_data/base/5/3764_vm and /dev/null differ
diff --git a/pg_data/base/5/3766 b/pg_data/base/5/3766
deleted file mode 100644
index 19085451..00000000
Binary files a/pg_data/base/5/3766 and /dev/null differ
diff --git a/pg_data/base/5/3767 b/pg_data/base/5/3767
deleted file mode 100644
index 766fa1ef..00000000
Binary files a/pg_data/base/5/3767 and /dev/null differ
diff --git a/pg_data/base/5/3997 b/pg_data/base/5/3997
deleted file mode 100644
index b495878b..00000000
Binary files a/pg_data/base/5/3997 and /dev/null differ
diff --git a/pg_data/base/5/4143 b/pg_data/base/5/4143
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/4144 b/pg_data/base/5/4144
deleted file mode 100644
index dd2eea87..00000000
Binary files a/pg_data/base/5/4144 and /dev/null differ
diff --git a/pg_data/base/5/4145 b/pg_data/base/5/4145
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/4146 b/pg_data/base/5/4146
deleted file mode 100644
index 3316de77..00000000
Binary files a/pg_data/base/5/4146 and /dev/null differ
diff --git a/pg_data/base/5/4147 b/pg_data/base/5/4147
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/4148 b/pg_data/base/5/4148
deleted file mode 100644
index bcbe3ae1..00000000
Binary files a/pg_data/base/5/4148 and /dev/null differ
diff --git a/pg_data/base/5/4149 b/pg_data/base/5/4149
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/4150 b/pg_data/base/5/4150
deleted file mode 100644
index 2b63ae9a..00000000
Binary files a/pg_data/base/5/4150 and /dev/null differ
diff --git a/pg_data/base/5/4151 b/pg_data/base/5/4151
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/4152 b/pg_data/base/5/4152
deleted file mode 100644
index 91b17f45..00000000
Binary files a/pg_data/base/5/4152 and /dev/null differ
diff --git a/pg_data/base/5/4153 b/pg_data/base/5/4153
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/4154 b/pg_data/base/5/4154
deleted file mode 100644
index fe00f95e..00000000
Binary files a/pg_data/base/5/4154 and /dev/null differ
diff --git a/pg_data/base/5/4155 b/pg_data/base/5/4155
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/4156 b/pg_data/base/5/4156
deleted file mode 100644
index 7378f8d7..00000000
Binary files a/pg_data/base/5/4156 and /dev/null differ
diff --git a/pg_data/base/5/4157 b/pg_data/base/5/4157
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/4158 b/pg_data/base/5/4158
deleted file mode 100644
index d01b91a2..00000000
Binary files a/pg_data/base/5/4158 and /dev/null differ
diff --git a/pg_data/base/5/4159 b/pg_data/base/5/4159
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/4160 b/pg_data/base/5/4160
deleted file mode 100644
index 3d3ea729..00000000
Binary files a/pg_data/base/5/4160 and /dev/null differ
diff --git a/pg_data/base/5/4163 b/pg_data/base/5/4163
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/4164 b/pg_data/base/5/4164
deleted file mode 100644
index 6e7a9181..00000000
Binary files a/pg_data/base/5/4164 and /dev/null differ
diff --git a/pg_data/base/5/4165 b/pg_data/base/5/4165
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/4166 b/pg_data/base/5/4166
deleted file mode 100644
index 4bc6369b..00000000
Binary files a/pg_data/base/5/4166 and /dev/null differ
diff --git a/pg_data/base/5/4167 b/pg_data/base/5/4167
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/4168 b/pg_data/base/5/4168
deleted file mode 100644
index 1faf4836..00000000
Binary files a/pg_data/base/5/4168 and /dev/null differ
diff --git a/pg_data/base/5/4169 b/pg_data/base/5/4169
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/4170 b/pg_data/base/5/4170
deleted file mode 100644
index 998dd8ee..00000000
Binary files a/pg_data/base/5/4170 and /dev/null differ
diff --git a/pg_data/base/5/4171 b/pg_data/base/5/4171
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/4172 b/pg_data/base/5/4172
deleted file mode 100644
index 87a43dd2..00000000
Binary files a/pg_data/base/5/4172 and /dev/null differ
diff --git a/pg_data/base/5/4173 b/pg_data/base/5/4173
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/4174 b/pg_data/base/5/4174
deleted file mode 100644
index 3887ea03..00000000
Binary files a/pg_data/base/5/4174 and /dev/null differ
diff --git a/pg_data/base/5/5002 b/pg_data/base/5/5002
deleted file mode 100644
index d793036d..00000000
Binary files a/pg_data/base/5/5002 and /dev/null differ
diff --git a/pg_data/base/5/548 b/pg_data/base/5/548
deleted file mode 100644
index 1191e21f..00000000
Binary files a/pg_data/base/5/548 and /dev/null differ
diff --git a/pg_data/base/5/549 b/pg_data/base/5/549
deleted file mode 100644
index 8b8b1d2c..00000000
Binary files a/pg_data/base/5/549 and /dev/null differ
diff --git a/pg_data/base/5/6102 b/pg_data/base/5/6102
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/6104 b/pg_data/base/5/6104
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/6106 b/pg_data/base/5/6106
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/6110 b/pg_data/base/5/6110
deleted file mode 100644
index 60cce00a..00000000
Binary files a/pg_data/base/5/6110 and /dev/null differ
diff --git a/pg_data/base/5/6111 b/pg_data/base/5/6111
deleted file mode 100644
index b2cff8e7..00000000
Binary files a/pg_data/base/5/6111 and /dev/null differ
diff --git a/pg_data/base/5/6112 b/pg_data/base/5/6112
deleted file mode 100644
index 5dbbebf7..00000000
Binary files a/pg_data/base/5/6112 and /dev/null differ
diff --git a/pg_data/base/5/6113 b/pg_data/base/5/6113
deleted file mode 100644
index 0ebfc0f2..00000000
Binary files a/pg_data/base/5/6113 and /dev/null differ
diff --git a/pg_data/base/5/6116 b/pg_data/base/5/6116
deleted file mode 100644
index 350ab3f3..00000000
Binary files a/pg_data/base/5/6116 and /dev/null differ
diff --git a/pg_data/base/5/6117 b/pg_data/base/5/6117
deleted file mode 100644
index e2d987ca..00000000
Binary files a/pg_data/base/5/6117 and /dev/null differ
diff --git a/pg_data/base/5/6175 b/pg_data/base/5/6175
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/6176 b/pg_data/base/5/6176
deleted file mode 100644
index fa40414d..00000000
Binary files a/pg_data/base/5/6176 and /dev/null differ
diff --git a/pg_data/base/5/6228 b/pg_data/base/5/6228
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/6229 b/pg_data/base/5/6229
deleted file mode 100644
index edc8a3ad..00000000
Binary files a/pg_data/base/5/6229 and /dev/null differ
diff --git a/pg_data/base/5/6237 b/pg_data/base/5/6237
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/6238 b/pg_data/base/5/6238
deleted file mode 100644
index 1a06df74..00000000
Binary files a/pg_data/base/5/6238 and /dev/null differ
diff --git a/pg_data/base/5/6239 b/pg_data/base/5/6239
deleted file mode 100644
index 3f1e40c6..00000000
Binary files a/pg_data/base/5/6239 and /dev/null differ
diff --git a/pg_data/base/5/6351 b/pg_data/base/5/6351
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/6352 b/pg_data/base/5/6352
deleted file mode 100644
index 2ad318b9..00000000
Binary files a/pg_data/base/5/6352 and /dev/null differ
diff --git a/pg_data/base/5/826 b/pg_data/base/5/826
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/base/5/827 b/pg_data/base/5/827
deleted file mode 100644
index be40fb08..00000000
Binary files a/pg_data/base/5/827 and /dev/null differ
diff --git a/pg_data/base/5/828 b/pg_data/base/5/828
deleted file mode 100644
index 2b660b4d..00000000
Binary files a/pg_data/base/5/828 and /dev/null differ
diff --git a/pg_data/base/5/PG_VERSION b/pg_data/base/5/PG_VERSION
deleted file mode 100644
index 3c032078..00000000
--- a/pg_data/base/5/PG_VERSION
+++ /dev/null
@@ -1 +0,0 @@
-18
diff --git a/pg_data/base/5/pg_filenode.map b/pg_data/base/5/pg_filenode.map
deleted file mode 100644
index 4fc801aa..00000000
Binary files a/pg_data/base/5/pg_filenode.map and /dev/null differ
diff --git a/pg_data/base/5/pg_internal.init b/pg_data/base/5/pg_internal.init
deleted file mode 100644
index 9c3066f3..00000000
Binary files a/pg_data/base/5/pg_internal.init and /dev/null differ
diff --git a/pg_data/global/1213 b/pg_data/global/1213
deleted file mode 100644
index e0df2697..00000000
Binary files a/pg_data/global/1213 and /dev/null differ
diff --git a/pg_data/global/1213_fsm b/pg_data/global/1213_fsm
deleted file mode 100644
index 2abc1a19..00000000
Binary files a/pg_data/global/1213_fsm and /dev/null differ
diff --git a/pg_data/global/1213_vm b/pg_data/global/1213_vm
deleted file mode 100644
index 8da4862e..00000000
Binary files a/pg_data/global/1213_vm and /dev/null differ
diff --git a/pg_data/global/1214 b/pg_data/global/1214
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/global/1232 b/pg_data/global/1232
deleted file mode 100644
index 8722c762..00000000
Binary files a/pg_data/global/1232 and /dev/null differ
diff --git a/pg_data/global/1233 b/pg_data/global/1233
deleted file mode 100644
index e23746c4..00000000
Binary files a/pg_data/global/1233 and /dev/null differ
diff --git a/pg_data/global/1260 b/pg_data/global/1260
deleted file mode 100644
index cc3cd21f..00000000
Binary files a/pg_data/global/1260 and /dev/null differ
diff --git a/pg_data/global/1260_fsm b/pg_data/global/1260_fsm
deleted file mode 100644
index 1dff82a1..00000000
Binary files a/pg_data/global/1260_fsm and /dev/null differ
diff --git a/pg_data/global/1260_vm b/pg_data/global/1260_vm
deleted file mode 100644
index 860ec1bd..00000000
Binary files a/pg_data/global/1260_vm and /dev/null differ
diff --git a/pg_data/global/1261 b/pg_data/global/1261
deleted file mode 100644
index 4b7abace..00000000
Binary files a/pg_data/global/1261 and /dev/null differ
diff --git a/pg_data/global/1261_fsm b/pg_data/global/1261_fsm
deleted file mode 100644
index 1b176a74..00000000
Binary files a/pg_data/global/1261_fsm and /dev/null differ
diff --git a/pg_data/global/1261_vm b/pg_data/global/1261_vm
deleted file mode 100644
index 554e9a5b..00000000
Binary files a/pg_data/global/1261_vm and /dev/null differ
diff --git a/pg_data/global/1262 b/pg_data/global/1262
deleted file mode 100644
index f2de6087..00000000
Binary files a/pg_data/global/1262 and /dev/null differ
diff --git a/pg_data/global/1262_fsm b/pg_data/global/1262_fsm
deleted file mode 100644
index eab4c3bd..00000000
Binary files a/pg_data/global/1262_fsm and /dev/null differ
diff --git a/pg_data/global/1262_vm b/pg_data/global/1262_vm
deleted file mode 100644
index 794c796e..00000000
Binary files a/pg_data/global/1262_vm and /dev/null differ
diff --git a/pg_data/global/2396 b/pg_data/global/2396
deleted file mode 100644
index f12f1b00..00000000
Binary files a/pg_data/global/2396 and /dev/null differ
diff --git a/pg_data/global/2396_fsm b/pg_data/global/2396_fsm
deleted file mode 100644
index 3a337064..00000000
Binary files a/pg_data/global/2396_fsm and /dev/null differ
diff --git a/pg_data/global/2396_vm b/pg_data/global/2396_vm
deleted file mode 100644
index 7805d411..00000000
Binary files a/pg_data/global/2396_vm and /dev/null differ
diff --git a/pg_data/global/2397 b/pg_data/global/2397
deleted file mode 100644
index 914b0483..00000000
Binary files a/pg_data/global/2397 and /dev/null differ
diff --git a/pg_data/global/2671 b/pg_data/global/2671
deleted file mode 100644
index 73ebe2d8..00000000
Binary files a/pg_data/global/2671 and /dev/null differ
diff --git a/pg_data/global/2672 b/pg_data/global/2672
deleted file mode 100644
index cea55ad1..00000000
Binary files a/pg_data/global/2672 and /dev/null differ
diff --git a/pg_data/global/2676 b/pg_data/global/2676
deleted file mode 100644
index f37afe31..00000000
Binary files a/pg_data/global/2676 and /dev/null differ
diff --git a/pg_data/global/2677 b/pg_data/global/2677
deleted file mode 100644
index 17465001..00000000
Binary files a/pg_data/global/2677 and /dev/null differ
diff --git a/pg_data/global/2694 b/pg_data/global/2694
deleted file mode 100644
index 6c628eda..00000000
Binary files a/pg_data/global/2694 and /dev/null differ
diff --git a/pg_data/global/2695 b/pg_data/global/2695
deleted file mode 100644
index e96f7bcc..00000000
Binary files a/pg_data/global/2695 and /dev/null differ
diff --git a/pg_data/global/2697 b/pg_data/global/2697
deleted file mode 100644
index 6d18ad97..00000000
Binary files a/pg_data/global/2697 and /dev/null differ
diff --git a/pg_data/global/2698 b/pg_data/global/2698
deleted file mode 100644
index 71d58c24..00000000
Binary files a/pg_data/global/2698 and /dev/null differ
diff --git a/pg_data/global/2846 b/pg_data/global/2846
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/global/2847 b/pg_data/global/2847
deleted file mode 100644
index d69b826e..00000000
Binary files a/pg_data/global/2847 and /dev/null differ
diff --git a/pg_data/global/2964 b/pg_data/global/2964
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/global/2965 b/pg_data/global/2965
deleted file mode 100644
index a9e0b55b..00000000
Binary files a/pg_data/global/2965 and /dev/null differ
diff --git a/pg_data/global/2966 b/pg_data/global/2966
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/global/2967 b/pg_data/global/2967
deleted file mode 100644
index c676fbdb..00000000
Binary files a/pg_data/global/2967 and /dev/null differ
diff --git a/pg_data/global/3592 b/pg_data/global/3592
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/global/3593 b/pg_data/global/3593
deleted file mode 100644
index 3ad64fe2..00000000
Binary files a/pg_data/global/3593 and /dev/null differ
diff --git a/pg_data/global/4060 b/pg_data/global/4060
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/global/4061 b/pg_data/global/4061
deleted file mode 100644
index 9a07d4c1..00000000
Binary files a/pg_data/global/4061 and /dev/null differ
diff --git a/pg_data/global/4177 b/pg_data/global/4177
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/global/4178 b/pg_data/global/4178
deleted file mode 100644
index 08946cd0..00000000
Binary files a/pg_data/global/4178 and /dev/null differ
diff --git a/pg_data/global/4183 b/pg_data/global/4183
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/global/4184 b/pg_data/global/4184
deleted file mode 100644
index d379d900..00000000
Binary files a/pg_data/global/4184 and /dev/null differ
diff --git a/pg_data/global/4185 b/pg_data/global/4185
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/global/4186 b/pg_data/global/4186
deleted file mode 100644
index bd63fea8..00000000
Binary files a/pg_data/global/4186 and /dev/null differ
diff --git a/pg_data/global/6000 b/pg_data/global/6000
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/global/6001 b/pg_data/global/6001
deleted file mode 100644
index 2c26cdc2..00000000
Binary files a/pg_data/global/6001 and /dev/null differ
diff --git a/pg_data/global/6002 b/pg_data/global/6002
deleted file mode 100644
index 1dc597df..00000000
Binary files a/pg_data/global/6002 and /dev/null differ
diff --git a/pg_data/global/6100 b/pg_data/global/6100
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/global/6114 b/pg_data/global/6114
deleted file mode 100644
index c6ed1405..00000000
Binary files a/pg_data/global/6114 and /dev/null differ
diff --git a/pg_data/global/6115 b/pg_data/global/6115
deleted file mode 100644
index 99e4da51..00000000
Binary files a/pg_data/global/6115 and /dev/null differ
diff --git a/pg_data/global/6243 b/pg_data/global/6243
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/global/6244 b/pg_data/global/6244
deleted file mode 100644
index e69de29b..00000000
diff --git a/pg_data/global/6245 b/pg_data/global/6245
deleted file mode 100644
index f14a29ba..00000000
Binary files a/pg_data/global/6245 and /dev/null differ
diff --git a/pg_data/global/6246 b/pg_data/global/6246
deleted file mode 100644
index 77ce5ba3..00000000
Binary files a/pg_data/global/6246 and /dev/null differ
diff --git a/pg_data/global/6247 b/pg_data/global/6247
deleted file mode 100644
index 91f984e0..00000000
Binary files a/pg_data/global/6247 and /dev/null differ
diff --git a/pg_data/global/6302 b/pg_data/global/6302
deleted file mode 100644
index 77b02fd4..00000000
Binary files a/pg_data/global/6302 and /dev/null differ
diff --git a/pg_data/global/6303 b/pg_data/global/6303
deleted file mode 100644
index 2eec6750..00000000
Binary files a/pg_data/global/6303 and /dev/null differ
diff --git a/pg_data/global/pg_control b/pg_data/global/pg_control
deleted file mode 100644
index 47a99964..00000000
Binary files a/pg_data/global/pg_control and /dev/null differ
diff --git a/pg_data/global/pg_filenode.map b/pg_data/global/pg_filenode.map
deleted file mode 100644
index f67cef31..00000000
Binary files a/pg_data/global/pg_filenode.map and /dev/null differ
diff --git a/pg_data/global/pg_internal.init b/pg_data/global/pg_internal.init
deleted file mode 100644
index 187f24de..00000000
Binary files a/pg_data/global/pg_internal.init and /dev/null differ
diff --git a/pg_data/pg_hba.conf b/pg_data/pg_hba.conf
deleted file mode 100644
index b5be8921..00000000
--- a/pg_data/pg_hba.conf
+++ /dev/null
@@ -1,128 +0,0 @@
-# PostgreSQL Client Authentication Configuration File
-# ===================================================
-#
-# Refer to the "Client Authentication" section in the PostgreSQL
-# documentation for a complete description of this file. A short
-# synopsis follows.
-#
-# ----------------------
-# Authentication Records
-# ----------------------
-#
-# This file controls: which hosts are allowed to connect, how clients
-# are authenticated, which PostgreSQL user names they can use, which
-# databases they can access. Records take one of these forms:
-#
-# local DATABASE USER METHOD [OPTIONS]
-# host DATABASE USER ADDRESS METHOD [OPTIONS]
-# hostssl DATABASE USER ADDRESS METHOD [OPTIONS]
-# hostnossl DATABASE USER ADDRESS METHOD [OPTIONS]
-# hostgssenc DATABASE USER ADDRESS METHOD [OPTIONS]
-# hostnogssenc DATABASE USER ADDRESS METHOD [OPTIONS]
-#
-# (The uppercase items must be replaced by actual values.)
-#
-# The first field is the connection type:
-# - "local" is a Unix-domain socket
-# - "host" is a TCP/IP socket (encrypted or not)
-# - "hostssl" is a TCP/IP socket that is SSL-encrypted
-# - "hostnossl" is a TCP/IP socket that is not SSL-encrypted
-# - "hostgssenc" is a TCP/IP socket that is GSSAPI-encrypted
-# - "hostnogssenc" is a TCP/IP socket that is not GSSAPI-encrypted
-#
-# DATABASE can be "all", "sameuser", "samerole", "replication", a
-# database name, a regular expression (if it starts with a slash (/))
-# or a comma-separated list thereof. The "all" keyword does not match
-# "replication". Access to replication must be enabled in a separate
-# record (see example below).
-#
-# USER can be "all", a user name, a group name prefixed with "+", a
-# regular expression (if it starts with a slash (/)) or a comma-separated
-# list thereof. In both the DATABASE and USER fields you can also write
-# a file name prefixed with "@" to include names from a separate file.
-#
-# ADDRESS specifies the set of hosts the record matches. It can be a
-# host name, or it is made up of an IP address and a CIDR mask that is
-# an integer (between 0 and 32 (IPv4) or 128 (IPv6) inclusive) that
-# specifies the number of significant bits in the mask. A host name
-# that starts with a dot (.) matches a suffix of the actual host name.
-# Alternatively, you can write an IP address and netmask in separate
-# columns to specify the set of hosts. Instead of a CIDR-address, you
-# can write "samehost" to match any of the server's own IP addresses,
-# or "samenet" to match any address in any subnet that the server is
-# directly connected to.
-#
-# METHOD can be "trust", "reject", "md5", "password", "scram-sha-256",
-# "gss", "sspi", "ident", "peer", "pam", "oauth", "ldap", "radius" or
-# "cert". Note that "password" sends passwords in clear text; "md5" or
-# "scram-sha-256" are preferred since they send encrypted passwords.
-#
-# OPTIONS are a set of options for the authentication in the format
-# NAME=VALUE. The available options depend on the different
-# authentication methods -- refer to the "Client Authentication"
-# section in the documentation for a list of which options are
-# available for which authentication methods.
-#
-# Database and user names containing spaces, commas, quotes and other
-# special characters must be quoted. Quoting one of the keywords
-# "all", "sameuser", "samerole" or "replication" makes the name lose
-# its special character, and just match a database or username with
-# that name.
-#
-# ---------------
-# Include Records
-# ---------------
-#
-# This file allows the inclusion of external files or directories holding
-# more records, using the following keywords:
-#
-# include FILE
-# include_if_exists FILE
-# include_dir DIRECTORY
-#
-# FILE is the file name to include, and DIR is the directory name containing
-# the file(s) to include. Any file in a directory will be loaded if suffixed
-# with ".conf". The files of a directory are ordered by name.
-# include_if_exists ignores missing files. FILE and DIRECTORY can be
-# specified as a relative or an absolute path, and can be double-quoted if
-# they contain spaces.
-#
-# -------------
-# Miscellaneous
-# -------------
-#
-# This file is read on server startup and when the server receives a
-# SIGHUP signal. If you edit the file on a running system, you have to
-# SIGHUP the server for the changes to take effect, run "pg_ctl reload",
-# or execute "SELECT pg_reload_conf()".
-#
-# ----------------------------------
-# Put your actual configuration here
-# ----------------------------------
-#
-# If you want to allow non-local connections, you need to add more
-# "host" records. In that case you will also need to make PostgreSQL
-# listen on a non-local interface via the listen_addresses
-# configuration parameter, or via the -i or -h command line switches.
-
-# CAUTION: Configuring the system for local "trust" authentication
-# allows any local user to connect as any PostgreSQL user, including
-# the database superuser. If you do not trust all your local users,
-# use another authentication method.
-
-
-# TYPE DATABASE USER ADDRESS METHOD
-
-# "local" is for Unix domain socket connections only
-local all all trust
-# IPv4 local connections:
-host all all 127.0.0.1/32 trust
-# IPv6 local connections:
-host all all ::1/128 trust
-# Allow replication connections from localhost, by a user with the
-# replication privilege.
-local replication all trust
-host replication all 127.0.0.1/32 trust
-host replication all ::1/128 trust
-
-host all all all scram-sha-256
diff --git a/pg_data/pg_ident.conf b/pg_data/pg_ident.conf
deleted file mode 100644
index 8ee6c0ba..00000000
--- a/pg_data/pg_ident.conf
+++ /dev/null
@@ -1,72 +0,0 @@
-# PostgreSQL User Name Maps
-# =========================
-#
-# ---------------
-# Mapping Records
-# ---------------
-#
-# Refer to the PostgreSQL documentation, chapter "Client
-# Authentication" for a complete description. A short synopsis
-# follows.
-#
-# This file controls PostgreSQL user name mapping. It maps external
-# user names to their corresponding PostgreSQL user names. Records
-# are of the form:
-#
-# MAPNAME SYSTEM-USERNAME DATABASE-USERNAME
-#
-# (The uppercase quantities must be replaced by actual values.)
-#
-# MAPNAME is the (otherwise freely chosen) map name that was used in
-# pg_hba.conf. SYSTEM-USERNAME is the detected user name of the
-# client. DATABASE-USERNAME is the requested PostgreSQL user name.
-# The existence of a record specifies that SYSTEM-USERNAME may connect
-# as DATABASE-USERNAME.
-#
-# If SYSTEM-USERNAME starts with a slash (/), the rest of it will be
-# treated as a regular expression. Optionally this can contain a capture
-# (a parenthesized subexpression). The substring matching the capture
-# will be substituted for \1 (backslash-one) if that appears in
-# DATABASE-USERNAME.
-#
-# DATABASE-USERNAME can be "all", a user name, a group name prefixed with "+",
-# or a regular expression (if it starts with a slash (/)). If it is a regular
-# expression, no substitution for \1 will occur.
-#
-# Multiple maps may be specified in this file and used by pg_hba.conf.
-#
-# No map names are defined in the default configuration. If all
-# system user names and PostgreSQL user names are the same, you don't
-# need anything in this file.
-#
-# ---------------
-# Include Records
-# ---------------
-#
-# This file allows the inclusion of external files or directories holding
-# more records, using the following keywords:
-#
-# include FILE
-# include_if_exists FILE
-# include_dir DIRECTORY
-#
-# FILE is the file name to include, and DIR is the directory name containing
-# the file(s) to include. Any file in a directory will be loaded if suffixed
-# with ".conf". The files of a directory are ordered by name.
-# include_if_exists ignores missing files. FILE and DIRECTORY can be
-# specified as a relative or an absolute path, and can be double-quoted if
-# they contain spaces.
-#
-# -------------------------------
-# Miscellaneous
-# -------------------------------
-#
-# This file is read on server startup and when the postmaster receives
-# a SIGHUP signal. If you edit the file on a running system, you have
-# to SIGHUP the postmaster for the changes to take effect. You can
-# use "pg_ctl reload" to do that.
-
-# Put your actual configuration here
-# ----------------------------------
-
-# MAPNAME SYSTEM-USERNAME DATABASE-USERNAME
diff --git a/pg_data/pg_logical/replorigin_checkpoint b/pg_data/pg_logical/replorigin_checkpoint
deleted file mode 100644
index ec451b0f..00000000
Binary files a/pg_data/pg_logical/replorigin_checkpoint and /dev/null differ
diff --git a/pg_data/pg_multixact/members/0000 b/pg_data/pg_multixact/members/0000
deleted file mode 100644
index 6d17cf9d..00000000
Binary files a/pg_data/pg_multixact/members/0000 and /dev/null differ
diff --git a/pg_data/pg_multixact/offsets/0000 b/pg_data/pg_multixact/offsets/0000
deleted file mode 100644
index 6d17cf9d..00000000
Binary files a/pg_data/pg_multixact/offsets/0000 and /dev/null differ
diff --git a/pg_data/pg_subtrans/0000 b/pg_data/pg_subtrans/0000
deleted file mode 100644
index 6d17cf9d..00000000
Binary files a/pg_data/pg_subtrans/0000 and /dev/null differ
diff --git a/pg_data/pg_wal/000000010000000000000001 b/pg_data/pg_wal/000000010000000000000001
deleted file mode 100644
index e348144e..00000000
Binary files a/pg_data/pg_wal/000000010000000000000001 and /dev/null differ
diff --git a/pg_data/pg_wal/000000010000000000000002 b/pg_data/pg_wal/000000010000000000000002
deleted file mode 100644
index dba78e91..00000000
Binary files a/pg_data/pg_wal/000000010000000000000002 and /dev/null differ
diff --git a/pg_data/pg_xact/0000 b/pg_data/pg_xact/0000
deleted file mode 100644
index 780ba0b0..00000000
Binary files a/pg_data/pg_xact/0000 and /dev/null differ
diff --git a/pg_data/postgresql.auto.conf b/pg_data/postgresql.auto.conf
deleted file mode 100644
index af7125e1..00000000
--- a/pg_data/postgresql.auto.conf
+++ /dev/null
@@ -1,2 +0,0 @@
-# Do not edit this file manually!
-# It will be overwritten by the ALTER SYSTEM command.
diff --git a/pg_data/postgresql.conf b/pg_data/postgresql.conf
deleted file mode 100644
index 2ae8330b..00000000
--- a/pg_data/postgresql.conf
+++ /dev/null
@@ -1,888 +0,0 @@
-# -----------------------------
-# PostgreSQL configuration file
-# -----------------------------
-#
-# This file consists of lines of the form:
-#
-# name = value
-#
-# (The "=" is optional.) Whitespace may be used. Comments are introduced with
-# "#" anywhere on a line. The complete list of parameter names and allowed
-# values can be found in the PostgreSQL documentation.
-#
-# The commented-out settings shown in this file represent the default values.
-# Re-commenting a setting is NOT sufficient to revert it to the default value;
-# you need to reload the server.
-#
-# This file is read on server startup and when the server receives a SIGHUP
-# signal. If you edit the file on a running system, you have to SIGHUP the
-# server for the changes to take effect, run "pg_ctl reload", or execute
-# "SELECT pg_reload_conf()". Some parameters, which are marked below,
-# require a server shutdown and restart to take effect.
-#
-# Any parameter can also be given as a command-line option to the server, e.g.,
-# "postgres -c log_connections=all". Some parameters can be changed at run time
-# with the "SET" SQL command.
-#
-# Memory units: B = bytes Time units: us = microseconds
-# kB = kilobytes ms = milliseconds
-# MB = megabytes s = seconds
-# GB = gigabytes min = minutes
-# TB = terabytes h = hours
-# d = days
-
-
-#------------------------------------------------------------------------------
-# FILE LOCATIONS
-#------------------------------------------------------------------------------
-
-# The default values of these variables are driven from the -D command-line
-# option or PGDATA environment variable, represented here as ConfigDir.
-
-#data_directory = 'ConfigDir' # use data in another directory
- # (change requires restart)
-#hba_file = 'ConfigDir/pg_hba.conf' # host-based authentication file
- # (change requires restart)
-#ident_file = 'ConfigDir/pg_ident.conf' # ident configuration file
- # (change requires restart)
-
-# If external_pid_file is not explicitly set, no extra PID file is written.
-#external_pid_file = '' # write an extra PID file
- # (change requires restart)
-
-
-#------------------------------------------------------------------------------
-# CONNECTIONS AND AUTHENTICATION
-#------------------------------------------------------------------------------
-
-# - Connection Settings -
-
-listen_addresses = '*'
- # comma-separated list of addresses;
- # defaults to 'localhost'; use '*' for all
- # (change requires restart)
-#port = 5432 # (change requires restart)
-max_connections = 100 # (change requires restart)
-#reserved_connections = 0 # (change requires restart)
-#superuser_reserved_connections = 3 # (change requires restart)
-#unix_socket_directories = '/var/run/postgresql' # comma-separated list of directories
- # (change requires restart)
-#unix_socket_group = '' # (change requires restart)
-#unix_socket_permissions = 0777 # begin with 0 to use octal notation
- # (change requires restart)
-#bonjour = off # advertise server via Bonjour
- # (change requires restart)
-#bonjour_name = '' # defaults to the computer name
- # (change requires restart)
-
-# - TCP settings -
-# see "man tcp" for details
-
-#tcp_keepalives_idle = 0 # TCP_KEEPIDLE, in seconds;
- # 0 selects the system default
-#tcp_keepalives_interval = 0 # TCP_KEEPINTVL, in seconds;
- # 0 selects the system default
-#tcp_keepalives_count = 0 # TCP_KEEPCNT;
- # 0 selects the system default
-#tcp_user_timeout = 0 # TCP_USER_TIMEOUT, in milliseconds;
- # 0 selects the system default
-
-#client_connection_check_interval = 0 # time between checks for client
- # disconnection while running queries;
- # 0 for never
-
-# - Authentication -
-
-#authentication_timeout = 1min # 1s-600s
-#password_encryption = scram-sha-256 # scram-sha-256 or (deprecated) md5
-#scram_iterations = 4096
-#md5_password_warnings = on # display md5 deprecation warnings?
-#oauth_validator_libraries = '' # comma-separated list of trusted validator modules
-
-# GSSAPI using Kerberos
-#krb_server_keyfile = 'FILE:${sysconfdir}/krb5.keytab'
-#krb_caseins_users = off
-#gss_accept_delegation = off
-
-# - SSL -
-
-#ssl = off
-#ssl_ca_file = ''
-#ssl_cert_file = 'server.crt'
-#ssl_crl_file = ''
-#ssl_crl_dir = ''
-#ssl_key_file = 'server.key'
-#ssl_ciphers = 'HIGH:MEDIUM:+3DES:!aNULL' # allowed TLSv1.2 ciphers
-#ssl_tls13_ciphers = '' # allowed TLSv1.3 cipher suites, blank for default
-#ssl_prefer_server_ciphers = on
-#ssl_groups = 'X25519:prime256v1'
-#ssl_min_protocol_version = 'TLSv1.2'
-#ssl_max_protocol_version = ''
-#ssl_dh_params_file = ''
-#ssl_passphrase_command = ''
-#ssl_passphrase_command_supports_reload = off
-
-
-#------------------------------------------------------------------------------
-# RESOURCE USAGE (except WAL)
-#------------------------------------------------------------------------------
-
-# - Memory -
-
-shared_buffers = 128MB # min 128kB
- # (change requires restart)
-#huge_pages = try # on, off, or try
- # (change requires restart)
-#huge_page_size = 0 # zero for system default
- # (change requires restart)
-#temp_buffers = 8MB # min 800kB
-#max_prepared_transactions = 0 # zero disables the feature
- # (change requires restart)
-# Caution: it is not advisable to set max_prepared_transactions nonzero unless
-# you actively intend to use prepared transactions.
-#work_mem = 4MB # min 64kB
-#hash_mem_multiplier = 2.0 # 1-1000.0 multiplier on hash table work_mem
-#maintenance_work_mem = 64MB # min 64kB
-#autovacuum_work_mem = -1 # min 64kB, or -1 to use maintenance_work_mem
-#logical_decoding_work_mem = 64MB # min 64kB
-#max_stack_depth = 2MB # min 100kB
-#shared_memory_type = mmap # the default is the first option
- # supported by the operating system:
- # mmap
- # sysv
- # windows
- # (change requires restart)
-dynamic_shared_memory_type = posix # the default is usually the first option
- # supported by the operating system:
- # posix
- # sysv
- # windows
- # mmap
- # (change requires restart)
-#min_dynamic_shared_memory = 0MB # (change requires restart)
-#vacuum_buffer_usage_limit = 2MB # size of vacuum and analyze buffer access strategy ring;
- # 0 to disable vacuum buffer access strategy;
- # range 128kB to 16GB
-
-# SLRU buffers (change requires restart)
-#commit_timestamp_buffers = 0 # memory for pg_commit_ts (0 = auto)
-#multixact_offset_buffers = 16 # memory for pg_multixact/offsets
-#multixact_member_buffers = 32 # memory for pg_multixact/members
-#notify_buffers = 16 # memory for pg_notify
-#serializable_buffers = 32 # memory for pg_serial
-#subtransaction_buffers = 0 # memory for pg_subtrans (0 = auto)
-#transaction_buffers = 0 # memory for pg_xact (0 = auto)
-
-# - Disk -
-
-#temp_file_limit = -1 # limits per-process temp file space
- # in kilobytes, or -1 for no limit
-
-#file_copy_method = copy # copy, clone (if supported by OS)
-#file_extend_method = posix_fallocate # the default is the first option supported
- # by the operating system:
- # posix_fallocate (most Unix-like systems)
- # write_zeros
-
-#max_notify_queue_pages = 1048576 # limits the number of SLRU pages allocated
- # for NOTIFY / LISTEN queue
-
-# - Kernel Resources -
-
-#max_files_per_process = 1000 # min 64
- # (change requires restart)
-
-# - Background Writer -
-
-#bgwriter_delay = 200ms # 10-10000ms between rounds
-#bgwriter_lru_maxpages = 100 # max buffers written/round, 0 disables
-#bgwriter_lru_multiplier = 2.0 # 0-10.0 multiplier on buffers scanned/round
-#bgwriter_flush_after = 512kB # measured in pages, 0 disables
-
-# - I/O -
-
-#backend_flush_after = 0 # measured in pages, 0 disables
-#effective_io_concurrency = 16 # 1-1000; 0 disables issuing multiple simultaneous IO requests
-#maintenance_io_concurrency = 16 # 1-1000; same as effective_io_concurrency
-#io_max_combine_limit = 128kB # usually 1-128 blocks (depends on OS)
- # (change requires restart)
-#io_combine_limit = 128kB # usually 1-128 blocks (depends on OS)
-
-#io_method = worker # worker, io_uring, sync
- # (change requires restart)
-#io_max_concurrency = -1 # Max number of IOs that one process
- # can execute simultaneously
- # -1 sets based on shared_buffers
- # (change requires restart)
-#io_workers = 3 # 1-32;
-
-# - Worker Processes -
-
-#max_worker_processes = 8 # (change requires restart)
-#max_parallel_workers_per_gather = 2 # limited by max_parallel_workers
-#max_parallel_maintenance_workers = 2 # limited by max_parallel_workers
-#max_parallel_workers = 8 # number of max_worker_processes that
- # can be used in parallel operations
-#parallel_leader_participation = on
-
-
-#------------------------------------------------------------------------------
-# WRITE-AHEAD LOG
-#------------------------------------------------------------------------------
-
-# - Settings -
-
-#wal_level = replica # minimal, replica, or logical
- # (change requires restart)
-#fsync = on # flush data to disk for crash safety
- # (turning this off can cause
- # unrecoverable data corruption)
-#synchronous_commit = on # synchronization level;
- # off, local, remote_write, remote_apply, or on
-#wal_sync_method = fsync # the default is the first option
- # supported by the operating system:
- # open_datasync
- # fdatasync (default on Linux and FreeBSD)
- # fsync
- # fsync_writethrough
- # open_sync
-#full_page_writes = on # recover from partial page writes
-#wal_log_hints = off # also do full page writes of non-critical updates
- # (change requires restart)
-#wal_compression = off # enables compression of full-page writes;
- # off, pglz, lz4, zstd, or on
-#wal_init_zero = on # zero-fill new WAL files
-#wal_recycle = on # recycle WAL files
-#wal_buffers = -1 # min 32kB, -1 sets based on shared_buffers
- # (change requires restart)
-#wal_writer_delay = 200ms # 1-10000 milliseconds
-#wal_writer_flush_after = 1MB # measured in pages, 0 disables
-#wal_skip_threshold = 2MB
-
-#commit_delay = 0 # range 0-100000, in microseconds
-#commit_siblings = 5 # range 0-1000
-
-# - Checkpoints -
-
-#checkpoint_timeout = 5min # range 30s-1d
-#checkpoint_completion_target = 0.9 # checkpoint target duration, 0.0 - 1.0
-#checkpoint_flush_after = 256kB # measured in pages, 0 disables
-#checkpoint_warning = 30s # 0 disables
-max_wal_size = 1GB
-min_wal_size = 80MB
-
-# - Prefetching during recovery -
-
-#recovery_prefetch = try # prefetch pages referenced in the WAL?
-#wal_decode_buffer_size = 512kB # lookahead window used for prefetching
- # (change requires restart)
-
-# - Archiving -
-
-#archive_mode = off # enables archiving; off, on, or always
- # (change requires restart)
-#archive_library = '' # library to use to archive a WAL file
- # (empty string indicates archive_command should
- # be used)
-#archive_command = '' # command to use to archive a WAL file
- # placeholders: %p = path of file to archive
- # %f = file name only
- # e.g. 'test ! -f /mnt/server/archivedir/%f && cp %p /mnt/server/archivedir/%f'
-#archive_timeout = 0 # force a WAL file switch after this
- # number of seconds; 0 disables
-
-# - Archive Recovery -
-
-# These are only used in recovery mode.
-
-#restore_command = '' # command to use to restore an archived WAL file
- # placeholders: %p = path of file to restore
- # %f = file name only
- # e.g. 'cp /mnt/server/archivedir/%f %p'
-#archive_cleanup_command = '' # command to execute at every restartpoint
-#recovery_end_command = '' # command to execute at completion of recovery
-
-# - Recovery Target -
-
-# Set these only when performing a targeted recovery.
-
-#recovery_target = '' # 'immediate' to end recovery as soon as a
- # consistent state is reached
- # (change requires restart)
-#recovery_target_name = '' # the named restore point to which recovery will proceed
- # (change requires restart)
-#recovery_target_time = '' # the time stamp up to which recovery will proceed
- # (change requires restart)
-#recovery_target_xid = '' # the transaction ID up to which recovery will proceed
- # (change requires restart)
-#recovery_target_lsn = '' # the WAL LSN up to which recovery will proceed
- # (change requires restart)
-#recovery_target_inclusive = on # Specifies whether to stop:
- # just after the specified recovery target (on)
- # just before the recovery target (off)
- # (change requires restart)
-#recovery_target_timeline = 'latest' # 'current', 'latest', or timeline ID
- # (change requires restart)
-#recovery_target_action = 'pause' # 'pause', 'promote', 'shutdown'
- # (change requires restart)
-
-# - WAL Summarization -
-
-#summarize_wal = off # run WAL summarizer process?
-#wal_summary_keep_time = '10d' # when to remove old summary files, 0 = never
-
-
-#------------------------------------------------------------------------------
-# REPLICATION
-#------------------------------------------------------------------------------
-
-# - Sending Servers -
-
-# Set these on the primary and on any standby that will send replication data.
-
-#max_wal_senders = 10 # max number of walsender processes
- # (change requires restart)
-#max_replication_slots = 10 # max number of replication slots
- # (change requires restart)
-#wal_keep_size = 0 # in megabytes; 0 disables
-#max_slot_wal_keep_size = -1 # in megabytes; -1 disables
-#idle_replication_slot_timeout = 0 # in seconds; 0 disables
-#wal_sender_timeout = 60s # in milliseconds; 0 disables
-#track_commit_timestamp = off # collect timestamp of transaction commit
- # (change requires restart)
-
-# - Primary Server -
-
-# These settings are ignored on a standby server.
-
-#synchronous_standby_names = '' # standby servers that provide sync rep
- # method to choose sync standbys, number of sync standbys,
- # and comma-separated list of application_name
- # from standby(s); '*' = all
-#synchronized_standby_slots = '' # streaming replication standby server slot
- # names that logical walsender processes will wait for
-
-# - Standby Servers -
-
-# These settings are ignored on a primary server.
-
-#primary_conninfo = '' # connection string to sending server
-#primary_slot_name = '' # replication slot on sending server
-#hot_standby = on # "off" disallows queries during recovery
- # (change requires restart)
-#max_standby_archive_delay = 30s # max delay before canceling queries
- # when reading WAL from archive;
- # -1 allows indefinite delay
-#max_standby_streaming_delay = 30s # max delay before canceling queries
- # when reading streaming WAL;
- # -1 allows indefinite delay
-#wal_receiver_create_temp_slot = off # create temp slot if primary_slot_name
- # is not set
-#wal_receiver_status_interval = 10s # send replies at least this often
- # 0 disables
-#hot_standby_feedback = off # send info from standby to prevent
- # query conflicts
-#wal_receiver_timeout = 60s # time that receiver waits for
- # communication from primary
- # in milliseconds; 0 disables
-#wal_retrieve_retry_interval = 5s # time to wait before retrying to
- # retrieve WAL after a failed attempt
-#recovery_min_apply_delay = 0 # minimum delay for applying changes during recovery
-#sync_replication_slots = off # enables slot synchronization on the physical standby from the primary
-
-# - Subscribers -
-
-# These settings are ignored on a publisher.
-
-#max_active_replication_origins = 10 # max number of active replication origins
- # (change requires restart)
-#max_logical_replication_workers = 4 # taken from max_worker_processes
- # (change requires restart)
-#max_sync_workers_per_subscription = 2 # taken from max_logical_replication_workers
-#max_parallel_apply_workers_per_subscription = 2 # taken from max_logical_replication_workers
-
-
-#------------------------------------------------------------------------------
-# QUERY TUNING
-#------------------------------------------------------------------------------
-
-# - Planner Method Configuration -
-
-#enable_async_append = on
-#enable_bitmapscan = on
-#enable_gathermerge = on
-#enable_hashagg = on
-#enable_hashjoin = on
-#enable_incremental_sort = on
-#enable_indexscan = on
-#enable_indexonlyscan = on
-#enable_material = on
-#enable_memoize = on
-#enable_mergejoin = on
-#enable_nestloop = on
-#enable_parallel_append = on
-#enable_parallel_hash = on
-#enable_partition_pruning = on
-#enable_partitionwise_join = off
-#enable_partitionwise_aggregate = off
-#enable_presorted_aggregate = on
-#enable_seqscan = on
-#enable_sort = on
-#enable_tidscan = on
-#enable_group_by_reordering = on
-#enable_distinct_reordering = on
-#enable_self_join_elimination = on
-
-# - Planner Cost Constants -
-
-#seq_page_cost = 1.0 # measured on an arbitrary scale
-#random_page_cost = 4.0 # same scale as above
-#cpu_tuple_cost = 0.01 # same scale as above
-#cpu_index_tuple_cost = 0.005 # same scale as above
-#cpu_operator_cost = 0.0025 # same scale as above
-#parallel_setup_cost = 1000.0 # same scale as above
-#parallel_tuple_cost = 0.1 # same scale as above
-#min_parallel_table_scan_size = 8MB
-#min_parallel_index_scan_size = 512kB
-#effective_cache_size = 4GB
-
-#jit_above_cost = 100000 # perform JIT compilation if available
- # and query more expensive than this;
- # -1 disables
-#jit_inline_above_cost = 500000 # inline small functions if query is
- # more expensive than this; -1 disables
-#jit_optimize_above_cost = 500000 # use expensive JIT optimizations if
- # query is more expensive than this;
- # -1 disables
-
-# - Genetic Query Optimizer -
-
-#geqo = on
-#geqo_threshold = 12
-#geqo_effort = 5 # range 1-10
-#geqo_pool_size = 0 # selects default based on effort
-#geqo_generations = 0 # selects default based on effort
-#geqo_selection_bias = 2.0 # range 1.5-2.0
-#geqo_seed = 0.0 # range 0.0-1.0
-
-# - Other Planner Options -
-
-#default_statistics_target = 100 # range 1-10000
-#constraint_exclusion = partition # on, off, or partition
-#cursor_tuple_fraction = 0.1 # range 0.0-1.0
-#from_collapse_limit = 8
-#jit = on # allow JIT compilation
-#join_collapse_limit = 8 # 1 disables collapsing of explicit
- # JOIN clauses
-#plan_cache_mode = auto # auto, force_generic_plan or
- # force_custom_plan
-#recursive_worktable_factor = 10.0 # range 0.001-1000000
-
-
-#------------------------------------------------------------------------------
-# REPORTING AND LOGGING
-#------------------------------------------------------------------------------
-
-# - Where to Log -
-
-#log_destination = 'stderr' # Valid values are combinations of
- # stderr, csvlog, jsonlog, syslog, and
- # eventlog, depending on platform.
- # csvlog and jsonlog require
- # logging_collector to be on.
-
-# This is used when logging to stderr:
-#logging_collector = off # Enable capturing of stderr, jsonlog,
- # and csvlog into log files. Required
- # to be on for csvlogs and jsonlogs.
- # (change requires restart)
-
-# These are only used if logging_collector is on:
-#log_directory = 'log' # directory where log files are written,
- # can be absolute or relative to PGDATA
-#log_filename = 'postgresql-%Y-%m-%d_%H%M%S.log' # log file name pattern,
- # can include strftime() escapes
-#log_file_mode = 0600 # creation mode for log files,
- # begin with 0 to use octal notation
-#log_rotation_age = 1d # Automatic rotation of logfiles will
- # happen after that time. 0 disables.
-#log_rotation_size = 10MB # Automatic rotation of logfiles will
- # happen after that much log output.
- # 0 disables.
-#log_truncate_on_rotation = off # If on, an existing log file with the
- # same name as the new log file will be
- # truncated rather than appended to.
- # But such truncation only occurs on
- # time-driven rotation, not on restarts
- # or size-driven rotation. Default is
- # off, meaning append to existing files
- # in all cases.
-
-# These are relevant when logging to syslog:
-#syslog_facility = 'LOCAL0'
-#syslog_ident = 'postgres'
-#syslog_sequence_numbers = on
-#syslog_split_messages = on
-
-# This is only relevant when logging to eventlog (Windows):
-# (change requires restart)
-#event_source = 'PostgreSQL'
-
-# - When to Log -
-
-#log_min_messages = warning # values in order of decreasing detail:
- # debug5
- # debug4
- # debug3
- # debug2
- # debug1
- # info
- # notice
- # warning
- # error
- # log
- # fatal
- # panic
-
-#log_min_error_statement = error # values in order of decreasing detail:
- # debug5
- # debug4
- # debug3
- # debug2
- # debug1
- # info
- # notice
- # warning
- # error
- # log
- # fatal
- # panic (effectively off)
-
-#log_min_duration_statement = -1 # -1 is disabled, 0 logs all statements
- # and their durations, > 0 logs only
- # statements running at least this number
- # of milliseconds
-
-#log_min_duration_sample = -1 # -1 is disabled, 0 logs a sample of statements
- # and their durations, > 0 logs only a sample of
- # statements running at least this number
- # of milliseconds;
- # sample fraction is determined by log_statement_sample_rate
-
-#log_statement_sample_rate = 1.0 # fraction of logged statements exceeding
- # log_min_duration_sample to be logged;
- # 1.0 logs all such statements, 0.0 never logs
-
-
-#log_transaction_sample_rate = 0.0 # fraction of transactions whose statements
- # are logged regardless of their duration; 1.0 logs all
- # statements from all transactions, 0.0 never logs
-
-#log_startup_progress_interval = 10s # Time between progress updates for
- # long-running startup operations.
- # 0 disables the feature, > 0 indicates
- # the interval in milliseconds.
-
-# - What to Log -
-
-#debug_print_parse = off
-#debug_print_rewritten = off
-#debug_print_plan = off
-#debug_pretty_print = on
-#log_autovacuum_min_duration = 10min # log autovacuum activity;
- # -1 disables, 0 logs all actions and
- # their durations, > 0 logs only
- # actions running at least this number
- # of milliseconds.
-#log_checkpoints = on
-#log_connections = '' # log aspects of connection setup
- # options include receipt, authentication, authorization,
- # setup_durations, and all to log all of these aspects
-#log_disconnections = off
-#log_duration = off # log statement duration
-#log_error_verbosity = default # terse, default, or verbose messages
-#log_hostname = off
-#log_line_prefix = '%m [%p] ' # special values:
- # %a = application name
- # %u = user name
- # %d = database name
- # %r = remote host and port
- # %h = remote host
- # %L = local address
- # %b = backend type
- # %p = process ID
- # %P = process ID of parallel group leader
- # %t = timestamp without milliseconds
- # %m = timestamp with milliseconds
- # %n = timestamp with milliseconds (as a Unix epoch)
- # %Q = query ID (0 if none or not computed)
- # %i = command tag
- # %e = SQL state
- # %c = session ID
- # %l = session line number
- # %s = session start timestamp
- # %v = virtual transaction ID
- # %x = transaction ID (0 if none)
- # %q = stop here in non-session
- # processes
- # %% = '%'
- # e.g. '<%u%%%d> '
-#log_lock_waits = off # log lock waits >= deadlock_timeout
-#log_lock_failures = off # log lock failures
-#log_recovery_conflict_waits = off # log standby recovery conflict waits
- # >= deadlock_timeout
-#log_parameter_max_length = -1 # when logging statements, limit logged
- # bind-parameter values to N bytes;
- # -1 means print in full, 0 disables
-#log_parameter_max_length_on_error = 0 # when logging an error, limit logged
- # bind-parameter values to N bytes;
- # -1 means print in full, 0 disables
-#log_statement = 'none' # none, ddl, mod, all
-#log_replication_commands = off
-#log_temp_files = -1 # log temporary files equal or larger
- # than the specified size in kilobytes;
- # -1 disables, 0 logs all temp files
-log_timezone = 'Etc/UTC'
-
-# - Process Title -
-
-#cluster_name = '' # added to process titles if nonempty
- # (change requires restart)
-#update_process_title = on
-
-
-#------------------------------------------------------------------------------
-# STATISTICS
-#------------------------------------------------------------------------------
-
-# - Cumulative Query and Index Statistics -
-
-#track_activities = on
-#track_activity_query_size = 1024 # (change requires restart)
-#track_counts = on
-#track_cost_delay_timing = off
-#track_io_timing = off
-#track_wal_io_timing = off
-#track_functions = none # none, pl, all
-#stats_fetch_consistency = cache # cache, none, snapshot
-
-
-# - Monitoring -
-
-#compute_query_id = auto
-#log_statement_stats = off
-#log_parser_stats = off
-#log_planner_stats = off
-#log_executor_stats = off
-
-
-#------------------------------------------------------------------------------
-# VACUUMING
-#------------------------------------------------------------------------------
-
-# - Automatic Vacuuming -
-
-#autovacuum = on # Enable autovacuum subprocess? 'on'
- # requires track_counts to also be on.
-autovacuum_worker_slots = 16 # autovacuum worker slots to allocate
- # (change requires restart)
-#autovacuum_max_workers = 3 # max number of autovacuum subprocesses
-#autovacuum_naptime = 1min # time between autovacuum runs
-#autovacuum_vacuum_threshold = 50 # min number of row updates before
- # vacuum
-#autovacuum_vacuum_insert_threshold = 1000 # min number of row inserts
- # before vacuum; -1 disables insert
- # vacuums
-#autovacuum_analyze_threshold = 50 # min number of row updates before
- # analyze
-#autovacuum_vacuum_scale_factor = 0.2 # fraction of table size before vacuum
-#autovacuum_vacuum_insert_scale_factor = 0.2 # fraction of unfrozen pages
- # before insert vacuum
-#autovacuum_analyze_scale_factor = 0.1 # fraction of table size before analyze
-#autovacuum_vacuum_max_threshold = 100000000 # max number of row updates
- # before vacuum; -1 disables max
- # threshold
-#autovacuum_freeze_max_age = 200000000 # maximum XID age before forced vacuum
- # (change requires restart)
-#autovacuum_multixact_freeze_max_age = 400000000 # maximum multixact age
- # before forced vacuum
- # (change requires restart)
-#autovacuum_vacuum_cost_delay = 2ms # default vacuum cost delay for
- # autovacuum, in milliseconds;
- # -1 means use vacuum_cost_delay
-#autovacuum_vacuum_cost_limit = -1 # default vacuum cost limit for
- # autovacuum, -1 means use
- # vacuum_cost_limit
-
-# - Cost-Based Vacuum Delay -
-
-#vacuum_cost_delay = 0 # 0-100 milliseconds (0 disables)
-#vacuum_cost_page_hit = 1 # 0-10000 credits
-#vacuum_cost_page_miss = 2 # 0-10000 credits
-#vacuum_cost_page_dirty = 20 # 0-10000 credits
-#vacuum_cost_limit = 200 # 1-10000 credits
-
-# - Default Behavior -
-
-#vacuum_truncate = on # enable truncation after vacuum
-
-# - Freezing -
-
-#vacuum_freeze_table_age = 150000000
-#vacuum_freeze_min_age = 50000000
-#vacuum_failsafe_age = 1600000000
-#vacuum_multixact_freeze_table_age = 150000000
-#vacuum_multixact_freeze_min_age = 5000000
-#vacuum_multixact_failsafe_age = 1600000000
-#vacuum_max_eager_freeze_failure_rate = 0.03 # 0 disables eager scanning
-
-#------------------------------------------------------------------------------
-# CLIENT CONNECTION DEFAULTS
-#------------------------------------------------------------------------------
-
-# - Statement Behavior -
-
-#client_min_messages = notice # values in order of decreasing detail:
- # debug5
- # debug4
- # debug3
- # debug2
- # debug1
- # log
- # notice
- # warning
- # error
-#search_path = '"$user", public' # schema names
-#row_security = on
-#default_table_access_method = 'heap'
-#default_tablespace = '' # a tablespace name, '' uses the default
-#default_toast_compression = 'pglz' # 'pglz' or 'lz4'
-#temp_tablespaces = '' # a list of tablespace names, '' uses
- # only default tablespace
-#check_function_bodies = on
-#default_transaction_isolation = 'read committed'
-#default_transaction_read_only = off
-#default_transaction_deferrable = off
-#session_replication_role = 'origin'
-#statement_timeout = 0 # in milliseconds, 0 is disabled
-#transaction_timeout = 0 # in milliseconds, 0 is disabled
-#lock_timeout = 0 # in milliseconds, 0 is disabled
-#idle_in_transaction_session_timeout = 0 # in milliseconds, 0 is disabled
-#idle_session_timeout = 0 # in milliseconds, 0 is disabled
-#bytea_output = 'hex' # hex, escape
-#xmlbinary = 'base64'
-#xmloption = 'content'
-#gin_pending_list_limit = 4MB
-#createrole_self_grant = '' # set and/or inherit
-#event_triggers = on
-
-# - Locale and Formatting -
-
-datestyle = 'iso, mdy'
-#intervalstyle = 'postgres'
-timezone = 'Etc/UTC'
-#timezone_abbreviations = 'Default' # Select the set of available time zone
- # abbreviations. Currently, there are
- # Default
- # Australia (historical usage)
- # India
- # You can create your own file in
- # share/timezonesets/.
-#extra_float_digits = 1 # min -15, max 3; any value >0 actually
- # selects precise output mode
-#client_encoding = sql_ascii # actually, defaults to database
- # encoding
-
-# These settings are initialized by initdb, but they can be changed.
-lc_messages = 'en_US.utf8' # locale for system error message
- # strings
-lc_monetary = 'en_US.utf8' # locale for monetary formatting
-lc_numeric = 'en_US.utf8' # locale for number formatting
-lc_time = 'en_US.utf8' # locale for time formatting
-
-#icu_validation_level = warning # report ICU locale validation
- # errors at the given level
-
-# default configuration for text search
-default_text_search_config = 'pg_catalog.english'
-
-# - Shared Library Preloading -
-
-#local_preload_libraries = ''
-#session_preload_libraries = ''
-#shared_preload_libraries = '' # (change requires restart)
-#jit_provider = 'llvmjit' # JIT library to use
-
-# - Other Defaults -
-
-#dynamic_library_path = '$libdir'
-#extension_control_path = '$system'
-#gin_fuzzy_search_limit = 0
-
-
-#------------------------------------------------------------------------------
-# LOCK MANAGEMENT
-#------------------------------------------------------------------------------
-
-#deadlock_timeout = 1s
-#max_locks_per_transaction = 64 # min 10
- # (change requires restart)
-#max_pred_locks_per_transaction = 64 # min 10
- # (change requires restart)
-#max_pred_locks_per_relation = -2 # negative values mean
- # (max_pred_locks_per_transaction
- # / -max_pred_locks_per_relation) - 1
-#max_pred_locks_per_page = 2 # min 0
-
-
-#------------------------------------------------------------------------------
-# VERSION AND PLATFORM COMPATIBILITY
-#------------------------------------------------------------------------------
-
-# - Previous PostgreSQL Versions -
-
-#array_nulls = on
-#backslash_quote = safe_encoding # on, off, or safe_encoding
-#escape_string_warning = on
-#lo_compat_privileges = off
-#quote_all_identifiers = off
-#standard_conforming_strings = on
-#synchronize_seqscans = on
-
-# - Other Platforms and Clients -
-
-#transform_null_equals = off
-#allow_alter_system = on
-
-
-#------------------------------------------------------------------------------
-# ERROR HANDLING
-#------------------------------------------------------------------------------
-
-#exit_on_error = off # terminate session on any error?
-#restart_after_crash = on # reinitialize after backend crash?
-#data_sync_retry = off # retry or panic on failure to fsync
- # data?
- # (change requires restart)
-#recovery_init_sync_method = fsync # fsync, syncfs (Linux 5.8+)
-
-
-#------------------------------------------------------------------------------
-# CONFIG FILE INCLUDES
-#------------------------------------------------------------------------------
-
-# These options allow settings to be loaded from files other than the
-# default postgresql.conf. Note that these are directives, not variable
-# assignments, so they can usefully be given more than once.
-
-#include_dir = '...' # include files ending in '.conf' from
- # a directory, e.g., 'conf.d'
-#include_if_exists = '...' # include file only if it exists
-#include = '...' # include file
-
-
-#------------------------------------------------------------------------------
-# CUSTOMIZED OPTIONS
-#------------------------------------------------------------------------------
-
-# Add settings for extensions here
diff --git a/pg_data/postmaster.opts b/pg_data/postmaster.opts
deleted file mode 100644
index 8b6d9177..00000000
--- a/pg_data/postmaster.opts
+++ /dev/null
@@ -1 +0,0 @@
-/usr/lib/postgresql/18/bin/postgres
diff --git a/pg_data/postmaster.pid b/pg_data/postmaster.pid
deleted file mode 100644
index 1a5a3786..00000000
--- a/pg_data/postmaster.pid
+++ /dev/null
@@ -1,8 +0,0 @@
-1
-/var/lib/postgresql/18/docker
-1772147428
-5432
-/var/run/postgresql
-*
- 128301 0
-ready
diff --git a/public/service-worker.js b/public/service-worker.js
index 3334a5ae..af1f44d9 100644
--- a/public/service-worker.js
+++ b/public/service-worker.js
@@ -1,9 +1,9 @@
self.addEventListener('install', () => {
- console.log('DocuSeal App installed')
+ console.log('App installed')
})
self.addEventListener('activate', () => {
- console.log('DocuSeal App activated')
+ console.log('App activated')
})
self.addEventListener('fetch', (event) => {