From 033c373bee9da83d9e52fe4abb83b45e916f6701 Mon Sep 17 00:00:00 2001 From: Ethan McCutchen Date: Fri, 10 Jan 2025 14:44:26 -0500 Subject: [PATCH 01/21] add fix for blank codenames in schema migration --- .../data/schema/20241017160402_unique_codename.rb | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/card/mod/core/data/schema/20241017160402_unique_codename.rb b/card/mod/core/data/schema/20241017160402_unique_codename.rb index 7a29cc5d24..76165b5785 100644 --- a/card/mod/core/data/schema/20241017160402_unique_codename.rb +++ b/card/mod/core/data/schema/20241017160402_unique_codename.rb @@ -2,6 +2,7 @@ class UniqueCodename < Cardio::Migration::Schema def up + remove_blank_codenames remove_index :cards, name: "cards_codename_index" add_index :cards, :codename, name: "cards_codename_index", unique: true end @@ -10,4 +11,14 @@ def down remove_index :cards, name: "cards_codename_index" add_index :cards, :codename, name: "cards_codename_index" end + + private + + def remove_blank_codenames + connection.execute "UPDATE cards SET codename = null where codename = ''" + end + + def connection + ActiveRecord::Base.lease_connection + end end From 0e5da4380b4043f36ab9fee7a1ead7fbb72373eb Mon Sep 17 00:00:00 2001 From: Ethan McCutchen Date: Sat, 11 Jan 2025 19:39:19 -0500 Subject: [PATCH 02/21] fix connection bug in unique codenames migration --- .../mod/core/data/schema/20241017160402_unique_codename.rb | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/card/mod/core/data/schema/20241017160402_unique_codename.rb b/card/mod/core/data/schema/20241017160402_unique_codename.rb index 76165b5785..6670013fbb 100644 --- a/card/mod/core/data/schema/20241017160402_unique_codename.rb +++ b/card/mod/core/data/schema/20241017160402_unique_codename.rb @@ -15,10 +15,7 @@ def down private def remove_blank_codenames - connection.execute "UPDATE cards SET codename = null where codename = ''" - end - - def connection - ActiveRecord::Base.lease_connection + Cardio::Record.connection + .execute "UPDATE cards SET codename = null where codename = ''" end end From 818a11fad20da181ae8190d02d46b8b7ed108654 Mon Sep 17 00:00:00 2001 From: Ethan McCutchen Date: Mon, 13 Jan 2025 15:31:49 -0500 Subject: [PATCH 03/21] attempt to fix graphiql routing bug by not overwriting config files --- docker/repos/decko-k8s.dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/repos/decko-k8s.dockerfile b/docker/repos/decko-k8s.dockerfile index 5e89791955..a1fcacf440 100644 --- a/docker/repos/decko-k8s.dockerfile +++ b/docker/repos/decko-k8s.dockerfile @@ -28,7 +28,7 @@ WORKDIR /home/app/decko COPY --chown=app:app . . -RUN cp -R vendor/decko/docker/template/config/* config +RUN cp -Rn vendor/decko/docker/template/config/* config # && \ # cp -R config/sample/* config From 50b72f6bc7e8cc7ba75df501f82d795082162a91 Mon Sep 17 00:00:00 2001 From: Ethan McCutchen Date: Tue, 14 Jan 2025 15:50:41 -0500 Subject: [PATCH 04/21] add support for :noindex --- mod/format/data/real.yml | 5 +++++ mod/format/set/all/html/head.rb | 11 ++++++++++- mod/format/set/all/html/meta_tags.haml | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/mod/format/data/real.yml b/mod/format/data/real.yml index f31368d931..1afba0e403 100644 --- a/mod/format/data/real.yml +++ b/mod/format/data/real.yml @@ -65,3 +65,8 @@ :self: :fields: :read: Anyone + +- :name: "*noindex" + :codename: noindex + :type: :list + diff --git a/mod/format/set/all/html/head.rb b/mod/format/set/all/html/head.rb index 5f80cc1b52..27c4645421 100644 --- a/mod/format/set/all/html/head.rb +++ b/mod/format/set/all/html/head.rb @@ -9,9 +9,14 @@ %i[all style], %i[all style asset_output], %i[all script], - %i[script right content_options] + %i[script right content_options], + :noindex ] +def noindex? + unknown? || :noindex.card.include_item?(name) +end + format do view :page_title, unknown: true, perms: :none do title_parts = [Card::Rule.global_setting(:title)] @@ -21,6 +26,8 @@ end format :html do + delegate :noindex?, to: :card + view :head, unknown: true, perms: :none, cache: :yes do basket[:head_views].map { |viewname| render viewname }.flatten.compact.join "\n" end @@ -55,6 +62,8 @@ [nest(:style_mods, view: :remote_style_tags), head_stylesheet_path] end + private + def head_stylesheet_path @head_stylesheet_path ||= tag "link", media: "all", diff --git a/mod/format/set/all/html/meta_tags.haml b/mod/format/set/all/html/meta_tags.haml index 2ef9ad782b..6591d17c17 100644 --- a/mod/format/set/all/html/meta_tags.haml +++ b/mod/format/set/all/html/meta_tags.haml @@ -1,4 +1,4 @@ %meta{ charset: "UTF-8" } %meta{ content: "width=device-width, initial-scale=1.0", name: "viewport" } -- if card.unknown? +- if noindex? %meta{ content: "noindex", name: "robots"} From a4050ba93ad1f84f7378b227c2b4470b149ca661 Mon Sep 17 00:00:00 2001 From: Ethan McCutchen Date: Fri, 24 Jan 2025 14:45:12 -0500 Subject: [PATCH 05/21] no_layout and email css --- mod/defaults/data/real.yml | 4 ++-- mod/email/data/real.yml | 18 ++++++++---------- mod/email/set/abstract/test_context.rb | 16 ++++++++-------- mod/email/set/right/html_message.rb | 14 ++++++++++++++ mod/email/set/right/html_message/styled.haml | 4 ++++ mod/format/set/all/html/show.rb | 14 ++++++++++++-- mod/format/set/all/html/wrap.rb | 2 +- 7 files changed, 49 insertions(+), 23 deletions(-) create mode 100644 mod/email/set/right/html_message/styled.haml diff --git a/mod/defaults/data/real.yml b/mod/defaults/data/real.yml index 1eb8320a55..a05de5fa48 100644 --- a/mod/defaults/data/real.yml +++ b/mod/defaults/data/real.yml @@ -84,8 +84,8 @@

Help Texts

{{:help|bar}}

Emails

-

Here are the current [[Email Templates|Email templates]] for your site.

-

{{Email Templates+*type+by update|content}}

+

Here are the current [[:email_template|Email templates]] for your site.

+

{{:email_template+:type+:by_update|content}}

- :name: - :eagle diff --git a/mod/email/data/real.yml b/mod/email/data/real.yml index a1a6280368..a1efd3ee13 100644 --- a/mod/email/data/real.yml +++ b/mod/email/data/real.yml @@ -9,16 +9,14 @@ :type: :fields: :structure: |- -

- {{+*from | labeled | link}} - {{+*to | labeled | link}} - {{+*cc | labeled | link}} - {{+*bcc | labeled | link}} - {{+*subject | titled}} - {{+*html message | titled}} - {{+*text message | titled}} - {{+*attach | titled}} -

" + {{+:from | labeled | link}} + {{+:to | labeled | link}} + {{+:cc | labeled | link}} + {{+:bcc | labeled | link}} + {{+:subject | titled}} + {{+:html_message | titled}} + {{+:text_message | titled}} + {{+:attach | titled}} - :name: "*to" :codename: to diff --git a/mod/email/set/abstract/test_context.rb b/mod/email/set/abstract/test_context.rb index 12a3fa096e..d5d20694f5 100644 --- a/mod/email/set/abstract/test_context.rb +++ b/mod/email/set/abstract/test_context.rb @@ -13,15 +13,15 @@ def test_context_card end format :email_html do - view :core do - voo.hide! :test_context - super() - end -end -format :email_text do view :core do - voo.hide! :test_context - super() + process_content render_raw end end + +# format :email_text do +# view :core do +# voo.hide! :test_context +# super() +# end +# end diff --git a/mod/email/set/right/html_message.rb b/mod/email/set/right/html_message.rb index 7eb6dc26cb..85a4e8afbd 100644 --- a/mod/email/set/right/html_message.rb +++ b/mod/email/set/right/html_message.rb @@ -4,6 +4,20 @@ def clean_html? false end +format :html do + wrapper :styled_email do + haml :styled, body: interior + end + + view :core, wrap: :styled_email do + super() + end + + view :email_css do + "" + end +end + format :email_html do def email_content context content = contextual_content context diff --git a/mod/email/set/right/html_message/styled.haml b/mod/email/set/right/html_message/styled.haml new file mode 100644 index 0000000000..c9a09d9db0 --- /dev/null +++ b/mod/email/set/right/html_message/styled.haml @@ -0,0 +1,4 @@ +%style + = render_email_css +%body + = interior \ No newline at end of file diff --git a/mod/format/set/all/html/show.rb b/mod/format/set/all/html/show.rb index 15d2d39ce5..e02549402d 100644 --- a/mod/format/set/all/html/show.rb +++ b/mod/format/set/all/html/show.rb @@ -1,7 +1,7 @@ format :html do def show view, args content = send show_method, view, args - Env.ajax? ? content : wrap_with_html_page(content) + Env.ajax? || no_layout? ? content : wrap_with_html_page(content) end wrapper :html_page do @@ -9,7 +9,7 @@ def show view, args - #{nest card.rule_card(:head), view: :head_content} + #{head_content} #{interior} @@ -18,6 +18,10 @@ def show view, args private + def head_content + nest card.rule_card(:head), view: :head_content + end + def show_without_page_layout view, args @main = true if params[:is_main] || args[:main] args.delete(:layout) @@ -34,6 +38,12 @@ def show_method end def show_layout? + return false if no_layout? + !Env.ajax? || params[:layout] end + + def no_layout? + params[:layout] == "none" + end end diff --git a/mod/format/set/all/html/wrap.rb b/mod/format/set/all/html/wrap.rb index 81cc8b5f45..fc6127e4e5 100644 --- a/mod/format/set/all/html/wrap.rb +++ b/mod/format/set/all/html/wrap.rb @@ -122,7 +122,7 @@ def wrap_main end def no_main_wrap? - Env.ajax? || params[:layout] == "none" + Env.ajax? || no_layout? end def wrap_with tag, content_or_args={}, html_args={}, &block From c5232e32042080de62b66feece3cc3149374b40e Mon Sep 17 00:00:00 2001 From: Ethan McCutchen Date: Mon, 27 Jan 2025 15:52:31 -0500 Subject: [PATCH 06/21] html message handling to wikirate --- mod/email/set/right/html_message.rb | 14 -------------- mod/email/set/right/html_message/styled.haml | 4 ---- 2 files changed, 18 deletions(-) delete mode 100644 mod/email/set/right/html_message/styled.haml diff --git a/mod/email/set/right/html_message.rb b/mod/email/set/right/html_message.rb index 85a4e8afbd..7eb6dc26cb 100644 --- a/mod/email/set/right/html_message.rb +++ b/mod/email/set/right/html_message.rb @@ -4,20 +4,6 @@ def clean_html? false end -format :html do - wrapper :styled_email do - haml :styled, body: interior - end - - view :core, wrap: :styled_email do - super() - end - - view :email_css do - "" - end -end - format :email_html do def email_content context content = contextual_content context diff --git a/mod/email/set/right/html_message/styled.haml b/mod/email/set/right/html_message/styled.haml deleted file mode 100644 index c9a09d9db0..0000000000 --- a/mod/email/set/right/html_message/styled.haml +++ /dev/null @@ -1,4 +0,0 @@ -%style - = render_email_css -%body - = interior \ No newline at end of file From 5c666670b5c3e404540ed203eccbe376e86fd431 Mon Sep 17 00:00:00 2001 From: Ethan McCutchen Date: Mon, 3 Feb 2025 18:04:45 -0500 Subject: [PATCH 07/21] previous_location handling cleanup --- card/lib/card/env/location_history.rb | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/card/lib/card/env/location_history.rb b/card/lib/card/env/location_history.rb index d36c7dc9f1..6ab0c9cc72 100644 --- a/card/lib/card/env/location_history.rb +++ b/card/lib/card/env/location_history.rb @@ -13,19 +13,11 @@ def save_location card return unless save_location?(card) discard_locations_for card - session[:previous_location] = - Env::Location.card_path card.name.url_key - location_history.push previous_location - end - - def save_location? card - !Env.ajax? && Env.html? && card.known? && (card.codename != :signin) + location_history.push location_for_history(card) end def previous_location - return unless location_history - - session[:previous_location] ||= location_history.last + location_history&.last end def discard_locations_for card @@ -35,7 +27,6 @@ def discard_locations_for card url_key.to_name.key == card.key end end.compact - session[:previous_location] = nil end def save_interrupted_action uri @@ -46,9 +37,21 @@ def interrupted_action session.delete :interrupted_action end + + private + + def location_for_history card + Env::Location.card_path card.name.url_key + end + def url_key_for_location location %r{/([^/]*$)} =~ location ? Regexp.last_match[1] : nil end + + def save_location? card + !Env.ajax? && Env.html? && card.known? && (card.codename != :signin) + end + end end end From 4d102ac22de86293de48345ba46297b3551569fe Mon Sep 17 00:00:00 2001 From: Ethan McCutchen Date: Tue, 4 Feb 2025 14:40:13 -0500 Subject: [PATCH 08/21] only simple cards can have codenames --- card/mod/core/config/locales/en.yml | 1 + card/mod/core/set/all/codename.rb | 7 + card/mod/core/set_pattern/09_self.rb | 4 + .../script/asset_output}/file.js | 0 .../script/asset_output}/file.js | 0 .../script/asset_output}/file.js | 0 .../spec/set/abstract/media_spec.rb | 2 +- .../image}/image-icon.png | Bin .../image}/image-large.png | Bin .../image}/image-medium.png | Bin .../image}/image-original.png | Bin .../image}/image-small.png | Bin .../image}/image-icon.png | Bin .../image}/image-large.png | Bin .../image}/image-medium.png | Bin .../image}/image-original.png | Bin .../image}/image-small.png | Bin .../image}/image-icon.png | Bin .../image}/image-large.png | Bin .../image}/image-medium.png | Bin .../image}/image-original.png | Bin .../image}/image-small.png | Bin .../image}/image-icon.png | Bin .../image}/image-large.png | Bin .../image}/image-medium.png | Bin .../image}/image-original.png | Bin .../image}/image-small.png | Bin .../image}/image-icon.png | Bin .../image}/image-large.png | Bin .../image}/image-medium.png | Bin .../image}/image-original.png | Bin .../image}/image-small.png | Bin .../image}/image-icon.png | Bin .../image}/image-large.png | Bin .../image}/image-medium.png | Bin .../image}/image-original.png | Bin .../image}/image-small.png | Bin .../image}/image-icon.png | Bin .../image}/image-large.png | Bin .../image}/image-medium.png | Bin .../image}/image-original.png | Bin .../image}/image-small.png | Bin .../image}/image-icon.png | Bin .../image}/image-large.png | Bin .../image}/image-medium.png | Bin .../image}/image-original.png | Bin .../image}/image-small.png | Bin .../image}/image-icon.png | Bin .../image}/image-large.png | Bin .../image}/image-medium.png | Bin .../image}/image-original.png | Bin .../image}/image-small.png | Bin .../image}/image-icon.png | Bin .../image}/image-large.png | Bin .../image}/image-medium.png | Bin .../image}/image-original.png | Bin .../image}/image-small.png | Bin .../image}/image-icon.png | Bin .../image}/image-large.png | Bin .../image}/image-medium.png | Bin .../image}/image-original.png | Bin .../image}/image-small.png | Bin .../script/asset_output}/file.js | 0 .../files/paper_skin_image/image-icon.png | Bin 749 -> 0 bytes .../files/paper_skin_image/image-large.png | Bin 27695 -> 0 bytes .../files/paper_skin_image/image-medium.png | Bin 9095 -> 0 bytes .../files/paper_skin_image/image-original.png | Bin 25645 -> 0 bytes .../files/paper_skin_image/image-small.png | Bin 2545 -> 0 bytes .../image}/image-icon.png | Bin .../image}/image-large.png | Bin .../image}/image-medium.png | Bin .../image}/image-original.png | Bin .../image}/image-small.png | Bin .../files/readable_skin_image/image-icon.png | Bin 835 -> 0 bytes .../files/readable_skin_image/image-large.png | Bin 31635 -> 0 bytes .../readable_skin_image/image-medium.png | Bin 11994 -> 0 bytes .../readable_skin_image/image-original.png | Bin 28367 -> 0 bytes .../files/readable_skin_image/image-small.png | Bin 3404 -> 0 bytes .../image}/image-icon.png | Bin .../image}/image-large.png | Bin .../image}/image-medium.png | Bin .../image}/image-original.png | Bin .../image}/image-small.png | Bin .../image}/image-icon.png | Bin .../image}/image-large.png | Bin .../image}/image-medium.png | Bin .../image}/image-original.png | Bin .../image}/image-small.png | Bin .../image}/image-icon.png | Bin .../image}/image-large.png | Bin .../image}/image-medium.png | Bin .../image}/image-original.png | Bin .../image}/image-small.png | Bin .../image}/image-icon.png | Bin .../image}/image-large.png | Bin .../image}/image-medium.png | Bin .../image}/image-original.png | Bin .../image}/image-small.png | Bin .../image}/image-icon.png | Bin .../image}/image-large.png | Bin .../image}/image-medium.png | Bin .../image}/image-original.png | Bin .../image}/image-small.png | Bin .../image}/image-icon.png | Bin .../image}/image-large.png | Bin .../image}/image-medium.png | Bin .../image}/image-original.png | Bin .../image}/image-small.png | Bin .../image}/image-icon.png | Bin .../image}/image-large.png | Bin .../image}/image-medium.png | Bin .../image}/image-original.png | Bin .../image}/image-small.png | Bin .../image}/image-icon.png | Bin .../image}/image-large.png | Bin .../image}/image-medium.png | Bin .../image}/image-original.png | Bin .../image}/image-small.png | Bin .../image}/image-icon.png | Bin .../image}/image-large.png | Bin .../image}/image-medium.png | Bin .../image}/image-original.png | Bin .../image}/image-small.png | Bin mod/bootstrap/data/real.yml | 63 +- .../script/asset_output}/file.js | 0 .../set/abstract/attachment/coded.rb | 15 +- .../set/abstract/attachment/paths.rb | 2 +- .../set/abstract/attachment/coded_spec.rb | 2 +- mod/carrierwave/spec/set/type/image_spec.rb | 2 +- .../mod_date_script_asset_output/file.js | 0 .../file.js | 2820 ----------------- .../script/asset_output}/file.js | 0 .../type/email_template/email_config_spec.rb | 10 +- .../script/asset_output}/file.js | 0 .../script/asset_output}/file.js | 0 .../script/asset_output}/file.js | 0 .../script/asset_output}/file.js | 0 .../right/content_options.rb} | 0 .../script/asset_output}/file.js | 0 .../script/asset_output}/file.js | 0 .../script/local_machine_output}/file.js | 0 .../script/asset_output}/file.js | 0 .../script/asset_output}/file.js | 0 .../script/asset_output}/file.js | 0 .../script/local_machine_output}/file.js | 0 145 files changed, 54 insertions(+), 2874 deletions(-) rename mod/account/data/files/{mod_account_script_asset_output => mod_account/script/asset_output}/file.js (100%) rename mod/ace_editor/data/files/{mod_ace_editor_script_asset_output => mod_ace_editor/script/asset_output}/file.js (100%) rename mod/bar_and_box/data/files/{mod_bar_and_box_script_asset_output => mod_bar_and_box/script/asset_output}/file.js (100%) rename mod/bootstrap/data/files/{cerulean_skin_image => cerulean_skin/image}/image-icon.png (100%) rename mod/bootstrap/data/files/{cerulean_skin_image => cerulean_skin/image}/image-large.png (100%) rename mod/bootstrap/data/files/{cerulean_skin_image => cerulean_skin/image}/image-medium.png (100%) rename mod/bootstrap/data/files/{cerulean_skin_image => cerulean_skin/image}/image-original.png (100%) rename mod/bootstrap/data/files/{cerulean_skin_image => cerulean_skin/image}/image-small.png (100%) rename mod/bootstrap/data/files/{cosmo_skin_image => cosmo_skin/image}/image-icon.png (100%) rename mod/bootstrap/data/files/{cosmo_skin_image => cosmo_skin/image}/image-large.png (100%) rename mod/bootstrap/data/files/{cosmo_skin_image => cosmo_skin/image}/image-medium.png (100%) rename mod/bootstrap/data/files/{cosmo_skin_image => cosmo_skin/image}/image-original.png (100%) rename mod/bootstrap/data/files/{cosmo_skin_image => cosmo_skin/image}/image-small.png (100%) rename mod/bootstrap/data/files/{cyborg_skin_image => cyborg_skin/image}/image-icon.png (100%) rename mod/bootstrap/data/files/{cyborg_skin_image => cyborg_skin/image}/image-large.png (100%) rename mod/bootstrap/data/files/{cyborg_skin_image => cyborg_skin/image}/image-medium.png (100%) rename mod/bootstrap/data/files/{cyborg_skin_image => cyborg_skin/image}/image-original.png (100%) rename mod/bootstrap/data/files/{cyborg_skin_image => cyborg_skin/image}/image-small.png (100%) rename mod/bootstrap/data/files/{darkly_skin_image => darkly_skin/image}/image-icon.png (100%) rename mod/bootstrap/data/files/{darkly_skin_image => darkly_skin/image}/image-large.png (100%) rename mod/bootstrap/data/files/{darkly_skin_image => darkly_skin/image}/image-medium.png (100%) rename mod/bootstrap/data/files/{darkly_skin_image => darkly_skin/image}/image-original.png (100%) rename mod/bootstrap/data/files/{darkly_skin_image => darkly_skin/image}/image-small.png (100%) rename mod/bootstrap/data/files/{flatly_skin_image => flatly_skin/image}/image-icon.png (100%) rename mod/bootstrap/data/files/{flatly_skin_image => flatly_skin/image}/image-large.png (100%) rename mod/bootstrap/data/files/{flatly_skin_image => flatly_skin/image}/image-medium.png (100%) rename mod/bootstrap/data/files/{flatly_skin_image => flatly_skin/image}/image-original.png (100%) rename mod/bootstrap/data/files/{flatly_skin_image => flatly_skin/image}/image-small.png (100%) rename mod/bootstrap/data/files/{journal_skin_image => journal_skin/image}/image-icon.png (100%) rename mod/bootstrap/data/files/{journal_skin_image => journal_skin/image}/image-large.png (100%) rename mod/bootstrap/data/files/{journal_skin_image => journal_skin/image}/image-medium.png (100%) rename mod/bootstrap/data/files/{journal_skin_image => journal_skin/image}/image-original.png (100%) rename mod/bootstrap/data/files/{journal_skin_image => journal_skin/image}/image-small.png (100%) rename mod/bootstrap/data/files/{litera_skin_image => litera_skin/image}/image-icon.png (100%) rename mod/bootstrap/data/files/{litera_skin_image => litera_skin/image}/image-large.png (100%) rename mod/bootstrap/data/files/{litera_skin_image => litera_skin/image}/image-medium.png (100%) rename mod/bootstrap/data/files/{litera_skin_image => litera_skin/image}/image-original.png (100%) rename mod/bootstrap/data/files/{litera_skin_image => litera_skin/image}/image-small.png (100%) rename mod/bootstrap/data/files/{lumen_skin_image => lumen_skin/image}/image-icon.png (100%) rename mod/bootstrap/data/files/{lumen_skin_image => lumen_skin/image}/image-large.png (100%) rename mod/bootstrap/data/files/{lumen_skin_image => lumen_skin/image}/image-medium.png (100%) rename mod/bootstrap/data/files/{lumen_skin_image => lumen_skin/image}/image-original.png (100%) rename mod/bootstrap/data/files/{lumen_skin_image => lumen_skin/image}/image-small.png (100%) rename mod/bootstrap/data/files/{lux_skin_image => lux_skin/image}/image-icon.png (100%) rename mod/bootstrap/data/files/{lux_skin_image => lux_skin/image}/image-large.png (100%) rename mod/bootstrap/data/files/{lux_skin_image => lux_skin/image}/image-medium.png (100%) rename mod/bootstrap/data/files/{lux_skin_image => lux_skin/image}/image-original.png (100%) rename mod/bootstrap/data/files/{lux_skin_image => lux_skin/image}/image-small.png (100%) rename mod/bootstrap/data/files/{materia_skin_image => materia_skin/image}/image-icon.png (100%) rename mod/bootstrap/data/files/{materia_skin_image => materia_skin/image}/image-large.png (100%) rename mod/bootstrap/data/files/{materia_skin_image => materia_skin/image}/image-medium.png (100%) rename mod/bootstrap/data/files/{materia_skin_image => materia_skin/image}/image-original.png (100%) rename mod/bootstrap/data/files/{materia_skin_image => materia_skin/image}/image-small.png (100%) rename mod/bootstrap/data/files/{minty_skin_image => minty_skin/image}/image-icon.png (100%) rename mod/bootstrap/data/files/{minty_skin_image => minty_skin/image}/image-large.png (100%) rename mod/bootstrap/data/files/{minty_skin_image => minty_skin/image}/image-medium.png (100%) rename mod/bootstrap/data/files/{minty_skin_image => minty_skin/image}/image-original.png (100%) rename mod/bootstrap/data/files/{minty_skin_image => minty_skin/image}/image-small.png (100%) rename mod/bootstrap/data/files/{mod_bootstrap_script_asset_output => mod_bootstrap/script/asset_output}/file.js (100%) delete mode 100644 mod/bootstrap/data/files/paper_skin_image/image-icon.png delete mode 100644 mod/bootstrap/data/files/paper_skin_image/image-large.png delete mode 100644 mod/bootstrap/data/files/paper_skin_image/image-medium.png delete mode 100644 mod/bootstrap/data/files/paper_skin_image/image-original.png delete mode 100644 mod/bootstrap/data/files/paper_skin_image/image-small.png rename mod/bootstrap/data/files/{pulse_skin_image => pulse_skin/image}/image-icon.png (100%) rename mod/bootstrap/data/files/{pulse_skin_image => pulse_skin/image}/image-large.png (100%) rename mod/bootstrap/data/files/{pulse_skin_image => pulse_skin/image}/image-medium.png (100%) rename mod/bootstrap/data/files/{pulse_skin_image => pulse_skin/image}/image-original.png (100%) rename mod/bootstrap/data/files/{pulse_skin_image => pulse_skin/image}/image-small.png (100%) delete mode 100644 mod/bootstrap/data/files/readable_skin_image/image-icon.png delete mode 100644 mod/bootstrap/data/files/readable_skin_image/image-large.png delete mode 100644 mod/bootstrap/data/files/readable_skin_image/image-medium.png delete mode 100644 mod/bootstrap/data/files/readable_skin_image/image-original.png delete mode 100644 mod/bootstrap/data/files/readable_skin_image/image-small.png rename mod/bootstrap/data/files/{sandstone_skin_image => sandstone_skin/image}/image-icon.png (100%) rename mod/bootstrap/data/files/{sandstone_skin_image => sandstone_skin/image}/image-large.png (100%) rename mod/bootstrap/data/files/{sandstone_skin_image => sandstone_skin/image}/image-medium.png (100%) rename mod/bootstrap/data/files/{sandstone_skin_image => sandstone_skin/image}/image-original.png (100%) rename mod/bootstrap/data/files/{sandstone_skin_image => sandstone_skin/image}/image-small.png (100%) rename mod/bootstrap/data/files/{simplex_skin_image => simplex_skin/image}/image-icon.png (100%) rename mod/bootstrap/data/files/{simplex_skin_image => simplex_skin/image}/image-large.png (100%) rename mod/bootstrap/data/files/{simplex_skin_image => simplex_skin/image}/image-medium.png (100%) rename mod/bootstrap/data/files/{simplex_skin_image => simplex_skin/image}/image-original.png (100%) rename mod/bootstrap/data/files/{simplex_skin_image => simplex_skin/image}/image-small.png (100%) rename mod/bootstrap/data/files/{sketchy_skin_image => sketchy_skin/image}/image-icon.png (100%) rename mod/bootstrap/data/files/{sketchy_skin_image => sketchy_skin/image}/image-large.png (100%) rename mod/bootstrap/data/files/{sketchy_skin_image => sketchy_skin/image}/image-medium.png (100%) rename mod/bootstrap/data/files/{sketchy_skin_image => sketchy_skin/image}/image-original.png (100%) rename mod/bootstrap/data/files/{sketchy_skin_image => sketchy_skin/image}/image-small.png (100%) rename mod/bootstrap/data/files/{slate_skin_image => slate_skin/image}/image-icon.png (100%) rename mod/bootstrap/data/files/{slate_skin_image => slate_skin/image}/image-large.png (100%) rename mod/bootstrap/data/files/{slate_skin_image => slate_skin/image}/image-medium.png (100%) rename mod/bootstrap/data/files/{slate_skin_image => slate_skin/image}/image-original.png (100%) rename mod/bootstrap/data/files/{slate_skin_image => slate_skin/image}/image-small.png (100%) rename mod/bootstrap/data/files/{solar_skin_image => solar_skin/image}/image-icon.png (100%) rename mod/bootstrap/data/files/{solar_skin_image => solar_skin/image}/image-large.png (100%) rename mod/bootstrap/data/files/{solar_skin_image => solar_skin/image}/image-medium.png (100%) rename mod/bootstrap/data/files/{solar_skin_image => solar_skin/image}/image-original.png (100%) rename mod/bootstrap/data/files/{solar_skin_image => solar_skin/image}/image-small.png (100%) rename mod/bootstrap/data/files/{spacelab_skin_image => spacelab_skin/image}/image-icon.png (100%) rename mod/bootstrap/data/files/{spacelab_skin_image => spacelab_skin/image}/image-large.png (100%) rename mod/bootstrap/data/files/{spacelab_skin_image => spacelab_skin/image}/image-medium.png (100%) rename mod/bootstrap/data/files/{spacelab_skin_image => spacelab_skin/image}/image-original.png (100%) rename mod/bootstrap/data/files/{spacelab_skin_image => spacelab_skin/image}/image-small.png (100%) rename mod/bootstrap/data/files/{superhero_skin_image => superhero_skin/image}/image-icon.png (100%) rename mod/bootstrap/data/files/{superhero_skin_image => superhero_skin/image}/image-large.png (100%) rename mod/bootstrap/data/files/{superhero_skin_image => superhero_skin/image}/image-medium.png (100%) rename mod/bootstrap/data/files/{superhero_skin_image => superhero_skin/image}/image-original.png (100%) rename mod/bootstrap/data/files/{superhero_skin_image => superhero_skin/image}/image-small.png (100%) rename mod/bootstrap/data/files/{united_skin_image => united_skin/image}/image-icon.png (100%) rename mod/bootstrap/data/files/{united_skin_image => united_skin/image}/image-large.png (100%) rename mod/bootstrap/data/files/{united_skin_image => united_skin/image}/image-medium.png (100%) rename mod/bootstrap/data/files/{united_skin_image => united_skin/image}/image-original.png (100%) rename mod/bootstrap/data/files/{united_skin_image => united_skin/image}/image-small.png (100%) rename mod/bootstrap/data/files/{yeti_skin_image => yeti_skin/image}/image-icon.png (100%) rename mod/bootstrap/data/files/{yeti_skin_image => yeti_skin/image}/image-large.png (100%) rename mod/bootstrap/data/files/{yeti_skin_image => yeti_skin/image}/image-medium.png (100%) rename mod/bootstrap/data/files/{yeti_skin_image => yeti_skin/image}/image-original.png (100%) rename mod/bootstrap/data/files/{yeti_skin_image => yeti_skin/image}/image-small.png (100%) rename mod/carrierwave/data/files/{mod_carrierwave_script_asset_output => mod_carrierwave/script/asset_output}/file.js (100%) delete mode 100644 mod/date/data/files/mod_date_script_asset_output/file.js delete mode 100644 mod/date/data/files/mod_date_script_datepicker_machine_output/file.js rename mod/edit/data/files/{mod_edit_script_asset_output => mod_edit/script/asset_output}/file.js (100%) rename mod/follow/data/files/{mod_follow_script_asset_output => mod_follow/script/asset_output}/file.js (100%) rename mod/format/data/files/{mod_format_script_asset_output => mod_format/script/asset_output}/file.js (100%) rename mod/layout/data/files/{mod_layout_script_asset_output => mod_layout/script/asset_output}/file.js (100%) rename mod/list/data/files/{mod_list_script_asset_output => mod_list/script/asset_output}/file.js (100%) rename mod/list/set/self/{input_options.rb => input_type/right/content_options.rb} (100%) rename mod/recaptcha/data/files/{mod_recaptcha_script_asset_output => mod_recaptcha/script/asset_output}/file.js (100%) rename mod/rules/data/files/{mod_rules_script_asset_output => mod_rules/script/asset_output}/file.js (100%) rename mod/rules/data/files/{mod_rules_script_local_machine_output => mod_rules/script/local_machine_output}/file.js (100%) rename mod/search/data/files/{mod_search_script_asset_output => mod_search/script/asset_output}/file.js (100%) rename mod/tabs/data/files/{mod_tabs_script_asset_output => mod_tabs/script/asset_output}/file.js (100%) rename mod/tinymce_editor/data/files/{mod_tinymce_editor_script_asset_output => mod_tinymce_editor/script/asset_output}/file.js (100%) rename mod/tinymce_editor/data/files/{mod_tinymce_editor_script_local_machine_output => mod_tinymce_editor/script/local_machine_output}/file.js (100%) diff --git a/card/mod/core/config/locales/en.yml b/card/mod/core/config/locales/en.yml index 76351438d0..67ceb62f9e 100644 --- a/card/mod/core/config/locales/en.yml +++ b/card/mod/core/config/locales/en.yml @@ -8,6 +8,7 @@ en: core_error_cant_alter: can't alter this type; %{name} cards still exist core_error_cant_change_errors: "of %{name} can't be changed; errors creating new %{type_id}: %{error_messages}" core_error_code_in_use: codename %{codename} already in use + core_codename_must_be_simple: only simple cards can have codenames core_error_hard_templated: can't be changed because %{name} is hard templated to %{type_name} core_error_indestructible: "%{name} is an indestructible rule" core_error_invalid_character_in_cardtype: "may not contain any of the following characters: %{banned}" diff --git a/card/mod/core/set/all/codename.rb b/card/mod/core/set/all/codename.rb index 9d4993942b..441683536d 100644 --- a/card/mod/core/set/all/codename.rb +++ b/card/mod/core/set/all/codename.rb @@ -1,6 +1,7 @@ event :validate_codename, :validate, on: :update, changed: :codename do validate_codename_permission validate_codename_uniqueness + validate_codename_simplicity end event :reset_codename_cache, :integrate, changed: :codename do @@ -30,3 +31,9 @@ def validate_codename_uniqueness errors.add :codename, t(:core_error_code_in_use, codename: codename) end + +def validate_codename_simplicity + return if name.simple? + + errors.add :codename, t(:core_codename_must_be_simple) +end \ No newline at end of file diff --git a/card/mod/core/set_pattern/09_self.rb b/card/mod/core/set_pattern/09_self.rb index 818a13872e..71611dddf8 100644 --- a/card/mod/core/set_pattern/09_self.rb +++ b/card/mod/core/set_pattern/09_self.rb @@ -21,3 +21,7 @@ def anchor_name card def anchor_id card card.id end + +def anchor_parts_count + @anchor_parts_count ||= @anchor_name ? @anchor_name.part_names.size : 1 +end diff --git a/mod/account/data/files/mod_account_script_asset_output/file.js b/mod/account/data/files/mod_account/script/asset_output/file.js similarity index 100% rename from mod/account/data/files/mod_account_script_asset_output/file.js rename to mod/account/data/files/mod_account/script/asset_output/file.js diff --git a/mod/ace_editor/data/files/mod_ace_editor_script_asset_output/file.js b/mod/ace_editor/data/files/mod_ace_editor/script/asset_output/file.js similarity index 100% rename from mod/ace_editor/data/files/mod_ace_editor_script_asset_output/file.js rename to mod/ace_editor/data/files/mod_ace_editor/script/asset_output/file.js diff --git a/mod/bar_and_box/data/files/mod_bar_and_box_script_asset_output/file.js b/mod/bar_and_box/data/files/mod_bar_and_box/script/asset_output/file.js similarity index 100% rename from mod/bar_and_box/data/files/mod_bar_and_box_script_asset_output/file.js rename to mod/bar_and_box/data/files/mod_bar_and_box/script/asset_output/file.js diff --git a/mod/bar_and_box/spec/set/abstract/media_spec.rb b/mod/bar_and_box/spec/set/abstract/media_spec.rb index 24c2737144..ff87f95379 100644 --- a/mod/bar_and_box/spec/set/abstract/media_spec.rb +++ b/mod/bar_and_box/spec/set/abstract/media_spec.rb @@ -23,7 +23,7 @@ def text_with_image args={} end it "takes image card object as image" do - expect(text_with_image(image: Card[:yeti_skin_image])) + expect(text_with_image(image: %i[yeti_skin image].card)) .to have_tag :div, with: { class: "media" } do with_tag "img[src*='/files/']", with: { alt: "yeti skin+Image" } end diff --git a/mod/bootstrap/data/files/cerulean_skin_image/image-icon.png b/mod/bootstrap/data/files/cerulean_skin/image/image-icon.png similarity index 100% rename from mod/bootstrap/data/files/cerulean_skin_image/image-icon.png rename to mod/bootstrap/data/files/cerulean_skin/image/image-icon.png diff --git a/mod/bootstrap/data/files/cerulean_skin_image/image-large.png b/mod/bootstrap/data/files/cerulean_skin/image/image-large.png similarity index 100% rename from mod/bootstrap/data/files/cerulean_skin_image/image-large.png rename to mod/bootstrap/data/files/cerulean_skin/image/image-large.png diff --git a/mod/bootstrap/data/files/cerulean_skin_image/image-medium.png b/mod/bootstrap/data/files/cerulean_skin/image/image-medium.png similarity index 100% rename from mod/bootstrap/data/files/cerulean_skin_image/image-medium.png rename to mod/bootstrap/data/files/cerulean_skin/image/image-medium.png diff --git a/mod/bootstrap/data/files/cerulean_skin_image/image-original.png b/mod/bootstrap/data/files/cerulean_skin/image/image-original.png similarity index 100% rename from mod/bootstrap/data/files/cerulean_skin_image/image-original.png rename to mod/bootstrap/data/files/cerulean_skin/image/image-original.png diff --git a/mod/bootstrap/data/files/cerulean_skin_image/image-small.png b/mod/bootstrap/data/files/cerulean_skin/image/image-small.png similarity index 100% rename from mod/bootstrap/data/files/cerulean_skin_image/image-small.png rename to mod/bootstrap/data/files/cerulean_skin/image/image-small.png diff --git a/mod/bootstrap/data/files/cosmo_skin_image/image-icon.png b/mod/bootstrap/data/files/cosmo_skin/image/image-icon.png similarity index 100% rename from mod/bootstrap/data/files/cosmo_skin_image/image-icon.png rename to mod/bootstrap/data/files/cosmo_skin/image/image-icon.png diff --git a/mod/bootstrap/data/files/cosmo_skin_image/image-large.png b/mod/bootstrap/data/files/cosmo_skin/image/image-large.png similarity index 100% rename from mod/bootstrap/data/files/cosmo_skin_image/image-large.png rename to mod/bootstrap/data/files/cosmo_skin/image/image-large.png diff --git a/mod/bootstrap/data/files/cosmo_skin_image/image-medium.png b/mod/bootstrap/data/files/cosmo_skin/image/image-medium.png similarity index 100% rename from mod/bootstrap/data/files/cosmo_skin_image/image-medium.png rename to mod/bootstrap/data/files/cosmo_skin/image/image-medium.png diff --git a/mod/bootstrap/data/files/cosmo_skin_image/image-original.png b/mod/bootstrap/data/files/cosmo_skin/image/image-original.png similarity index 100% rename from mod/bootstrap/data/files/cosmo_skin_image/image-original.png rename to mod/bootstrap/data/files/cosmo_skin/image/image-original.png diff --git a/mod/bootstrap/data/files/cosmo_skin_image/image-small.png b/mod/bootstrap/data/files/cosmo_skin/image/image-small.png similarity index 100% rename from mod/bootstrap/data/files/cosmo_skin_image/image-small.png rename to mod/bootstrap/data/files/cosmo_skin/image/image-small.png diff --git a/mod/bootstrap/data/files/cyborg_skin_image/image-icon.png b/mod/bootstrap/data/files/cyborg_skin/image/image-icon.png similarity index 100% rename from mod/bootstrap/data/files/cyborg_skin_image/image-icon.png rename to mod/bootstrap/data/files/cyborg_skin/image/image-icon.png diff --git a/mod/bootstrap/data/files/cyborg_skin_image/image-large.png b/mod/bootstrap/data/files/cyborg_skin/image/image-large.png similarity index 100% rename from mod/bootstrap/data/files/cyborg_skin_image/image-large.png rename to mod/bootstrap/data/files/cyborg_skin/image/image-large.png diff --git a/mod/bootstrap/data/files/cyborg_skin_image/image-medium.png b/mod/bootstrap/data/files/cyborg_skin/image/image-medium.png similarity index 100% rename from mod/bootstrap/data/files/cyborg_skin_image/image-medium.png rename to mod/bootstrap/data/files/cyborg_skin/image/image-medium.png diff --git a/mod/bootstrap/data/files/cyborg_skin_image/image-original.png b/mod/bootstrap/data/files/cyborg_skin/image/image-original.png similarity index 100% rename from mod/bootstrap/data/files/cyborg_skin_image/image-original.png rename to mod/bootstrap/data/files/cyborg_skin/image/image-original.png diff --git a/mod/bootstrap/data/files/cyborg_skin_image/image-small.png b/mod/bootstrap/data/files/cyborg_skin/image/image-small.png similarity index 100% rename from mod/bootstrap/data/files/cyborg_skin_image/image-small.png rename to mod/bootstrap/data/files/cyborg_skin/image/image-small.png diff --git a/mod/bootstrap/data/files/darkly_skin_image/image-icon.png b/mod/bootstrap/data/files/darkly_skin/image/image-icon.png similarity index 100% rename from mod/bootstrap/data/files/darkly_skin_image/image-icon.png rename to mod/bootstrap/data/files/darkly_skin/image/image-icon.png diff --git a/mod/bootstrap/data/files/darkly_skin_image/image-large.png b/mod/bootstrap/data/files/darkly_skin/image/image-large.png similarity index 100% rename from mod/bootstrap/data/files/darkly_skin_image/image-large.png rename to mod/bootstrap/data/files/darkly_skin/image/image-large.png diff --git a/mod/bootstrap/data/files/darkly_skin_image/image-medium.png b/mod/bootstrap/data/files/darkly_skin/image/image-medium.png similarity index 100% rename from mod/bootstrap/data/files/darkly_skin_image/image-medium.png rename to mod/bootstrap/data/files/darkly_skin/image/image-medium.png diff --git a/mod/bootstrap/data/files/darkly_skin_image/image-original.png b/mod/bootstrap/data/files/darkly_skin/image/image-original.png similarity index 100% rename from mod/bootstrap/data/files/darkly_skin_image/image-original.png rename to mod/bootstrap/data/files/darkly_skin/image/image-original.png diff --git a/mod/bootstrap/data/files/darkly_skin_image/image-small.png b/mod/bootstrap/data/files/darkly_skin/image/image-small.png similarity index 100% rename from mod/bootstrap/data/files/darkly_skin_image/image-small.png rename to mod/bootstrap/data/files/darkly_skin/image/image-small.png diff --git a/mod/bootstrap/data/files/flatly_skin_image/image-icon.png b/mod/bootstrap/data/files/flatly_skin/image/image-icon.png similarity index 100% rename from mod/bootstrap/data/files/flatly_skin_image/image-icon.png rename to mod/bootstrap/data/files/flatly_skin/image/image-icon.png diff --git a/mod/bootstrap/data/files/flatly_skin_image/image-large.png b/mod/bootstrap/data/files/flatly_skin/image/image-large.png similarity index 100% rename from mod/bootstrap/data/files/flatly_skin_image/image-large.png rename to mod/bootstrap/data/files/flatly_skin/image/image-large.png diff --git a/mod/bootstrap/data/files/flatly_skin_image/image-medium.png b/mod/bootstrap/data/files/flatly_skin/image/image-medium.png similarity index 100% rename from mod/bootstrap/data/files/flatly_skin_image/image-medium.png rename to mod/bootstrap/data/files/flatly_skin/image/image-medium.png diff --git a/mod/bootstrap/data/files/flatly_skin_image/image-original.png b/mod/bootstrap/data/files/flatly_skin/image/image-original.png similarity index 100% rename from mod/bootstrap/data/files/flatly_skin_image/image-original.png rename to mod/bootstrap/data/files/flatly_skin/image/image-original.png diff --git a/mod/bootstrap/data/files/flatly_skin_image/image-small.png b/mod/bootstrap/data/files/flatly_skin/image/image-small.png similarity index 100% rename from mod/bootstrap/data/files/flatly_skin_image/image-small.png rename to mod/bootstrap/data/files/flatly_skin/image/image-small.png diff --git a/mod/bootstrap/data/files/journal_skin_image/image-icon.png b/mod/bootstrap/data/files/journal_skin/image/image-icon.png similarity index 100% rename from mod/bootstrap/data/files/journal_skin_image/image-icon.png rename to mod/bootstrap/data/files/journal_skin/image/image-icon.png diff --git a/mod/bootstrap/data/files/journal_skin_image/image-large.png b/mod/bootstrap/data/files/journal_skin/image/image-large.png similarity index 100% rename from mod/bootstrap/data/files/journal_skin_image/image-large.png rename to mod/bootstrap/data/files/journal_skin/image/image-large.png diff --git a/mod/bootstrap/data/files/journal_skin_image/image-medium.png b/mod/bootstrap/data/files/journal_skin/image/image-medium.png similarity index 100% rename from mod/bootstrap/data/files/journal_skin_image/image-medium.png rename to mod/bootstrap/data/files/journal_skin/image/image-medium.png diff --git a/mod/bootstrap/data/files/journal_skin_image/image-original.png b/mod/bootstrap/data/files/journal_skin/image/image-original.png similarity index 100% rename from mod/bootstrap/data/files/journal_skin_image/image-original.png rename to mod/bootstrap/data/files/journal_skin/image/image-original.png diff --git a/mod/bootstrap/data/files/journal_skin_image/image-small.png b/mod/bootstrap/data/files/journal_skin/image/image-small.png similarity index 100% rename from mod/bootstrap/data/files/journal_skin_image/image-small.png rename to mod/bootstrap/data/files/journal_skin/image/image-small.png diff --git a/mod/bootstrap/data/files/litera_skin_image/image-icon.png b/mod/bootstrap/data/files/litera_skin/image/image-icon.png similarity index 100% rename from mod/bootstrap/data/files/litera_skin_image/image-icon.png rename to mod/bootstrap/data/files/litera_skin/image/image-icon.png diff --git a/mod/bootstrap/data/files/litera_skin_image/image-large.png b/mod/bootstrap/data/files/litera_skin/image/image-large.png similarity index 100% rename from mod/bootstrap/data/files/litera_skin_image/image-large.png rename to mod/bootstrap/data/files/litera_skin/image/image-large.png diff --git a/mod/bootstrap/data/files/litera_skin_image/image-medium.png b/mod/bootstrap/data/files/litera_skin/image/image-medium.png similarity index 100% rename from mod/bootstrap/data/files/litera_skin_image/image-medium.png rename to mod/bootstrap/data/files/litera_skin/image/image-medium.png diff --git a/mod/bootstrap/data/files/litera_skin_image/image-original.png b/mod/bootstrap/data/files/litera_skin/image/image-original.png similarity index 100% rename from mod/bootstrap/data/files/litera_skin_image/image-original.png rename to mod/bootstrap/data/files/litera_skin/image/image-original.png diff --git a/mod/bootstrap/data/files/litera_skin_image/image-small.png b/mod/bootstrap/data/files/litera_skin/image/image-small.png similarity index 100% rename from mod/bootstrap/data/files/litera_skin_image/image-small.png rename to mod/bootstrap/data/files/litera_skin/image/image-small.png diff --git a/mod/bootstrap/data/files/lumen_skin_image/image-icon.png b/mod/bootstrap/data/files/lumen_skin/image/image-icon.png similarity index 100% rename from mod/bootstrap/data/files/lumen_skin_image/image-icon.png rename to mod/bootstrap/data/files/lumen_skin/image/image-icon.png diff --git a/mod/bootstrap/data/files/lumen_skin_image/image-large.png b/mod/bootstrap/data/files/lumen_skin/image/image-large.png similarity index 100% rename from mod/bootstrap/data/files/lumen_skin_image/image-large.png rename to mod/bootstrap/data/files/lumen_skin/image/image-large.png diff --git a/mod/bootstrap/data/files/lumen_skin_image/image-medium.png b/mod/bootstrap/data/files/lumen_skin/image/image-medium.png similarity index 100% rename from mod/bootstrap/data/files/lumen_skin_image/image-medium.png rename to mod/bootstrap/data/files/lumen_skin/image/image-medium.png diff --git a/mod/bootstrap/data/files/lumen_skin_image/image-original.png b/mod/bootstrap/data/files/lumen_skin/image/image-original.png similarity index 100% rename from mod/bootstrap/data/files/lumen_skin_image/image-original.png rename to mod/bootstrap/data/files/lumen_skin/image/image-original.png diff --git a/mod/bootstrap/data/files/lumen_skin_image/image-small.png b/mod/bootstrap/data/files/lumen_skin/image/image-small.png similarity index 100% rename from mod/bootstrap/data/files/lumen_skin_image/image-small.png rename to mod/bootstrap/data/files/lumen_skin/image/image-small.png diff --git a/mod/bootstrap/data/files/lux_skin_image/image-icon.png b/mod/bootstrap/data/files/lux_skin/image/image-icon.png similarity index 100% rename from mod/bootstrap/data/files/lux_skin_image/image-icon.png rename to mod/bootstrap/data/files/lux_skin/image/image-icon.png diff --git a/mod/bootstrap/data/files/lux_skin_image/image-large.png b/mod/bootstrap/data/files/lux_skin/image/image-large.png similarity index 100% rename from mod/bootstrap/data/files/lux_skin_image/image-large.png rename to mod/bootstrap/data/files/lux_skin/image/image-large.png diff --git a/mod/bootstrap/data/files/lux_skin_image/image-medium.png b/mod/bootstrap/data/files/lux_skin/image/image-medium.png similarity index 100% rename from mod/bootstrap/data/files/lux_skin_image/image-medium.png rename to mod/bootstrap/data/files/lux_skin/image/image-medium.png diff --git a/mod/bootstrap/data/files/lux_skin_image/image-original.png b/mod/bootstrap/data/files/lux_skin/image/image-original.png similarity index 100% rename from mod/bootstrap/data/files/lux_skin_image/image-original.png rename to mod/bootstrap/data/files/lux_skin/image/image-original.png diff --git a/mod/bootstrap/data/files/lux_skin_image/image-small.png b/mod/bootstrap/data/files/lux_skin/image/image-small.png similarity index 100% rename from mod/bootstrap/data/files/lux_skin_image/image-small.png rename to mod/bootstrap/data/files/lux_skin/image/image-small.png diff --git a/mod/bootstrap/data/files/materia_skin_image/image-icon.png b/mod/bootstrap/data/files/materia_skin/image/image-icon.png similarity index 100% rename from mod/bootstrap/data/files/materia_skin_image/image-icon.png rename to mod/bootstrap/data/files/materia_skin/image/image-icon.png diff --git a/mod/bootstrap/data/files/materia_skin_image/image-large.png b/mod/bootstrap/data/files/materia_skin/image/image-large.png similarity index 100% rename from mod/bootstrap/data/files/materia_skin_image/image-large.png rename to mod/bootstrap/data/files/materia_skin/image/image-large.png diff --git a/mod/bootstrap/data/files/materia_skin_image/image-medium.png b/mod/bootstrap/data/files/materia_skin/image/image-medium.png similarity index 100% rename from mod/bootstrap/data/files/materia_skin_image/image-medium.png rename to mod/bootstrap/data/files/materia_skin/image/image-medium.png diff --git a/mod/bootstrap/data/files/materia_skin_image/image-original.png b/mod/bootstrap/data/files/materia_skin/image/image-original.png similarity index 100% rename from mod/bootstrap/data/files/materia_skin_image/image-original.png rename to mod/bootstrap/data/files/materia_skin/image/image-original.png diff --git a/mod/bootstrap/data/files/materia_skin_image/image-small.png b/mod/bootstrap/data/files/materia_skin/image/image-small.png similarity index 100% rename from mod/bootstrap/data/files/materia_skin_image/image-small.png rename to mod/bootstrap/data/files/materia_skin/image/image-small.png diff --git a/mod/bootstrap/data/files/minty_skin_image/image-icon.png b/mod/bootstrap/data/files/minty_skin/image/image-icon.png similarity index 100% rename from mod/bootstrap/data/files/minty_skin_image/image-icon.png rename to mod/bootstrap/data/files/minty_skin/image/image-icon.png diff --git a/mod/bootstrap/data/files/minty_skin_image/image-large.png b/mod/bootstrap/data/files/minty_skin/image/image-large.png similarity index 100% rename from mod/bootstrap/data/files/minty_skin_image/image-large.png rename to mod/bootstrap/data/files/minty_skin/image/image-large.png diff --git a/mod/bootstrap/data/files/minty_skin_image/image-medium.png b/mod/bootstrap/data/files/minty_skin/image/image-medium.png similarity index 100% rename from mod/bootstrap/data/files/minty_skin_image/image-medium.png rename to mod/bootstrap/data/files/minty_skin/image/image-medium.png diff --git a/mod/bootstrap/data/files/minty_skin_image/image-original.png b/mod/bootstrap/data/files/minty_skin/image/image-original.png similarity index 100% rename from mod/bootstrap/data/files/minty_skin_image/image-original.png rename to mod/bootstrap/data/files/minty_skin/image/image-original.png diff --git a/mod/bootstrap/data/files/minty_skin_image/image-small.png b/mod/bootstrap/data/files/minty_skin/image/image-small.png similarity index 100% rename from mod/bootstrap/data/files/minty_skin_image/image-small.png rename to mod/bootstrap/data/files/minty_skin/image/image-small.png diff --git a/mod/bootstrap/data/files/mod_bootstrap_script_asset_output/file.js b/mod/bootstrap/data/files/mod_bootstrap/script/asset_output/file.js similarity index 100% rename from mod/bootstrap/data/files/mod_bootstrap_script_asset_output/file.js rename to mod/bootstrap/data/files/mod_bootstrap/script/asset_output/file.js diff --git a/mod/bootstrap/data/files/paper_skin_image/image-icon.png b/mod/bootstrap/data/files/paper_skin_image/image-icon.png deleted file mode 100644 index 1dcfa9217bdc724a9a1ed5d3031ac5629edc0acc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 749 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�noHE%NSCX`ocdM+3;*EZ!!~THxP;Z)7%_lub8~a9 zO`}<{>tPO#3oXwz0PkFLdV4Q&x-nR$hA3Nz)O|NdH%m5FuKiMrLXCjeYA6`m=i>K( z3@nMYT|=X$rKN>d+Gn=S2%!Q9?zd2DZen8czOr(|`t|r)TT=s!SFyS{hN^KxUPweF z$G%ep+cW!YU9Ypa!#68O$DIV=nWKi8LHF*>PET*!u|wwSPel|7?L*@uBa`#bbfz+SJDBT9A^Qv>Tr4Jg^a)&efZEJ zlq1f0rv7f7LyWWm3Mk7K&(NlzvQ$-7-MxDkcYX8bP2cA*)bJ>m#^&b8V|rB@{QPdH zB7`FE1(EFitU}W6zd815S~@x=Mn>uy7z|8I_zizKAYvW*VFx$E*1gFG_qgyn(QeyT zXy0jpbdB_rmZn^@T)KfZ<$PpiZ_vk|$U2YW;%4XO?tZjDWkOwc`g=)86sDwbTc3TN zm)F|f9=-Fnr-#R-OPAh-_BJ#M4r=N=NKZekgBpAM@Sa>X0s#P^(_TF6v#6L@s+R_U zg*iJ(?b-_wOJ=J#n~l#J8>a(7+1b^O@8itSH!wh7-G(6bR@_(Mni3F~rZ44VNNT~2 zfSN|f#_xwOqE zNr}!?6}#i)^$i z)o~MzbaerOxQIO%LPQCwN^$Xtm5mDyra0GL38)+D12>ByMm^!zyBE6 zC!GiJ@$n%c+qSa1kjOG#b0%e;4;@KSrWge}NR>r44R!U)m)t!)BaglZq}<7jrZ{|) zlbKl};F>8xR5Um4;@+w9qN0wsZ{-o=qtE98K2rMv)!Hts#kjhzR}<^YJTmas<%iUc zMb>B0qt^6g-s-A_@ zg6e~{z{+I%EL}&E^vq-NQB+e?1BsO9)FXRCUj8d>-3{SmCr_S4QSLXJ$|myKqJz-W z)&^E-Lg@pX=>?|XRzGbhc=TvXd%LEJ%0K(|i3kaC{NiYi{D#gBOWBYlS7BYhZ!q{E z{g$0*NPJg7JS-t+G&D4TxyI@WF!zAd!4m7luBE zv7?ru#I7wg`t4*nF8@d=!|>I&avv!I@_AKF&FJv(?K^kS!QjJ$%>?>Qeq=5{g75A& z_gk55N>)y_py1W$6#x{$41rGphr;Lmx{r)T32*q;Iu~ed{MRo_3yZ2X2i`SK;4+x@k$o3gSpG1cYx z<2!dY0n#yq?%1}CE9ShHS4nm@AdRW6E;x=8($eaVd@322+}%3>LUu-!-ATSw760wq zIg#xVAX=n6foO__6*gzB^RKrSbpZZ2?BL)aCnuMlUAF$l+qO0XEv>Ll4WPP@7Q#u5 zX%iz=qlHdAX#9|l54_^fS^V+i2?|MI;Ah}LprUG_O`I#&#@YvlhS0o?jf_MzY{)rd zYMM}9ULFvz(WgMzlA=y(3?;QNFCfvx888|v9bzON2l|+w$|DEUaB*@X=(KcN!Sn@I zroVWxg_d^TzJ0)h!xIy7m_Jl9WNJwkO&y&GG!Wo-6cpYg{xB~|N#+g?zmVLAhc7EC zegKbq=8ravDuebQraMXMXHc22nr!O`ufig!DO-tQ9VwJ-^$wh(}xeJq{4v|14F~ep{VM; zDi)LdMa+zh;TManoK=ATM*bWY5O}V&1mJ;ptgBOJsN_ENxwAN_~68no3IVXSrzEJZtE2|L|A&=}KZH9t^PBJYmEhFP-ryBUc z{+-WDOUduwbMo=k0rjJ5-BwPti~DFX`Ses^=BrnxCMIYtyU66r`#+$Go{vaPO`V&Y z0|5w5=fhM=Gx6HB{DOkH+1V~2Cz6k!Or^+-=yC2y&A_j!7R@7#ET2bvd$WNVPUO&I&FXD3gZU!AjrF~P_*4(}|`rIR*kWqRk-DkS?cSb96#w8~5 z45m&4_Z~=As`e7GzUBMUKPbN83dO^|ymHIDjo8XtOLo4+RigKM`=o+s&x@zHQA1qT zGoUVo(WiYLk2=e)iY~KC?7W#71uY=`762q`pQ=g8htZY2>RMVZ$62hG1KC2gw$sN9f;guf{F~{@6siuE4EVu=z^#S z!P2slWt5STF(o5oKRvztxs?wEOY;-d9W`I-dSMay1CuyYS~PRYlbb{H&ZDNZh?p2= z*0!exwbr@S&QmK(^P)+Hz+J$}tzWY?(xRv(g=OdG zZ{Ivos9kC92(Wqhhmbc!2Dnkk+1c5hZ!T_-;dUL&49_ED=f<(VYCKOt+ab!k>B*W^ zgS?QmwDgRBT$0H2#qu;>{tFG~g+w#hy&d=J?$~Yp$mnHGno-;}hV_F#1gu5UZ6&Q6 zEDws2_DnZ~nf*Ca=QaD{vuCw$5$H5fs*|7SW;=#5540Gw@28B7scC3{(U3v5L1rBh zCTA6p5wA0|vw)6hCy|qX_4T>@c)JdjZA$*IkKn0^2#^M-Ga$n5+`i4t%RA9iVGbGw zAIz%mxQ}jkiJMbnq71Mcf_&@Nt@wED?d>RiNar&z_T)?mn3tE@w(uZy1O>BDvvd<8 zgJMCQM)RKsq|$nPJR&ysG6+!g{@_69zCMj#011t9mLio{UUxSnMAh$bHovL(&cHsj z3RnA1Z`&5~LJK)0%6I^m<12jXl(s8On6=>9aRV!LM2lK9QX{pem$Lj(sqTjK`e zyh22Wl>XVfS5;jd^MoEOWl6_u;Y}#ICNTdb5(zvlT3dB>b+DFT>6qEreDU^iOF@l8 zLjwby9UbxXIK>Gl(b6RrN*VTccwfV%k;9Xu)vV^2C;;1#)Vu1QrXA?AR+vM%-jS&pDpNOe_ z_4>8AhzRlO)dQ?m{iWj+3XcoN*yw1p=?Cs85QB7dbO<%wfa51lp!W!td?d=tYlC(( zr6SRzduVXbu`?&Ym+!B%8E(Vp#*oTc`Q3JSE7Ra`V=s{eni{i%^qFheFq4GxhoXg` z;l4cm;)?f$3r|v012i{;HXZNl>%+rn+mgAYa}6bRqm;f(zKav>XfoY$>((vAAimC+ zipSKZ9y)V`{f4|Vo(iDe?6#*)9SzI*bLT)$3`=Pb-epv3>Uv*y;#&IvS-JiO0Wx*IGB-mu;AhL1FU~tWd`NeN-cGOc_+@+fa*@l>PCHlEysWIO z%^p4@O8@*=@GqT1h=cLZsY;MyKS@vH!OxMcJg%)oPxG!xWXnwss>V$ZMVkxXQ>ATs zh}s-fr5g`Izy1$TcpybtkLN+9{-2%)!TW!F!ryoQ|M-OeGQR)*4rY9jX*BcyKzNV% zS|CdgX)F65w~f?)#xM%RsOc~+xH%S46%{M-?t=_lkFepRRn@jFZX(DgIayfbc+Ory z%+H2Vbthm#@W(*&;M1`$xQ}L^4ei}Wogu*ppoc^Vj9^Zot3rms_46?wn1hk#RA3XR z)zE9Ofzdzx=5P-4+Vl55&BU)QEoc_Bp&J6l;?mXie9#HWI$F^D^~;wpp-|#oGc!xA zsu?6DNgyOa9}NXl*Jh#jJOzmpn^_O90|3_1F)noM$~>?S0~WJuzYJ>R@ZsvJs_;es zHy7Tm2b#Mf@9#^sFia7vO>svQR6RZL)Ov>)BPn`^(b3}*0{3A%qfo{089&1aGBYz@ zzb?Pr#EBN`uYn;VMu!4&30vAl>XG*`aq+<)KjfFF@29DWA=46^m$(0&-`4}(Jw0@E zo8H#lJ1!)A93yU~- zOKU5FwLdjVD&bQ@!+jbXbmu4zkK^OjGW-ndg*Bl#1 z34mn)lEZhPU`TXOzX~0`TVJ}gho0Vfb=hNQ;PlyD+h}fvhKBx2eV|B0JXT#qUuXIG zKGcv2G>gj0HYl(tq*!gV*xa2_C9x?WQH-+8cA&lEpoom;9+3_1ic#_8u(pPgu{&uo8KG=qkaq}%EpZwQwCl?e~$9( zg6`CK$3SkxmLC71X5n+?e1m@AIIuZ~XAExQ#nsG>duQS?4 zD$Th%;kTxzug{%8Rg*zv9XWCYA+8q9cOXvie1W>ArsnC>)}1+*(53;NY5jCNae;^~ zYumPMkYj)w5d+q?m#nO!5n*X*D6Puhroz72B7~_u<K=DFao}!2fq1nd z#CZ%5%9Z;$PAu=G2rBI~qGzC|7xnO=jQ5}4>Ryp@2xW9CSZ&0tI@>MIMs;iev^G!| zsMpJv0vH`6@9OH{V|P=}DAf9(R%7t!dq7ZOXQE3(A;Mlo+;iJB?|$<7wI<~V#6>1S zvr^(f4QOGx_KAMz;`*3Ne2km}Vq*EwZKHTeSde4Kj;Yu(3z!U#j7WaAGyx_8Hwd{E zJ0B3qBD*LvGgP0U|GeFmD*|Sv$AyIGoileKpPDg{pnibgp}!$uQbZL^j_{qzIpMpE z7w|Q4Ugfl%$b!xW_sECRnOiwfAEAZ2Iy=WE50oQ6DJd!GCf^PS0DVfOi?I<64WqqT z0e}Xl4XvchOG}qW+cKn1oEZFa$e3;SZmy$8GcZB4$SIL9wY)MR5dmSar7>Dptqlu5 zk#WMlIbj*Gq&iq)eSL5<*EBThK~1al?qOt%7BGGJMG7Vns7n1*#4*fk%1XwwXGkW+uoGZg19ueU=Y!sXTSZJl0;nCjX>Dz73#VC; z^F<8)K|pH1=DFdNlVzYUabL8ZSRiZ=Y#UJ9Ag_mqhrjeqwzalmWzZQdz7SL?z}hRl zq}3ffs1^-oQs2-J(zp(z*zx0M(PsSk!NJR`OreYI@v%-g*{?Zq(bUuwDuGB+BV>Ib zE?nY{WcP)sOZL?A-@iFp>MAS%?6$X?Bg@cftDl0CxM?Nww_m)h*3q_#n zS5;kEOnCSk*AZRab6_7pI5jM8`G?=FnC)D#YkGYAc}q*Kq(MD>wjD#u6!F2f5y@`++ot^;OLL z5DQ_(@|^o~a&RXy4g4}c-u-cl6qOnDfmddzAt5gad^gg@;)`l$sw2XE(n5C+zga10 zjlKUQf7?34_9j37pqKx#Zkrviga$OPY!i9D#ete8nfd2=x9((-x=yWlDZkWPdD>Wb zoL<8(F)t5Q&Z?cw$a)b7Uicc=`**Da$?rulg5N>@V#e;jzKNZXA@RS+%zSM84WuJB zm*-7PZ9Vds@iujvjFc3`9+`16$>si=?WC*FR&VX4JN}- z)~h^|SB;I0AxIg21sCB668K*R*wz-Q$3uTrF$R4-Hc-muhR+{A*7Lhz-VHJgHMF!E zP3<|2t@C%$(+lZQWMySt*WQGNs;j7Msq3sh%n*$3L5Z?e<0_hHr z*fpdyWzpZfK@SC(W z-Vt3M2^yrf#af>W7yRp#wG;%78odT9w(%2}8t5mUlWcon zgxa_f{bKt49^-A^FyL(5#uR>X5v8J`wl?ZYtmuH|>4Cq_M3@RSiw_xC%QHn5@Om_; zAe|c-Nk~dAsQTWq9ppClmi0r7IXmMcq?P==GBWJEy`_bPBX%ZApC`e-04(d7H!w9& z3&wR_DCrZLx&DEH>Ujfg?GCtY&YY>4?E73@AqxJep{54PY8rdrIi!p$SB_Bqm|TL% zWcC2$?&r@3@9sHzeZ1r9pWnTrHVt3ig@1mO!2N?r!sh{h2pqOw!V!5d6%}RE1`Q1j z2$Q-D&|+p+6NzbZL>Ct>u8S&LQcFu8AD&-c_SVe`UwQK4MbYo8d}rVIgN-sWG6xD! zP+0%(eM88qeoyY)`Goz8O#g^|5E~9mG&&zhqNpnBE;83QDW7#zVCD{6Ux)x^q*VfSwM zO_2#m{jXC~#iXUTYt7NOMAcbqZZ5$snfcEtiYrycm1n*T>IEdw$jmsDTOelXJkap72Uk~9^7(u z*n+Ag~~^Kmx1VD*zu;V)bkJzbSh*LP}5lHuUEzO4p- z4Yp<;q!!Z$uK%Du9`u?UzoESLY-E~ks9}Hzf0@dR#-`lDygWj(7K}w&03b6n7#6zw z>oDOhP3-vhEefN(E?nSP;qpcyL}C6t%sZjV%gy@7_Xw$R<@OQdvhwo8nf6HQ5)|83 z(K8m=C|R+R6&-b-HU3@R+3TnoHjIUudn~5s<`}ueWT*P^I}hGN!F`si3i{($Xkrn zMSe*>0z2OD=b%JwidCHju$1jmBcG%&h(sw?;sK(Z&*HJV*vN5I0HBST$Cb3Sv{q9p zgI`XkXQ{5;pG)?>M|B%ljd8hg)YK8C0Vq64EB=%`#iUQ}QZjfaQJLs(oTpO%r z+uIG%F^FtokkY4S`o%(WwZ2JRlL*o*oEWJq0!$&BH*JcHijuJJpjLM_-AfI-{NUSw zMnW_MYRR@xx_I$GZmGk_+<|$ z2%#=E_8*Za0o%oUK=n#fZ069zl>@*;-g^4<;@PusP4A1Z*F1BE2#Qrl=YYd?k(Chi z1p!d4OtXO2sM$^;v%1j(PzaU*P+hRwX(|syweW!84IuRC;0eP@y;1(D(&gL0F_z@bsa>ho4e?>{FcQD6Z00 z=n@cMjoOsF_n6uCOygW6#^xkdUt*X#Nhy&LIjjlBlIoP-s6qWF4T0D^JQmR13f<~+ z35|x43zRMIJ*q(mXhLLw+g1cZ0T>@I6{ z-EMPUPEJ`#Nj*TrK|7dH5S)A8r($}|%gL>+c~74BHx5P3NV8E%Q-FWqRkM7|vO&h9 z`1lcTwplgxe%oYp5_UsZ#OoapK!?%k_LB?G!F z01^|a&q6~G*Fl7T04Bfw&kxyB?ZE==+4B%Hl6fxwjG9`;>(@J}=L#Z*b}H$xY-;R_ zc{HLd4~+=z56qWgtWwcP-1_>h9UUs4+Jrtg0?ArOSkFZ?tkAbWNJWZ3;YJr(9mNaB z9Cggaz10;QF5-Q#P(zV~IS$AbT_>mxfO_ns@Xt>!6qs{8g+u`2edg;sb1fqhkDN4mr%$Jau1;p#q-9#-nxkF)WE+)BS`MGw%hTv}KKDM8-xQ}zHCZI3za6{)&mMNOUhif|*s4S9Mv*x=O$G{jeCX5~gR|Nn>V z65Opz7xHuG|G;+rztUmB?`3|mJQFm`iyF9Hp+lxL7y^QF66R$P3O;Cz;#OvZ+H zw;P9Gx!Ujd7&j~(&qLVH%+&D*fue`krtHtY0Z>+8uL(l)w@0|Is;PzK=ZnSEK4cIu zmXMP2T3cOdd~+L4XR0)oY{6)ig}xo#!p`m639FeL$bq&nwxb)wn;qOCoNo7U8N7wv zg$wj7EX&-?qN?zlx3{*=tYj@CstXGX<*t|XL+Ea&>e>&aJp9mBU=#Qbl_BPi3k$!i z>x2;^Gjlxk;Zm*)y)LmZCr1H?TOwliJ=J!H*%*q7dAYa8^R%iYKveJ;_wL@cFsqwc zk@Yww$h+<6ks~ZDEVmV&>c2@eQ{!W5Br~Z>7akqi6L)whdP(n+*imV=Mi>BEcg)Dp z@Vh_L*{QVGPt)3zj7PFraZjg))w}MK=t66ZQdE%yrr8A0?V(Ad$khA^J*q?1+oa z61SxHW|CZikUGu!8#q7&gLv+$i<_ID{n^3vf~glXE)%KB4nLPzf{Y6lVs7V=;V!i) zJLRdLT~XP48oOrx3dzge-K6BY1C|txn1vbf!xo#yL=ZtBGbX2}EzP2UDe*mUEOsQQ zNEkKxTcE@MB0@9A%E6TiJ}82Rt@>43T43g$y?c!f3_j*fLpnxRSX@$qlRDl$K7oOO z>z-gE1Bo2|g5(CG1Rl%Zzkk=p2#P9+yPX|G$1>EIWFr8x%fDwtc5d4SyK-|fiw{_4 zlsl+1cnRzWH8p1zsiBgc;X0mkk6|A!IWQ7d%>ulcnM3d!eE5 zW1Qn-g0T$afY}aXj%=`!O)@`w_8(NTfBreEtqqYdW#1A+2S`nLaZ^)M%BDws^5OOM z#rsE2vQ4|^%{m%yzT{S#1bSdKsvBCFl@oQsjM8RZ(2Jv4c%)0u3ftr z7>HoVy1UJu&%n&z{N>BrzaDrv72tf{@pe}*L1(h)6(gFs+FS3c>Y-;D$$y z6{gbF8B7cU9LyiG>Pu+nTeiHx>5~%>wU7I)dLz5SKBk!@YpSg+bmGLBoR?WyJ-Ieo zXv$EhPM&;+iiSnARV9^_q@|?%Sy)Jr_Q)wJg4bmq)p?{Ecx0;&I_bK1@1DXl1^IZq zGZ&x-VnEnKsjjCmW2o}VLe|6kG(MKpL-?AQ*yG5?u3f@o0_X=X=5`{9W75*JlFB`% zd8$8r|1O1)Iez@OlvD|dy_D4Vsw%8^5Qz?JHHZTnm@Wf@hvDHDE?zu&MSD<_N6Ep- zsj#2`#vlj{fIlVP3sX1*29!iS&+<2GQo#Y7GjM`~mma(efWdh*l6day*~cfY-DL@K z8EO!w`%qQ2#q_1I8&{_eLJ3E*!h(Yjh#6nKnhl{nD@#z4h5(P!1t+JZxVVv_A(-+^ zs9ij(gM~%&w{K_sa6DowL~h*JyvX_KvuB)0HqFgb)blomoba;Vx&>beE&x>PS94Tu zy9-u(bm3rKsPz;k@WnJPDy<3vm7sn0EPSkLAsxsMc{fKcWMBllXmsQ?H10w1XKg!Z zR05*|)mguSx=KY2+sycwygWQ`S|#$4zhe(h1p$;r{W2@LUjP36%}`lx$(i|iJP{p1 zIE_o~3OrWIVQdH0unQm&zzVBjg997|aBDFbBz5{SZlOVTt$P!y$k|!pR{^Cyy}619 z1R*+;E9NKOqaM#epkzoWY7gzFw2aKM=d~ydjyQ5dw`j$-Wop9G%@Xc|@^abS=$}LqrUK!>vlV(P2nH(r_m?8z zC{4JR)RYZ29qTZc8UO@($m;9se)LyI!Mx;TZ?Bk!)I4;^jZ+ME74i6b{p*)6UxpWy z02tXsWZpu9{FnE>D)qd+e*dpu8fzXfj>2^ZBK<@QfkQ?nq3EGFGa=>q^X8R2EQ=!h z`WyZfKhR-dH8}T=QYeWd>*0%s&qp?xjEAf1H@{LT&R4NNkK+SvZDJXA?$U{vr`+DH z1oTSi`dn|UyWr{ht)}K~kO4OXRz~EgsO~iEp=x5?)q~(#aL`S4T!EV*qC*XCF$fCj zY>J$_I&08Tj`%RJu_cCwzs)38>D0pXwl#M1%@mJuN4}#+U9Mk$E~TKV3SZ1bf4`#P zUf8rmMZq6&^#qNV!OR0IP-Lt(bBejAd3gIa4e@luM1U{Og*GZt zxX+rLKd)9erE<9q0>n%_K=>}vGxv&~9J=D}9{cPCjPk6l>;MI=j0QT^ZoF0+36R^MgBRb#%jP^9s;nUP$4_ z1C9<38pQ&aci|veLw&u*k@p~ocLN8l&iwuj+ZYJT%!~{!uY3||0S6~sCnToj>q4uL zf01Hkq@`1yolbGL5*h{xnV&xkFVQqxMt=S^~o(I*9!hMA*=96dL^UoO=9BjKVGc|QYKp?TtBHEMZa{HT5%(bpAiWq&^XRclT zrvi7%IMgNtD{_vEjY)aUWdebq0Z*=(J48~G`JmXZ`AhdF<@T2$14&R(47jgF12 z+Wtl;P*X0Lj7f;qs%~Z_^_--@j=FO;@&TMQpFTZLNugnDdb-F>WTp+sqaJlYevI9q zl9D(FUlFg4eY4IK1SSUkn(|a*e!Quv8EXTY>iIqb$Du<(huxaXPK%^$wiT+} zDXR9fw^vw?0^evJ8Q813YH#t{tBQ)A48Aes%~Iw^*PjN98BWe z8msj}WI*$KQfq+g*Y&D6RqRMD%d&)^kdRYUs62F(>Pu{XdWPjHyuI*JpqZpsiwuB4 zWu~eCwsPRqXTA|CuJ|cjI3h3N%C)^bJ(2gT&z>sQ*}G>?K1vfZqli3}kHop*Jcok} z!SV6m>tdIvY4VBp#fwh^0+i6{DsuKtFF;hXqIWYhV^bBH|8Nm9US1;3_5qhf#l;<_ z-xB15%7Hk??UoKPgGGwkDZjXvGktwj*zid)0-X4Hz_7@cIA?w*0aycdr*8Bo9KjF; z(_@zqBsSMyH2*T68p5F*%rP2PoNL!UWbfoew{`1*!G|a4Qx30mbYVN$T3Io&u#kIt zw8*B0h6O+w;FZo%5LvoJF#UyZ-aI*UHw7oyUj_%ODk%l1a5IE_gog#mBc)?zha$Ys zRF8MeC*ei#sNfaZF(WLD>&_wg}RP>i&??BcN|lN>pj*& z#$zf4lt+C0e%3MikdMIMNI9G7*vKg7xw$Tynmc`_eSiNrIr#SEiJ~OP&N2ML!cBlI zZ*Ocs{X-D3?4+t@R(u=;sKsE8B4i2aIx+;f0OIxd4zxS=FOf*taBcM06T$rBSl$(4|PVE10B!J!Op9urDbzxmC7+Z zcyOD#(;9cNh4HpUb04rxKREODy60PUW#!K>msJsQB4L1-TG#RQ>sK;a-R(%E7RkgB zF%7D1T6oboKtieLw7 zaZPq_UoXnsOoF8ax>4k(*<_KVYn$&XaxQ)smLkNuq__BNLN9@{i@6Q=_^xrVlolM8uYetq zvV%$^WbJ`zVP=ezN{IaR;Z)V`xKjll?LWA1{-quMiw)-QYyLMM&)+9d@AN+!eLkD| z|4%-ie>sxBw+EB*9}GeN<@W#QCrst3bpQF9JRjPx;aetavpw-o&%lh|#sLA3TX7!O zLk_w>Q&VIJ|0cl@9(2$m^Up_y$x~_fXt*t^GroH7QcYOK<4u(LHi2C?6sNA#;#U-G zqgfAQPuaWQ?$S@S4>5(Xx4IBG68mZIJa<18MSiz+RKshBy0)dB3H?>2XHIV0NQ)=e zx0H@FjWji-H$|jJL{v+RiAhU}$jS&X-Bsdjs^ks5Ema-AFENqj(IfnEuQtCGrDxf~ z85};z&&?4LM7T{BUTx)YBZf-}{~j!Vey4~tSeu(EL@Dbf8LtOh2DQ3le;vM}x&G^f z-g8%x@OF0)S>Wm#{#4}sTICQ8A>zV0{c^R)KWeIE!Gn_(4?dJ-XPK)o^bDCD z+sDqDQnWro<!Fv^~6r}XPpX;}n3SKou*!CV@$@d_zR0#Omx$nrxoC1v^5CMXkrC2WQ*D zOXNBJVP)MDtmsep?OuBSzEsq1%j77spe07~BCPVo!c!;8Sf9`pvqSTA5mEPEx$*FR zQdF2^bUQONbGnUXM?LxBzVSUy<7%RAsr$~mm?moK*-f{$VvY2t`&`4H==graXL<8`W11-vf1Yq&wB10isqn{NxhQz#Pj^N z!n>n9ZUQk<;^I6JDqqG49E`N+jPGn-^18$8w_B-KXFA4_K|D`L@khIzFhtCOwg=|6h*nLC|iRQqSzOwXt7?T;-5HJrVn3bA8~WIWIFIxe(l1%bF)!aCVB0#k&(_(*{011jL+SPvz_4{FS*hf)CC_3H6E22sK0233PAr4|6H=;pBL1ogf$(jSy46G6H>0kXRR4K^F^5^a;0v-;?wnme}8w$ zGCxRzNM&yL1Ahkc+CGX~s5>SoPhk)2^7COl?Zcw!!ysNerS(2NtTM&uVtLHB;bo!G zKIc)cPe<76RpwqS%h4vw#_=`er2cP z+LmWMp2Lk!qJCqm#r=CK&rbTvP6!n!M3-*V;rqlhsD65iH$KF7=&9AA`Lvo*FKf<- z#kD>5BtLqEm5!uoOTSSExdy4#*6+TL3s=$?F17}S4#>@=b)TqN(BTl13w^|XrhZ$h zZ-3*$RgT$rx7z&rwN^N1zW-{VOYPp)U)rao}S;(|G=(c0-%q&aW!M(IKlKV#OcPwn*_|aYrvvj2Mh?;0Lf1}|+ zlIJ`f|aJzxM3&2d|ztwCmRBKWNl%uQE+&R~|1CoU)X=q})(@cbS8C z?#6XX+3KxHF?(iJ9mzK1K_14trgJ#EE7oY&lnncq9~boue)fxCUhp-X$?CXj-ml~r z&bn~1p=DuZsa7U(<5RvZmzMXwzv=u_kLh+UN9@L4I+MMhZqhR;%051Rd*eI0)g2{k zCc}m7N-|%3j#tNFDYjfZ`Olbe^|PLvFA6J61MC+^9{qNDOg>29U$8K(BRIyocjR#T-g?vB1U)62sS4A?xQNKeb3Lwf1Vv6^LY~-HtK4nR z73X=K>D8|f<+z+L<|W8;M-$|gEghJaW^QkhKX&a-fTQfT&~^u+MBrr`Kz56(Z!`~K{9yh5^c_tK5WbU!_O zXXj&V#6v8`0^*zDs!tgV&}F~lvf>!D^KoAp``ZPf8$)iV9(Zc}?ok=-q90Ax9_`Z} z{rv91^=yu{g3E5=6J_$FQO=`jCm&cx2rWfBpJbVJ+#7K^Gu@L=bmWiSpTcXE)6pfHyaLV?P$a+s)Fb-y0db`45fro%n9-I!NhMn{V)VU|fBv$}Umd z%JEyu<-Qy~v3!<2>6~$l4(Fm%7yEtJ%86^Ctn*8`U!#hz*dMW!s|#Hl{CTg>RH8KN zqu-<5Yu}fL!(2p+OdJmvxt*Ifndxc#%G*`u^ON!`ui?9GLVbF|FAtf4_!`SW8)d&o zMi+Gbvb?P_9de`!GgLCT7c0jRh!t<6m%@I$lrj+ucu{!Z=EmwZ|3U3TXV+ik+hTc= z;(2-YR_FqK!_6&Bj|*=;zvVoxOuxXSn8UH)^u?KGpU>07gmauv-fhcS+tJGxWc4n) z;-saJzT=H8Oh_H?&xZ5U{dyX{!W;DGAer_i!=5dd-evniAf+Le-xOj}T&8LG<)5e~ zbbT9zE%1E+{ks>Nv?-!S>jzU#)a}_N12Oy>Q$X8PsiMPDq|^4_@U9&S$3^* zXRb_nxiTH=lq9j^^UB+&HG{(R-J(rj%PPp9hpHkfDQw*_N6sT$HxV3Pq@^yt)EKgx zh}@ykQ<9mSQ7bS(LnxQ0A*AWvYR~Lx|G42tkLVXOR(EN30=JbR%eo==pq?AI0`LD} z=_s(hmA#Od?7PagMAkBWxmvK^J&~Bie!7gkYT=lM(1CUIs*7m{eOe-I4-n*C4^P}; zTxBGicQ-~je*Cjun>xY-`3{e6Dc@G!-qy_rT0iTQ zE*>WMlaIXfQkI;qd_l)WGQzL8doMWIJ((uE-S={d>#A~yM`p7Apy^gZ$DXO~olkt3 z-Zshd()edMyf@#hGp%4AN;Y~i^di0gSJ82C8ba6ZLZ{Gz4TPAlmrUNgeh`Zo5;3&p#60YGiij{_f8SYTrgD$o#=X zSXXeacfEhC=zCVS-g`T*D&KyV{=!Z`#MtvvA6K1*OOYG@-D~}wn^OBK=>#h*bu!ap zU#;HuT{9!DamvlLJpLeO`g2_M z|KCW?8*+vVae!@`70uhTFBLv=ChCn`c#wfAUhA9yCk^o1VbW%w@8Kvwt#()iu2HOW zmr}yXM}=4hpFvi7Cw_nEb&ebq*VW?#6*NmW<>yf}Lj;`8i{g`M3}a(^P7&x1QqBws zVgnK~@uur^8a!k)%4ek0CNKG%=WRh|uyDVH_xv311q=6;@35I)M(CFBS3rXKy4;(x z8a2Ah${%%d*b#oPT@*yV<)&NPrPF|&IEle zU(Y*RWSdt5z{Kv)ZEa$7{hOd(95W~;-?@6c5W{3ARj>4OWQ-ZD_I9Jg>^WM4cgOTj zMsOS_rgrSjv61auwCcmFhQnpj3`L zlfaE$J>A;Ct}83$O9yKHIbn|tr_25-9DX+;M>(Y8H(QWUknKKQj#~O8&Ere}4}(55ABl#zRQEv6u=FU!-jmY5My+(c`WeL;_T>`M;uBt68M# zslxR)7$o`!gAr@94l~bSttVSvOSc~2i? zW4oP&iJ__83pCdF9TUo6&0;kd4Y5w^o z^MwjV2#Ghj{DJBt>lIyPGGV}LwO#k#+U8qfAikidpXSyDIL%z^M2+k%rn>X2mL=;v z2g&pMQyMT(ZuxtWD7iLN&6fGCVWx%t!S9$#?skB;v^H=g5n2T`5*lAOO~r%=UO7&(X;nWG~iApaB=_^aNO&(F`_UMISt^It?&A z3Q$eB^n*-X>j-bG7G1T;ZdDB86Th3#zy&Y^jKHhqbf}d{0|&@9r)}1v1rNv(qI^z| z(>2F%d0zG$K<7CNU4`hpFjO?=a1E}8y$)<(KY&!P=g2*JfRlL-c$JE}jSv53zaq{V zus-IzIJ5LBH4Ae1*_?BHJ{FnQ2E;uUL}q`B!0eqZrR7tTtyL_oy(^z*GB^}Z2P~vE z4&G+=4;)F2>!P;+ibEFrlf*33jh4?7#vA7_?R-t1ErrJ7g*)`&=P>1B-?WWM2C#z= z{ab&9zIhQo$EO5ZEjH0>ef$1AAE;py=oIN}P&UP7>LBI8^932P)o0$onf?AsPofU$ z?Tlo!3RYyn7ZiK4G^q75Vlsm%;|40&ES|q%+nSl^$GlYju)#y!L3mOS@}z(;_mD9S zQ|rxNMOX$+(@)2OQO@RDY&Wkl!0cj|HHK1`{o6vjx~Rtst<5$=rk}cOX6_cEHm)gw zh&%T?or@n3%b;U}bqYSfD(Xgm>DFz6 z^=?ddy6tBHrXf^n66T!W-^~CDCs}l54W|LW@zVEL9kC?n%7bm;=mWGD* z_~1RG#7CaU6XNh7`qf2zVaaup;AM~0hXn$=({pkpqE39OQEvf9ND*f25_ z11VPubJJ+-k>x+$Xdazo1YH{`_x*>dY2G5dksQW2%pkqJ}F0DULgBO zUcY|tuy@I&Tj-8HXe<}f`aHp1y9Ss}vs?;2B~PRCByJ~(&H22_ZPlBbh;uKVp1PTr zD&s8Om1SLXaFlqC`B}s(%>m8&%qiWqyN6y&KQ!dpWS5Ml*EH)c1?GkB`lJXFc6=>m zUELlYarzjWmvPgwDApb~xeGq_4RlMI=i|IH{DU#LegReQvJEsY+!V;1T z-^T2zDF5Ur5Jx8l^_DV&M>cNFQ-okKA2jr1hJ#-AnhXFE4tcjZ8lRlACeUzR={=n3 z3opJ4FyZ(simdI|FeAY9PZ&4=PPF>px4v_Xp`)@H;||WU8rm=cuMzkSG7U(6q$Nvc z|0F4M=jnG7fbpe5fZJ#Dgc7d&Wid*D@lesm*{TUS_MI~qSOBJP7S@-ew`p5@H|=t8q}L_-xH*d#m|3>t7beu|>xG{J72a1q*$TUj$n%BlSg zC9bkH7|=p6fwtArQii&^b;2=aSYIy(>I!`Em%`HtH1ZdU^~Wa7bdj|kqM3>i-+8I9 zFj7Rrl3i}Jp)as=T_q18O^0a@XgbpAl}w!OK7M5$24=e1Da99Pz{ZzGg|`t|@;MF- z0E}83RUZ|;a0H-!_Sd*$l9oKc%${2_KDie@Mxv@b+tL--fsV5!Po`{O&+^-*ubMz* zlU8s!hf+~_<(>JJ_XNaW*rNC8b?q~m4^2I3!QAA=#GN%(@O;Pi#f8)l1Vp`xn|{ya zWstLFMWo$%44B?mSZ5a1s(DtjgygxWOjB4o8t(_)CXny!3zr61`%*+XvP)$)b$gJ! zg6k?P`K&^;<~|oc8<(csLscp1h&iUuv&P~s5anqE2%ap|&8~_q;P(%rfaDEMcjlHt3 z3ovyk&gO7G8-TfNx#6m-DTLuTE&!n0vPYbp-qkD9qHhc^@2HGnvQj@_mk#Ye!do>t zsb;Y_?R=ug!If0ER*LIUEkFxOALzOj(r8-)@6)itpE+2ji4n zF3H<3+u9_v3~zl_96gzQM_R!1M}GCW%EeQFDbfLS8gEWlAlDV)I-~C8HrU5V7Xp&% z(ef;|8D4xPg{B7ef||+^O*E({b_6Lz9Ek2wNKq~n4Rmiv)1Yy9Q83H3s7P#tmsZTo z&duz^&f^FSR28*SrIJIQhAW)_7-JZjN@M~vPXwte=32lnE=IvG=7Zl01^*b>%n$db z4@rBOg8LjCtZ3o(bc3jeQKlnM!=BWURPt8S3#6WfjHR1*RIrnqaO3B|=fld9ME=aZ zf?wy{h)g_Q{iQmh8L>4qeaD-7Zq{w-C~4<=byw5psW&(fqBX zEC*`FxcCP`VHkpSFa2U|T474%Rk^^*cGg#QOxKK&GGwj*v!m#T<#_GskzUCKr?}&k zLeH{iuqa=THdF%FmX+;l0S*GM3>vUO?Ib?n*E(cywCdFQ<^4y*{N;HgnnwNKzn<-{ z9`;?+^u)dTcxY8}nAY!Z%;ePcaNsa7QP@B%fxaMs7Q|Xyv4m~&HP!n9;LbR+=L0Z& zu27O`z0bMnn|)O=;{=ziN)bEgU#7{CeYUS2%RbSEe>_Bs3kj8h;^{_e%Q;$rIm^%F zqC2BL^ELcFFF58Tb0;5KUlF4>FCe}wwaqDKuYR*qeB)Sib!6qSrr9_fI9jSpRj&$; zY`c8%((urrZT&q<3!4G$W_tVhrOWk9wIycaV(etrhq^*LUkxRTP1rz!;97amNP}sw z)3dsU-q>PAi*uD+>$9@C+w*J!-Rdi`9n44Mi4{gt66X~@YOy5V%Esgu{#A zIFxcns>#GaGb3l^wP}qK#ANFlBPQ|aWrT5sBfb-DIy*5PWyse`6{^t#m>0#Io#A`h zjoUmxhv>55sOu&Nbb8mJs+miciORgagZYP@rJ4qO#_6iCzMG1wK>$k{Zdb8b`iE)& zl$JqwmkA%wS}po{>Ial4nU-@~^pW<3G2#v3iA0RmI(SEhWV+dZ4u+;>bN; z7by7KdmB5)rRf{Go6-KUPjhHv*YylpwD&{OKJCfE+BPhNmtv0gr0cEOEUNdmX#app z*hte&&6AurhVx9;qkPs$IaSvc*QFL-@ldkqiiP&^+r&`+aP6~UW+Qv=TTbK5XvB0} zDziPzzh96zkWJ3uzi}*`8Qc;79VbeM=`VSAhvkt_-qwiLtz(sE2U5ugqM5}4(RKCB zh)AFL`n$Lih^-jQU{O7F=;;*86v^RG(oE`o{C0wul-`}6H&vRcR6FSvI9EYbwaI(T zKJ?i6t#63THAbK#n+Oc0>wJ_yUgE7tzMNSd^dzVuAoYt&`3OKr@ocS=0}NY%SJAn@ zcjvy-vXA9{e>0p+7}oGQV^(aqGIp<9;o`jQc_r9WtGIH!N_x%vsFS+r<*zmI=V#Ga zxRUnz!E-1he*SWL=L12bhRSt}f&N#wAgo@i%p{n6iV;XS0L;{vmk@4njf#NcPGME- zY!a!Uf1Kqg;LmBlLUh%=#)3tWS#?Wn*>{G;Uhx=Z#JT0jVJ^06#t9|@qU`uGtuKUB+;kI7pzolv z2R;g$Qa6{(w2bJKM88}zdV4>rubv~mLy`}f&~+UDgse^U!CB`RvWfmQwGK1c_JXzY z=rc#^E#3CUg=#HbIcXdhzrC|-Y-BdwZYwfHmqs9N(rvHOYsgz}ctt7rc%&=5!(k12 zD?|Tf>~`!`b~*&sToVTwa|ZdpO-x@spQLXBkGj3iXofW~#Y21)Q;rr(0ZPaS$)|gK zIp)x+_4w~jJUr4Aan%?9EW6>^JC{CcQ!6dB8gcd5ggd&l-^op$U_RV)zq+8OEBCwm zp_OK&tTXX6JH*A@u)0x1tHTeDc>YwvFp!kybacg|?*)oa|eQgY4HFPf!D8|VIV zCsd@$EIfEbEX#DqMY*gMR~GmUzrBY)i=NCl@-NvMDOIgRIZr)euWFAqQn2j(Ht68i z?JAG8l8ED1JJz9;f9RD!21&1NP1GnXl3Q^&Z|s63HCOZ}dEXn~rM+7neh61u$lG^E z^>nD3Vu`M04WYe-8FFa(`Igm1_u8B+hOwXzfZhU^1xwVM{m}u0l7e&2`O}o!rog(w~G*+cV~jkQjD>QdrNP+jMWiwSH)3NpDa;m z93K96J)HEK2(i5!R|*ky(^yjEKG!h{C9s3qc&bXPSA<|NTaTWgT1vZCBz$rCN=5aG zed1r$H#%LV2a(hFUe@a6CxzyJCq2Fdoj4^JzfPn;~ zVb&b?78+NM?b}hfTEDCo8jm_vrNdqBbQ-2^L$e4DxSGN{tN*DN+_X#S zjK1*v$w!Is{crcD%fxrSorWl@sKx5FzRTS0&>{iuS2+{#k}0bN)>npG{U+OEzcfBw z+s!-w#+N(3Ya_A?NjVcPav`k``#Tpm-IuYStCc}@q7O+lqdd}hUE|$eyB+aT#-)^3 zU`xHXGV?Pz{X>Vx!8iS2Q!@&x>2)djh2RBp?`C51FTt&=6df~4!_LM%PtA*mv$BE> zm&SdHDzoNttLJ4IOpnw#k9Pxc!cD1%ZnXb;J)Ne+~ zs9QtIA;OlJ8WQBrQ8fYoi=1IuMbuJLJJ1l(4XzZ8jw29l@wU^`;{)m!DFqLD55)!z z>^aya&;z#cNbmVbA2eLa)XH*tdZcBR)REurcgx-U>$m>UUqO8cLK?((LFxtfvH%Mk zf5_U}WZjE2;`*<8!JTrfwDh5MrTSluz>yrjtfDN?&Mvg@X66Q@5zrLirCh^HeDl1* z^8$Y8fwT!So(5?IWXjwL0QIanIYG@txf8H#$S(s@l%efRI@7(Rvh4PK79yd`YZ`q9 zv89KDuJ<6v``~R=`vE0PH|FMbx}=1RkNQhDq0e6Y*vO))U1$&Dwu{Rzr8yBovNZdB zO7fs4k~6Ox7Hd7KWBHL6##bRU z#Nqn8sW6i}fy1>2?Ym83D9F7qrprc(2Xb~`KXHPz9}4M$L(QPZGsw&VvaEr$t&Wbf zp(24!emzxodyoJG8)=Lb(b^e%Lq50|x=iNcZeI#~^k{j_?{j=yJfsv#G`XmD`IHIQ zXL(~+i?tuhyOozM$G29)GJa&J3kO0H$0wmvi=B(A1v1ak+9?~(sAlXIcSBD|5dz)& zf_h%zr{}(^i+<%$rEs7cWcrQMXc}E?yqegcxMpM86Vm)TaC$UNYTgDyUFtp!4-VNr zTwjC+nsB2=1WQngILP4`5{#&*Jb_xI^7HedUb;biqBR}`H3v69(p|_{AM&Y*&=X1f z6?@`x)l^Zj=NIey2-~f*4bm&i_4bR~ApSIyT7`KMUQ zd>FI|YOzhRTrM+5lzQNXdoy-uPIV?O?a4T@7rM^qa6$7M}!qO!c?ba5YosBiW{V3NXOgWoE%*r z65hdw5hNP65`7@uCe)G(*%H-G8$vE^kYW(J15KYY97~5 zdj2Z;P>r_piY zHteQ#JdF{31j_RI(#pEj0v<9L(86YQkc}W$cqs9@97FH}y`ETn$E**IXXk8#%cLB~ZtP4`RuFg4AoCd> zCPdC8snb)8XQS)!r00APb!HX2Gly=QyA>$i@N>o^h%^}Q?zZ)RtoxsKT>r7)f6@6RSnX2}E_LTS+RJ~3 zW^DcCr+?Sa$==Ud&C$mhdI0AYl~f>|s@w%db45k9^Ow{vsLDW36cwWbi)Q}Y26s=V ahb}???+v@sT-MMAa9#h_)iOQ1@c#nuoy%1K diff --git a/mod/bootstrap/data/files/paper_skin_image/image-medium.png b/mod/bootstrap/data/files/paper_skin_image/image-medium.png deleted file mode 100644 index a086cbb6e33359d68005ab9ba5c8abbb9aa65b7f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 9095 zcmZ{K2RI#3*Y4%LyiMM(EaC%vRdG?AN=}Yqk^N*Z`L;O zfo>zEDg{9`3Aq2vFu>n57K&P`5ah=QK_L+kbO|nnY(dZ~E(qE&g&^S%5Jcjd*`g^5 zzQ8nBR*;2m@AjPb;v@*7{rFr~O2=n@Kg%~j`^EBY_z-XYdf3n#-n`K*-p(UI35_32 zam+Nyfzz5An~}nC;kpE}ZW(0BT4N8Z6;nM;N+d%k*i|POlo#k#(;GORFYwu=7j36} zwwqv7bx-oI3&@th|28IV(9l!5Ji6O<-16+tqKC^t;4lA?i;o*xrs+ewXTp^6U8Skr ztG}v^(tM=XZsoE}?UbH<&}KuCx1IeO9Xc@KskI z+D6+qd`Ujho$9(tS2-;Cb>}{!L_|bZR#pMxosEqoJ#@Q7%`u4|G?)pm`Q7vBTJs*u zNgWc$S&~fk!tjIpcM6;hp%1c6WDswLa;|w|uxsi!Fb6 zJwnXpew3dU7yrgFVfn9FV*2TBGY*_FX}kT;vNkiJAxuzQyrZh>u&mKB!sxlWIyE`@ z<%nKNTH4&o3U#26IgFqG1!Iz2NBsSi?p4=jL-~BoT#YFt5;-$NfshZQ!NkNArAk=X zry?gmz6f~T*3~6dJQ-v50T|0il$lYQV$H>{I;_jo+q-eexs%u+abbFCDR3G+SEHo3 znCYG4+Vq3>LdVexFYiBi5NsemwuBwsJ>C}-+*XN?JX-J5RMFCU2WQ8GDs+_#wRm}W z*okp#?QKRss;a24b8=#Zl$Dju&d&b(7XWST?+*_QJXcdg+BX0zcnUw+7%;DaB=g60 z^z_i6qyZH*HF56)N~qtm7Bt!0+modE;VFD_d|aZ#D(s@Bre_ON1TtQ-rzq0f+u1$E{^}^OE_86_*KS<3 za;U&;z)norH|OX@L%@|WOqIYyh||#6coop0!CWx2ONQ6mD2;O6$49QJuAVTtt;3r9 zP<(K35c;z1N$W3B8M(W&!^**ttW?ODRGOEE3SnYlX`Xd&dxFsppbweXwB6oZ;bGFz z(XG$cSU_BSe5Xf!)ZSiRz=eH1Jt$vhOo9V9zmtX0bo^bzZ8kjkbM=5yXl!Bv6^h1x z@=mExMn;B=j7&WH@JClTRYG)+dHWgC0GlvP1-Y_f0*7Nmc6N5y!%a<1y}j~~qM90v zgX7Fc6tu0KbG*2?c=qgBsN@gOHEO77{WiHKAwC`+1ZAmJRaLpz+Wy_E8wK`{>$&{9 zp77v_@O!Ymd*}Y+OX$y^mcm(Tg<30tf0j;ujZzDHGIMYY+c&f<9kjHx#Kz)?XS>wE z^X6Ju;T07X4Gj%Jo!LF+&*>k<$kGzW5#h+Wxw*Y~k!%R#WMf-D^1+Fe&edQ}R;q!s z6UX`c`=_Z`TUiw<6#@XQxe76>$Mu-=kt5{SXW=;_G^s=2ZbKMJT#tUm=bRkLT#bH9 zo*3D$tF8rF+p?@)j7c%W)+at~MMXvF>Eu~zeXFj(J=)rjf#cnqSDLX~aNyQ;&tNdM z;z@o10dN~RUex^j{OPIZ`%Pd9`F!rDPf^HzgD@^HXNQCW{#FlLqd_(BfVFS;fVDh@ zQGQI7YSSi`l$0=Ya;g_mavMCbxy$s6n;|Uq_Q1Pyp(C($*jh%w5w98#GhByte|y`kZtlg47h+;!w280# z*16NZgTQMyHhJ-4dVE~d*f{>9w~LDlFgl!l^T5-_GfHWZDG#+ zqzR9gP|{R%jf{*83=A|i-ERK*CMp(am3}j?k)+u=JhZ8STTI3r3z8#}laqn@%gU5! z6RYPOTbGP=b$d;@K*kvh4pNGhhNWg?XRl05xC5IJp3K=~zk2nGfu6p;p#cR-=o9fh zrsvTK4-bb->*f}n8x`qe6B4jOdV71(u<%`lDC2sL4})(hh*I$|(GvYGPwhOZft40# zW=Qa(*VooG#7mamCMAX61UL#%6jD;Kw=Tt-!9fom9(Bf5sRNeo&4&5ohE1-yd3kv) zE&BQ6IR-4rO27%nCnpQ@^EkM;yu7@vt*y~fQLdCO_Vzpb`%jkGN$=9=k0T#`e*U1& z6-AMVZi`uddk(OsroX)0c=?QLy~jsh9O)}fMPU|U);GB!3g zF`*t9vu}tuh|LuVflX|<^Yii5*Vki5eqCN(j*7yBr79OsYR1_Z##uG!YiinZk=E-w z0aLrV)pVKKIykJm3YF-j@x@v3q@5qGa3(7~q$J@qmKD8+j!KS*!e-;-lnDCQB%dD> z7spGEfC#9m6I3qsOagnX>-fosyTY*o#i`@hMZ6DmN_C)W??dDFMb*_@3=BP{T$Dnt zcd+d@2el04OS8u>9v&V5@wK%zQ7UzP{d5gxbO`jJ70>*)YRB2NbqSU_wBg>obg;T= z*0`{L1W%TstNgcdt&Xafg5?DJ=V@Gb~? z^5hBd1I=q!p*Mp?2M5lc*n@rMH6K)p#yd~S@U{Aw<@`Tawvb#r$$OCfy7j4OQQk{3 z!Hqvm$5(H~!nRGhw$A)I)fe6#JE=drG~sWKZ*a+=*!Im9RuzZmw|eHaGbZwlJ0Cq< z9(l-;pOrUWOzJlE+Gsr5aHv^2OwLO>DKL^A{(tTgWYu3MU-mzHw9oQEcy8YdUH8Kj zI^RAAag-Uz*1)RIk^w&ZS=7_>V)WUgyUj8_larEefswnoG^(`EFDz8(?tb|af|&Ag z7ovPW9!N5&CNrZPUcjhJ_DVR5aKbi;)*!M#v04!@9a_0Cxmff#!h6IlTJ-S$@5RSj zmV+AgHz#^YbY1C{(h-RX+335iv#bz^XBTH@XD26qVB(}wkfqz(pH%4buzZqCyc`IP zB<4|6Qqr$B?V2c5rVjphgn>)U4zD&H&yyP!J^7AB9S}l{MKed+bqO;qEG!((mbl#- z&zH`v27qsC%j{nL*4M`gf^dJn!B(nji)^-Qh+I=6s(ZD+{?MT?M*Nj59g>zb@!mb8 zCkC6CSm62I90LPGBB^XQ0O#gN*41h>wfq~Tt&)6da=wN9iQvIgiA37JOenf;Zrsoh zAu2q~@f~fDL^1?jmTRqW^)a!IK%|14b@7-<&C~jpFm? z1H;2kwzeUfLxt$5C^53qg<9I$+MmkGxbWhBy41~WdA1B#;zV}?^zrkbU6s!(g`IVW zN2Yw2=^^loHLm*8LtJ|UsMBO-^Q=d%{v+}v!sPra>eQ*G5Evv+?m}}PLrGCAOABg{jtY}k*^vdBi?i+*c{(tg_l!CuamuI8H zZM&@NwE~z4ceb`(BM@0){^#41#hT`ciV?)zvICH0h3=ilS2_ZjrIeM2lGMd78auD= z@5`l4+SdD?Y=WmNB&yu`_U7tPVP?VH!Xn#mrxc0Qh29QW;*!7uuFqy34oe)QBNHgu zS(96Qj@Be@juI9=J1w-l+C^3vWcwd9%f%6M7&dV|eY#pUEKE3uM4nG+tG8clW<0DW z27d59T;9UW8n!m*47&Ch6^o{{P>84W1wD@+uLJH`a-Q<`Em!c(zp^q`bmYH_lLu6y z*butZzb3JI3HNG%2NHHT0R;sGHTCTPQ+B}RcJa~C(cIjes;a8%#!dur9D|tH^|0W| zVvR*#{1cJSE-M|5b9b!Owi-bAu~9w_W_a+$kcnhZ*b5vL8kLN zn46p5{En6wv*pw2OP2_~2}Q&DF@GpS1A_A)%65qGrMw0#waT#By(d#@ZRw?Kl zOyMPX$gC-fq@&{=2*`1z3YX67^LGr&_>@ADg<9&FLWv*lHpN0MKtk&EIfRG6c>fxnrQv*8-~ow$UGIU3Z}`XI4N#(RcJj#H-w}`B6nT1qlfVC(#&L z_ZP2GBujPPnO@r(MA8K$LtI>3)y_*TBqjk5FETaG4Cx;MFSyQB8a=H32w=U`>fLRH zB@BTOvKmTh|93oO>q|$D5U?4^q*I9hvcX?Tcbap0H<)T3US4YdJ?{FZe+^%budac2 z{ehLom4mRuBr78}hEnO?z4fPMyxTC_|6n$&toZ)Q0x$(JtziBcjKOl?(Ww^sdtbn9 z=IU%TQ46)2O}kJ}jWHgTZ{OE7H(x7%S*NjdQKm+B8Zw&sjMrtk4S3QWc;XI29Ra>T zO@P>KbeszdDDZ0!+MX!nY(JgY9L@kV>jKQA%BaT2x7fVtkTMs)HR#t97V%Y-;0)!3*2F6x{#CXL}M@I(` zLZBP)#R>K8U#yH_c?R~f#wX$dq{%}Pmj}}BwmgPs+zJnTNtamPh;v=CJrg}EMn%4E zq_)Vp<_KW=MSYdNss(s@5s?C-dRsXQ0?_It|f_(*Qdg}0{H^$|i`q<9{` zMgrFnf+3U?iedaQrms9b+b(xLfeggZMcW0648IuL-~XyEUFio_bB%skzg{up1gjKs zY$!yH6i8$||Nfilg>r_PDZ*#np@7cn)Bvua@CegOCE9`0_LaJMgBzTY;Fg>rIoXpT`m;(D}z zn9)0*d|9Cz-R<^bfdCtwwohKi*qDkeh$>B)cdfvdz{J2HL#y;n2*3H@jI7H0(OFZK=&pDHWmPc}xgB@$YEurM(Tv{=%& z9BbfH_WXYNkD;xzOTdsuM%17mCl}b|8q5)UFa7;n;q3BUC?S38&y|%OKrjLhb#ej7 z=kV}we@LlL+2y4lpCbx%d3ot6oFz-UeRw!y-;ih*0|XOmvNxpYy%-7LBfq=O{=Bftf-M}K(= zUj&HznS!E?F7-Y&^#MNqAds{2kMS^{QI7onT`fri%D z&i4nGEMtCNKVulkZtKPcpx^-49=Fv2YarLx8yg#efq}NQ8Xg`VU<$yj(z$@oz}VU8 zvBP@IpJk~DWH|Ap0s0IS+LteqzP`;XhnyT7uY@R780$()?a0q~)tIV*I#es>CB;J^ z5F8vFwuT?aZKrJc@G$c`J3DJ?YU=9h8XFq{AZlt7M}IYb{v6u_#NpnNPlWVSh)+NO z43iwO=_wp3{S=jr06S;g_w4Mfe@9lSeQ;2TvQI=$% zMjv%p8|ECLklq=C3f%^M4gzdeHnwT|1`X!=h5ap5KzacLfCAEB-a9yue`edDpQWa! zt-b!|N{mWfRTZIMA#V+@nwgoN9@uc_`yGew@Qw%%v)K?PMF7}LfH-yE5m2#}m6a0{ zS`ZM)`}_OTwtS39c0N8I`qrNsg5{T&FUcUh2M>TA4DX_O6a$5*6$5typXGQPJVNjK zbrKyN4ZsNmuBPTg@~Friv!Kq-_I4x2Bos+7f&t62l9JyS0pn~S9x%^aWTJ#8X3 z;u>VKe~h`(xe%1B6iKYAQK}=JtxiJ#)&gLuB3xXijSDZ?iKPhiD|DF&2Q7JY$fO(c z0J`uWJn(2XY|tOxa5sYK85un(qsKr+Y0yWwC*4U2(Ft^!4I{8lqE?I+0t_1(8v60$ z$Jp4|*G_05cg^wfQ9}%2SP($r?Ck6HJCXY8RfBOAR!D7a?fLon=H@1FB?vLyPyT*> zK*c31F{Jn9YL#M#fz?0z2671KR7HB}X{BT({`O@>vHj~iwLS4p8o{aKaDEYxnEtBX zm6Ce>9>7S|jL6pnf|p%pvf__@lU%q+zj3kG8eN@UF6@ljGVnQ|<^Rc;|Dok9 zkJ$f9-_LO6u zK=IQbeQI4V?0Z|1Px-Y8b-9tfV|rqvi^%PL+Yu-Ac0@{`i5rqLZAENRFEdC)Rcac` z%|qx9EJusR39~@62o^Ev96=bXOnmqNO>*lhj0iuvYT@5ot`L_oKSN=~i@{(Maxd>4 z!YGqMGeO3+1>A}suX=P35V=*$-~7DL98RVpRm*L%VTLR_1WGH&qGfrJ3)kn%;hBe& zYU1Aq+QLWvwVF3&V6hPPw>+$M4k;(oCiyxiD8t&LwjjKfrE8kY?PBb&?vA+beSG7u zUDH~k7tvZeyQJs*M$L8lRPX+uB0m?UZzdc&D2*OfTkWKmWr%W)-8ezH==(hx3g2WE zjGYcQxzC+Vos50W5VN#pzUmoXA{>W}nTuGn7LizU%@5?AOqvD3g>n(Ha-+dq7_2~x z#skw*i;>tmpwV)*JcA~g=gX|UcXVHcU7$&IFDcrEQ?!Eo7o`?VIIniKh<3HVR!!QJ zGDUu9Yh3J7mYVy|229J%T?o?&JjqcCg`)}j% zV=#B+6$|mWjH_F_wH<20LM53!?Y?xb95SJzKs2tDOs~0L1APUek`M>+A)QA6?pRhJj(Xx;f+^w))z92>IkV_?l`AyIwuxJLYa-4S-(1GK%ptJu2W z;laR=tZNG7K(w;jC~VX}BttNnwl$Ye`1o9qay1+>-aZIK=5%d8J9gfjfK%<2_0$YwkFu zp{8L>3oDG&0dwU7cj$+kZ3CkBBfdqT_NSFyLfyDB2HJ%&u25g0o;T&?d*qRRw5Cf* zvDbSM-egZWxiNV8L%n6cu^9cfwD`dRyHR4fVfuVqAl_8@#oIrOL-I%RMn-lXuy-y2337mui&rn!P}s341{nf?&ENY@7p#64Ftf%=cpynn)f z^S=#-Ha`7WyT|+zzc54UFHgyXunW|FZ>b$YuU+9#h9AU&^&ig2`HS2BsdUZo56+u4 zUP-TRv&MY4rp8%=>)N}!mF7t06AbYir&hdvZbLlzeW@M#QGaIKB#9RC`*m_iB?=PJ z*Usr0lc~Q}$YVH8!Rm<9Mn`{KAL{+-wUKC>HBBaa_e`}b>VwgtZ8qQB@O3@`& zNQFvh#H+e)zcWp>=a$EP<6!Dwk?ccv7;>LyEs_h!E&L&~EfKqLaV6WjTzMgF%d&1D zG+HazQ~C%tZ-4tea9ef!Y7hV3%J*5O`76$i)L7#lDY-?djfcJ_`>C(`#8ZNr(rc_i z0&FrZTvkfz+y1no^`~TMKhk=7e6x4bsKRERjE(I=WY^&MOFYLv@udR9ZC%x8;(H#%CwE0X8&G{a2OU5O4L(VeQHr1gm%1zu!8M2%gS)f zV^oL0qoRhMj6bi>nd~N&7G|xU5Vf-29JdHnw$$ZKsh9+Te!6-wT7z_AxzIK< zU}&tc4L-ZkyAY8`?(+~~EjhdA-*ZLg#DJkn#%9a?xCUO@nKK}6S9$R}k8!%-Id@Cz zVp)}nk*LFlTBNIqjD`8+y+L2z#>U@A$K_YOXt+)VE7+f{ZIwc(7^Z^pV#CKcLqDT7 zeLx?6Zd!zL_-u?`=DO3YiA?8+=7OT+_Wq9gmub9;Uy?Ogv!l`r7t|1Ynyl;bt~Pjm zwp)Atk)xmUmmVn|2Lq*b<1h-OqMtiHu>>y`1@FkhyF`Nz%FB$0IM~Dk&ohfO52@U% zpD{oL`07*UVg~Y*$!qU@MsGQO+sr%!`I2n@3)YKo2B@OO@&T1J?tGy>R+31vfRuw< z-fWH2Xs^`E;M7BrY0?~eAKv;i z?obUBPyA6QkCk0|!CKxZ|V43a5T9qVKTX^3OBc3xw2DA9DzQ-bz%~G%d&;+AHx`-o8t_qOtiW ztcygvl||{sU^c+mLD$%eW@IH4LmdnstBR_7ATx)rag7EGLSZ_LbmlG*k1X5QxMj$^ z;IAhR|L0_zBdv|IrA3p4nkHyCGw9DnN?JW9YK#Z9QK?r=3k&_E$EGE~i;{WD$00_D zvxdG(<#l$p06~4%pKoruo{~hMFujgx#Iez;F)1>uMJT>6tW!mgD*=(TQ z-BCi}Abene%|8@3`=~i+Cc~xyKsrFE07ga2CEH+mBjO72W8cfu7BX70mw|S{|0bc&b z8u_hmlMIi7+_ji!F2jMq&hAbL9wZODo zx~p2}!BPhmZ(pHV-cZ&$hm|jcHWSp|?rOE)2sh#|tvSEm``EuzV^NQjScM|xrGVo_ zLIg^5EANKZKb0K@>TjSHivjMWv-kO@^7i5D%eLKxCJF&Um)P72S>y2J(`hy`heT>K z45tlYovz{v{qDu;4xdTZ-gKKS2U-e>mj*~KWY3r`!qo~f$=a5k%o~^GA;I=X%IkpL zYvj6InN+NQq&Yj;jl?2?%^{$g$2wr$r2m84z|vc_<|#bc)eLk^6V04F${_4&`SNLB zRnI&xL=w(3MXMRlxAHEFfe6=EzmU^U3U2h`{JyL&(#=bdvqzwY(bc;7UJbVQXi}83 z33Nn;pLQ`bA;am~^XW3-sZR<#k+8zLIBzEj;td=T{L%K%SvRd*Dc`Y~+?OO^z2YvFMVAb{*D5!`&lI=K;GVk%qoaMSmee zyO!3b{S65e6S5;TlL+n#6WgJX$Ob`f!qpG6t3ui0;+^zNobg* zj05C)^i_A_j{{$hyS^=3+!hViHVIpb{zGNA+L0{Cn#UX8#>e{Qrd6pFR9L zF8|*8v-*F>Q~rVmz}}*LIXIatdARR(Miznuw400+c?-0*te*JV~8ayR#V)uR;| z!tfViv((=2m=_inHY_^7e^xo?^lo~`OAG~q_19DLeXjNB{iS(<0+MpH%GXf;+I68;c}T~MQ&ZKPQ>%&A`)AWd>=~n%fw*|C zPe>Jbk1r)mqBlLr22cDu!GE|K3g&r)xn>>RU;O>I9bXP>*`hP%c>odouk}LgKfYj0 z8)3EUUcow_(uQE22TB#GFqW|TD?+4`l-}uZKHfXM3Q9J)`MtTx1j3Vn44+)zvI2n6 z&nW;Poy)FS^~dp@$Ka;wn5DZF!hqyXE36mq2!C~jva-iju)aWupklJxF9{_77)}s` zKtM1^m>~Eq21Qok_K^-Pt5WDW8dfm2=ee2lzEo>|zBnFjD=a@~YrOENMsUjL_?va| zpz@^D^)Dv%OiI6vH}PSQh1a`Wm)q{SdP4oKf46jB!`r*>u3nBA*~1|)+^q|jmSww< zKG=eJNaFjb4kxU$_c$V${buCEGILi|#RTW(!I!T`*H0JB-3Effregva;0q?66RDOW zTiMp+?&gsLxA6A;SK;XWX%;1k5aD$x0@%T_&&u!WgX{fnT?8=8xJ2Rogz$<&OUUJB zR(zwI`dhub)d;-R&9V*ZB?Fv9h$qdAB8llnxeB~+fh6SSa5&GcEB1bWQhdMTXIb7i z32MI$f`&Ie_o>>O4cBy!g(pIfJWvzOU(HqN-9#+NW--%1A@1*{wi|612nIBYpGa%-rF7lj zU1tFlT8pOXx;^{;vs0NSDE;n!=Uws(__ii=kq*p#q%kDK@Vj-puzy-*YP@5ZN(q<8 zyv@t;7!t1pt?xKei&6tkV8q)vP#N~G_`(vEpcL*j(nGGTo0<835%pbHRRrgUQ7vq( zi?c@N6EumC{*1Iy54I|uR=gCUsO6B7Up!qG>#s@7zMc1Q)Irue&wuQ_Ypw4*%N6w8 zP#29-J~9mEyJ%z-ljZ;=B;~$2oj4>8a&qvUk~gl zorvz6-Rk;Dn$6fJ!J8w5K1H-eS~65yc}0XGKgXO#J_;&Z+iEs=GD{+@HQSkUk|-na zZBcR<)ZH9UNwa7{KcbZ`h}O03R-NuG;4#8)>c)7wB|>PYbENNYj!T%}53&fS+!*KY zK+PT21!%3v0Izk+`GB8iLE`)+;*V?_mRuEey4QX~i#LiV_t!yzYM)h*i!m@&)7Og7C8d#!os*vs#l7RLYn`(0_?;RaG@!$(4n@YT9jQtw)|@f$mdc_1&%T05yqP|MNb3smB2%st{CX%C`aRM<7BPP}ZD z^sc6!oZS5$I7t=;NZx$e5l1Y008_SmONCvQ2A)R9JfFoh%CGS1(_wrOVyI_LvT-km zE+TDZ%Dwm2qpt9Hzx)1c6bOOF*7l4L^EC|t_>FH@g6Bl8V2r?pd2`tBUQAHD+(g3L zP5saUW3wjRmkQw3FNS1i=KfbM9Wt!XPN@mOJ4v(oWfYp)s?WYlv^i!AECKpRQRSJ4;yS$)k#e_zh8$BG#~?tiCa z1<=ke_xb4}C`tOxcMlzVwt;*$M~+n-xveTzQ2q57cY6)Hd9yQFFWuY%!B!Wb&hywS{Wlb8fEi)Xxi64uME zRUq;hlMGdguI`vYmP}T5&PPY{r~u!Gdhlzhfyx(OpOmlW;3>&-ufmuH8odlQwgs82 zome8^gvKsefxyp3*VvP-e87>6HtF)gQONi43!`B|_gn89nuiH;_g?3h+<1mJVoY?P}R~#|hXrx9LJx(;GwE)tUF^l-K3j zTGrpHaZe*5dwDF_A)h&{W6j40sD43UNi}`QVIT6=eV~AuV}$~0y&2EM6{|w?2dM^94oO_U?q_@%8cpW>DGOF_Jz5bh?LlDoYg)?U#U+^ z{I|lT`!JPqzXJw^QZ|n73NXa@rPb#_qL_ADhP8-qMTbNezsJ2^ZaECx7DrQ;^x+6Y zpTZY82T`d$uE3&t&LyoYD8jmN$z2D+J^XN0|bnaJ+;D61|WOZ~>ywbqJpZY=sN zbnuL&l&xu%T(yXP-d_1C3onIiHJp#6qP_!mZx7wgeOqIDZnBjvK{6boEad%mwR**Op0wRCodf-D)F^O z4r^pnRtBEv20rHW$L9l7%E4@*YcH(xT$*E9-p0RE$oE~3eMIf`Mb?&%o)WY8f)bYQ zELGU^ydi}~W#nghkt>FUXk0F-+hb;j0n-(P{-M;AkB43B3F<3CvTPqQTW8t>-9gW& z@fu=jhpacF5saw~kym?(-J`_}CcQrgY1nrO(81e44lfMT?Bti955%%=h}zQa5x;)x z)#mvD|Fv(36Rexye1yQK1GeU}#+6c;Fx^-3$XG~d4S$^)DOJMz7YeDhSl<%``*t@S z$(~`#DL?bp^JxQ>!4En)?ls4~6WLN34Ce9VKJ0>qiNC)&G6Gf$4-F=hD)1!d&0c_< z=Vk#MzqR>CW1+-gT#rfty88n4M21|QX5szh?Fg?bqHpNdZn%j2tO$3f6#NSD-hsY+ zI#DwMi94wv)O*h3a(bZPz2W!zfLd*uq%>!ZNC9;{^ZQS$&(EHZB4BsX?*I-F?U;`t z84@4+ULoE(w>ZhD^S39X9%p&@+dEV(2se?tbRw&4(rb}KoNG3rgvfAP!7?riY>V@T zC$bE1qoWiS7|(UxRw$_s?!gDvocK+wt>@HuR&MfLrbX{B@KLBF34M~7u1|u;&m$q8 za`|j1FN#Dzo?z2FDmbIj23jbF{dKCk90HJTLI*Bt}0EPVn)eaFId~|>)xgB1#g7t!Xbb~!+B=w8| znWb+|dIE_Fg81%J&CrZyA;W=OA|rg)T#LaD0YLdTb;<@=7K`uqs41L9UOO zNQI1DnuwV$q>9~{vd46CNOFnJJ*OmvD?;=p&nUHfqy$)k(hm-H_Z&c*0r1vxnrI`o zrUgb)+$8)gY}B%?bvn2P<{fgjO#xYT0?9K{m}S{;#P|U1ipc&uN9b zJgrQ8A9VAgzAqVJY(>u6Afft;r)(d}#?aT{P7>(&4LKu%g)-c%vge!zB8Y}$9_w}X zogSo(wv4>i{4*^FG(xthU@fR*G|S^aIGccLuUh6~eS~~)okDO`Ea1{_pZ8#944AN} z+0QnT63)E6f5)>R%T~Y5OfW_yQ*#?bF`}}bv@LFMij8LU<5_tmQMGox96H-=8oJwT z@sg-@&&%2wuOw!8N@GKV{UOF%+kx)9ffB?(A|fndKL#3=B#Aw>=p6x&jN z;2ki9OMS0d<{fG`TSS_xWpW>m!)jSrcneCHIrXC+SPl#Gbg_#OXRpV@dMg~!0PA@2 z`3W8TN?Ysi zO45ry5g4QV!4TV?1fDw{ngMJ4x|C1aP;NDFydxh_y?+@UnU;{Y($GNex;!$Y1Qp#< zkCcyi5)SF#P34coOoR|!k}v^xhm-pg5Gp_0IxatdN7Me^#%9@D%hni90U_dMfx`B& zC3`dWh+Fefxo;mXi3Xe)u%FD?zO5bIZUH^=oBRGmn^3AKNASg)(D zL=EbD)h8R)wMO^!9(HHxAFZakuYvU?DlTIw!9=0dJkEu9rsSc|J)Z)^w~kELfKS-RgVN0eCwdf33y@V=5BQ1TIyXWt?SZ3eJpplhl+ zauPmwrp{U#PEX$lZA2U*e_mJV1h(89+s=VkmSmO6DqAA7&>szxzg2BIw_c{xI^dIX z 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 K#V_aw{{I7fT9-or diff --git a/mod/bootstrap/data/files/readable_skin_image/image-medium.png b/mod/bootstrap/data/files/readable_skin_image/image-medium.png deleted file mode 100644 index 3b263839434ee08efb3cea2c720285b9c931f88b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 11994 zcmbVyWmFYk`0mi%jg->eNOuZK!$B!&q(iz9P*S=@T12`-x{;RdmXPke+uwiP5BI}e z>#jQ-&Y3fDX74wi=Xu|mPin6eu+YiTAqc`!Qk2yIpMBup0~H>;3m&mFgAYVYsh3g^ zR1t%5_ZA6!r!iI3cnLvX3=kCX0fKJ8rhq>X^qvcXc8wuOI0b@895Wi#MZpea6J-Ti z=<(m**Pn&)5X640BrB!mG50s~@(n@%W7}cb)xv4Rp$l<>AyS^ZdO2JW&5YbV?A7tX z?+MKxGlHxF3E1QCbXv?B_+E!Uk#G^|1FK&O%$m8kNJN%$e>J&0xVZn-S!HWsX<=!2 z`{lCP-Qog85{=$S((mi{0DSZx$p`M%*(PfPk!mhQ-Q6a}Qa}WP~e|^m%H)oDnB|3aUxwoeNL+|j>L$t!Kg!rc} zbyAtarOOkXv{obo5i+iV@_jjBf^d!$D_1B9Z#lRn?xRuHHceHU^(49q>0dQB8hyjI zU^wqokqc7%)Fbty)@Z7$hf4?!Qd=qGM?c<$z7Q&-rDk~CvmW0d_a!l?#z`@G>fuxP zlSu^zFIhT!^owXstCU+byj?rbjHiF9sUt4aXG$d=)D}~V~t}~-|8i^6~hhvP}sYv2$fP{db;GHV!7v*SbT105ip>7 z2w{A&r|7EO9cyOTsYcb^QWC;G-lE3}PLY%jm>p1R_HwnkHD?*R$R>}ym*%GLfP++p z!nb`gY=G(l2?F6qD49&nB|2pRVKu;?%?7p;z>1WftLFNbUQdaDD2`; zKoHOFXp55&^c5H;y|r3dpuO`=SVac1Rw)z}46~C!p6sHS#D~6CDkM#O#79JBmwX*s z-i3|^eKkidK1l2*au|bc8dRDd!+T+Qoy9`$g7);DL6Rm79}I&Fv~&B3@S(OEHuZZb zNj+@ptY4Pt*gG;HY(*3?3xCz${39wnA_JOcG5z{PxJU!)GkWANgW&QQuGzBk`a^_p z5c->ZcV|2Zs*(}rD-xvQv?A-d>Df#s%Ml7fT2F8v+(qGn+B&73G(zZ-=sDiS_i%Od z`&N<`2!5BP&|!L26sK?U(K$V@`h`*_l%&SMY@IAm9O1D2jA*g4eH%T6M&V-}rYUyOE8gC|9@d#=*nfwue&w`<;?JpBU+(6w6r9rMKfgr4xEL(yW zK|jo%e^sYn`);V$XPRe@s?3(0@V*~^fX*pDE>wywTLpwn-sIQF*RIj)jCYBRSgeG) z=Y96u&uA&++z?*Rb4I)kuX-|i_PTn#$cMN*g>w9d7a=30`%xkJBM4bz%je=H^{K%N zzob@94JH_KwO@Rxe(^RJ*qw@yMu`X?Hu%zZzYJ5|K0d)PxE9m&{XJ=khQ>Gt)-bM; z8R7XlVWHoC z_~lhysh~5-8o?Rg#nr7UgbqnkD64Ea3+w%HO`7Lt$zp{oYcp}{^FaM#7(raE$jL2R z(m4~aV{HYeArW9cnM)u_q1pW7uEFL{;?O#Kf!%<3zWrBHuj9Do6z695BcmJxFb8#^^tn3@^dF(yDqD3-|xNdxdJ-j9_^ zXQ+lifbj0BG0Si8eZ`YA34&B#=hwN!b~%5NQ~}^R8XmSay`T^xjTZP7(M&oJp&~&t z4-u!m*vmW~UjG9=KH1ZF0v~Sdb)Yx0`k$b1r)H4)lz#i$i^~ibunW1B3J`l(V@zWi zFPb{fz`c+8cZijpV~F50dIluH0vff*l?XHl!f9`iZuXZRmN^=rB9m>fQCSiQ65D2` zJatN;IbPKfAfyV)<$-50{S*l}#z3OSFT2f&>qs9@hpBWou_mgSZFfPAjW#W;ywT6r zLj$fv#zUn1mOM-6j;mL_Z9h2K{YIjn`@+(-v}Jmci-d8gX+AW?ZsT0)AT%{t$~obt z*7-Z3$JCFHBO6m1;#O2%V$lzTB%uR+?ivA)TsBLi%ZiPyN4k%3!bx|@uASfNzdGKT z%dNcdqdZ~J-xPhA6T7ev5oLvSrC-W_XeBdQ?NbXY-RFfb3q=XvZhp``JUZu@YTeSyq`O z&DSL&zhU=~<#Z-Obn&bhKLfl^vd>~anrvoa5}RQRJ6*kdmiU7C{rLz=1U@?33#M|W z><{q&KdY%v2W}PoY6!)-d;K|Kh*C^T9D>oBlA7du5q+0cbw6Ni#Hfhyfh)PmXirh$ zHB$!D-ar8=48g~8&&HNtS^M&q8^4T-jFgp=>+bE9NPEghUQ%2fv5(zS@)`+3L_~z? z>7}NpXNmig<3DEa*eZ2uQ3Dt!F>?;RZ-U0evzLsp6% zK3~@%VoVuGNwxbw-Wt7p`SShy_u!qKo&8EzSy@>|M#jkKaWq>dK0bcA_SM^|hlhvP zuV3%(?zTQY+$sdf;eIGAEG#WO$dQW(3JThS*U{2SNJ~r0&d$!v%mmhLyMfA6R0_U) z`4SQm($LV*($Z2}TO0k~0#-hK`qa>H4Nji=q1Ulsg27tAGF6nVIF~=fB?>r>{h|_=)&HNI;NVRAg;pvbM2tW?$YSgYfty zSX)CQCqLiZ!lKr!KW?$fJxkDO4g5-PH0AAjj6@Rqn}XtE8#}w7R%1D|3emr8l_`1? zsl5cTQ)>L)s%&PhtgKM3qw(;NxlETDczJov&CRhGw_gpIr+bDX4vvnhX=gCfRU4vA3`<<{70Nfg9{7#s;Xrb73#CEw@kf1#LQeeaO6KL zy(N{ODjQH`c^ueu#_U|;=1~(5eoNX+{E$h+wt0mp)n~@DnWV$~2_42&Ae~JUAFR?b94HArpd|4_4V~tZL@Cv=g+ew{QcH@qNu2-fTf$<{)R_J zZa6pazNs!MVipwixV`ubwu8NXetx|%)SRrWnqzPq57c;gcyDTL^_tvD3JbSC5iqWh znrshevKYr6^YZXSQwXi??O`ad9UfBSDEwsoyW0> zRVWHFa)*^!bZ2Mh!NI}1ckh6AfN_O|g+WAu6(l4i6dbA#J=BO8hKhv~AO!jO`L{>1 z9#2OkMu3gLwYZ#kd8;})q&G!^jEjnkm+PHq85k_aa^!#?fw#DFLoi4VW~)%_@!<%v zh}dAm4Zqv!%=bjbVKp^1OoSe9SvyIs*OFLUz6%`dsEUaWUJsv?pMR<@jz`K^Vw)?xg??CpHmfG9d*_oT?gR}t_ zw6<<=T5iEaZsG{#_ofq~$MxkED@$?CpsN32km}IyEeS695Q(n%+%d4rY z+v;=8GaKyf?JX0pZe+CF)kP;NdUt)g&1u;DF(QJOpWgsj3qTC8O+( zC~>*2a(N6%`XxS|{9nLP<$^<=7b> z%s#ig>|kMm{3by@w_P7(lJjOqing}4*^}qbpUYrv930pi8ykaPvapz%okgSVyi!+J z2SzGi)sA$p*$;rh^bBtdA zq7?)L1VG41+@DSOKb&S!``;Z)JYM7Q+0eki@XQ9(EG6Gdi|>`&`Q4xEny*tn2nz{$ z{uzA=c#5CD1{{vZ@Gzk&0Y(bKP)k)c=66lraVePW<^a*=*=qYw@5|qllfcp-O}+p; z5Gda=M0itYpWi6WOG}#zb|e3{94t0Xx3xjFPR7PG*N&YWDhdiH?*wUSX#tM=(vM9{ zfH8;AmSH^+fFKY~0Ad`>{w=P+tH9Thk&#D7M?>k)pOBHIrl!Ukw-1j2z))5${`Sp^ z;U9KtAV<)kVs`rY`cD4-4GyQEq&!^unGVn)EzJwC8zUp5si~>2?|rIq>;W=Sc}GXb z7W~wLP20%G;WBnocrYPU{(esfWO5&|t%V@^-oZhrq}983OZ85sAjtt}0I~o}Zf zm5YZ*J)r6Q{LP(-LX(P_v9Yn48JMc-;c92tfWS)!hr>8}<*z+KJlhfg^LR}V0Mt1 zyL)?OdR3u!-@of~xVyOU^6>#b0Z1$xAo!GH1tP|lD~?E0Qxp8y%+ZEB-`?Kd`T2Qv z&-ZWN0*3atwk$wCf+VrA8MLTMG>8RuAtojU;YA(*3P_r)pZYZPg*#P>r` z;j7HF$)54)>E}E=uN$1{uPrDaUaPBvxmbZb%g;x8>1@8f*xnx4yY8!orS|1gk0S4= zaBsQ{;LXgyz`NtM?mYCspHC=kZLF=^uNm_QR!=quBS<*iTwU*g#(*FYD+L7wj)=JA z2d_*6i^+S#p=DJpq+H39|zOGQORVj_SfqC4yRn{zHapx9JZM*zelN?rMg zXTGYduIA(6(QtY$tDpelpmX{ZUih&UALlsH!>uaS8aDw+j_2 z_dK-#Nri!dfq)PkjDoY&;Ia)6@Q5-tDhjLX6^Q$q8ltUw`$b_OFIibx|6sX0J3Bi% zj)FuQAAenIn+nJ+B%~V%L7IB-L;v7RvbwGgp#I7E-n9GvOa-8S;CmoRttzD6p!7N^ zR)H7?(cRc6d?o-w68IrCB?b2SH3zI58txDL%E-U~0BmM_96#C?h+YE&gH`3@%c(Xn zyoX8bagb1ebje6b!Stj?M1Ej6YeWHKw6r_~Az?KC{MrAn;rTC7b#=q2(1DBq3jky= zI2oBvkUcyhQ&T#BeslBijE|0{04RC9Uw&lQujk_6H~?}5AXq$bQBso5n>SBXJV9sz zFJX{y{GOf;>q!N)4p0uz_WSq$Gy=G2M+gRx1=#CAkC*~2F&dswpf zNVYqW+{PP)s#)+5B7D2I&C2{Mmn#e7_C^~ktE1!NW01_JrvN{6{Q6efL8|!r__!S` z>}+l#Wgd=3yu_6S+$Jg6_FcOefK+BiMsssB09QUPuCHq?)TE?>UT5DTA|ir=J9j6G zVG~?qZF8!y|H!V^c4YT-v#8!O=d2c|1{|?}jUDo^!wOACEWb3dSP-5+2gXN47MWk!d9D^Vd%E zxA06T9AthJvAIjtMD6cmG1qCqOHB1;dHlZc@B=B`8%vFR@6_db$?CBF$nMzk=LY4r zgzl;YHy)@sAJC)&<6L#-Z6@k;ax=;EXS^Qu|BoW;# zEmy51ZzX){wBR6l1qExq*Cr;&?9}|&Wro|Dy)O^$Z!g=6YksSZNM)kXZftLN z>Y+L2@D`ya#=Hf}J@d(P`(OS2a4$HOPEJnT_Gdt40hge&96!(ZdF+drH}F{P@84P} zu_p|8T;yyjK*E9WU|?j#p%8=^Y1`_;kM00(91*s-0 zFCV09AG*yK}7{ORSb~E)02}#)YL}W+Wf-8=6ZU1#;y2( zUWO!Luo;kyAEe)^sj2zM=_%ubYkjc;IW)AVERFg%)3LP}Bk$e?%-TExj@qg@A&MiH-e_ zcmVnWo&${vu(!0dw7a_-c*@Pq4GO5Pt~O|L!@|V0ovUUR5U6cvnCa|cMW zuI_F?p(U?tzJp4Kj&1|+2ACZj92}yQho@&$baW0Ax@8h@Zl~uS8}VRouL2vf!(265 z(D`0jYsYO+u@}f4ltVsY;Tten3T(#b&q;i!tI8f;8LWn4J;5g+SWN{z0~?#YPoL0; zBaqt3Nl9Tq6xdFKumZPCOrBM{fl3-jH{;>Z|1ntDVQ;ELqp14lPf89OYkT{Pv$KuU zYo1g#8X6i9@DNR`BB-7U3mNsui*o0}my ze}Jx74UK4WKNR3K`GW+Kqx}aRb?wk&yxPszuf8_4PHYZfSxdU9nC{ zcz8IdjvM{%y?}0OYPwxnp^1_Q^ofmwvkao|_wV1J{8G&jgiF|>2AqwHs1C%_;bF|% znIg?XWB={7wYaRTvi%@ouQR6Rsfh_*diwmD8h&QxPrd8cS63NAE?Z@-54#5k;JQGX zfq>)Y<_42Ml*$nGLQOwNDYLkgcNdUPz&PN5KL2WT+RSj?t zbeH1eL-p8ne0+RB&7{T7M~+q6Wl}W@1`DjX0Rg33P*})Iidm#}0}6OhCgtVPeUjDC z&~OH#y0Wqo^j2P`3rtQ=_jY%mgZjYDt>cQT9mpGn7%HIRxl(`S<>jreuHN1GkVi4Z zDgy0#u=EpS@N;Zzc5_QI{N6fcUil^vi~a0q;>sjkE*D1&>m%lFOhsC+vc$0x?SX#l zk7wN0NYNwmG&kP_URim?lhCxfek(hEkD56L8WaF#HmGD+oW6FdT|-`kiI?xyABcNY zP?$Yx(n|(fDhBM8#+5J<426q4suUmDJ=tOv!N^H5nZXM}xl&FRlNlv)q>R;eR)o|6f+) zTCre)$L0vkfZPxt@;mqT#aE}6GL)kHqmFP8_E=TSgY~}gO_BV<#{K+V_0_hG_Gmhp zA67XRX0XxtO*42JppR1*55iPsX_Vg-8`)Si&Eh>1jdzb42xBBN3yGp7pw!G3wl}p!G?=O#UxbHS!P_?LxF@DBIl@L5b%Zq2a&Nr5R>hV2gS6$_jxxh=pKjlDE z<(vsowUr9SlNvd)t(-qTf}NzrLWGL=OcoRRs{O(iUMSkK9@|n7yHLVLu+vGjvj%O0 zPMZb_7&w02RK1y0gsoE)on!WuJ{D-Z? z;oap%w{c2I>Zcfmny4M&pya)>Ck$yqg=KDEn|!iY`W$PN-fU&G5aXI`eegJsZ?Q9% zN!Q!Q!I~ckog%)F*!P5kR!FGU#*$9S_O4tnIf+R3JgPTya*QN$w(m*HaS>C|rsfMS zTW{mhtAglpQQ;sI+UwdvK@O>f&26JlqU{FO;noND>q!4?D*d2(u%}g41r93Z4<%*P z6XMpHo6!B-9(a&*cgTp0(irh_u2Ngi5b-HTCayQ(xdS`pT$f2JyRF~gbxFPql^jCs zPw;q&R6ib-9a7e6dtsBWt)ssxVkk;Xt#p^@4PMfeB?3mXd3vW1Y?Q^w~#x#N>xQNH-$4dJ2=KqcM}GSmxknu3WNW&wQi&m zNtN+0%(ppzZJH?%dXq2gC3X?aC&;7!cZZdNl;h%z=x8Q(b+^sY$+%u{)BtQULsSSY zMp*1#)kZw|ei?++)WDw4`FO*F5;Ga|w}^Dm#%j;F~9ZMM;rIFs(p&-f8Y7Q4$E#&;E~ex+3A@f^dw5(1_D!a6?aiz z8d`5Ace~nTvZ1Ni)px18#tKF)2^Kc-wYJPdQ!JBXqTNg2{aN=CcztQ<;OTA`?H(2w zn&q%-@C>Ka@hT)AJgiaSn9rwG+zX{zq=7nbPGwMUw|$KW-gb85xv!OU^@d$QTg z(kexn{1EIpwHh><-C@15F81snyt1}w5rg3-gL3&w?CA67&+YB)&CR01nc_S=_!Ja? z#yU2gU7VdOtE%Ll;Vp#amXz4Jy7GyLH09*L+q=p$@Uy}|dbY}+uEXLU54;|ZJ_)vf z=MUoaM~E}C(HypD^vghqIVFGlBxO%l|o@!GM?_*IC{(9Q0?o+wF7rSj)rVk0*XtzK{$ zJTAa7Ba9^c%d+%{u~)az^7{?Dd!6Vk*(@2s7}>f}^`+b3ef^iN`(HA|%ol2PL+Dc$ z#Pc!z!_)+bHIbIlM*~?A_HNBgqy%|bF9AqRgch(GeYAHKH8K)KJ)e5h=DaUBho&B=5kF`F1)?aE74xUH3Jc$h=-kD?7 z>`%nE2s^XNp!qI)_f5ziR{sj)>8N(iZO3!;n!*5N})P0Wqu%;?2hdD_v<8!@B zio@l>m`U+62_3SOaaD(HH;XFjLv!SP%ZJxu>fS$i92eKI1gr;F+K%ju?aV596+E&R zuso=HED|kU~R&##zEhdP%b_iP&0iaPub8c+p5xVI9%^1UG_!!V4=+JEpWj zlqln=@E4jHAMZ5qJOcmM)^5}<)r!HqvK4FI@t9NsLY>l$Ew*yw`2Bu>MKQuF^ z#Fom7jGNx(cuG4s_ZYjm>SnzEuDNs+uZ*Qj;1!olr&rp4F<>IGG;%i?Y0;ESHacJ} zVnA^ARcuY=<>#4B5$nL#id0b}fiDb7H&Rl9hRFbKxUh{@|Wqa@1_lR-B z#=PsmYLSrS4LWNql8R_F=h^{e=h0ygG7+QC4N_fq2v5r7n(zzPOY(kNFC&2)3qad_ z{P+aVf(j`x5RNz^B*zNe_l%N{h>Ehaw)Q;PPy%HoXphd?y1jVu!pZ3v zbSPE}D#~i#q$063X=Xf%tr!gAvkUQ9dj`2MrTKq)S}8HqkRJAdC|v9zO*oNFl!6sl z`9=pD|8;;YZ?_QEp9aF!DBIXmp@Z@DcmUt=pQMWk4p9baEoF#rxlOs^#Xqm6xANCy z#r6+#P?_8J&7YKuRhm`v73_^|!9O;yGScV%=-li@C?27|7(b{J6V>+RsN@xBVcgNU zH^P~t#rL+}e#a?I@Rw3xN}gDxF~+;*uczX6#7j0eSL(~RIE>}Tvq>6mW4v!CG3W|n znp!*@U3P9G-5Z}|9YjZIqw+M5MGGo*mh5=2Douz1U=aAsUfRlR?boLIhP@Pxm^%j5 zxi-fxcI_tJ%KHb6ckajcD*7&Rd`vf5(mo8w zG)`^!?x<^CK4f^iesI{yfWuK2(J47|okQeyd=V1E2HU_lVHu2j%;~+k1VB%xo(GjK z`b`rV2zYnnuV(cZus*Y&5;pPA8rE75Z!x<8X67KXKWY>0wttyasQo=xXlNJ^b=<1O ztEwu+3im<7!#+p;+*uHpu0yWRm1^Dk9p9w?HUDCAX}C@~cj%{5OHDvkb)T{y#a7Gd zGMX$@-()gV>|y*WSNfkZdU8uvCZTU7p%uNdPJG z@7v9J|L?@0{g>khX24+k%*rWyBdP{yy`Ppz*~}%92Ha-?$4mbVWSt;8%(CB8g6CBZ zM)mXyq!s{+Gv<$Fby^P}sC{|#{c>-Oy#sj{QV(_quA0QxMxJp3K_b%P{9H1RNcMA$FwwCnH&(%xMffjFy+!_ElNYG+W|BG)xbfS!)BT zmmhjYw^8@5cE0%ZG)`NNi(NC9=EQXxshUb>&{Kp}lW}8e8@Vr}w0(7d&E__u&c5*UkNy^EL&}I~Ao>5_M(}b4JrSK@yyk}MenIKGcxp9_59Nd)sHW*0U@_&F$uA;h-If7+`g!K zq8NWyHOOe6tBA(G?ORH)^of(W&-xIN#&IpeLJl_|U}Crb4Q-o3==8)A8a%Gx)m6e4 zG3wp=mZWB}E7SF}lSd;8tyx}lkvQ-;IK8VJ%+>6ztGTeLvpM*Hc(}L)*}1vddAYQ> wxP*E5g?WWo!3q~wn0wL6|8atygPFC3=l}hL3l=98`yStNM!3i1&?iO4^2*HO0cXtR7G&sTC!r%mV2@Zop@WI{oBG3E0 z-~V0L-q$|ZNBdxy>9x9RRd-ic-BtG@Tunt56O9ZF1_lOGUQSvA1_piy1_tgO3LJ37 z$IHM82F5-~URqMi4fbGxTS1x|r_ap6cANEeV6?!om^}A81SH97RR1NE$~liUM!IY7 zkJrTFA?{!*CK#CGP*hhK7#t`JjGrSi49pr93=9fzK>`f_&xIfn7#JD|?B5F=z6`*x zzkNC>{~7dr3%C%)&GU+GaEXSF=W`S{EDp4TvwzqL&f*UOAjd$ayS&xo2p>A*=}^8@ zafA=_w{5MT)gNOJIc=TUgJRJ@{G)vjw;bCRCZJoZE0n;X{SO7~tfh4`!>G>^q=P<- zD8@p?mSBTKsw9P!s#suxMEYO6Km$bm=ZgpZZ;J;#5)K&g&sX3uTqN9_>i;x5bAg%q z4gdY3sqJ`f(bWDG_Mfl*7yqYdkrrP=Dig6R6MD#KD>6 z?+4Ev&>8oUlN1Uc69sa++DZ5Gv;umeMLhTW@hS@roM191qWOeN5Od!%k~h84PZA0P zjib|6Rga^47Up;79IJe~4e=WD+S#}i*NH|4`#zlJye(b$i5NqX4MJJ9pL~~h_9%PE znTDNdHTF}Sk=y6VQ1q9nag|d`?yo3<4$5Vy+D3Jpd(nwv`nz|@WvQl#4>y^=-hCLE zSM~MUK*4O=4i2GuJ6QOX+Ng1atvY&knuC9+f@#HRIkF;O_)%Do-o$sc?Vz}r=V;}` z>&@K5gl-z_J9sd%<541XsYc@SOw7Y8#LqWf5!{p{VFVqm8sfstPq#7E%AS^OUN64j z=+0}Eo{jj1koXACbp?PPo-koO|0{IqD9* z)qWT#Ead6Sn46jd%#{yUC?09m>21zD=i~v#I@_D@>vHx`cyN}>?aIxvtx!M1>ax&A z9dWG=(-Wv?&a02~Mg|5V|9#mSQ(+Tlm{CU4*In^K49blK3sL6EqJMK(aes3C+Wu33 zB*OTC$66Py;fLFi8G1xVlUDEBYb%B5!-u{F)%J{!})3?0?#C^8CCZ9=ctY$L!6iAaXqMG5M`} zkcrnupk9RXFAD4d{u0Xxm^tJRzqR(A1jLqprMvFeMx*O0kN;eO2=)5TKy4!eEn)(d zk0>2pk?E$BVU`$FH%hh(o8W*a^%mSu_7b)XYklJFPdnFx^voafqE(dVJbu7HE2+|* z?>#_B(;U|a-^>4*B(h`Wt64hSrz*EYa$O9*NMd;K(`IibnX6X#HiY;0kP~S6RJ|kX zfvr6~{!w+-KBdkC*5ZWn;9@{88Dr_ji~jIv#`{$+D*ApZf0}L!%zZr+-{z<46`gDs z@fV)C&zre+Hyhb?A2{>YWX^qYV!#tEDZmON&Ten5a=!)me^MLss@Gr&y!;;Sah5!@)O! z-_;v@uhQ1eX&GacoKO8lK6{+JDVZ2*=^cvcrJQavf!ins9c#k4PIL|3eQXr48;N0} z)qB8`D;Ihp{#mtkdEI+BxT-PSvM^bPa6!elhbFKPfm*C3?`GkbUh`aPa~*fuVEW~p zq=fa>Etho;sg)X+4DGay*&g|o_F@hI@cZ6N;t-Xr2bGf_)sL{ z!{dPmohDUq*pVJt0g;?*R|V6d`+EJ1*(WrJcG4s#xxV$)9W%LvWueu#yRVP-!ZMd$ zJ?m(z#v-ekzqTkA@EPBL407xSIQrg985l!)$O#%>X`L&bFs zBS_^I=Atx@_!Xk2{leXfgBerW6?6ol3(g3rt>=zIc4lFV%J=X+EZDA`zCv=2s2 z?Nd?o$$;c+W`L21hqTf7`C_%kj*_4o+SW^_b!FCFZ5eAbKPAoIId(i|ies%+Ahqvf z?asWE2IpH^`cbbX(!+Pi+?&%QV1LQ7B=XL*K{j=g&CjZ_+o=3{J0rnxYFRL9#BbdrgQXazvMHHj34_-Dr=d?Efcs0;hEL}e3>0n< z!{^r|Q-O%lStK>3_`FwFFRLU@b55tj{`o69JCV<@A7Mp=pX0_X|wTJVtdM zTAdsUU-YqEUE!+rB%S$9wWEnRcRR;VZB9!Je|!vC=u4E0{5+A8KU=AO^V-3OV-?Kr5v?j z#Bpr$O|G8e^g=8_htWyw$lZI)H+UgV3>SpEc~VGRo$Vz!wE?X1>}GcD*5Otul(QzB z4Pvjh9M*&$YTha~p>88fr28&fl>}ESXnu;bO)_A@?bcI(h1eiNUV$sD#+=?O8DNRR z5N7A5@KOJ^+AjGrU268w=2tv<2gmf&+K*l&KdlWDYAp6; zZHR`kD*2lGi8=Zg`s+3JiO3Puan9f-%)@w(i8;TTy1{nxfX+I`xy;)QQ>*xXyB&Ou3;I|5$-Sck}xrPCcs%>eOR?=?gWSZ zpcDfxtyoK)u%p$uLo{$-xI+|i#|zPjP)sYFRo=QSg-;d3@-?3vVY$az?j!6KXIjI- zchI-`-z;~K6`t&SCn6+BDh7K(qEa2#5(Wh#p<9t0r{J z@y`8zI>}g5M(1X4NbwO1Fokru6pq^|l8By;nU@3p7+%)Z*|KkMIE2jx&J3er71us~ zpltnZsws51<`t$YRVVA$mc{DVESQ;8F34{+U84q`cQ_)eU9;+GEpOFo2+k(k)(ULF zJWMKcc!@blA~at5j#aQ@a+D}@o)a%7ART-6L(2!s{EV8PCPd8_1;N$tL4ZTUeW=Z# zrSazBKC<9~9FFn5xEkGT5_3%Mx87ah$bx}t)biNF&7)=OE|ut}ULZo>RZqWYB)8T~ zhR!21zKeUIHNx44TsA86r61LS@-o{m@6cr?cER*p-k*b7!=$B62c!VyM?t~r<$)`^ zj8Q|C(Q`c&;*KTa{1m>)iDy+315TIXepTOt5xtJ2v|=T`O(Y;MrnVb2C&U zq38X+-=s*Hl%DG?#PuoW_VXk>HxV;{W(+t}u5zfY;ncc>_6XUOxpo+&xyP#zp}~2- zn<&vuxW$CfO2gTTq{2(=zH?;KXl{-%B0~>I=0ZQMIS(#uprEc24nsi1Rvl#ignW3J zH^O@1)Mas*YUD`aGk8=W#PKG|%jX9%8=JVdn>T_ZCp;wI&4oqwJe}>6E@_>`ZwYF?Nh^sbzUZsa9TbiD4UW@m3thxkp-#dPdQ?Jdbh0&?S3*EsjIi}(=o9wdsi6DbHO*eU_IGU&`9z}-gJ@BYgPK2+PkA?(9giaJ-x(q*%wQ^`l zJVoNeEnnKg=b#)0Cb;|4pRO;b8Uh1+xKQ0Kc3Upi)A<5IHUg#Zxxd4%_|eg_M_Uk< ziaq=+073Mg_;bUkNhbOji>ZX$DUhp#<)Lc)J9yR8LgD-0bEjmX3gFEWBhiA4U#ND+3!c3mtYfJYgR!Yz6xbtn@G1Pqy3WTKxmtYSZo+g?X4>f-QY}UW867Q*K*_ z5fa%%)*$Zfd4lK$HjK6>&k$=YJtac>QJ0XRtZAD|>zep`@wm|3^q8^}nFc`+erA0m zfjZ605lMLs0Vj|~CI5y#va_WP8bqkIoPeTznA&X6o#Fvq#((8x(9R(^SZgY*J5BQj`pTY z3jy-#jxqLQ1#aDTupCZfFJxvebF9PKyAU{VdWHhz|Qy^ubp^=eC7VFWAJPeeQ*=L-CN^K zErrx+N|i)JwGnc)RjLk3Nf2zcaw%}A4?zpzr->IFv_jO)*F}te&7z$gk7YN(Y#lga z^uc#}rfD^jGK=HIv}JL;ob?ua9F2S$zFIJlSGV~O{U?`SbRs;`U?F$%Pp}a7)uziv zYLc!iP^@0pFO6Ewi4xWJ@|TXfFVJOZX`Wp3tY%{x z0=%5ZTnt9&)OQt##_ni2oylfsg*5p~U#Fb-Al{|G{x(fq$FYNCj>6AyH}d!6DK@Uh z@Vg6ww;xj;;la8c&KLJDJP$^Y%081**Y=vOyOy(-T1^+a6#zEll*tQyk6GO6ET1TU zxh#V3&(NMuu?p4Q3_X~x>Q`0AT}MCshGCHA@W2|+GrRA`w}4+E)L}%ab@$MHG%^nZ zy?}$l)yD)COT0}_Hf{ejqWx^}UF|X9;aR|zS4V~du4-`~f>}t2uldFIJGfLaW(fvY zyp9;lpSX--R>;RLVU8g-nxG<(XyFgMD|c&@4{5S@pNm7EAs^d)Y3TG+Fxj{-%#~6F z`$DaNTNUe7Q)l}A7mEsq(cZEfeapsrt(raO@#=~WBa|^gH@Tgut!x$j)Rq?yUwnkn z(Vf=uTj`gCLA2NzR(aokgDgD@%)XT5{o3x1-)MH=g)UEMP=oI_XdFmQjJ`n&QUV2z zV9gL6D`6c4*u$KKrTWDZ9J`e$s7er^TZ`{0xK?XD#naCy`30k>h`F>WvtTd#^W%q` z`E1!&d4lS()@rny1Qs_tL+Up)LfEU|dfBZo zA*T!2Id!7OTvB1`RB=jJ2;US1cK|+Hme;iIM0Q?+n8;5S6pTa^4~I~K~xNdCcDeAUr|k7Zc;y**rE+?zog#M6^T#7 zbsUJx;U^Xz3{%xvJ5cx-{{;^G(NQS$@^`rj+$(8B9eEiTIzJaCB+XTUSmif%- zNoUs~DmC|9a87{mo2EuYotOY|%-y9z@o9&sUo$-{*`IZUw67kj?^$@*IndOTxL&+P zB6Hkho45UlKKuz=ow)A(?n6an*=&}WC{PyQN%bz}o7MdDG}O8=+CZa4UBA!L?zQuP zFL<-x<55QTp&Rb5M;Ck`k^>`oTx4`;&DPeV*?)5hWK9R&I;GQB1RdUDp+iD-v(R(| zXn)ZZ-GSMw>`6&_(C3n`duHL_#Bz@b2^0T2I36Fj7*V-Y_7g#uu6m33_d!3yWh<~t zS!6~0ml=x8_cps&;KL?e1yN*Pe!={JRCpJj=u>UX;%Y&}9^^0`Z0?nA*ZQHmK9!S1 zfCHhQzhD10oKn$OfmF?h;eF zZ>ijr&=JS=(EzS(>amYb3JfCKnGA4(AO&fi&PIxLQ;XW2{M7v z>`d+cHrR?VxMY%PmDkd3#;}n6)K!Nx6O~hpah@9sb1LySs7N;t0mxEKUY(%?_P!U> z`MiHt!!J+N!`jOQF6=%N9pirLXspN)Wqy}4N3%`;es8~NuM`=IN3Ce7#zTV3+CKd9 zht<$#aJ;1!Q`if(oIR&&N^KDFBNGZe7S(PcN{OqIj6sR$2Ij16?Bp5^}JU3Ll+Ttr{j|J0}ZT9+V@-&E&E zcF`|IpxDdP;jN~@Ac4!giwHp$T+0dG5N!GkLnlUsr*~_Jb&GmVWFcLu5-w1jUxdy~ z5feCNb~27Y7D9?u&d+Rk;=^ho&Axa1+J+*kdtePCs&=#W>HSfR9vNyU48~K@13EuH ztYlSHZ9Oizq9^%x`0ARux3(G-P5}}5G7_bJXmP82OsvxQO6C!bjh4Tf|I8@2sAm;c zU3PJ9ejsu6Rf+gapNhzjh6Al@Za-q}*8KCOi_(Hsd-voB!>26tE>V}sPNlUXlKTZPZiVw!R0r7@spBN-uME;pSs8R>Gj<0%i&ujuf z0Q}Q3&HINHcy37mL;toq-aa4!R7YxXG{7zZv;sLIz?S^e0=R~MT7ZfG9r2&mvmSq2 zwgf=W|Fj@WOFhG6(QjedA|nZASvj;*IDjXQ?_ZdI>dAs-Yi@7P8W4sB*pTGpWS!0N z3|7hpSx_+?OebZ^M9$sep%0Ns{c>l|7T+8 zU#94<*#FzH|KW%J_j7-bl*f1mqTvwxrae?Ru$3IBhY#Qz%m?_&Lb zn#BLP0RL~35L5hzfdgjVVa2PjuRo|zGP}RVH#$066aQy>`|iQ#x<4j1wl?0ne!-Lr z1(26*3+CkDuw?_K7c?V8yk7W{$mu-aqD`rr?IWAt&tJs!bx`@AFSg6RY-7i z5Fa0kYmw>u_wCdO%f_|y6j-6OfHg9f730HoQvUq;v*!E&3jMiw`1J)26mMpV z1|kV2*3s3itf-KxkpL^c(+qS(UNfG9Kn`4*Y4!e&lmrJla;9fyBH=*86RHZ3*04H7 zBii@eUIQkq$z-OC*-07XSyxkYdVWqI0cKY0Od|^tLAhFg2x~Rw1g@aFu3@3L1~t1N zuWthGouUtS(CP#@6xTHl2<%#nqbg){R0RfT1dGr>aG|@+ zU@*`bpZPz}D%T;$3WW`7b|i-SIm&{WD~u~c+x;Dr0o?#$-kzR!J3Bj`i0+w{<>en3 z6R-E+{(bP>#f5W9h)=t(lM`OMXN~pc)m0bu-)X~lQm!rA@^_s_^=-T!n-u->KgzD% z-@h)UF>XhF*0&gTZL|#as%XN>!lAyZiYry=S#5i33GgeMPEq04uZPiIwYXz<8Ud?- z14X$)TmNY0?Jeq=@Otb)5*OOJH1(|VllhUMNi(>K|6cZR>;WEu1!b&(E+7CgkR<}4 zTCy&mPFuZpRciJR|4&X!l7FY}nhOPlN6pH??T6RE=l%S%yD9+e|> z9QVw$d&`;oOT${r!}>uSSFrn;WtjP&;nW0;m#=tuIzK`W4u0f$+1RkR^0ZTQm1vjp z+bz_2UO{7GV)kb%#XT>}ZW%?7R@!|})_cas)l^l-;^<|6+AUs=2&_2L_<9-^s%Eu$ zTha;u5Wb$!wKAyp9VEKPNVQ3TkFVzeg6LbNl8hDD~4KafLBINNsDOKm3sdI+Plu-xcfUF2a&Yq z1tWyMv2iqoo1UP%?$cxpwfN)d){t#{hs^EmE%+!TH}%y=Eah91cApGw7&zCRaoP{& zF!7+{RY@%7R!=BdcdcxHi{w&BTAJ&}Kfx(ng_c3kc7U-5lWjh>@CV($F!)*4 zVZhphbWnhn|AsCh-5%|Ota*?IY$B^>!Tsf;gC46|f3@4m`jnZ}yGUGMef>L6AC$c@ zd3kx&mejpLR|-~9JxlK(>QiezH>v`&Ab(M>r6U&s@{}+U+a9 zz@Ch}z3cYz??Huy4g-A97URNX$B~*8z+lmZrz;~W{Dyc6QA=@npfP17RXdh#&h)TT zoZ4#7d;A_GKy+2toj)R&9_FA~EK@C|BCsAKqgbzImSTOrGm$5y^~NEv=#33=6tfD1 zQcvBC^<9(WnpBD{*C!@kZRP*UAV66XLO`ZdFL5|6wM7gNd>Jfp?D+|)!TZjIpQ`TX z&kFr|>)Z2PM5=FKnA0)$P%1Wf4no%n;hKm}9X9sicn!Y)Zm6c@Qzed!uC8tpb#F>2 zot3>k)3(Rm<>AM%%;>17ug&ITbg2_S6w75Ao7~I^N*M4@7jcbQPXO^494)uLrx}{a zlf8)cTi=?RoWy4fdET;%9;2tsf`4~AphxuKA@DF?7S25S%dv2t?vTb42Y=7Y16*VYCqr_6Ta;=H3=9kP z|hOYwX#I&nyQU_@9oDG#oX zK8%@e^?4NY_}rY^&FKdV^K@lTg4C}*DldWcp#yDe&<1RzW5 zkEFXg$wcTX`|}-Wd!!5SXiPp?t@8Vw?jdWNB!vgZqy09l$uHj;ENUS-)O{Y zr+AbWG7EjpKABV%{{R;SR^^1&$Jly+fT+~&EoR_;p3M%hzL%^UC{XD~no zMQW)kt$%7?O>~TsmJ8rW+x`F zLXA-YS4|#yx4LTTFKTfKT_UH$fzm-}*VE!AY#9_`@TqNPwES%irHx<{=Y^Vzt-|NZ zXm*t1jUoG#dPZi!l$^UOhvQ&No}MN49Kb)n2Yu`}cXhqe!`zhLsbR+4pdm~)#rt7c zkWP)XWs!(5i%W$Ptnwt4g`cmHf4N>Et3&A88u7+-w!-L^X!`WOQdGk-?PvRDqTa+T z(@VXvr~Pb53tehXu0V)ffam9CPKnBMQ7mf*@5d=~LJ34`X$acjnQ!C23w>tNwfzM6 zu&UoA&++2w@zE#eroph3Et}YG|0rz8VZV5v@-Xl``PJ4(G-ptyjfHdYH2Tds8&+#h zGY7C7?9b}~%wjo5Y~FylO~a&bzrhaH8z;|La1l7bFz4p`=fze=5F2V>`WJMhMl2U0 zDNX-9cGH~k6U{7EBEtw@sFejUA~A@PF2#MNUfDicNYmZ$%N%_P&hKbVix_@y(W$B( z*uS@4F)NA6<)+_KpB08)enjKc!%4oh)UFvDPZ1T9U z{u3VKdrJCpz_-_-&}8}H?&_pb>Rg5Nv@&)F@7Jf_k)D`zrR-(LMmVeUOcf?;fNeF} zCq({_@al-)gTllw^|d;azj-k$5S+}rg;y$-Zi)IRDn^R+wpUl5%vHbd>gw{HA}sPq zmdN~ukGS_H*m3G2*48?haD3(R*#0Y7IU8lYZs+;mWp?%Uz!I9+F~4=tsPTEY1!G}< z{xclD$liO0=Hnm-^B}N(kJPG2{A;pMHTfy{cWl#bTzN2f-+Ar!qoVJWG3rnsfP<>R zCM|C29;gQJbs|^M0r$0FvS#Rp}_99{B(Gw_Z zeZ40V-s|4O_5S(<=BBWB9KPCT-Pp(CCA2Q00qpzZKW9O;jR*ivqVQEplQN-2*n~A6OsrsmdN!vxRY;aqyj!HW@U4zq4d|UUr#eSUN@&(lG$nbJfmP$7C`rp|BZyFLZEf& zBx;9&POkF-k#z3cfLE70Pd42*LjZg#nshteL=9FdRLRJ_;Gxc=Xw8fJX#-*At|5Bf z0ey&g0RZQopV{#9r;Dp=RtA@mk!%#QMJbwlaPU7>u`;=Ll1wj(E)lkt>qXN#wa}$ZqVy-z~{A18obNG=2FL zCLx!$w@^5{_ie1nd7qB#TJ0pA5J6NGZBg-&xZ^3UlaIjW-QdqS|=AhV8XXwa2pzdWDooI&?2KO zS2w7sG zIe;;)vx=(_`LIVR?zK?&i8kWHP!glQ1GTu%i*rF&3uh2<64P3-5~t%V;M&ckqMn0I z^YV;0a7MjszM12#AsK$U4susLXmLM7n{7tMrb1w8w~~gGvA*VfX$V#$aFx{|zADx% zMB^k4+N@K{&VP1fbtKP7(Y3W)B#)x@9mzIT?p(XCZxRw-D&TiMefrc00QFMc%I=_| zZ^_E-k~*^@bVV)I?&mw|IxGk(S!{cN-^F@8{dsD4k#`rK<=OK-pTD<#>lF=rxVzOVJO&;mbhMYD9ezU45Y;0@;_ZN!%Ef!vDs`*~KP@`5MN^{K7(JX>M1j;T91d zw^mVO-00lJX|0;fxl_~ zZMxQ|JC2~&wd1`y`XYbJU*s%Ibj7pK6v=AP%Ko{Vd5uW$m;AH!@=_95)Wu;tisQ+X_O^hw=I#zUaG(A1N-U|VHNSGD0c&a+g!0DgU z2S;=@*x<}O{i7w4vpW=g(mg<(s?~bc|E{U2>0B6%mwQv9JVVrRRRTtcZ%AkN1@qF< zQjQ?Y&w<|6{)lz4%lW8^C-r<2VC`M~zPU;b-S(b7m)*lhR=6=BXpY*VZmur%3UIW#X?> zIx@t4GxrLrBi}APN3p;5WMyOX{o7BdfWtDu(Fls9p~r3?wJ!#Y2bQ*j5%ag0Dlcvl z9u|}jNTFDiXg!jRTrzcEEc$#N*FU!;7bXZ~u`&DsvY?orKCLao@*u zPM&r0i1z@DB>jQox+a<1#-0=NuQ?R1WXhx#WXj%O%$hJ?!?H9nHj*Q_k&It-D zd?(51cg)JBj}$R%`ogM(@x!E=U6wzwb8jcr)Vr`vP5a$OqFUeIP_S>e6l^Z*jTY{x zX%^C-`}9V2SBBtxrP-B}p!;CHcEI+8S!Pa>CIj3Bcvh(oIESH}$@G!n$d3lH>HF!9 zw0N2G*7bN1|2@J27t#&+WER&f&Zgx>Z9_?%(5bI1^3cu?!B|ugK=#qt7K;vGff@^W z962=x{CQK}T_&{U{3`7FnSU3O7(w4*pW~dUjHnLoN46%Zy|&no`8j;O05H6W0(u-3 zWm$#?j0})4&iEU)?gf8*49Jo%T9I2J*YzzbdQvEQ|4-_^G()M9A*?;`sof0<_iRT? zW$*s-+o_wiD>d4#-b9K+JK&qTiHx5*`bJe~PE}0x4dg-?(4t=)Vf7 z&d(UFCY$&auX>tge(WyHK3#%h3$bfL{PB+Ezgz(|h4HY5SYv@HW7+50gf8Ss?ibHS z@##!voBmsqru|wxvIOI2NCb~rJ6#qJbHV>(j#IQ^ zhc6G2=4%RQqOD`yzfsUp;9mgJ+7ItdXH@Hem7f40&9ZlI6lop97{Zi$$1T?5?SE=k zqTFRulGzOn0trG+n{qg~nWAWQur;+?Uq;^RZ-yS#R2sMH*MQ-Ljz+! zrAp%i*{*%bf3o}R0zV01nfWGE&OC! z*M#xqQ32|?FFNCPl@^HleNyqt#Rf0M>I#+fdGb&kVGre8aeCbw7TI5$l`lwvIVck- z^V~kQ{Rh1ihI;#W7+gu2qS3VGzA+~W4n$)x!URB{Moa(O+TJk{I_uX8iJZ`ms@_)5 zE2gyCv(15oPFeNSEhoT}ATKwm{mv-bV4l@ZBB2t|oDw-BiEEh;LyGlB5R#X>^66+eb7l%4HP#ZCZ|n)&)T zJb3c~ILJ-lSkafS8woEM-o&1T4Qb5VzA2ZZ%}N)oj3T}U|AP%}=c;HoKRP;cu_HqJ z&bG&}t9bG1Hlr8Bv#zP`q`c=16pZ>^TwMN;b#zOe#Bv&6SMc%i1+(Z>7|LV0)d+`8 zTE$25+pEmvya}D_ej)hQNart1C2@*oU}|t!dF&xJ2||@HcbYEIb|Z8(H-4wPi35bm z1|SF6oh*!fI=x+VXg}QB%iSiUiof!TI{Ius)Qi_0-j`8)p_Deu=dpa45}n8}(R z2!id4q1=eZUpR?H_IbQ_PwTZHbA>|89DmQ6_%0nYlWgxzmp0ff_A*Yati+mvrebXO zWM|si#P)VbX83&~$i6dZtAgZY+Dcw~I(npzck^|HKMWNz#(0^Iz6yL%R84!kA!_ON zw>TBGh9&(8!Fi0=x%ccEovnA}27RegktJe!#19F}OW*DB{-!GwTL_H}(^|abD@Q2B z_0!(gP_hIk{Ck{rkmN=lwT){xSY5>VwopWfDzlIPFAH~xF`|Ge?<&Hpv(|1aXuMLtd`7~q7gQS_)kz{(~s<4hp^BZyAgj-gBrSDj(C?$hYvjF{cV3#*yOgNZwc zf9m{u%aPi)8%rmIn}m=<0(y+D^78WO>FMC$;Ns$9paApu_*hX<5fTytusqGpBKQIW z7B#iCXSyNMbk(h`c3!J%Yi7Q_zMnsTc6WCNEZoAv!qhaoxw*Nxm=z@;FE5XpYnFqP z)78agW@hFwIuuA;E-zimFV4@u++Q?Zl^Ze92Cb{0;8y4U{K=nKP*DN>^C#qRnD6T9 z3K0>J4eoyD_I9DW@8kpo0#)BqSMerXQBY76SsmY=!2em;*(r)Jb#oJZ^vJlI3A~X* z>B+ze$;ZaVPEJbd?d$U`Bqb*|(9`oL$=6`rpiMcbudioAFXt0OUrg1cqNc_@emiF% z0l}TpC1qo0U)qn~J~+T=#yMT*5DLMy;bdhEH-Y5sJMS*GWX1-mK~QPmbpU+YR5Q&O zEykM-!a|_#s*KfqXR_`&I}rWh>HZ899q-<%FL-DCL}CY4di0WJ?+IGp9(`vIsCS;jUlMze?~ z&CJRwcW4U}aiY3kC}Vl~GLhJIfcrJzlfs)NTGhSx)&8zw*ujj8gF~eUX3Q0>bOgng z78wfBC77L!t<0p0l#}xh?u+AA0X8u*%1L+4&AD7X4^2%al?NqLcZGS;dk*5c z`g`Qv%@hysFylRMznszx6@vd@Zb`{rSDvmTJ$o_I4eB_(d-+WX-00ZY22m$Kk@WP) zBp`zu64u4Ix!1m8zX1`Gb@8m*Pw!7PV14NIB}v1P0x=_Ov^O@+55hlMeB0UF++3_& z+~7fFfx3OtA}uK`jayX#jR`RH809)_WyuBMM2OIWz23AU$scm~wlx6cIdRas{mP84 zj?P<9Ay^ZFnghl^o$M&qWM9h9%j@z&B#BS7%&SjQN?GHP2g#aagmCvP39vx_O2Q)6 z@#DgvBo_aw#Ka0USA)Df%L8PvLZ2tu<7htn+AVg_e3O9_hcg%xwH9`gufj z)_V*tN?y65Q?JG%JXZeVrWP@t?b|D6#)s_8r(qy0QE#;mk_*@uE%`p)eEg;!URzsh z(&m-ZW%WQyUBD1|mCb;fQbKmcqx}81|9S`1bc(d;Z zk@RMO(!0?k!uiuc{X1$uj^TAGQ(Z-PoZhhl)i7x`dB#tcjLkrK9Y{B^s9uBL_hFeM zCv%#pq+(NxVWj*5LYkR_JSMYB`ZakLP(4|mnj&xxu-Brau_32MBiO+5+LMg*1sJ(_ zu(FDZ(>D7&?bq}19e_gI@pVev008=cl4|zha;v9ydSC>1dDy!rkfFKD}q%l;Y)|VtCiu2?6pD6?#VbCh#sQ|ZTvD|T%p&Q)V zpUmv8%?AoKHUT@DnSO{$JWpbHwIoC%m2|`okYQOV8i`ylmHXn|rPka1^RK19`&)2v zL#_Hh;ERa)KE7_OmJByfebVLO8V&0EHfE*@NnHkN6u)2N0=&@!kj+G_sPxPcP3fJz zU59m_RCz@7>Oo>n-Fq{1CcH(d;$JO6gVQbgHxsR45%akRCvJwwB#*%!C{X{Yq2TCV z!-m(9PLTS6z^+qfx-}%8Tn5)?;fgQCHr$eOjevTfY*4nN|K$WEHLpAXY#{Sku*u}r zBucX=hT=?M*DmWSt&X*y@~8YZ#d^)rRiG;Aj(M=7)d6E)=&K>7nr(HDnZ#j~Hhgp0 z-C9pMaNYy}4}148zVCLLIq?dK!@zuUejd2rL;iG!jF??G^u^k_XE;0j=!qo0gR@Q5 zs&x+@oUS>>ML_^zBYdqXGi>~QR_L@j?6%V8?WD9G#jB(e!~6Q=O?#8uiTUqz!GzGH zcR^@BS`K)y^Fl)=$5UGvygF@P;Wfswe)=8VrRyb*xkOsUu0_0Bf@*5Ad~H1EjU`k6O?k;2CYJrO%uj#pW1W&ZXUZ#pV* ztT8D+M-nPCK<}{BlvsH>d;%Ps;l)moA)4#VI%eqMK|jO6qkd{Mi}p2zqjc|&iw#4b zP*IR-42s*!F9PClqi$IHdp;sQwnO`6p7bZBo2%S6YK5ffyr*p%BdY)pxILONBoAt*!Low;-%PrFTost_d#6;+UX5SfMEw zRP_RtkcDjx!)6z|ib3Ts#Mo4?NfzvsQVlm48;bliNMC8IzV=taI*4q{;e4&{depsr zLot5FR2LrUe0mGSwFE#$5tW6AbF0<(KHkhPFnR(>Q9oh}aeGafZryug zYsFFV<&`R)_z6&-LgH}j|3LTSlPqL$@dS7&;L!_a6%Q&_47$A)vJDeyX7bIX$N6Kn zU?&6d&X{&!2;oTOj~{b)Px0yZ|EsZ~Uu=sQVH6`mNOZN52i5M8gDP_K)IUvUyLQ&p582M1XdR4;?yJ??u4+f@S8?O$GfKKD#kcXayh zVu0&v^6`RPzCq{iH%cRfjhiSuk8*GUr2bTYKz$!~A6Axk zD^3fXWnBA}7+~~-vD4R;YX|EZ^4xwb)HHvgzWsEdk<~|;HVV%qYf#Y1)NSO<&kPkV zJmo}a+|I8=M+g8T!#zmhxJuPT(RrPBQ}($8YvnD>AKbBK34cdm)le$qii4LYMHN!Q zx9r^UVj`CORCX%?d3f3WgY%p(q4BrLm+YAbGsQc@jl)B$gLpjGHlEs6A&@`<^M%A! z7T92s)Ob_}!an{_Y;nVNB?A7@%C(rYg`!aubmf)Xrn0hjD=bRL^$`)_p0VdVk(jes z{Kh}9=KAU@V5e3pv|bT}h&H$GJaFsFkeE~OU39cGeTYB?G*dmUPvJS;uBdAuO)qtJXwd4_ATE=nRGCJwGf2pgqK!tO4=`xjAy5s=V&4zES zY6f>o>f>--69wM?Hdwc(3mGw%yA|$9Muyu60OGD6u2wdMMC(EXIN?jGiH^Z~OeYB) z@D{-w0Vs~v*vD;m7zhBlr}gDsX&bKV#U$~NP=c#eY$jNsArIAt=^{aQq2o?g z2~z)EABM`cRXiG7W;@kmSi+P77l=h_y;1jJGhGbzH~^il4_3Nu=~+%B?_M&DhSo;* zQ(Qz%;;#owLBg948?_3;DM#vSfXdv)XBg0?z}(WFVlbb=`lzk^GCx4NJ+w1H6)sYk z&cFG{r>4RASIYoyLLz=8f^j8*JljT(%mb1LOCQ#Z`$&cvIEJy)S{RU=U6dIt3Ay7; zEN;j{Y#1<4w(sEHebHQgoN$HwWtoFEk=uh=hGO>*>_a;I^C9j?k(#F+ZiOO=ffYt` zn7Wr<#nV9jDmSZNeW#$-IAG-PLEfpYKaT~^A{RPUYmJ3@wo-ZvQyQ%@%K7$us0PT1 z^%(VARS5gfu)UlwQT`G%VVjIu8vmb4@>8E z!kg)=h~Em!QC}#ge6^?Qf3=1LCkcV~?|->*1i9Q(@|9Qq{u&yQfW8iOD0vRW4-wtt@>K}tMjITk>Vnd&(ot_l6>&{7($Tl0)8b7F70F$J9MPz zg_0PZQ*1|If`=ishXjQ1tI;T~{8)S_#$_~Epe|3v!K=>WO|zDvXtU>)J@wE8`#N-4 zPV5~^wI$78kG1p1EAPt{)}8c{N`aY=nlnN7wp?mj+Ud}bJzG`C1K%UtF7d+K?xpQB z?uMj@ub;wx)Nt)$ji|(;of-MBw4;9Kw>#C9=3@@qD-@#SnI?Om>dwQnzC0L{+v8zT z@%T$v@WNfGwJ+@mexw%jQu9ZMr4k+7i2Z<4`9udo26X2SP2d$z}KYs!CA zw*7^FGzhM$UfaOS7Z$&`w(!LtLNLj@7tmQzzyJ#~{>E!YW~2V}b>KnJ-VFpoAv=8= z&5js4hFSUUZQe9@4&1#mNfxRL@4?{Jj>wW7O=AOOJ+2`DK?mc_&-`+>|E7A7A&jN2a%X;Oum%T}mEW+MR zLFdVjB$TE2Sc&y)8_$mSxZW9*nx(}r6aX&@KFs#_yA9;y24-Ji;*XpigzfC@XB++V zD3&=h)p>~9?&!SjdA}&c>-?5L)&I4eq7~l5)*sWC>4azWAa4pI#+CQ8_&Y=hoC?`O zVnd?Ll2n*ibJmiFaT)aSJGI0WVtcCB*psBR9Uq=lEDLU1d+#l&({of#IqTSlE_|RD zYrCVm)D6H-7BEKy%vpdwGV{W1qctc7$7PcnxjlA7^VC1270@W4K7rEF9PRnL`vdpg zY6JeNhDi#k2(9z=L5}NZ0Pl$J`w&Y#59)<^r5$!2M|bGPJ%sCISCE4PiFByIGfP6p={p`Cf`qpzB8d z*`~2gQ(=Ew%vZYHz04ZpdA(l(?>~;*9qE+k;u|eCfR|hJaeO81tFB{Nv{>RYmo4z( z){>1Ncc;@YHtKMi1453HHPwwl6Sk0%nwU+z51`l0n_wfJcEuLZJg!E#$*q|^nA zj)sD(6tvyWa+%T2daOSOj4b%#?0x}l#CZarakxItt+3EvaxULD#uqtn>Dq^21`^ct z_g2>AFj9d4TX-nCwg=!H}E z>@kl0%B@mdKj1(SkTEis*RcRV`VWOu%$A%4rMPgOB$2KtfTT&^D`n0LI%d{*4}I!n z*5F(2ijcfDkTY$y2AEln@kzJvj!rLQLnZwWd5PtR zu&PKZQFoKyk8E?I1_{9;xNniK8+wNB}nLftV) zgDD@cwJWvdr{UeXT$$H1fTzPodV>M5Yl*~iYCjv$kfJP<*o;H92jaWhrF=H>X>GXL zWh`N5{gb3=Y#X#hI}5isL^LvnEgH|TXjhlDQ*aoB2;So6@J0#%k0zh5@^|gQ?C@^(xH{V{Jr|8pipF!^L`UuJQx_9vXX!OJ;0-7 zI;WynDN8c(KykHEKu5;T-o(d9Avrcq6XztxSc7RC_c4gDUS3w!WF>9tQ%K)=?t;6t z^Rm$Kf_voQH%_Q|>3F~TAv*;3-1^+<%V|YdFiwM6sX|{su+Z7$*6QBznO!Y~I~JZ5 zH_6Q9=WirxMFs(tL^q|0!)=y`G#jhOE zkOuLOiV%0;e5|Vqdf9mw_E{$tyJcJ^-r`8(PF(DpyyxqoZ>zb7Gpru>&1_P_Z*N~zRC3!~Yx z3hSl1gH{_RM66Ts!nlcM)tJiv;5yjL+q)Er4dGdDRD~N+ldSN4A3F=S&SWB^fAW;9 z+w(g;Q^iICI)&deG|eC&X~TEYFICj7^HUUM&bRL`Mj|~bw=55RL>gpQMZr?1k#XN$ z)vFnD-*p#P-;R2l_tbiN6XN6G>G$oX#{Q<`w%pKt7QNgJba6xhn{8rKwriA!goA{E&$~?&J#Pr=DvSZ6GopuoUn>}Hf(fEcBgpbH>SHjkU5O_gA}s)&{17w>>;>x>^uBdvrnYy zy!zLo2JZ+%;skEHkHZJN^=agZ zILsa#8pw^6II|!mYI{w-7H3N>ADa7YP7pk1CkVB;)JuU8|DMB>ZS|a@V5e_9(d!N+j)u*^dQsy>ho-g5ng1ug{|RK+y7V&E4$e`zf6(dIX*U{G_Z z8&6L{;L8NWOLEml6_Jg2bGdjUC8z{^a zNrAq3MF@k!SO5z0A&3wR5(Ak3@&Q-4V1VzM77ZoBh~)3aGn%yuR&s8(>QCfFcqex6pKi;R_OPfALh znxBL};yLkdcIerBY&!7qEvUIC@u2VnETiY5DF6qZGWmOTzqR!#H%(-R725h04toCj z$NZ3AZ%|=SQ!)A@FDWF76mnIT1^);ylTP>akl?_TUIEakrmu5v0-uYE3wp~22vurl z1OjHArhUp<&PU~Ag}~a3mrb(AZ004$suz7-MMdsR56m?sQWY9ZVCNlE22E^dt4nHu zy;jDj+RK~AOL5uuW{n48^*j%e7e33(6O2uJ=zs!`Cb+N!gP2Lo%jjt~6&Y7#I{N&f zkRNta(1GS_+?(oBUtBWo8e{SkwM}n9Xd3qeW>pV zpp~x=HYW5Q@*z@ILV{R#bQ%cLtA|3_@OxS1f=n6_z5LA^>t>u~GX94a*wZyGmAt)D z>D@Lne(QV8#=#0wuI~94T|u4Ft4A*7Wb4L6;DTz#P6yV%(+eVE@U$V+ErV)9hA2atl) z1^|q^`GJg_9Ppt-tE)%P(>8!OX-?3x7$NPRGzRVo@dBbLEkaInqN|Kk8FEhtcD%7M zu&~qqNn=+kf(j)Sv&YBo1emE~@8>hL56L0peZ_mBT=SjfJEI9NZoitujonA-yNlg( z`mCelE1Fo(4I@LKS|$$UpwX+X&Uege`8219pF>}k8^TOshzMfHY{P3$Z*P$W!4PkM ze}7xs9J*P+95CJWI0e-4_^1?8xRyHrbu8l&quchD=2E&dm~_nK5MQ1ar_p^Lcoa-W ziY9duwc}HCiS3EUhg=GKrS38L)I9J4U!LP$ItPK3)=Rpsv2MWIpl&K65G*|6^ii7Vfx`WS`!`NfhzDqf1$w zxibeACZ)h1`&PcAtmgqSBRrT7TcTfS8O3~PEnkt#6_)xQ)2TZYk5j23oP*Y|iC9t- zC%G)lUqX@YbUv{LjVU~ycA#ZDpsdDdHStUH7xD@wtHt0%^_&Div+Fzt2BGcQ5TO_|dy~pRPi7evG z@ZNdi4L)Mc-7nc69~4~~4>#v16Qui+`DXNq+N$ANYht)LPe3~%Jv^A+_(@SxDWUw# zVRXOh&YXiEZ^9dk^La0Yetn4>S(nofb1ORF=jJk`V$0U@%}WY)3zt9L?ptiKZyqso zMr4^bD~b#sMOTYHZ|Mws;3%-L#Wby*whwa`37HzUv1k0b806%Qm!9UP4nG!fyW7ZR z6RyE2C5wvPM-p4FTr9mp~a-<@5ChkF>&ZBih6gH z16`fTcHCtTgN8suq`uuU)}6&Dt^a*iHuPSbsQMuo}_|FlS@R^$WZn;@%` z6NpZMpv$Evfgf4nZg9ws0yZ@GG6>niLgAYGYaR3G?e2}zHrhL)En>1Bdg(v5nZu}r zbF}PDHM}o%7#5>1(T6M?87zg2$4>XV(q79uG4yn{P)86}!~j}8ZXmcA_>BIQ%+ zahHRiV^`sqFP$?p#k6_-{To7^^g7nA%K7GSq z>8PFX+Wb#sDGX~`ZH5;V@|lwMbU)+F_JV@n<1wK0T5KzSkL;WB9Zs+7bQ<1LEI_rN;bw~e;LhN%aW^yXlB94|d%^mXgf9C8J{oTJzgWD)yMGdhkKL}g2=7Ou0E5LFqurFyD14xIqveoxk) zLP>QK;k_hmcQbXDJNf+#qNk(}8kQ0Dvh%69o1n*^Z+=uPpavS@1 zIA{VG!i{wX7rD);Y21irk9`_+TbL=iN^_ZG=)eisrk?!svA#v=GWq6gkvmo}m zKN;uo&CD5%AqOnTD;srtD1y8#{U9;2LscL8G)4=&{XD$#uoL$lydgmgga+l<=iEen zTfNBeh&(qL?~)3mg`Y2H&dYE}NvXK{>Th4KX;VeR^b0g}%Q3kP8NlhvnIu2+q8ZY( zF;(pZ|D_FUtU?ZWk+#~6=*Ny%Aui83B3tHLST5;%3e;v=B|08^mEpwvV`=5 z;>hsJHk8}g@s6tS1KV6-p1rwW-0$WZ@!7hvP`Yr0gwc0oKO-q>mXiIV!KHUi z6$hfNq;p#mv~$InE|ZQ~U&X|fE}8x&1TWX!on_R(!-CH>tkXaRUMXmWeJ(ihPWWTU zxIZo-FDFzU*%8g)=4)IF9xEq7FzSIyR-9l6CDscgVNLSnuK6&^YmJx;J`*X$mW7A? z(T;ZA?AwQG?v3C@9CQv2rnH1}>?Xx!;D_i3JiCub)>};FRMmScX!Ty8apC-hnnrLP zm=c{@}{Gg+Spudv$_8K^Fj_4&KT_@9`FRK-WP z=##r0TFsm$p2cL8KSG|)RZ}Hk0^xkg&ik7-@S&fD zGO6Foe%NN$o6jHzY~2zg341KF(uKZ~q>Z&R8D^Sb+`;!O7PK-`-C9A-|Y01zEeG;_4!ow1Z!IPvQuvt>Z?@vytbgTXEyhW*Ye+EC`>QyeQ{VfN1Ajv>8 zFzXa(-kcthp*YVl26G6o3XJSMhI7Z+>~PNoPwbT2x$f+=lt8S<3nW!-y}VxpOaH-S z_a^IMkC9J5u^IEZm=rW#0#<8N!|>Wpp-1i){i038jAVd*aH7|2%w*Ct&jP0Ov}Rlz zrAuEK$R6}<4UjrrX6AWOL;w$5n9I{2$oj2DCV6d+dP)yi;~<(YPS*E#!YE~r8p<*` z$iyO^kS5P-9RW(tNWGRd4w{k}ee#Sv-*b<*+FES~S(4GQ=>)M1*g-}woD1Efs_FDi z01oKlS9DRNY(w#;QPMz)ZUhI{i9yRzaVdk+cOjRj2XwI!UTcb8%DgSSGl8T#njA`T z3^Nl(!+W=uqMhH{H#9orqJ#|Yl@_u10$L&^eAF}kEKCXoxmR3)rI4K+AOK@IRj6CF zoJlKi*bMzG6*W96pA2`#G1`9m_ESYwu5lCrd=wp*OwWcy^ADaZ(lO(J({BTo>O^f&4R(gy8t?Msm(K7vjUjw=l`c$#;~ZLzVz*0|$*9FIRNB9luWhLq1mc zYM~2i8-bL}8PR9TX_iDLii}}W&Gl-Xxg%_B7Tkj`b(hv@ z9U-=Gz+QhD<+Rs=1s=RmCDijN^-bHMiC`@dw;STitYxFvskOwF zJRS) zyk!j0rM!Clzk3EQ+#>{U7%qmdXPA8~sx(si6oHMA3#wsMm6~ai1UW=-b4h9t(8EO* zZO~)$Oz_OFO1R$Iam|LOkrz#r66=(Sm&%nE;_WoWrbe{WNIwJO6dHvalep`RQyge# z6u%h?2Mv$vc%#EDx2;+$KKHEC<$HP1}jtS^!D~(q9G@(~Z9c9ux*u3Rg zp4|YG0h2V5V1t2z0U~Zm!k>0l@Qy*`&iDUJR260v<=G$bjP3$QIpBvMmP_b)dhjGf zhBk&sp`4FHrJ^0Pdce0)?8QNzg>s;XaST(urNh7vmjYds{hU9r5v=025e>YEe)#a6 zT_F5G;x0;9buY2P)cx))%4#8RUl5xAWsfg5SP@n7>VDhBtF7B234)>7 z?)L3fhHK;^?^WG0OUOATJHE}G0(oO=1hUDhrhO-V&hI`yv$dK@HHt7ZdP&7#|MY&LxSzTwsZ>-Y_2Nw;Jk}Pjo6noha zy{90-K6ywi5P$l#aE;O9;Qej&^;^~r^=Gg&e+NhZ)omx0&(|9$ORHC|kDV1`-kONG zzl%%p&^~}*&131lko9`h@m)Zh3X&lg-1K6AnoA@90oOsaoeVWKHKdRb1DM=^4$l0D z6WR0{#$ul=$+TQtxbrh-ha9~j-uCqivMg_hGpZ&h%T^tD$c?#TY00S%3f-T9I?eSn zUkEbwe3t$x_xhFr1Dup4#qafQvSgw;Sy?tsKO0+6f?e8z(9UGlSM0?&4T8%h{hdP8 z7rOSq_H`4O>8slxg3Xho7d}Zm6V%m6{zQ-+1D)ExQ9;YRRjMB^<8p(=D?HOed6bm1 z-6ZmfD64L@@FEc!E>CTzHbyHA?-A``x>mZ5>F8KMu#Pdlvy zMQ|6k%-*Q)XfxcLQ@Bml|3PD|M>Abo1ttEwdWfL}POpRyuD^fqQ@5qDqT=^yzcT@d zu7Ipx(lBL6*vej{Sq`*}$bU(S(XPo!5Q50Bw=z3R&u~cq^uC-dq&AGpDU^Q{F<$Ep$L+JNfG0T zLKH{azn*aw4~+O{tk-tZt>U0TBU5#Qdi`*}0lgtHcV>V4uy_ z()n=p-EEr4S{&f`%`s5(p$9ftRx+}$TVs4#?ag;NcCI`UVAC+r)rHr47Y$eg!Si=5 z?d9DAZEY11<&grNCre99Hjh*ibMx{VKe3l*RQv9917VTwUj-OpF3I=GA9)=*$gG;) zay*6<%2JWBvr-S5#<;oLW@KImnV#Us6$(wu#Dj>)X z{K!jj!N{0&HAjOkRzI#5|M#_23*~ch^m1ZBu{v}3$h8q~ zhsdKJg_+fsO@09j@i9m9rm#TcX)+frPUG%xVoT%YxCbY2KW>*@@!L(TWE`>iPl#SkcndEV`Xkf6@;A3uA{E5C_Tha*ou!7)iN4*6 zuH8avqijEFk?dM~>tOhCpVv!kl7)}4u?25YAbjii_;s|sV0{zIUGFljPf1Li0d7$$ zHP&6xufz0uE2`XpO%rz!_Pf$eYS5M6(>+|2!+bU3^PfO2hd_Mmw zNKRZL#{=1I>Nunx>{rnxFxe7Vd#=r<%%m?h|Edmu79nBl9q<<3@FJk+dG=d24ZfmQ zuccKG&(FH-&8di!=3s?N-!^WY(}Lkj=3x7B@;eec5`nD#1}E2c0CjG^zkC!SrsvIP z$^4UO^s(XC*k(!vOYR}yj;M_uu2RGH+$-$s&UQSk=+TL|5NZ~vzpJi z1`ct@{rNM}l0A96sFS6ups-MzI_m}n+I~R4g(ci)i>D&nlJfyVP&Lp6#*$fx8Ibf^ zxk0e1j*8-MLb`jw@Xk?UZy(`fNH;I0pFH~#T@o90Q)l64%geYb)XG}EQ$fj31~M6j zij^-Ial`k+a^lq1?n=O6pma&K^i)rgF?wUCfaOA^5!> z_iImXG(Py3uE4h{XY~$*hevHvP$8LPgQrAy4!GtgYQH$gkb_zov^*vV$JagpJkDY6 zDl4pRzR+)p*c%|di<#;&I?>5`LhLaQIX91kNFT3Fhke24Ma(o8qyxK&U8u>)d)gho zpJklF{kD<6^>PD%eV}ol0A^}v7?MT6>7%!cZsY9@h2s;)>W@NEJk7WAA0(xw{`mT$ z_W8kL=8yuMNN1#PXzj5t?qZ+abSh7D>#^pig01zqJY(%yAX1~~N7l~f=gIHs`L3$u zHd4O~)@q)jadwE$;?RSa&dp~CA=&; z#qbMdyJ1JUX5*KA#^kz>jS3C_p>|5N&r*7p@LDQ!`dIZ#|-G?Kldb0p5`kPG+!b zp+kUV6{n*EjYC3!AfSPW_7%oulwI*C)n85JdlGP_{(xqVe4<7E`Zd_&_7pHX2FWrM z@0;?|&XeQ9g_Ho#iYZLy1puE!A8xMI=wgH2u`%j^!8O11RBG$7-dDL1i3m*bQyI$l zS0)P`h%%ZO5@o)o29CDRbmDSi5ETFvJpd&k20BWWGWBTlXJ*I8mt&uyFRI9nqen%- z+syt7Ap(RnojQMvWwDz=7e(B@2BcCZ@!=iCzaT|o55icA-qZY*@g9(|*Zngf=nvRi zg^c71sB-fFq$_Q`X0F96hpvlsJ&RHqK@L0J6#VPgej)^n+$;1lOY)-BQ;?Mk1l$*X z;6tY=ys2Chh@&aoTxxdfx_7|!e?_1J1p|x6#3cXO_3%uA%^3##I=`H(wjRw7<&JK1 zv&+fhx3JIt+E^T8L3Kmwbf5PAhRbhK*YePMUWIn<-kbE7AbG>LLaJ6@leV_4*({c6 z*&=WOMDYrJyaE>g;*>~N08G3B0|7V@m4*#|b4v41Eb^Lig+^ZCkJs4cHD`km@F(#v zdI^A({|ZcoKw*s;|BZ45a024Hq^`vO4R_TfuKmok4@ywN_>s8O*Jw$aKxDTYKm~ zhnI5{=<82WMHYt8tuR=YEH$fp5iTek1B-;<{Wq0vaKbchkZR{Clz!XWJHQnW|zR zRObcUTr@)tUflRzA2y|P(W&1zx`_D)WitaCtcn?R6bVNZ$Y{QXxXRUgu}z~#%u1%C za-^VxKMy?+X1oYDC$J;`_-4oNG=#nWX{@&t1nM=o&^~{$%QBfrnzUQr2=QV|+4^N> zR!f(NK9Uuh>|H;c|9xH)pmcam?7}22ECt?7^T#NAO*R$jTx6YTr9lq|8vXZcoM%N;UZbV!p@+?zW93&Fm@xL>b-@k( z$Y)m(Fjqk@?LbJ()#t|5KZXM;uRhm=e-N(-{~-Pwf#`;3@5Q9@MAcQlDvBBkB~L9v F{|}CddNKe2 diff --git a/mod/bootstrap/data/files/readable_skin_image/image-small.png b/mod/bootstrap/data/files/readable_skin_image/image-small.png deleted file mode 100644 index b4844b1e79637f99652e2fbb07c6a20ac689886e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3404 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 YPT2o<*q7sSpg927^~`jM+Rpg@0tWP09{>OV diff --git a/mod/bootstrap/data/files/sandstone_skin_image/image-icon.png b/mod/bootstrap/data/files/sandstone_skin/image/image-icon.png similarity index 100% rename from mod/bootstrap/data/files/sandstone_skin_image/image-icon.png rename to mod/bootstrap/data/files/sandstone_skin/image/image-icon.png diff --git a/mod/bootstrap/data/files/sandstone_skin_image/image-large.png b/mod/bootstrap/data/files/sandstone_skin/image/image-large.png similarity index 100% rename from mod/bootstrap/data/files/sandstone_skin_image/image-large.png rename to mod/bootstrap/data/files/sandstone_skin/image/image-large.png diff --git a/mod/bootstrap/data/files/sandstone_skin_image/image-medium.png b/mod/bootstrap/data/files/sandstone_skin/image/image-medium.png similarity index 100% rename from mod/bootstrap/data/files/sandstone_skin_image/image-medium.png rename to mod/bootstrap/data/files/sandstone_skin/image/image-medium.png diff --git a/mod/bootstrap/data/files/sandstone_skin_image/image-original.png b/mod/bootstrap/data/files/sandstone_skin/image/image-original.png similarity index 100% rename from mod/bootstrap/data/files/sandstone_skin_image/image-original.png rename to mod/bootstrap/data/files/sandstone_skin/image/image-original.png diff --git a/mod/bootstrap/data/files/sandstone_skin_image/image-small.png b/mod/bootstrap/data/files/sandstone_skin/image/image-small.png similarity index 100% rename from mod/bootstrap/data/files/sandstone_skin_image/image-small.png rename to mod/bootstrap/data/files/sandstone_skin/image/image-small.png diff --git a/mod/bootstrap/data/files/simplex_skin_image/image-icon.png b/mod/bootstrap/data/files/simplex_skin/image/image-icon.png similarity index 100% rename from mod/bootstrap/data/files/simplex_skin_image/image-icon.png rename to mod/bootstrap/data/files/simplex_skin/image/image-icon.png diff --git a/mod/bootstrap/data/files/simplex_skin_image/image-large.png b/mod/bootstrap/data/files/simplex_skin/image/image-large.png similarity index 100% rename from mod/bootstrap/data/files/simplex_skin_image/image-large.png rename to mod/bootstrap/data/files/simplex_skin/image/image-large.png diff --git a/mod/bootstrap/data/files/simplex_skin_image/image-medium.png b/mod/bootstrap/data/files/simplex_skin/image/image-medium.png similarity index 100% rename from mod/bootstrap/data/files/simplex_skin_image/image-medium.png rename to mod/bootstrap/data/files/simplex_skin/image/image-medium.png diff --git a/mod/bootstrap/data/files/simplex_skin_image/image-original.png b/mod/bootstrap/data/files/simplex_skin/image/image-original.png similarity index 100% rename from mod/bootstrap/data/files/simplex_skin_image/image-original.png rename to mod/bootstrap/data/files/simplex_skin/image/image-original.png diff --git a/mod/bootstrap/data/files/simplex_skin_image/image-small.png b/mod/bootstrap/data/files/simplex_skin/image/image-small.png similarity index 100% rename from mod/bootstrap/data/files/simplex_skin_image/image-small.png rename to mod/bootstrap/data/files/simplex_skin/image/image-small.png diff --git a/mod/bootstrap/data/files/sketchy_skin_image/image-icon.png b/mod/bootstrap/data/files/sketchy_skin/image/image-icon.png similarity index 100% rename from mod/bootstrap/data/files/sketchy_skin_image/image-icon.png rename to mod/bootstrap/data/files/sketchy_skin/image/image-icon.png diff --git a/mod/bootstrap/data/files/sketchy_skin_image/image-large.png b/mod/bootstrap/data/files/sketchy_skin/image/image-large.png similarity index 100% rename from mod/bootstrap/data/files/sketchy_skin_image/image-large.png rename to mod/bootstrap/data/files/sketchy_skin/image/image-large.png diff --git a/mod/bootstrap/data/files/sketchy_skin_image/image-medium.png b/mod/bootstrap/data/files/sketchy_skin/image/image-medium.png similarity index 100% rename from mod/bootstrap/data/files/sketchy_skin_image/image-medium.png rename to mod/bootstrap/data/files/sketchy_skin/image/image-medium.png diff --git a/mod/bootstrap/data/files/sketchy_skin_image/image-original.png b/mod/bootstrap/data/files/sketchy_skin/image/image-original.png similarity index 100% rename from mod/bootstrap/data/files/sketchy_skin_image/image-original.png rename to mod/bootstrap/data/files/sketchy_skin/image/image-original.png diff --git a/mod/bootstrap/data/files/sketchy_skin_image/image-small.png b/mod/bootstrap/data/files/sketchy_skin/image/image-small.png similarity index 100% rename from mod/bootstrap/data/files/sketchy_skin_image/image-small.png rename to mod/bootstrap/data/files/sketchy_skin/image/image-small.png diff --git a/mod/bootstrap/data/files/slate_skin_image/image-icon.png b/mod/bootstrap/data/files/slate_skin/image/image-icon.png similarity index 100% rename from mod/bootstrap/data/files/slate_skin_image/image-icon.png rename to mod/bootstrap/data/files/slate_skin/image/image-icon.png diff --git a/mod/bootstrap/data/files/slate_skin_image/image-large.png b/mod/bootstrap/data/files/slate_skin/image/image-large.png similarity index 100% rename from mod/bootstrap/data/files/slate_skin_image/image-large.png rename to mod/bootstrap/data/files/slate_skin/image/image-large.png diff --git a/mod/bootstrap/data/files/slate_skin_image/image-medium.png b/mod/bootstrap/data/files/slate_skin/image/image-medium.png similarity index 100% rename from mod/bootstrap/data/files/slate_skin_image/image-medium.png rename to mod/bootstrap/data/files/slate_skin/image/image-medium.png diff --git a/mod/bootstrap/data/files/slate_skin_image/image-original.png b/mod/bootstrap/data/files/slate_skin/image/image-original.png similarity index 100% rename from mod/bootstrap/data/files/slate_skin_image/image-original.png rename to mod/bootstrap/data/files/slate_skin/image/image-original.png diff --git a/mod/bootstrap/data/files/slate_skin_image/image-small.png b/mod/bootstrap/data/files/slate_skin/image/image-small.png similarity index 100% rename from mod/bootstrap/data/files/slate_skin_image/image-small.png rename to mod/bootstrap/data/files/slate_skin/image/image-small.png diff --git a/mod/bootstrap/data/files/solar_skin_image/image-icon.png b/mod/bootstrap/data/files/solar_skin/image/image-icon.png similarity index 100% rename from mod/bootstrap/data/files/solar_skin_image/image-icon.png rename to mod/bootstrap/data/files/solar_skin/image/image-icon.png diff --git a/mod/bootstrap/data/files/solar_skin_image/image-large.png b/mod/bootstrap/data/files/solar_skin/image/image-large.png similarity index 100% rename from mod/bootstrap/data/files/solar_skin_image/image-large.png rename to mod/bootstrap/data/files/solar_skin/image/image-large.png diff --git a/mod/bootstrap/data/files/solar_skin_image/image-medium.png b/mod/bootstrap/data/files/solar_skin/image/image-medium.png similarity index 100% rename from mod/bootstrap/data/files/solar_skin_image/image-medium.png rename to mod/bootstrap/data/files/solar_skin/image/image-medium.png diff --git a/mod/bootstrap/data/files/solar_skin_image/image-original.png b/mod/bootstrap/data/files/solar_skin/image/image-original.png similarity index 100% rename from mod/bootstrap/data/files/solar_skin_image/image-original.png rename to mod/bootstrap/data/files/solar_skin/image/image-original.png diff --git a/mod/bootstrap/data/files/solar_skin_image/image-small.png b/mod/bootstrap/data/files/solar_skin/image/image-small.png similarity index 100% rename from mod/bootstrap/data/files/solar_skin_image/image-small.png rename to mod/bootstrap/data/files/solar_skin/image/image-small.png diff --git a/mod/bootstrap/data/files/spacelab_skin_image/image-icon.png b/mod/bootstrap/data/files/spacelab_skin/image/image-icon.png similarity index 100% rename from mod/bootstrap/data/files/spacelab_skin_image/image-icon.png rename to mod/bootstrap/data/files/spacelab_skin/image/image-icon.png diff --git a/mod/bootstrap/data/files/spacelab_skin_image/image-large.png b/mod/bootstrap/data/files/spacelab_skin/image/image-large.png similarity index 100% rename from mod/bootstrap/data/files/spacelab_skin_image/image-large.png rename to mod/bootstrap/data/files/spacelab_skin/image/image-large.png diff --git a/mod/bootstrap/data/files/spacelab_skin_image/image-medium.png b/mod/bootstrap/data/files/spacelab_skin/image/image-medium.png similarity index 100% rename from mod/bootstrap/data/files/spacelab_skin_image/image-medium.png rename to mod/bootstrap/data/files/spacelab_skin/image/image-medium.png diff --git a/mod/bootstrap/data/files/spacelab_skin_image/image-original.png b/mod/bootstrap/data/files/spacelab_skin/image/image-original.png similarity index 100% rename from mod/bootstrap/data/files/spacelab_skin_image/image-original.png rename to mod/bootstrap/data/files/spacelab_skin/image/image-original.png diff --git a/mod/bootstrap/data/files/spacelab_skin_image/image-small.png b/mod/bootstrap/data/files/spacelab_skin/image/image-small.png similarity index 100% rename from mod/bootstrap/data/files/spacelab_skin_image/image-small.png rename to mod/bootstrap/data/files/spacelab_skin/image/image-small.png diff --git a/mod/bootstrap/data/files/superhero_skin_image/image-icon.png b/mod/bootstrap/data/files/superhero_skin/image/image-icon.png similarity index 100% rename from mod/bootstrap/data/files/superhero_skin_image/image-icon.png rename to mod/bootstrap/data/files/superhero_skin/image/image-icon.png diff --git a/mod/bootstrap/data/files/superhero_skin_image/image-large.png b/mod/bootstrap/data/files/superhero_skin/image/image-large.png similarity index 100% rename from mod/bootstrap/data/files/superhero_skin_image/image-large.png rename to mod/bootstrap/data/files/superhero_skin/image/image-large.png diff --git a/mod/bootstrap/data/files/superhero_skin_image/image-medium.png b/mod/bootstrap/data/files/superhero_skin/image/image-medium.png similarity index 100% rename from mod/bootstrap/data/files/superhero_skin_image/image-medium.png rename to mod/bootstrap/data/files/superhero_skin/image/image-medium.png diff --git a/mod/bootstrap/data/files/superhero_skin_image/image-original.png b/mod/bootstrap/data/files/superhero_skin/image/image-original.png similarity index 100% rename from mod/bootstrap/data/files/superhero_skin_image/image-original.png rename to mod/bootstrap/data/files/superhero_skin/image/image-original.png diff --git a/mod/bootstrap/data/files/superhero_skin_image/image-small.png b/mod/bootstrap/data/files/superhero_skin/image/image-small.png similarity index 100% rename from mod/bootstrap/data/files/superhero_skin_image/image-small.png rename to mod/bootstrap/data/files/superhero_skin/image/image-small.png diff --git a/mod/bootstrap/data/files/united_skin_image/image-icon.png b/mod/bootstrap/data/files/united_skin/image/image-icon.png similarity index 100% rename from mod/bootstrap/data/files/united_skin_image/image-icon.png rename to mod/bootstrap/data/files/united_skin/image/image-icon.png diff --git a/mod/bootstrap/data/files/united_skin_image/image-large.png b/mod/bootstrap/data/files/united_skin/image/image-large.png similarity index 100% rename from mod/bootstrap/data/files/united_skin_image/image-large.png rename to mod/bootstrap/data/files/united_skin/image/image-large.png diff --git a/mod/bootstrap/data/files/united_skin_image/image-medium.png b/mod/bootstrap/data/files/united_skin/image/image-medium.png similarity index 100% rename from mod/bootstrap/data/files/united_skin_image/image-medium.png rename to mod/bootstrap/data/files/united_skin/image/image-medium.png diff --git a/mod/bootstrap/data/files/united_skin_image/image-original.png b/mod/bootstrap/data/files/united_skin/image/image-original.png similarity index 100% rename from mod/bootstrap/data/files/united_skin_image/image-original.png rename to mod/bootstrap/data/files/united_skin/image/image-original.png diff --git a/mod/bootstrap/data/files/united_skin_image/image-small.png b/mod/bootstrap/data/files/united_skin/image/image-small.png similarity index 100% rename from mod/bootstrap/data/files/united_skin_image/image-small.png rename to mod/bootstrap/data/files/united_skin/image/image-small.png diff --git a/mod/bootstrap/data/files/yeti_skin_image/image-icon.png b/mod/bootstrap/data/files/yeti_skin/image/image-icon.png similarity index 100% rename from mod/bootstrap/data/files/yeti_skin_image/image-icon.png rename to mod/bootstrap/data/files/yeti_skin/image/image-icon.png diff --git a/mod/bootstrap/data/files/yeti_skin_image/image-large.png b/mod/bootstrap/data/files/yeti_skin/image/image-large.png similarity index 100% rename from mod/bootstrap/data/files/yeti_skin_image/image-large.png rename to mod/bootstrap/data/files/yeti_skin/image/image-large.png diff --git a/mod/bootstrap/data/files/yeti_skin_image/image-medium.png b/mod/bootstrap/data/files/yeti_skin/image/image-medium.png similarity index 100% rename from mod/bootstrap/data/files/yeti_skin_image/image-medium.png rename to mod/bootstrap/data/files/yeti_skin/image/image-medium.png diff --git a/mod/bootstrap/data/files/yeti_skin_image/image-original.png b/mod/bootstrap/data/files/yeti_skin/image/image-original.png similarity index 100% rename from mod/bootstrap/data/files/yeti_skin_image/image-original.png rename to mod/bootstrap/data/files/yeti_skin/image/image-original.png diff --git a/mod/bootstrap/data/files/yeti_skin_image/image-small.png b/mod/bootstrap/data/files/yeti_skin/image/image-small.png similarity index 100% rename from mod/bootstrap/data/files/yeti_skin_image/image-small.png rename to mod/bootstrap/data/files/yeti_skin/image/image-small.png diff --git a/mod/bootstrap/data/real.yml b/mod/bootstrap/data/real.yml index 7c278201e0..957712caf7 100644 --- a/mod/bootstrap/data/real.yml +++ b/mod/bootstrap/data/real.yml @@ -27,8 +27,7 @@ - :name: - :cerulean_skin - :image - :image: cerulean_skin_image/image-original.png - :codename: cerulean_skin_image + :image: cerulean_skin/image/image-original.png :storage_type: :coded - :name: cosmo skin :type: :bootswatch_skin @@ -36,8 +35,7 @@ - :name: - :cosmo_skin - :image - :image: cosmo_skin_image/image-original.png - :codename: cosmo_skin_image + :image: cosmo_skin/image/image-original.png :storage_type: :coded - :name: cyborg skin :type: :bootswatch_skin @@ -45,8 +43,7 @@ - :name: - :cyborg_skin - :image - :image: cyborg_skin_image/image-original.png - :codename: cyborg_skin_image + :image: cyborg_skin/image/image-original.png :storage_type: :coded - :name: darkly skin :type: :bootswatch_skin @@ -54,8 +51,7 @@ - :name: - :darkly_skin - :image - :image: darkly_skin_image/image-original.png - :codename: darkly_skin_image + :image: darkly_skin/image/image-original.png :storage_type: :coded - :name: flatly skin :type: :bootswatch_skin @@ -63,8 +59,7 @@ - :name: - :flatly_skin - :image - :image: flatly_skin_image/image-original.png - :codename: flatly_skin_image + :image: flatly_skin/image/image-original.png :storage_type: :coded - :name: journal skin :type: :bootswatch_skin @@ -72,8 +67,7 @@ - :name: - :journal_skin - :image - :image: journal_skin_image/image-original.png - :codename: journal_skin_image + :image: journal_skin/image/image-original.png :storage_type: :coded - :name: lumen skin :type: :bootswatch_skin @@ -81,8 +75,7 @@ - :name: - :lumen_skin - :image - :image: lumen_skin_image/image-original.png - :codename: lumen_skin_image + :image: lumen_skin/image/image-original.png :storage_type: :coded - :name: sandstone skin :type: :bootswatch_skin @@ -90,8 +83,7 @@ - :name: - :sandstone_skin - :image - :image: sandstone_skin_image/image-original.png - :codename: sandstone_skin_image + :image: sandstone_skin/image/image-original.png :storage_type: :coded - :name: simplex skin :type: :bootswatch_skin @@ -99,8 +91,7 @@ - :name: - :simplex_skin - :image - :image: simplex_skin_image/image-original.png - :codename: simplex_skin_image + :image: simplex_skin/image/image-original.png :storage_type: :coded - :name: slate skin :type: :bootswatch_skin @@ -108,8 +99,7 @@ - :name: - :slate_skin - :image - :image: slate_skin_image/image-original.png - :codename: slate_skin_image + :image: slate_skin/image/image-original.png :storage_type: :coded - :name: spacelab skin :type: :bootswatch_skin @@ -117,8 +107,7 @@ - :name: - :spacelab_skin - :image - :image: spacelab_skin_image/image-original.png - :codename: spacelab_skin_image + :image: spacelab_skin/image/image-original.png :storage_type: :coded - :name: superhero skin :type: :bootswatch_skin @@ -126,8 +115,7 @@ - :name: - :superhero_skin - :image - :image: superhero_skin_image/image-original.png - :codename: superhero_skin_image + :image: superhero_skin/image/image-original.png :storage_type: :coded - :name: united skin :type: :bootswatch_skin @@ -135,8 +123,7 @@ - :name: - :united_skin - :image - :image: united_skin_image/image-original.png - :codename: united_skin_image + :image: united_skin/image/image-original.png :storage_type: :coded - :name: yeti skin :type: :bootswatch_skin @@ -144,8 +131,7 @@ - :name: - :yeti_skin - :image - :image: yeti_skin_image/image-original.png - :codename: yeti_skin_image + :image: yeti_skin/image/image-original.png :storage_type: :coded - :name: litera skin :type: :bootswatch_skin @@ -153,8 +139,7 @@ - :name: - :litera_skin - :image - :image: litera_skin_image/image-original.png - :codename: litera_skin_image + :image: litera_skin/image/image-original.png :storage_type: :coded - :name: lux skin :type: :bootswatch_skin @@ -162,8 +147,7 @@ - :name: - :lux_skin - :image - :image: lux_skin_image/image-original.png - :codename: lux_skin_image + :image: lux_skin/image/image-original.png :storage_type: :coded - :name: materia skin :type: :bootswatch_skin @@ -171,8 +155,7 @@ - :name: - :materia_skin - :image - :image: materia_skin_image/image-original.png - :codename: materia_skin_image + :image: materia_skin/image/image-original.png :storage_type: :coded - :name: minty skin :type: :bootswatch_skin @@ -180,8 +163,7 @@ - :name: - :minty_skin - :image - :image: minty_skin_image/image-original.png - :codename: minty_skin_image + :image: minty_skin/image/image-original.png :storage_type: :coded - :name: pulse skin :type: :bootswatch_skin @@ -189,8 +171,7 @@ - :name: - :pulse_skin - :image - :image: pulse_skin_image/image-original.png - :codename: pulse_skin_image + :image: pulse_skin/image/image-original.png :storage_type: :coded - :name: solar skin :type: :bootswatch_skin @@ -198,8 +179,7 @@ - :name: - :solar_skin - :image - :image: solar_skin_image/image-original.png - :codename: solar_skin_image + :image: solar_skin/image/image-original.png :storage_type: :coded - :name: sketchy skin :type: :bootswatch_skin @@ -207,8 +187,7 @@ - :name: - :sketchy_skin - :image - :image: sketchy_skin_image/image-original.png - :codename: sketchy_skin_image + :image: sketchy_skin/image/image-original.png :storage_type: :coded - :name: diff --git a/mod/carrierwave/data/files/mod_carrierwave_script_asset_output/file.js b/mod/carrierwave/data/files/mod_carrierwave/script/asset_output/file.js similarity index 100% rename from mod/carrierwave/data/files/mod_carrierwave_script_asset_output/file.js rename to mod/carrierwave/data/files/mod_carrierwave/script/asset_output/file.js diff --git a/mod/carrierwave/set/abstract/attachment/coded.rb b/mod/carrierwave/set/abstract/attachment/coded.rb index 6b5f7db2ea..46bef476a3 100644 --- a/mod/carrierwave/set/abstract/attachment/coded.rb +++ b/mod/carrierwave/set/abstract/attachment/coded.rb @@ -6,7 +6,7 @@ event :validate_coded_storage_type, :validate, on: :save, when: :coded? do storage_type_error :mod_argument_needed_to_save unless mod - storage_type_error :codename_needed_for_storage if codename.blank? + storage_type_error :codename_needed_for_storage if coded_ok? end def mod= value @@ -19,6 +19,10 @@ def mod private +def coded_ok? + !codename_parts.find &:blank? +end + def uncode? (@explicit_storage_type != :coded) && !set_specific[:mod].present? && current.coded? # (@explicit_storage_type != :coded) && !mod && current.coded? @@ -37,16 +41,21 @@ def mod_from_content end def mod_name_match cont - cont&.match %r{^:[^/]+/([^.]+)} + cont&.match %r{^:[:\w/+]+/([^./]+)\.} end # place for files of mod file cards def coded_dir new_mod=nil - dir = File.join mod_dir(new_mod), MOD_FILE_DIR, codename.to_s + dir_parts = [mod_dir(new_mod), MOD_FILE_DIR] + codename_parts + dir = File.join *dir_parts FileUtils.mkdir_p(dir) unless File.directory?(dir) dir end +def codename_parts + @codename_parts ||= name.parts.map { |p| p.card&.codename&.to_s } +end + def mod_dir new_mod=nil mod_name = new_mod || mod dir = Cardio::Mod.dirs.path(mod_name) || (mod_name.to_sym == :test && "test") diff --git a/mod/carrierwave/set/abstract/attachment/paths.rb b/mod/carrierwave/set/abstract/attachment/paths.rb index e3fa19cc40..fc0ec0ec04 100644 --- a/mod/carrierwave/set/abstract/attachment/paths.rb +++ b/mod/carrierwave/set/abstract/attachment/paths.rb @@ -24,7 +24,7 @@ def files_base_dir_configuration_error # used in the identifier def file_dir if coded? - ":#{codename}" + codename_parts.map { |c| ":#{c}" }.join Name.joint elsif cloud? "(#{bucket})/#{file_id}" else diff --git a/mod/carrierwave/spec/set/abstract/attachment/coded_spec.rb b/mod/carrierwave/spec/set/abstract/attachment/coded_spec.rb index d8fb6c277e..45cd7e5115 100644 --- a/mod/carrierwave/spec/set/abstract/attachment/coded_spec.rb +++ b/mod/carrierwave/spec/set/abstract/attachment/coded_spec.rb @@ -4,7 +4,7 @@ File.join deck_mod_path, "test_mod" end - let(:codename) { :yeti_skin_image } + let(:codename) { :logo } let(:file_card) { Card[codename] } diff --git a/mod/carrierwave/spec/set/type/image_spec.rb b/mod/carrierwave/spec/set/type/image_spec.rb index 647bbe5737..4c2deef27d 100644 --- a/mod/carrierwave/spec/set/type/image_spec.rb +++ b/mod/carrierwave/spec/set/type/image_spec.rb @@ -106,7 +106,7 @@ end it "has correct url" do - expect(subject.image.url).to eq "/files/:cerulean_skin_image/bootstrap-original.png" + expect(subject.image.url).to eq "/files/:cerulean_skin+:image/bootstrap-original.png" end it "has correct url as content" do diff --git a/mod/date/data/files/mod_date_script_asset_output/file.js b/mod/date/data/files/mod_date_script_asset_output/file.js deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/mod/date/data/files/mod_date_script_datepicker_machine_output/file.js b/mod/date/data/files/mod_date_script_datepicker_machine_output/file.js deleted file mode 100644 index 2e656b063f..0000000000 --- a/mod/date/data/files/mod_date_script_datepicker_machine_output/file.js +++ /dev/null @@ -1,2820 +0,0 @@ -// moment-with-locales.min.js -!function(e,a){"object"==typeof exports&&"undefined"!=typeof module?module.exports=a():"function"==typeof define&&define.amd?define(a):e.moment=a()}(this,function(){"use strict";var e,n;function M(){return e.apply(null,arguments)}function _(e){return e instanceof Array||"[object Array]"===Object.prototype.toString.call(e)}function i(e){return null!=e&&"[object Object]"===Object.prototype.toString.call(e)}function h(e,a){return Object.prototype.hasOwnProperty.call(e,a)}function o(e){if(Object.getOwnPropertyNames)return 0===Object.getOwnPropertyNames(e).length;for(var a in e)if(h(e,a))return;return 1}function r(e){return void 0===e}function m(e){return"number"==typeof e||"[object Number]"===Object.prototype.toString.call(e)}function d(e){return e instanceof Date||"[object Date]"===Object.prototype.toString.call(e)}function u(e,a){for(var t=[],s=0;s>>0,s=0;sFe(e)?(r=e+1,d-Fe(e)):(r=e,d);return{year:r,dayOfYear:_}}function Ce(e,a,t){var s,n,r=Je(e.year(),a,t),d=Math.floor((e.dayOfYear()-r-1)/7)+1;return d<1?s=d+Ie(n=e.year()-1,a,t):d>Ie(e.year(),a,t)?(s=d-Ie(e.year(),a,t),n=e.year()+1):(n=e.year(),s=d),{week:s,year:n}}function Ie(e,a,t){var s=Je(e,a,t),n=Je(e+1,a,t);return(Fe(e)-s+n)/7}W("w",["ww",2],"wo","week"),W("W",["WW",2],"Wo","isoWeek"),z("week","w"),z("isoWeek","W"),C("week",5),C("isoWeek",5),le("w",ae),le("ww",ae,$),le("W",ae),le("WW",ae,$),Ye(["w","ww","W","WW"],function(e,a,t,s){a[s.substr(0,1)]=G(e)});function Ue(e,a){return e.slice(a,7).concat(e.slice(0,a))}W("d",0,"do","day"),W("dd",0,0,function(e){return this.localeData().weekdaysMin(this,e)}),W("ddd",0,0,function(e){return this.localeData().weekdaysShort(this,e)}),W("dddd",0,0,function(e){return this.localeData().weekdays(this,e)}),W("e",0,0,"weekday"),W("E",0,0,"isoWeekday"),z("day","d"),z("weekday","e"),z("isoWeekday","E"),C("day",11),C("weekday",11),C("isoWeekday",11),le("d",ae),le("e",ae),le("E",ae),le("dd",function(e,a){return a.weekdaysMinRegex(e)}),le("ddd",function(e,a){return a.weekdaysShortRegex(e)}),le("dddd",function(e,a){return a.weekdaysRegex(e)}),Ye(["dd","ddd","dddd"],function(e,a,t,s){var n=t._locale.weekdaysParse(e,s,t._strict);null!=n?a.d=n:L(t).invalidWeekday=e}),Ye(["d","e","E"],function(e,a,t,s){a[s]=G(e)});var Ge="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),Ve="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),Be="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),Ke=ue,qe=ue,Ze=ue;function $e(){function e(e,a){return a.length-e.length}for(var a,t,s,n,r=[],d=[],_=[],i=[],o=0;o<7;o++)a=c([2e3,1]).day(o),t=he(this.weekdaysMin(a,"")),s=he(this.weekdaysShort(a,"")),n=he(this.weekdays(a,"")),r.push(t),d.push(s),_.push(n),i.push(t),i.push(s),i.push(n);r.sort(e),d.sort(e),_.sort(e),i.sort(e),this._weekdaysRegex=new RegExp("^("+i.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+_.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+d.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+r.join("|")+")","i")}function Qe(){return this.hours()%12||12}function Xe(e,a){W(e,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),a)})}function ea(e,a){return a._meridiemParse}W("H",["HH",2],0,"hour"),W("h",["hh",2],0,Qe),W("k",["kk",2],0,function(){return this.hours()||24}),W("hmm",0,0,function(){return""+Qe.apply(this)+H(this.minutes(),2)}),W("hmmss",0,0,function(){return""+Qe.apply(this)+H(this.minutes(),2)+H(this.seconds(),2)}),W("Hmm",0,0,function(){return""+this.hours()+H(this.minutes(),2)}),W("Hmmss",0,0,function(){return""+this.hours()+H(this.minutes(),2)+H(this.seconds(),2)}),Xe("a",!0),Xe("A",!1),z("hour","h"),C("hour",13),le("a",ea),le("A",ea),le("H",ae),le("h",ae),le("k",ae),le("HH",ae,$),le("hh",ae,$),le("kk",ae,$),le("hmm",te),le("hmmss",se),le("Hmm",te),le("Hmmss",se),Le(["H","HH"],De),Le(["k","kk"],function(e,a,t){var s=G(e);a[De]=24===s?0:s}),Le(["a","A"],function(e,a,t){t._isPm=t._locale.isPM(e),t._meridiem=e}),Le(["h","hh"],function(e,a,t){a[De]=G(e),L(t).bigHour=!0}),Le("hmm",function(e,a,t){var s=e.length-2;a[De]=G(e.substr(0,s)),a[Te]=G(e.substr(s)),L(t).bigHour=!0}),Le("hmmss",function(e,a,t){var s=e.length-4,n=e.length-2;a[De]=G(e.substr(0,s)),a[Te]=G(e.substr(s,2)),a[ge]=G(e.substr(n)),L(t).bigHour=!0}),Le("Hmm",function(e,a,t){var s=e.length-2;a[De]=G(e.substr(0,s)),a[Te]=G(e.substr(s))}),Le("Hmmss",function(e,a,t){var s=e.length-4,n=e.length-2;a[De]=G(e.substr(0,s)),a[Te]=G(e.substr(s,2)),a[ge]=G(e.substr(n))});var aa=V("Hours",!0);var ta,sa={calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},longDateFormat:{LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},invalidDate:"Invalid date",ordinal:"%d",dayOfMonthOrdinalParse:/\d{1,2}/,relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",w:"a week",ww:"%d weeks",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},months:He,monthsShort:je,week:{dow:0,doy:6},weekdays:Ge,weekdaysMin:Be,weekdaysShort:Ve,meridiemParse:/[ap]\.?m?\.?/i},na={},ra={};function da(e){return e?e.toLowerCase().replace("_","-"):e}function _a(e){for(var a,t,s,n,r=0;r=a&&function(e,a){for(var t=Math.min(e.length,a.length),s=0;s=a-1)break;a--}r++}return ta}function ia(a){var e;if(void 0===na[a]&&"undefined"!=typeof module&&module&&module.exports)try{e=ta._abbr,require("./locale/"+a),oa(e)}catch(e){na[a]=null}return na[a]}function oa(e,a){var t;return e&&((t=r(a)?ua(e):ma(e,a))?ta=t:"undefined"!=typeof console&&console.warn&&console.warn("Locale "+e+" not found. Did you forget to load it?")),ta._abbr}function ma(e,a){if(null===a)return delete na[e],null;var t,s=sa;if(a.abbr=e,null!=na[e])w("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),s=na[e]._config;else if(null!=a.parentLocale)if(null!=na[a.parentLocale])s=na[a.parentLocale]._config;else{if(null==(t=ia(a.parentLocale)))return ra[a.parentLocale]||(ra[a.parentLocale]=[]),ra[a.parentLocale].push({name:e,config:a}),null;s=t._config}return na[e]=new S(b(s,a)),ra[e]&&ra[e].forEach(function(e){ma(e.name,e.config)}),oa(e),na[e]}function ua(e){var a;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return ta;if(!_(e)){if(a=ia(e))return a;e=[e]}return _a(e)}function la(e){var a,t=e._a;return t&&-2===L(e).overflow&&(a=t[pe]<0||11Se(t[fe],t[pe])?ke:t[De]<0||24Ie(t,r,d)?L(e)._overflowWeeks=!0:null!=i?L(e)._overflowWeekday=!0:(_=Re(t,s,n,r,d),e._a[fe]=_.year,e._dayOfYear=_.dayOfYear)}(e),null!=e._dayOfYear&&(r=ga(e._a[fe],s[fe]),(e._dayOfYear>Fe(r)||0===e._dayOfYear)&&(L(e)._overflowDayOfYear=!0),t=Ne(r,0,e._dayOfYear),e._a[pe]=t.getUTCMonth(),e._a[ke]=t.getUTCDate()),a=0;a<3&&null==e._a[a];++a)e._a[a]=i[a]=s[a];for(;a<7;a++)e._a[a]=i[a]=null==e._a[a]?2===a?1:0:e._a[a];24===e._a[De]&&0===e._a[Te]&&0===e._a[ge]&&0===e._a[we]&&(e._nextDay=!0,e._a[De]=0),e._d=(e._useUTC?Ne:function(e,a,t,s,n,r,d){var _;return e<100&&0<=e?(_=new Date(e+400,a,t,s,n,r,d),isFinite(_.getFullYear())&&_.setFullYear(e)):_=new Date(e,a,t,s,n,r,d),_}).apply(null,i),n=e._useUTC?e._d.getUTCDay():e._d.getDay(),null!=e._tzm&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[De]=24),e._w&&void 0!==e._w.d&&e._w.d!==n&&(L(e).weekdayMismatch=!0)}}function va(e){if(e._f!==M.ISO_8601)if(e._f!==M.RFC_2822){e._a=[],L(e).empty=!0;for(var a,t,s,n,r,d,_,i=""+e._i,o=i.length,m=0,u=E(e._f,e._locale).match(j)||[],l=0;lt.valueOf():t.valueOf()"}),yt.toJSON=function(){return this.isValid()?this.toISOString():null},yt.toString=function(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},yt.unix=function(){return Math.floor(this.valueOf()/1e3)},yt.valueOf=function(){return this._d.valueOf()-6e4*(this._offset||0)},yt.creationData=function(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}},yt.eraName=function(){for(var e,a=this.localeData().eras(),t=0,s=a.length;tthis.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},yt.isLocal=function(){return!!this.isValid()&&!this._isUTC},yt.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},yt.isUtc=Ca,yt.isUTC=Ca,yt.zoneAbbr=function(){return this._isUTC?"UTC":""},yt.zoneName=function(){return this._isUTC?"Coordinated Universal Time":""},yt.dates=t("dates accessor is deprecated. Use date instead.",lt),yt.months=t("months accessor is deprecated. Use month instead",Ae),yt.years=t("years accessor is deprecated. Use year instead",ze),yt.zone=t("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",function(e,a){return null!=e?("string"!=typeof e&&(e=-e),this.utcOffset(e,a),this):-this.utcOffset()}),yt.isDSTShifted=t("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",function(){if(!r(this._isDSTShifted))return this._isDSTShifted;var e,a={};return p(a,this),(a=ba(a))._a?(e=(a._isUTC?c:Ha)(a._a),this._isDSTShifted=this.isValid()&&0= 4)) { - throw new Error('Tempus Dominus Bootstrap4\'s requires at least jQuery v3.0.0 but less than v4.0.0'); - } -}(jQuery); - - -if (typeof moment === 'undefined') { - throw new Error('Tempus Dominus Bootstrap4\'s requires moment.js. Moment.js must be included before Tempus Dominus Bootstrap4\'s JavaScript.'); -} - -var version = moment.version.split('.') -if ((version[0] <= 2 && version[1] < 17) || (version[0] >= 3)) { - throw new Error('Tempus Dominus Bootstrap4\'s requires at least moment.js v2.17.0 but less than v3.0.0'); -} - -+function () { - -var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; - -var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); - -function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } - -function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } - -function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -// ReSharper disable once InconsistentNaming -var DateTimePicker = function ($, moment) { - // ReSharper disable InconsistentNaming - var NAME = 'datetimepicker', - DATA_KEY = '' + NAME, - EVENT_KEY = '.' + DATA_KEY, - DATA_API_KEY = '.data-api', - Selector = { - DATA_TOGGLE: '[data-toggle="' + DATA_KEY + '"]' - }, - ClassName = { - INPUT: NAME + '-input' - }, - Event = { - CHANGE: 'change' + EVENT_KEY, - BLUR: 'blur' + EVENT_KEY, - KEYUP: 'keyup' + EVENT_KEY, - KEYDOWN: 'keydown' + EVENT_KEY, - FOCUS: 'focus' + EVENT_KEY, - CLICK_DATA_API: 'click' + EVENT_KEY + DATA_API_KEY, - //emitted - UPDATE: 'update' + EVENT_KEY, - ERROR: 'error' + EVENT_KEY, - HIDE: 'hide' + EVENT_KEY, - SHOW: 'show' + EVENT_KEY - }, - DatePickerModes = [{ - CLASS_NAME: 'days', - NAV_FUNCTION: 'M', - NAV_STEP: 1 - }, { - CLASS_NAME: 'months', - NAV_FUNCTION: 'y', - NAV_STEP: 1 - }, { - CLASS_NAME: 'years', - NAV_FUNCTION: 'y', - NAV_STEP: 10 - }, { - CLASS_NAME: 'decades', - NAV_FUNCTION: 'y', - NAV_STEP: 100 - }], - KeyMap = { - 'up': 38, - 38: 'up', - 'down': 40, - 40: 'down', - 'left': 37, - 37: 'left', - 'right': 39, - 39: 'right', - 'tab': 9, - 9: 'tab', - 'escape': 27, - 27: 'escape', - 'enter': 13, - 13: 'enter', - 'pageUp': 33, - 33: 'pageUp', - 'pageDown': 34, - 34: 'pageDown', - 'shift': 16, - 16: 'shift', - 'control': 17, - 17: 'control', - 'space': 32, - 32: 'space', - 't': 84, - 84: 't', - 'delete': 46, - 46: 'delete' - }, - ViewModes = ['times', 'days', 'months', 'years', 'decades'], - keyState = {}, - keyPressHandled = {}; - - var Default = { - timeZone: '', - format: false, - dayViewHeaderFormat: 'MMMM YYYY', - extraFormats: false, - stepping: 1, - minDate: false, - maxDate: false, - useCurrent: true, - collapse: true, - locale: moment.locale(), - defaultDate: false, - disabledDates: false, - enabledDates: false, - icons: { - time: 'fa fa-clock-o', - date: 'fa fa-calendar', - up: 'fa fa-arrow-up', - down: 'fa fa-arrow-down', - previous: 'fa fa-chevron-left', - next: 'fa fa-chevron-right', - today: 'fa fa-calendar-check-o', - clear: 'fa fa-delete', - close: 'fa fa-times' - }, - tooltips: { - today: 'Go to today', - clear: 'Clear selection', - close: 'Close the picker', - selectMonth: 'Select Month', - prevMonth: 'Previous Month', - nextMonth: 'Next Month', - selectYear: 'Select Year', - prevYear: 'Previous Year', - nextYear: 'Next Year', - selectDecade: 'Select Decade', - prevDecade: 'Previous Decade', - nextDecade: 'Next Decade', - prevCentury: 'Previous Century', - nextCentury: 'Next Century', - pickHour: 'Pick Hour', - incrementHour: 'Increment Hour', - decrementHour: 'Decrement Hour', - pickMinute: 'Pick Minute', - incrementMinute: 'Increment Minute', - decrementMinute: 'Decrement Minute', - pickSecond: 'Pick Second', - incrementSecond: 'Increment Second', - decrementSecond: 'Decrement Second', - togglePeriod: 'Toggle Period', - selectTime: 'Select Time', - selectDate: 'Select Date' - }, - useStrict: false, - sideBySide: false, - daysOfWeekDisabled: false, - calendarWeeks: false, - viewMode: 'days', - toolbarPlacement: 'default', - buttons: { - showToday: false, - showClear: false, - showClose: false - }, - widgetPositioning: { - horizontal: 'auto', - vertical: 'auto' - }, - widgetParent: null, - ignoreReadonly: false, - keepOpen: false, - focusOnShow: true, - inline: false, - keepInvalid: false, - keyBinds: { - up: function up() { - if (!this.widget) { - return false; - } - var d = this._dates[0] || this.getMoment(); - if (this.widget.find('.datepicker').is(':visible')) { - this.date(d.clone().subtract(7, 'd')); - } else { - this.date(d.clone().add(this.stepping(), 'm')); - } - return true; - }, - down: function down() { - if (!this.widget) { - this.show(); - return false; - } - var d = this._dates[0] || this.getMoment(); - if (this.widget.find('.datepicker').is(':visible')) { - this.date(d.clone().add(7, 'd')); - } else { - this.date(d.clone().subtract(this.stepping(), 'm')); - } - return true; - }, - 'control up': function controlUp() { - if (!this.widget) { - return false; - } - var d = this._dates[0] || this.getMoment(); - if (this.widget.find('.datepicker').is(':visible')) { - this.date(d.clone().subtract(1, 'y')); - } else { - this.date(d.clone().add(1, 'h')); - } - return true; - }, - 'control down': function controlDown() { - if (!this.widget) { - return false; - } - var d = this._dates[0] || this.getMoment(); - if (this.widget.find('.datepicker').is(':visible')) { - this.date(d.clone().add(1, 'y')); - } else { - this.date(d.clone().subtract(1, 'h')); - } - return true; - }, - left: function left() { - if (!this.widget) { - return false; - } - var d = this._dates[0] || this.getMoment(); - if (this.widget.find('.datepicker').is(':visible')) { - this.date(d.clone().subtract(1, 'd')); - } - return true; - }, - right: function right() { - if (!this.widget) { - return false; - } - var d = this._dates[0] || this.getMoment(); - if (this.widget.find('.datepicker').is(':visible')) { - this.date(d.clone().add(1, 'd')); - } - return true; - }, - pageUp: function pageUp() { - if (!this.widget) { - return false; - } - var d = this._dates[0] || this.getMoment(); - if (this.widget.find('.datepicker').is(':visible')) { - this.date(d.clone().subtract(1, 'M')); - } - return true; - }, - pageDown: function pageDown() { - if (!this.widget) { - return false; - } - var d = this._dates[0] || this.getMoment(); - if (this.widget.find('.datepicker').is(':visible')) { - this.date(d.clone().add(1, 'M')); - } - return true; - }, - enter: function enter() { - if (!this.widget) { - return false; - } - this.hide(); - return true; - }, - escape: function escape() { - if (!this.widget) { - return false; - } - this.hide(); - return true; - }, - 'control space': function controlSpace() { - if (!this.widget) { - return false; - } - if (this.widget.find('.timepicker').is(':visible')) { - this.widget.find('.btn[data-action="togglePeriod"]').click(); - } - return true; - }, - t: function t() { - if (!this.widget) { - return false; - } - this.date(this.getMoment()); - return true; - }, - 'delete': function _delete() { - if (!this.widget) { - return false; - } - this.clear(); - return true; - } - }, - debug: false, - allowInputToggle: false, - disabledTimeIntervals: false, - disabledHours: false, - enabledHours: false, - viewDate: false, - allowMultidate: false, - multidateSeparator: ',' - }; - - // ReSharper restore InconsistentNaming - - // ReSharper disable once DeclarationHides - // ReSharper disable once InconsistentNaming - - var DateTimePicker = function () { - /** @namespace eData.dateOptions */ - /** @namespace moment.tz */ - - function DateTimePicker(element, options) { - _classCallCheck(this, DateTimePicker); - - this._options = this._getOptions(options); - this._element = element; - this._dates = []; - this._datesFormatted = []; - this._viewDate = null; - this.unset = true; - this.component = false; - this.widget = false; - this.use24Hours = null; - this.actualFormat = null; - this.parseFormats = null; - this.currentViewMode = null; - this.MinViewModeNumber = 0; - - this._int(); - } - - /** - * @return {string} - */ - - - //private - - DateTimePicker.prototype._int = function _int() { - var targetInput = this._element.data('target-input'); - if (this._element.is('input')) { - this.input = this._element; - } else if (targetInput !== undefined) { - if (targetInput === 'nearest') { - this.input = this._element.find('input'); - } else { - this.input = $(targetInput); - } - } - - this._dates = []; - this._dates[0] = this.getMoment(); - this._viewDate = this.getMoment().clone(); - - $.extend(true, this._options, this._dataToOptions()); - - this.options(this._options); - - this._initFormatting(); - - if (this.input !== undefined && this.input.is('input') && this.input.val().trim().length !== 0) { - this._setValue(this._parseInputDate(this.input.val().trim()), 0); - } else if (this._options.defaultDate && this.input !== undefined && this.input.attr('placeholder') === undefined) { - this._setValue(this._options.defaultDate, 0); - } - if (this._options.inline) { - this.show(); - } - }; - - DateTimePicker.prototype._update = function _update() { - if (!this.widget) { - return; - } - this._fillDate(); - this._fillTime(); - }; - - DateTimePicker.prototype._setValue = function _setValue(targetMoment, index) { - var oldDate = this.unset ? null : this._dates[index]; - var outpValue = ''; - // case of calling setValue(null or false) - if (!targetMoment) { - if (!this._options.allowMultidate || this._dates.length === 1) { - this.unset = true; - this._dates = []; - this._datesFormatted = []; - } else { - outpValue = this._element.data('date') + ','; - outpValue = outpValue.replace(oldDate.format(this.actualFormat) + ',', '').replace(',,', '').replace(/,\s*$/, ''); - this._dates.splice(index, 1); - this._datesFormatted.splice(index, 1); - } - if (this.input !== undefined) { - this.input.val(outpValue); - this.input.trigger('input'); - } - this._element.data('date', outpValue); - this._notifyEvent({ - type: DateTimePicker.Event.CHANGE, - date: false, - oldDate: oldDate - }); - this._update(); - return; - } - - targetMoment = targetMoment.clone().locale(this._options.locale); - - if (this._hasTimeZone()) { - targetMoment.tz(this._options.timeZone); - } - - if (this._options.stepping !== 1) { - targetMoment.minutes(Math.round(targetMoment.minutes() / this._options.stepping) * this._options.stepping).seconds(0); - } - - if (this._isValid(targetMoment)) { - this._dates[index] = targetMoment; - this._datesFormatted[index] = targetMoment.format('YYYY-MM-DD'); - this._viewDate = targetMoment.clone(); - if (this._options.allowMultidate && this._dates.length > 1) { - for (var i = 0; i < this._dates.length; i++) { - outpValue += '' + this._dates[i].format(this.actualFormat) + this._options.multidateSeparator; - } - outpValue = outpValue.replace(/,\s*$/, ''); - } else { - outpValue = this._dates[index].format(this.actualFormat); - } - if (this.input !== undefined) { - this.input.val(outpValue); - this.input.trigger('input'); - } - this._element.data('date', outpValue); - - this.unset = false; - this._update(); - this._notifyEvent({ - type: DateTimePicker.Event.CHANGE, - date: this._dates[index].clone(), - oldDate: oldDate - }); - } else { - if (!this._options.keepInvalid) { - if (this.input !== undefined) { - this.input.val('' + (this.unset ? '' : this._dates[index].format(this.actualFormat))); - this.input.trigger('input'); - } - } else { - this._notifyEvent({ - type: DateTimePicker.Event.CHANGE, - date: targetMoment, - oldDate: oldDate - }); - } - this._notifyEvent({ - type: DateTimePicker.Event.ERROR, - date: targetMoment, - oldDate: oldDate - }); - } - }; - - DateTimePicker.prototype._change = function _change(e) { - var val = $(e.target).val().trim(), - parsedDate = val ? this._parseInputDate(val) : null; - this._setValue(parsedDate); - e.stopImmediatePropagation(); - return false; - }; - - //noinspection JSMethodCanBeStatic - - - DateTimePicker.prototype._getOptions = function _getOptions(options) { - options = $.extend(true, {}, Default, options); - return options; - }; - - DateTimePicker.prototype._hasTimeZone = function _hasTimeZone() { - return moment.tz !== undefined && this._options.timeZone !== undefined && this._options.timeZone !== null && this._options.timeZone !== ''; - }; - - DateTimePicker.prototype._isEnabled = function _isEnabled(granularity) { - if (typeof granularity !== 'string' || granularity.length > 1) { - throw new TypeError('isEnabled expects a single character string parameter'); - } - switch (granularity) { - case 'y': - return this.actualFormat.indexOf('Y') !== -1; - case 'M': - return this.actualFormat.indexOf('M') !== -1; - case 'd': - return this.actualFormat.toLowerCase().indexOf('d') !== -1; - case 'h': - case 'H': - return this.actualFormat.toLowerCase().indexOf('h') !== -1; - case 'm': - return this.actualFormat.indexOf('m') !== -1; - case 's': - return this.actualFormat.indexOf('s') !== -1; - case 'a': - case 'A': - return this.actualFormat.toLowerCase().indexOf('a') !== -1; - default: - return false; - } - }; - - DateTimePicker.prototype._hasTime = function _hasTime() { - return this._isEnabled('h') || this._isEnabled('m') || this._isEnabled('s'); - }; - - DateTimePicker.prototype._hasDate = function _hasDate() { - return this._isEnabled('y') || this._isEnabled('M') || this._isEnabled('d'); - }; - - DateTimePicker.prototype._dataToOptions = function _dataToOptions() { - var eData = this._element.data(); - var dataOptions = {}; - - if (eData.dateOptions && eData.dateOptions instanceof Object) { - dataOptions = $.extend(true, dataOptions, eData.dateOptions); - } - - $.each(this._options, function (key) { - var attributeName = 'date' + key.charAt(0).toUpperCase() + key.slice(1); //todo data api key - if (eData[attributeName] !== undefined) { - dataOptions[key] = eData[attributeName]; - } else { - delete dataOptions[key]; - } - }); - return dataOptions; - }; - - DateTimePicker.prototype._notifyEvent = function _notifyEvent(e) { - if (e.type === DateTimePicker.Event.CHANGE && (e.date && e.date.isSame(e.oldDate)) || !e.date && !e.oldDate) { - return; - } - this._element.trigger(e); - }; - - DateTimePicker.prototype._viewUpdate = function _viewUpdate(e) { - if (e === 'y') { - e = 'YYYY'; - } - this._notifyEvent({ - type: DateTimePicker.Event.UPDATE, - change: e, - viewDate: this._viewDate.clone() - }); - }; - - DateTimePicker.prototype._showMode = function _showMode(dir) { - if (!this.widget) { - return; - } - if (dir) { - this.currentViewMode = Math.max(this.MinViewModeNumber, Math.min(3, this.currentViewMode + dir)); - } - this.widget.find('.datepicker > div').hide().filter('.datepicker-' + DatePickerModes[this.currentViewMode].CLASS_NAME).show(); - }; - - DateTimePicker.prototype._isInDisabledDates = function _isInDisabledDates(testDate) { - return this._options.disabledDates[testDate.format('YYYY-MM-DD')] === true; - }; - - DateTimePicker.prototype._isInEnabledDates = function _isInEnabledDates(testDate) { - return this._options.enabledDates[testDate.format('YYYY-MM-DD')] === true; - }; - - DateTimePicker.prototype._isInDisabledHours = function _isInDisabledHours(testDate) { - return this._options.disabledHours[testDate.format('H')] === true; - }; - - DateTimePicker.prototype._isInEnabledHours = function _isInEnabledHours(testDate) { - return this._options.enabledHours[testDate.format('H')] === true; - }; - - DateTimePicker.prototype._isValid = function _isValid(targetMoment, granularity) { - if (!targetMoment.isValid()) { - return false; - } - if (this._options.disabledDates && granularity === 'd' && this._isInDisabledDates(targetMoment)) { - return false; - } - if (this._options.enabledDates && granularity === 'd' && !this._isInEnabledDates(targetMoment)) { - return false; - } - if (this._options.minDate && targetMoment.isBefore(this._options.minDate, granularity)) { - return false; - } - if (this._options.maxDate && targetMoment.isAfter(this._options.maxDate, granularity)) { - return false; - } - if (this._options.daysOfWeekDisabled && granularity === 'd' && this._options.daysOfWeekDisabled.indexOf(targetMoment.day()) !== -1) { - return false; - } - if (this._options.disabledHours && (granularity === 'h' || granularity === 'm' || granularity === 's') && this._isInDisabledHours(targetMoment)) { - return false; - } - if (this._options.enabledHours && (granularity === 'h' || granularity === 'm' || granularity === 's') && !this._isInEnabledHours(targetMoment)) { - return false; - } - if (this._options.disabledTimeIntervals && (granularity === 'h' || granularity === 'm' || granularity === 's')) { - var found = false; - $.each(this._options.disabledTimeIntervals, function () { - if (targetMoment.isBetween(this[0], this[1])) { - found = true; - return false; - } - }); - if (found) { - return false; - } - } - return true; - }; - - DateTimePicker.prototype._parseInputDate = function _parseInputDate(inputDate) { - if (this._options.parseInputDate === undefined) { - if (!moment.isMoment(inputDate)) { - inputDate = this.getMoment(inputDate); - } - } else { - inputDate = this._options.parseInputDate(inputDate); - } - //inputDate.locale(this.options.locale); - return inputDate; - }; - - DateTimePicker.prototype._keydown = function _keydown(e) { - var handler = null, - index = void 0, - index2 = void 0, - keyBindKeys = void 0, - allModifiersPressed = void 0; - var pressedKeys = [], - pressedModifiers = {}, - currentKey = e.which, - pressed = 'p'; - - keyState[currentKey] = pressed; - - for (index in keyState) { - if (keyState.hasOwnProperty(index) && keyState[index] === pressed) { - pressedKeys.push(index); - if (parseInt(index, 10) !== currentKey) { - pressedModifiers[index] = true; - } - } - } - - for (index in this._options.keyBinds) { - if (this._options.keyBinds.hasOwnProperty(index) && typeof this._options.keyBinds[index] === 'function') { - keyBindKeys = index.split(' '); - if (keyBindKeys.length === pressedKeys.length && KeyMap[currentKey] === keyBindKeys[keyBindKeys.length - 1]) { - allModifiersPressed = true; - for (index2 = keyBindKeys.length - 2; index2 >= 0; index2--) { - if (!(KeyMap[keyBindKeys[index2]] in pressedModifiers)) { - allModifiersPressed = false; - break; - } - } - if (allModifiersPressed) { - handler = this._options.keyBinds[index]; - break; - } - } - } - } - - if (handler) { - if (handler.call(this)) { - e.stopPropagation(); - e.preventDefault(); - } - } - }; - - //noinspection JSMethodCanBeStatic,SpellCheckingInspection - - - DateTimePicker.prototype._keyup = function _keyup(e) { - keyState[e.which] = 'r'; - if (keyPressHandled[e.which]) { - keyPressHandled[e.which] = false; - e.stopPropagation(); - e.preventDefault(); - } - }; - - DateTimePicker.prototype._indexGivenDates = function _indexGivenDates(givenDatesArray) { - // Store given enabledDates and disabledDates as keys. - // This way we can check their existence in O(1) time instead of looping through whole array. - // (for example: options.enabledDates['2014-02-27'] === true) - var givenDatesIndexed = {}, - self = this; - $.each(givenDatesArray, function () { - var dDate = self._parseInputDate(this); - if (dDate.isValid()) { - givenDatesIndexed[dDate.format('YYYY-MM-DD')] = true; - } - }); - return Object.keys(givenDatesIndexed).length ? givenDatesIndexed : false; - }; - - DateTimePicker.prototype._indexGivenHours = function _indexGivenHours(givenHoursArray) { - // Store given enabledHours and disabledHours as keys. - // This way we can check their existence in O(1) time instead of looping through whole array. - // (for example: options.enabledHours['2014-02-27'] === true) - var givenHoursIndexed = {}; - $.each(givenHoursArray, function () { - givenHoursIndexed[this] = true; - }); - return Object.keys(givenHoursIndexed).length ? givenHoursIndexed : false; - }; - - DateTimePicker.prototype._initFormatting = function _initFormatting() { - var format = this._options.format || 'L LT', - self = this; - - this.actualFormat = format.replace(/(\[[^\[]*])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g, function (formatInput) { - return self._dates[0].localeData().longDateFormat(formatInput) || formatInput; //todo taking the first date should be ok - }); - - this.parseFormats = this._options.extraFormats ? this._options.extraFormats.slice() : []; - if (this.parseFormats.indexOf(format) < 0 && this.parseFormats.indexOf(this.actualFormat) < 0) { - this.parseFormats.push(this.actualFormat); - } - - this.use24Hours = this.actualFormat.toLowerCase().indexOf('a') < 1 && this.actualFormat.replace(/\[.*?]/g, '').indexOf('h') < 1; - - if (this._isEnabled('y')) { - this.MinViewModeNumber = 2; - } - if (this._isEnabled('M')) { - this.MinViewModeNumber = 1; - } - if (this._isEnabled('d')) { - this.MinViewModeNumber = 0; - } - - this.currentViewMode = Math.max(this.MinViewModeNumber, this.currentViewMode); - - if (!this.unset) { - this._setValue(this._dates[0], 0); - } - }; - - DateTimePicker.prototype._getLastPickedDate = function _getLastPickedDate() { - return this._dates[this._getLastPickedDateIndex()]; - }; - - DateTimePicker.prototype._getLastPickedDateIndex = function _getLastPickedDateIndex() { - return this._dates.length - 1; - }; - - //public - - - DateTimePicker.prototype.getMoment = function getMoment(d) { - var returnMoment = void 0; - - if (d === undefined || d === null) { - returnMoment = moment(); //TODO should this use format? and locale? - } else if (this._hasTimeZone()) { - // There is a string to parse and a default time zone - // parse with the tz function which takes a default time zone if it is not in the format string - returnMoment = moment.tz(d, this.parseFormats, this._options.locale, this._options.useStrict, this._options.timeZone); - } else { - returnMoment = moment(d, this.parseFormats, this._options.locale, this._options.useStrict); - } - - if (this._hasTimeZone()) { - returnMoment.tz(this._options.timeZone); - } - - return returnMoment; - }; - - DateTimePicker.prototype.toggle = function toggle() { - return this.widget ? this.hide() : this.show(); - }; - - DateTimePicker.prototype.ignoreReadonly = function ignoreReadonly(_ignoreReadonly) { - if (arguments.length === 0) { - return this._options.ignoreReadonly; - } - if (typeof _ignoreReadonly !== 'boolean') { - throw new TypeError('ignoreReadonly () expects a boolean parameter'); - } - this._options.ignoreReadonly = _ignoreReadonly; - }; - - DateTimePicker.prototype.options = function options(newOptions) { - if (arguments.length === 0) { - return $.extend(true, {}, this._options); - } - - if (!(newOptions instanceof Object)) { - throw new TypeError('options() this.options parameter should be an object'); - } - $.extend(true, this._options, newOptions); - var self = this; - $.each(this._options, function (key, value) { - if (self[key] !== undefined) { - self[key](value); - } - }); - }; - - DateTimePicker.prototype.date = function date(newDate, index) { - index = index || 0; - if (arguments.length === 0) { - if (this.unset) { - return null; - } - if (this._options.allowMultidate) { - return this._dates.join(this._options.multidateSeparator); - } else { - return this._dates[index].clone(); - } - } - - if (newDate !== null && typeof newDate !== 'string' && !moment.isMoment(newDate) && !(newDate instanceof Date)) { - throw new TypeError('date() parameter must be one of [null, string, moment or Date]'); - } - - this._setValue(newDate === null ? null : this._parseInputDate(newDate), index); - }; - - DateTimePicker.prototype.format = function format(newFormat) { - if (arguments.length === 0) { - return this._options.format; - } - - if (typeof newFormat !== 'string' && (typeof newFormat !== 'boolean' || newFormat !== false)) { - throw new TypeError('format() expects a string or boolean:false parameter ' + newFormat); - } - - this._options.format = newFormat; - if (this.actualFormat) { - this._initFormatting(); // reinitialize formatting - } - }; - - DateTimePicker.prototype.timeZone = function timeZone(newZone) { - if (arguments.length === 0) { - return this._options.timeZone; - } - - if (typeof newZone !== 'string') { - throw new TypeError('newZone() expects a string parameter'); - } - - this._options.timeZone = newZone; - }; - - DateTimePicker.prototype.dayViewHeaderFormat = function dayViewHeaderFormat(newFormat) { - if (arguments.length === 0) { - return this._options.dayViewHeaderFormat; - } - - if (typeof newFormat !== 'string') { - throw new TypeError('dayViewHeaderFormat() expects a string parameter'); - } - - this._options.dayViewHeaderFormat = newFormat; - }; - - DateTimePicker.prototype.extraFormats = function extraFormats(formats) { - if (arguments.length === 0) { - return this._options.extraFormats; - } - - if (formats !== false && !(formats instanceof Array)) { - throw new TypeError('extraFormats() expects an array or false parameter'); - } - - this._options.extraFormats = formats; - if (this.parseFormats) { - this._initFormatting(); // reinit formatting - } - }; - - DateTimePicker.prototype.disabledDates = function disabledDates(dates) { - if (arguments.length === 0) { - return this._options.disabledDates ? $.extend({}, this._options.disabledDates) : this._options.disabledDates; - } - - if (!dates) { - this._options.disabledDates = false; - this._update(); - return true; - } - if (!(dates instanceof Array)) { - throw new TypeError('disabledDates() expects an array parameter'); - } - this._options.disabledDates = this._indexGivenDates(dates); - this._options.enabledDates = false; - this._update(); - }; - - DateTimePicker.prototype.enabledDates = function enabledDates(dates) { - if (arguments.length === 0) { - return this._options.enabledDates ? $.extend({}, this._options.enabledDates) : this._options.enabledDates; - } - - if (!dates) { - this._options.enabledDates = false; - this._update(); - return true; - } - if (!(dates instanceof Array)) { - throw new TypeError('enabledDates() expects an array parameter'); - } - this._options.enabledDates = this._indexGivenDates(dates); - this._options.disabledDates = false; - this._update(); - }; - - DateTimePicker.prototype.daysOfWeekDisabled = function daysOfWeekDisabled(_daysOfWeekDisabled) { - if (arguments.length === 0) { - return this._options.daysOfWeekDisabled.splice(0); - } - - if (typeof _daysOfWeekDisabled === 'boolean' && !_daysOfWeekDisabled) { - this._options.daysOfWeekDisabled = false; - this._update(); - return true; - } - - if (!(_daysOfWeekDisabled instanceof Array)) { - throw new TypeError('daysOfWeekDisabled() expects an array parameter'); - } - this._options.daysOfWeekDisabled = _daysOfWeekDisabled.reduce(function (previousValue, currentValue) { - currentValue = parseInt(currentValue, 10); - if (currentValue > 6 || currentValue < 0 || isNaN(currentValue)) { - return previousValue; - } - if (previousValue.indexOf(currentValue) === -1) { - previousValue.push(currentValue); - } - return previousValue; - }, []).sort(); - if (this._options.useCurrent && !this._options.keepInvalid) { - for (var i = 0; i < this._dates.length; i++) { - var tries = 0; - while (!this._isValid(this._dates[i], 'd')) { - this._dates[i].add(1, 'd'); - if (tries === 31) { - throw 'Tried 31 times to find a valid date'; - } - tries++; - } - this._setValue(this._dates[i], i); - } - } - this._update(); - }; - - DateTimePicker.prototype.maxDate = function maxDate(_maxDate) { - if (arguments.length === 0) { - return this._options.maxDate ? this._options.maxDate.clone() : this._options.maxDate; - } - - if (typeof _maxDate === 'boolean' && _maxDate === false) { - this._options.maxDate = false; - this._update(); - return true; - } - - if (typeof _maxDate === 'string') { - if (_maxDate === 'now' || _maxDate === 'moment') { - _maxDate = this.getMoment(); - } - } - - var parsedDate = this._parseInputDate(_maxDate); - - if (!parsedDate.isValid()) { - throw new TypeError('maxDate() Could not parse date parameter: ' + _maxDate); - } - if (this._options.minDate && parsedDate.isBefore(this._options.minDate)) { - throw new TypeError('maxDate() date parameter is before this.options.minDate: ' + parsedDate.format(this.actualFormat)); - } - this._options.maxDate = parsedDate; - for (var i = 0; i < this._dates.length; i++) { - if (this._options.useCurrent && !this._options.keepInvalid && this._dates[i].isAfter(_maxDate)) { - this._setValue(this._options.maxDate, i); - } - } - if (this._viewDate.isAfter(parsedDate)) { - this._viewDate = parsedDate.clone().subtract(this._options.stepping, 'm'); - } - this._update(); - }; - - DateTimePicker.prototype.minDate = function minDate(_minDate) { - if (arguments.length === 0) { - return this._options.minDate ? this._options.minDate.clone() : this._options.minDate; - } - - if (typeof _minDate === 'boolean' && _minDate === false) { - this._options.minDate = false; - this._update(); - return true; - } - - if (typeof _minDate === 'string') { - if (_minDate === 'now' || _minDate === 'moment') { - _minDate = this.getMoment(); - } - } - - var parsedDate = this._parseInputDate(_minDate); - - if (!parsedDate.isValid()) { - throw new TypeError('minDate() Could not parse date parameter: ' + _minDate); - } - if (this._options.maxDate && parsedDate.isAfter(this._options.maxDate)) { - throw new TypeError('minDate() date parameter is after this.options.maxDate: ' + parsedDate.format(this.actualFormat)); - } - this._options.minDate = parsedDate; - for (var i = 0; i < this._dates.length; i++) { - if (this._options.useCurrent && !this._options.keepInvalid && this._dates[i].isBefore(_minDate)) { - this._setValue(this._options.minDate, i); - } - } - if (this._viewDate.isBefore(parsedDate)) { - this._viewDate = parsedDate.clone().add(this._options.stepping, 'm'); - } - this._update(); - }; - - DateTimePicker.prototype.defaultDate = function defaultDate(_defaultDate) { - if (arguments.length === 0) { - return this._options.defaultDate ? this._options.defaultDate.clone() : this._options.defaultDate; - } - if (!_defaultDate) { - this._options.defaultDate = false; - return true; - } - - if (typeof _defaultDate === 'string') { - if (_defaultDate === 'now' || _defaultDate === 'moment') { - _defaultDate = this.getMoment(); - } else { - _defaultDate = this.getMoment(_defaultDate); - } - } - - var parsedDate = this._parseInputDate(_defaultDate); - if (!parsedDate.isValid()) { - throw new TypeError('defaultDate() Could not parse date parameter: ' + _defaultDate); - } - if (!this._isValid(parsedDate)) { - throw new TypeError('defaultDate() date passed is invalid according to component setup validations'); - } - - this._options.defaultDate = parsedDate; - - if (this._options.defaultDate && this._options.inline || this.input !== undefined && this.input.val().trim() === '') { - this._setValue(this._options.defaultDate, 0); - } - }; - - DateTimePicker.prototype.locale = function locale(_locale) { - if (arguments.length === 0) { - return this._options.locale; - } - - if (!moment.localeData(_locale)) { - throw new TypeError('locale() locale ' + _locale + ' is not loaded from moment locales!'); - } - - this._options.locale = _locale; - - for (var i = 0; i < this._dates.length; i++) { - this._dates[i].locale(this._options.locale); - } - this._viewDate.locale(this._options.locale); - - if (this.actualFormat) { - this._initFormatting(); // reinitialize formatting - } - if (this.widget) { - this.hide(); - this.show(); - } - }; - - DateTimePicker.prototype.stepping = function stepping(_stepping) { - if (arguments.length === 0) { - return this._options.stepping; - } - - _stepping = parseInt(_stepping, 10); - if (isNaN(_stepping) || _stepping < 1) { - _stepping = 1; - } - this._options.stepping = _stepping; - }; - - DateTimePicker.prototype.useCurrent = function useCurrent(_useCurrent) { - var useCurrentOptions = ['year', 'month', 'day', 'hour', 'minute']; - if (arguments.length === 0) { - return this._options.useCurrent; - } - - if (typeof _useCurrent !== 'boolean' && typeof _useCurrent !== 'string') { - throw new TypeError('useCurrent() expects a boolean or string parameter'); - } - if (typeof _useCurrent === 'string' && useCurrentOptions.indexOf(_useCurrent.toLowerCase()) === -1) { - throw new TypeError('useCurrent() expects a string parameter of ' + useCurrentOptions.join(', ')); - } - this._options.useCurrent = _useCurrent; - }; - - DateTimePicker.prototype.collapse = function collapse(_collapse) { - if (arguments.length === 0) { - return this._options.collapse; - } - - if (typeof _collapse !== 'boolean') { - throw new TypeError('collapse() expects a boolean parameter'); - } - if (this._options.collapse === _collapse) { - return true; - } - this._options.collapse = _collapse; - if (this.widget) { - this.hide(); - this.show(); - } - }; - - DateTimePicker.prototype.icons = function icons(_icons) { - if (arguments.length === 0) { - return $.extend({}, this._options.icons); - } - - if (!(_icons instanceof Object)) { - throw new TypeError('icons() expects parameter to be an Object'); - } - - $.extend(this._options.icons, _icons); - - if (this.widget) { - this.hide(); - this.show(); - } - }; - - DateTimePicker.prototype.tooltips = function tooltips(_tooltips) { - if (arguments.length === 0) { - return $.extend({}, this._options.tooltips); - } - - if (!(_tooltips instanceof Object)) { - throw new TypeError('tooltips() expects parameter to be an Object'); - } - $.extend(this._options.tooltips, _tooltips); - if (this.widget) { - this.hide(); - this.show(); - } - }; - - DateTimePicker.prototype.useStrict = function useStrict(_useStrict) { - if (arguments.length === 0) { - return this._options.useStrict; - } - - if (typeof _useStrict !== 'boolean') { - throw new TypeError('useStrict() expects a boolean parameter'); - } - this._options.useStrict = _useStrict; - }; - - DateTimePicker.prototype.sideBySide = function sideBySide(_sideBySide) { - if (arguments.length === 0) { - return this._options.sideBySide; - } - - if (typeof _sideBySide !== 'boolean') { - throw new TypeError('sideBySide() expects a boolean parameter'); - } - this._options.sideBySide = _sideBySide; - if (this.widget) { - this.hide(); - this.show(); - } - }; - - DateTimePicker.prototype.viewMode = function viewMode(_viewMode) { - if (arguments.length === 0) { - return this._options.viewMode; - } - - if (typeof _viewMode !== 'string') { - throw new TypeError('viewMode() expects a string parameter'); - } - - if (DateTimePicker.ViewModes.indexOf(_viewMode) === -1) { - throw new TypeError('viewMode() parameter must be one of (' + DateTimePicker.ViewModes.join(', ') + ') value'); - } - - this._options.viewMode = _viewMode; - this.currentViewMode = Math.max(DateTimePicker.ViewModes.indexOf(_viewMode) - 1, this.MinViewModeNumber); - - this._showMode(); - }; - - DateTimePicker.prototype.calendarWeeks = function calendarWeeks(_calendarWeeks) { - if (arguments.length === 0) { - return this._options.calendarWeeks; - } - - if (typeof _calendarWeeks !== 'boolean') { - throw new TypeError('calendarWeeks() expects parameter to be a boolean value'); - } - - this._options.calendarWeeks = _calendarWeeks; - this._update(); - }; - - DateTimePicker.prototype.buttons = function buttons(_buttons) { - if (arguments.length === 0) { - return $.extend({}, this._options.buttons); - } - - if (!(_buttons instanceof Object)) { - throw new TypeError('buttons() expects parameter to be an Object'); - } - - $.extend(this._options.buttons, _buttons); - - if (typeof this._options.buttons.showToday !== 'boolean') { - throw new TypeError('buttons.showToday expects a boolean parameter'); - } - if (typeof this._options.buttons.showClear !== 'boolean') { - throw new TypeError('buttons.showClear expects a boolean parameter'); - } - if (typeof this._options.buttons.showClose !== 'boolean') { - throw new TypeError('buttons.showClose expects a boolean parameter'); - } - - if (this.widget) { - this.hide(); - this.show(); - } - }; - - DateTimePicker.prototype.keepOpen = function keepOpen(_keepOpen) { - if (arguments.length === 0) { - return this._options.keepOpen; - } - - if (typeof _keepOpen !== 'boolean') { - throw new TypeError('keepOpen() expects a boolean parameter'); - } - - this._options.keepOpen = _keepOpen; - }; - - DateTimePicker.prototype.focusOnShow = function focusOnShow(_focusOnShow) { - if (arguments.length === 0) { - return this._options.focusOnShow; - } - - if (typeof _focusOnShow !== 'boolean') { - throw new TypeError('focusOnShow() expects a boolean parameter'); - } - - this._options.focusOnShow = _focusOnShow; - }; - - DateTimePicker.prototype.inline = function inline(_inline) { - if (arguments.length === 0) { - return this._options.inline; - } - - if (typeof _inline !== 'boolean') { - throw new TypeError('inline() expects a boolean parameter'); - } - - this._options.inline = _inline; - }; - - DateTimePicker.prototype.clear = function clear() { - this._setValue(null); //todo - }; - - DateTimePicker.prototype.keyBinds = function keyBinds(_keyBinds) { - if (arguments.length === 0) { - return this._options.keyBinds; - } - - this._options.keyBinds = _keyBinds; - }; - - DateTimePicker.prototype.debug = function debug(_debug) { - if (typeof _debug !== 'boolean') { - throw new TypeError('debug() expects a boolean parameter'); - } - - this._options.debug = _debug; - }; - - DateTimePicker.prototype.allowInputToggle = function allowInputToggle(_allowInputToggle) { - if (arguments.length === 0) { - return this._options.allowInputToggle; - } - - if (typeof _allowInputToggle !== 'boolean') { - throw new TypeError('allowInputToggle() expects a boolean parameter'); - } - - this._options.allowInputToggle = _allowInputToggle; - }; - - DateTimePicker.prototype.keepInvalid = function keepInvalid(_keepInvalid) { - if (arguments.length === 0) { - return this._options.keepInvalid; - } - - if (typeof _keepInvalid !== 'boolean') { - throw new TypeError('keepInvalid() expects a boolean parameter'); - } - this._options.keepInvalid = _keepInvalid; - }; - - DateTimePicker.prototype.datepickerInput = function datepickerInput(_datepickerInput) { - if (arguments.length === 0) { - return this._options.datepickerInput; - } - - if (typeof _datepickerInput !== 'string') { - throw new TypeError('datepickerInput() expects a string parameter'); - } - - this._options.datepickerInput = _datepickerInput; - }; - - DateTimePicker.prototype.parseInputDate = function parseInputDate(_parseInputDate2) { - if (arguments.length === 0) { - return this._options.parseInputDate; - } - - if (typeof _parseInputDate2 !== 'function') { - throw new TypeError('parseInputDate() should be as function'); - } - - this._options.parseInputDate = _parseInputDate2; - }; - - DateTimePicker.prototype.disabledTimeIntervals = function disabledTimeIntervals(_disabledTimeIntervals) { - if (arguments.length === 0) { - return this._options.disabledTimeIntervals ? $.extend({}, this._options.disabledTimeIntervals) : this._options.disabledTimeIntervals; - } - - if (!_disabledTimeIntervals) { - this._options.disabledTimeIntervals = false; - this._update(); - return true; - } - if (!(_disabledTimeIntervals instanceof Array)) { - throw new TypeError('disabledTimeIntervals() expects an array parameter'); - } - this._options.disabledTimeIntervals = _disabledTimeIntervals; - this._update(); - }; - - DateTimePicker.prototype.disabledHours = function disabledHours(hours) { - if (arguments.length === 0) { - return this._options.disabledHours ? $.extend({}, this._options.disabledHours) : this._options.disabledHours; - } - - if (!hours) { - this._options.disabledHours = false; - this._update(); - return true; - } - if (!(hours instanceof Array)) { - throw new TypeError('disabledHours() expects an array parameter'); - } - this._options.disabledHours = this._indexGivenHours(hours); - this._options.enabledHours = false; - if (this._options.useCurrent && !this._options.keepInvalid) { - for (var i = 0; i < this._dates.length; i++) { - var tries = 0; - while (!this._isValid(this._dates[i], 'h')) { - this._dates[i].add(1, 'h'); - if (tries === 24) { - throw 'Tried 24 times to find a valid date'; - } - tries++; - } - this._setValue(this._dates[i], i); - } - } - this._update(); - }; - - DateTimePicker.prototype.enabledHours = function enabledHours(hours) { - if (arguments.length === 0) { - return this._options.enabledHours ? $.extend({}, this._options.enabledHours) : this._options.enabledHours; - } - - if (!hours) { - this._options.enabledHours = false; - this._update(); - return true; - } - if (!(hours instanceof Array)) { - throw new TypeError('enabledHours() expects an array parameter'); - } - this._options.enabledHours = this._indexGivenHours(hours); - this._options.disabledHours = false; - if (this._options.useCurrent && !this._options.keepInvalid) { - for (var i = 0; i < this._dates.length; i++) { - var tries = 0; - while (!this._isValid(this._dates[i], 'h')) { - this._dates[i].add(1, 'h'); - if (tries === 24) { - throw 'Tried 24 times to find a valid date'; - } - tries++; - } - this._setValue(this._dates[i], i); - } - } - this._update(); - }; - - DateTimePicker.prototype.viewDate = function viewDate(newDate) { - if (arguments.length === 0) { - return this._viewDate.clone(); - } - - if (!newDate) { - this._viewDate = (this._dates[0] || this.getMoment()).clone(); - return true; - } - - if (typeof newDate !== 'string' && !moment.isMoment(newDate) && !(newDate instanceof Date)) { - throw new TypeError('viewDate() parameter must be one of [string, moment or Date]'); - } - - this._viewDate = this._parseInputDate(newDate); - this._viewUpdate(); - }; - - DateTimePicker.prototype.allowMultidate = function allowMultidate(_allowMultidate) { - if (typeof _allowMultidate !== 'boolean') { - throw new TypeError('allowMultidate() expects a boolean parameter'); - } - - this._options.allowMultidate = _allowMultidate; - }; - - DateTimePicker.prototype.multidateSeparator = function multidateSeparator(_multidateSeparator) { - if (arguments.length === 0) { - return this._options.multidateSeparator; - } - - if (typeof _multidateSeparator !== 'string' || _multidateSeparator.length > 1) { - throw new TypeError('multidateSeparator expects a single character string parameter'); - } - - this._options.multidateSeparator = _multidateSeparator; - }; - - _createClass(DateTimePicker, null, [{ - key: 'NAME', - get: function get() { - return NAME; - } - - /** - * @return {string} - */ - - }, { - key: 'DATA_KEY', - get: function get() { - return DATA_KEY; - } - - /** - * @return {string} - */ - - }, { - key: 'EVENT_KEY', - get: function get() { - return EVENT_KEY; - } - - /** - * @return {string} - */ - - }, { - key: 'DATA_API_KEY', - get: function get() { - return DATA_API_KEY; - } - }, { - key: 'DatePickerModes', - get: function get() { - return DatePickerModes; - } - }, { - key: 'ViewModes', - get: function get() { - return ViewModes; - } - }, { - key: 'Event', - get: function get() { - return Event; - } - }, { - key: 'Selector', - get: function get() { - return Selector; - } - }, { - key: 'Default', - get: function get() { - return Default; - }, - set: function set(value) { - Default = value; - } - }, { - key: 'ClassName', - get: function get() { - return ClassName; - } - }]); - - return DateTimePicker; - }(); - - return DateTimePicker; -}(jQuery, moment); - -//noinspection JSUnusedGlobalSymbols -/* global DateTimePicker */ -var TempusDominusBootstrap4 = function ($) { - // eslint-disable-line no-unused-vars - // ReSharper disable once InconsistentNaming - var JQUERY_NO_CONFLICT = $.fn[DateTimePicker.NAME], - verticalModes = ['top', 'bottom', 'auto'], - horizontalModes = ['left', 'right', 'auto'], - toolbarPlacements = ['default', 'top', 'bottom'], - getSelectorFromElement = function getSelectorFromElement($element) { - var selector = $element.data('target'), - $selector = void 0; - - if (!selector) { - selector = $element.attr('href') || ''; - selector = /^#[a-z]/i.test(selector) ? selector : null; - } - $selector = $(selector); - if ($selector.length === 0) { - return $selector; - } - - if (!$selector.data(DateTimePicker.DATA_KEY)) { - $.extend({}, $selector.data(), $(this).data()); - } - - return $selector; - }; - - // ReSharper disable once InconsistentNaming - - var TempusDominusBootstrap4 = function (_DateTimePicker) { - _inherits(TempusDominusBootstrap4, _DateTimePicker); - - function TempusDominusBootstrap4(element, options) { - _classCallCheck(this, TempusDominusBootstrap4); - - var _this = _possibleConstructorReturn(this, _DateTimePicker.call(this, element, options)); - - _this._init(); - return _this; - } - - TempusDominusBootstrap4.prototype._init = function _init() { - if (this._element.hasClass('input-group')) { - var datepickerButton = this._element.find('.datepickerbutton'); - if (datepickerButton.length === 0) { - this.component = this._element.find('[data-toggle="datetimepicker"]'); - } else { - this.component = datepickerButton; - } - } - }; - - TempusDominusBootstrap4.prototype._getDatePickerTemplate = function _getDatePickerTemplate() { - var headTemplate = $('').append($('').append($('').addClass('prev').attr('data-action', 'previous').append($('').addClass(this._options.icons.previous))).append($('').addClass('picker-switch').attr('data-action', 'pickerSwitch').attr('colspan', '' + (this._options.calendarWeeks ? '6' : '5'))).append($('').addClass('next').attr('data-action', 'next').append($('').addClass(this._options.icons.next)))), - contTemplate = $('').append($('').append($('').attr('colspan', '' + (this._options.calendarWeeks ? '8' : '7')))); - - return [$('
').addClass('datepicker-days').append($('').addClass('table table-sm').append(headTemplate).append($(''))), $('
').addClass('datepicker-months').append($('
').addClass('table-condensed').append(headTemplate.clone()).append(contTemplate.clone())), $('
').addClass('datepicker-years').append($('
').addClass('table-condensed').append(headTemplate.clone()).append(contTemplate.clone())), $('
').addClass('datepicker-decades').append($('
').addClass('table-condensed').append(headTemplate.clone()).append(contTemplate.clone()))]; - }; - - TempusDominusBootstrap4.prototype._getTimePickerMainTemplate = function _getTimePickerMainTemplate() { - var topRow = $(''), - middleRow = $(''), - bottomRow = $(''); - - if (this._isEnabled('h')) { - topRow.append($('
').append($('').attr({ - href: '#', - tabindex: '-1', - 'title': this._options.tooltips.incrementHour - }).addClass('btn').attr('data-action', 'incrementHours').append($('').addClass(this._options.icons.up)))); - middleRow.append($('').append($('').addClass('timepicker-hour').attr({ - 'data-time-component': 'hours', - 'title': this._options.tooltips.pickHour - }).attr('data-action', 'showHours'))); - bottomRow.append($('').append($('').attr({ - href: '#', - tabindex: '-1', - 'title': this._options.tooltips.decrementHour - }).addClass('btn').attr('data-action', 'decrementHours').append($('').addClass(this._options.icons.down)))); - } - if (this._isEnabled('m')) { - if (this._isEnabled('h')) { - topRow.append($('').addClass('separator')); - middleRow.append($('').addClass('separator').html(':')); - bottomRow.append($('').addClass('separator')); - } - topRow.append($('').append($('').attr({ - href: '#', - tabindex: '-1', - 'title': this._options.tooltips.incrementMinute - }).addClass('btn').attr('data-action', 'incrementMinutes').append($('').addClass(this._options.icons.up)))); - middleRow.append($('').append($('').addClass('timepicker-minute').attr({ - 'data-time-component': 'minutes', - 'title': this._options.tooltips.pickMinute - }).attr('data-action', 'showMinutes'))); - bottomRow.append($('').append($('').attr({ - href: '#', - tabindex: '-1', - 'title': this._options.tooltips.decrementMinute - }).addClass('btn').attr('data-action', 'decrementMinutes').append($('').addClass(this._options.icons.down)))); - } - if (this._isEnabled('s')) { - if (this._isEnabled('m')) { - topRow.append($('').addClass('separator')); - middleRow.append($('').addClass('separator').html(':')); - bottomRow.append($('').addClass('separator')); - } - topRow.append($('').append($('').attr({ - href: '#', - tabindex: '-1', - 'title': this._options.tooltips.incrementSecond - }).addClass('btn').attr('data-action', 'incrementSeconds').append($('').addClass(this._options.icons.up)))); - middleRow.append($('').append($('').addClass('timepicker-second').attr({ - 'data-time-component': 'seconds', - 'title': this._options.tooltips.pickSecond - }).attr('data-action', 'showSeconds'))); - bottomRow.append($('').append($('').attr({ - href: '#', - tabindex: '-1', - 'title': this._options.tooltips.decrementSecond - }).addClass('btn').attr('data-action', 'decrementSeconds').append($('').addClass(this._options.icons.down)))); - } - - if (!this.use24Hours) { - topRow.append($('').addClass('separator')); - middleRow.append($('').append($('').addClass('separator')); - } - - return $('
').addClass('timepicker-picker').append($('').addClass('table-condensed').append([topRow, middleRow, bottomRow])); - }; - - TempusDominusBootstrap4.prototype._getTimePickerTemplate = function _getTimePickerTemplate() { - var hoursView = $('
').addClass('timepicker-hours').append($('
').addClass('table-condensed')), - minutesView = $('
').addClass('timepicker-minutes').append($('
').addClass('table-condensed')), - secondsView = $('
').addClass('timepicker-seconds').append($('
').addClass('table-condensed')), - ret = [this._getTimePickerMainTemplate()]; - - if (this._isEnabled('h')) { - ret.push(hoursView); - } - if (this._isEnabled('m')) { - ret.push(minutesView); - } - if (this._isEnabled('s')) { - ret.push(secondsView); - } - - return ret; - }; - - TempusDominusBootstrap4.prototype._getToolbar = function _getToolbar() { - var row = []; - if (this._options.buttons.showToday) { - row.push($('
').append($('').attr({ - href: '#', - tabindex: '-1', - 'data-action': 'today', - 'title': this._options.tooltips.today - }).append($('').addClass(this._options.icons.today)))); - } - if (!this._options.sideBySide && this._hasDate() && this._hasTime()) { - var title = void 0, - icon = void 0; - if (this._options.viewMode === 'times') { - title = this._options.tooltips.selectDate; - icon = this._options.icons.date; - } else { - title = this._options.tooltips.selectTime; - icon = this._options.icons.time; - } - row.push($('').append($('').attr({ - href: '#', - tabindex: '-1', - 'data-action': 'togglePicker', - 'title': title - }).append($('').addClass(icon)))); - } - if (this._options.buttons.showClear) { - row.push($('').append($('').attr({ - href: '#', - tabindex: '-1', - 'data-action': 'clear', - 'title': this._options.tooltips.clear - }).append($('').addClass(this._options.icons.clear)))); - } - if (this._options.buttons.showClose) { - row.push($('').append($('').attr({ - href: '#', - tabindex: '-1', - 'data-action': 'close', - 'title': this._options.tooltips.close - }).append($('').addClass(this._options.icons.close)))); - } - return row.length === 0 ? '' : $('').addClass('table-condensed').append($('').append($('').append(row))); - }; - - TempusDominusBootstrap4.prototype._getTemplate = function _getTemplate() { - var template = $('
').addClass('bootstrap-datetimepicker-widget dropdown-menu'), - dateView = $('
').addClass('datepicker').append(this._getDatePickerTemplate()), - timeView = $('
').addClass('timepicker').append(this._getTimePickerTemplate()), - content = $('
    ').addClass('list-unstyled'), - toolbar = $('
  • ').addClass('picker-switch' + (this._options.collapse ? ' accordion-toggle' : '')).append(this._getToolbar()); - - if (this._options.inline) { - template.removeClass('dropdown-menu'); - } - - if (this.use24Hours) { - template.addClass('usetwentyfour'); - } - if (this._isEnabled('s') && !this.use24Hours) { - template.addClass('wider'); - } - - if (this._options.sideBySide && this._hasDate() && this._hasTime()) { - template.addClass('timepicker-sbs'); - if (this._options.toolbarPlacement === 'top') { - template.append(toolbar); - } - template.append($('
    ').addClass('row').append(dateView.addClass('col-md-6')).append(timeView.addClass('col-md-6'))); - if (this._options.toolbarPlacement === 'bottom' || this._options.toolbarPlacement === 'default') { - template.append(toolbar); - } - return template; - } - - if (this._options.toolbarPlacement === 'top') { - content.append(toolbar); - } - if (this._hasDate()) { - content.append($('
  • ').addClass(this._options.collapse && this._hasTime() ? 'collapse' : '').addClass(this._options.collapse && this._hasTime() && this._options.viewMode === 'times' ? '' : 'show').append(dateView)); - } - if (this._options.toolbarPlacement === 'default') { - content.append(toolbar); - } - if (this._hasTime()) { - content.append($('
  • ').addClass(this._options.collapse && this._hasDate() ? 'collapse' : '').addClass(this._options.collapse && this._hasDate() && this._options.viewMode === 'times' ? 'show' : '').append(timeView)); - } - if (this._options.toolbarPlacement === 'bottom') { - content.append(toolbar); - } - return template.append(content); - }; - - TempusDominusBootstrap4.prototype._place = function _place(e) { - var self = e && e.data && e.data.picker || this, - vertical = self._options.widgetPositioning.vertical, - horizontal = self._options.widgetPositioning.horizontal, - parent = void 0; - var position = (self.component && self.component.length ? self.component : self._element).position(), - offset = (self.component && self.component.length ? self.component : self._element).offset(); - if (self._options.widgetParent) { - parent = self._options.widgetParent.append(self.widget); - } else if (self._element.is('input')) { - parent = self._element.after(self.widget).parent(); - } else if (self._options.inline) { - parent = self._element.append(self.widget); - return; - } else { - parent = self._element; - self._element.children().first().after(self.widget); - } - - // Top and bottom logic - if (vertical === 'auto') { - //noinspection JSValidateTypes - if (offset.top + self.widget.height() * 1.5 >= $(window).height() + $(window).scrollTop() && self.widget.height() + self._element.outerHeight() < offset.top) { - vertical = 'top'; - } else { - vertical = 'bottom'; - } - } - - // Left and right logic - if (horizontal === 'auto') { - if (parent.width() < offset.left + self.widget.outerWidth() / 2 && offset.left + self.widget.outerWidth() > $(window).width()) { - horizontal = 'right'; - } else { - horizontal = 'left'; - } - } - - if (vertical === 'top') { - self.widget.addClass('top').removeClass('bottom'); - } else { - self.widget.addClass('bottom').removeClass('top'); - } - - if (horizontal === 'right') { - self.widget.addClass('float-right'); - } else { - self.widget.removeClass('float-right'); - } - - // find the first parent element that has a relative css positioning - if (parent.css('position') !== 'relative') { - parent = parent.parents().filter(function () { - return $(this).css('position') === 'relative'; - }).first(); - } - - if (parent.length === 0) { - throw new Error('datetimepicker component should be placed within a relative positioned container'); - } - - self.widget.css({ - top: vertical === 'top' ? 'auto' : position.top + self._element.outerHeight() + 'px', - bottom: vertical === 'top' ? parent.outerHeight() - (parent === self._element ? 0 : position.top) + 'px' : 'auto', - left: horizontal === 'left' ? (parent === self._element ? 0 : position.left) + 'px' : 'auto', - right: horizontal === 'left' ? 'auto' : parent.outerWidth() - self._element.outerWidth() - (parent === self._element ? 0 : position.left) + 'px' - }); - }; - - TempusDominusBootstrap4.prototype._fillDow = function _fillDow() { - var row = $('
'), - currentDate = this._viewDate.clone().startOf('w').startOf('d'); - - if (this._options.calendarWeeks === true) { - row.append($(''); - if (this._options.calendarWeeks) { - row.append(''); - } - html.push(row); - } - clsName = ''; - if (currentDate.isBefore(this._viewDate, 'M')) { - clsName += ' old'; - } - if (currentDate.isAfter(this._viewDate, 'M')) { - clsName += ' new'; - } - if (this._options.allowMultidate) { - var index = this._datesFormatted.indexOf(currentDate.format('YYYY-MM-DD')); - if (index !== -1) { - if (currentDate.isSame(this._datesFormatted[index], 'd') && !this.unset) { - clsName += ' active'; - } - } - } else { - if (currentDate.isSame(this._getLastPickedDate(), 'd') && !this.unset) { - clsName += ' active'; - } - } - if (!this._isValid(currentDate, 'd')) { - clsName += ' disabled'; - } - if (currentDate.isSame(this.getMoment(), 'd')) { - clsName += ' today'; - } - if (currentDate.day() === 0 || currentDate.day() === 6) { - clsName += ' weekend'; - } - row.append(''); - currentDate.add(1, 'd'); - } - - daysView.find('tbody').empty().append(html); - - this._updateMonths(); - - this._updateYears(); - - this._updateDecades(); - }; - - TempusDominusBootstrap4.prototype._fillHours = function _fillHours() { - var table = this.widget.find('.timepicker-hours table'), - currentHour = this._viewDate.clone().startOf('d'), - html = []; - var row = $(''); - - if (this._viewDate.hour() > 11 && !this.use24Hours) { - currentHour.hour(12); - } - while (currentHour.isSame(this._viewDate, 'd') && (this.use24Hours || this._viewDate.hour() < 12 && currentHour.hour() < 12 || this._viewDate.hour() > 11)) { - if (currentHour.hour() % 4 === 0) { - row = $(''); - html.push(row); - } - row.append(''); - currentHour.add(1, 'h'); - } - table.empty().append(html); - }; - - TempusDominusBootstrap4.prototype._fillMinutes = function _fillMinutes() { - var table = this.widget.find('.timepicker-minutes table'), - currentMinute = this._viewDate.clone().startOf('h'), - html = [], - step = this._options.stepping === 1 ? 5 : this._options.stepping; - var row = $(''); - - while (this._viewDate.isSame(currentMinute, 'h')) { - if (currentMinute.minute() % (step * 4) === 0) { - row = $(''); - html.push(row); - } - row.append(''); - currentMinute.add(step, 'm'); - } - table.empty().append(html); - }; - - TempusDominusBootstrap4.prototype._fillSeconds = function _fillSeconds() { - var table = this.widget.find('.timepicker-seconds table'), - currentSecond = this._viewDate.clone().startOf('m'), - html = []; - var row = $(''); - - while (this._viewDate.isSame(currentSecond, 'm')) { - if (currentSecond.second() % 20 === 0) { - row = $(''); - html.push(row); - } - row.append(''); - currentSecond.add(5, 's'); - } - - table.empty().append(html); - }; - - TempusDominusBootstrap4.prototype._fillTime = function _fillTime() { - var toggle = void 0, - newDate = void 0; - var timeComponents = this.widget.find('.timepicker span[data-time-component]'); - - if (!this.use24Hours) { - toggle = this.widget.find('.timepicker [data-action=togglePeriod]'); - newDate = this._getLastPickedDate().clone().add(this._getLastPickedDate().hours() >= 12 ? -12 : 12, 'h'); - - toggle.text(this._getLastPickedDate().format('A')); - - if (this._isValid(newDate, 'h')) { - toggle.removeClass('disabled'); - } else { - toggle.addClass('disabled'); - } - } - timeComponents.filter('[data-time-component=hours]').text(this._getLastPickedDate().format('' + (this.use24Hours ? 'HH' : 'hh'))); - timeComponents.filter('[data-time-component=minutes]').text(this._getLastPickedDate().format('mm')); - timeComponents.filter('[data-time-component=seconds]').text(this._getLastPickedDate().format('ss')); - - this._fillHours(); - this._fillMinutes(); - this._fillSeconds(); - }; - - TempusDominusBootstrap4.prototype._doAction = function _doAction(e, action) { - var lastPicked = this._getLastPickedDate(); - if ($(e.currentTarget).is('.disabled')) { - return false; - } - action = action || $(e.currentTarget).data('action'); - switch (action) { - case 'next': - { - var navFnc = DateTimePicker.DatePickerModes[this.currentViewMode].NAV_FUNCTION; - this._viewDate.add(DateTimePicker.DatePickerModes[this.currentViewMode].NAV_STEP, navFnc); - this._fillDate(); - this._viewUpdate(navFnc); - break; - } - case 'previous': - { - var _navFnc = DateTimePicker.DatePickerModes[this.currentViewMode].NAV_FUNCTION; - this._viewDate.subtract(DateTimePicker.DatePickerModes[this.currentViewMode].NAV_STEP, _navFnc); - this._fillDate(); - this._viewUpdate(_navFnc); - break; - } - case 'pickerSwitch': - this._showMode(1); - break; - case 'selectMonth': - { - var month = $(e.target).closest('tbody').find('span').index($(e.target)); - this._viewDate.month(month); - if (this.currentViewMode === this.MinViewModeNumber) { - this._setValue(lastPicked.clone().year(this._viewDate.year()).month(this._viewDate.month()), this._getLastPickedDateIndex()); - if (!this._options.inline) { - this.hide(); - } - } else { - this._showMode(-1); - this._fillDate(); - } - this._viewUpdate('M'); - break; - } - case 'selectYear': - { - var year = parseInt($(e.target).text(), 10) || 0; - this._viewDate.year(year); - if (this.currentViewMode === this.MinViewModeNumber) { - this._setValue(lastPicked.clone().year(this._viewDate.year()), this._getLastPickedDateIndex()); - if (!this._options.inline) { - this.hide(); - } - } else { - this._showMode(-1); - this._fillDate(); - } - this._viewUpdate('YYYY'); - break; - } - case 'selectDecade': - { - var _year = parseInt($(e.target).data('selection'), 10) || 0; - this._viewDate.year(_year); - if (this.currentViewMode === this.MinViewModeNumber) { - this._setValue(lastPicked.clone().year(this._viewDate.year()), this._getLastPickedDateIndex()); - if (!this._options.inline) { - this.hide(); - } - } else { - this._showMode(-1); - this._fillDate(); - } - this._viewUpdate('YYYY'); - break; - } - case 'selectDay': - { - var day = this._viewDate.clone(); - if ($(e.target).is('.old')) { - day.subtract(1, 'M'); - } - if ($(e.target).is('.new')) { - day.add(1, 'M'); - } - - var selectDate = day.date(parseInt($(e.target).text(), 10)), - index = 0; - if (this._options.allowMultidate) { - index = this._datesFormatted.indexOf(selectDate.format('YYYY-MM-DD')); - if (index !== -1) { - this._setValue(null, index); //deselect multidate - } else { - this._setValue(selectDate, this._getLastPickedDateIndex() + 1); - } - } else { - this._setValue(selectDate, this._getLastPickedDateIndex()); - } - - if (!this._hasTime() && !this._options.keepOpen && !this._options.inline && !this._options.allowMultidate) { - this.hide(); - } - break; - } - case 'incrementHours': - { - var newDate = lastPicked.clone().add(1, 'h'); - if (this._isValid(newDate, 'h')) { - this._setValue(newDate, this._getLastPickedDateIndex()); - } - break; - } - case 'incrementMinutes': - { - var _newDate = lastPicked.clone().add(this._options.stepping, 'm'); - if (this._isValid(_newDate, 'm')) { - this._setValue(_newDate, this._getLastPickedDateIndex()); - } - break; - } - case 'incrementSeconds': - { - var _newDate2 = lastPicked.clone().add(1, 's'); - if (this._isValid(_newDate2, 's')) { - this._setValue(_newDate2, this._getLastPickedDateIndex()); - } - break; - } - case 'decrementHours': - { - var _newDate3 = lastPicked.clone().subtract(1, 'h'); - if (this._isValid(_newDate3, 'h')) { - this._setValue(_newDate3, this._getLastPickedDateIndex()); - } - break; - } - case 'decrementMinutes': - { - var _newDate4 = lastPicked.clone().subtract(this._options.stepping, 'm'); - if (this._isValid(_newDate4, 'm')) { - this._setValue(_newDate4, this._getLastPickedDateIndex()); - } - break; - } - case 'decrementSeconds': - { - var _newDate5 = lastPicked.clone().subtract(1, 's'); - if (this._isValid(_newDate5, 's')) { - this._setValue(_newDate5, this._getLastPickedDateIndex()); - } - break; - } - case 'togglePeriod': - { - this._setValue(lastPicked.clone().add(lastPicked.hours() >= 12 ? -12 : 12, 'h'), this._getLastPickedDateIndex()); - break; - } - case 'togglePicker': - { - var $this = $(e.target), - $link = $this.closest('a'), - $parent = $this.closest('ul'), - expanded = $parent.find('.show'), - closed = $parent.find('.collapse:not(.show)'), - $span = $this.is('span') ? $this : $this.find('span'); - var collapseData = void 0; - - if (expanded && expanded.length) { - collapseData = expanded.data('collapse'); - if (collapseData && collapseData.transitioning) { - return true; - } - if (expanded.collapse) { - // if collapse plugin is available through bootstrap.js then use it - expanded.collapse('hide'); - closed.collapse('show'); - } else { - // otherwise just toggle in class on the two views - expanded.removeClass('show'); - closed.addClass('show'); - } - $span.toggleClass(this._options.icons.time + ' ' + this._options.icons.date); - - if ($span.hasClass(this._options.icons.date)) { - $link.attr('title', this._options.tooltips.selectDate); - } else { - $link.attr('title', this._options.tooltips.selectTime); - } - } - } - break; - case 'showPicker': - this.widget.find('.timepicker > div:not(.timepicker-picker)').hide(); - this.widget.find('.timepicker .timepicker-picker').show(); - break; - case 'showHours': - this.widget.find('.timepicker .timepicker-picker').hide(); - this.widget.find('.timepicker .timepicker-hours').show(); - break; - case 'showMinutes': - this.widget.find('.timepicker .timepicker-picker').hide(); - this.widget.find('.timepicker .timepicker-minutes').show(); - break; - case 'showSeconds': - this.widget.find('.timepicker .timepicker-picker').hide(); - this.widget.find('.timepicker .timepicker-seconds').show(); - break; - case 'selectHour': - { - var hour = parseInt($(e.target).text(), 10); - - if (!this.use24Hours) { - if (lastPicked.hours() >= 12) { - if (hour !== 12) { - hour += 12; - } - } else { - if (hour === 12) { - hour = 0; - } - } - } - this._setValue(lastPicked.clone().hours(hour), this._getLastPickedDateIndex()); - if (!this._isEnabled('a') && !this._isEnabled('m') && !this._options.keepOpen && !this._options.inline) { - this.hide(); - } else { - this._doAction(e, 'showPicker'); - } - break; - } - case 'selectMinute': - this._setValue(lastPicked.clone().minutes(parseInt($(e.target).text(), 10)), this._getLastPickedDateIndex()); - if (!this._isEnabled('a') && !this._isEnabled('s') && !this._options.keepOpen && !this._options.inline) { - this.hide(); - } else { - this._doAction(e, 'showPicker'); - } - break; - case 'selectSecond': - this._setValue(lastPicked.clone().seconds(parseInt($(e.target).text(), 10)), this._getLastPickedDateIndex()); - if (!this._isEnabled('a') && !this._options.keepOpen && !this._options.inline) { - this.hide(); - } else { - this._doAction(e, 'showPicker'); - } - break; - case 'clear': - this.clear(); - break; - case 'close': - this.hide(); - break; - case 'today': - { - var todaysDate = this.getMoment(); - if (this._isValid(todaysDate, 'd')) { - this._setValue(todaysDate, this._getLastPickedDateIndex()); - } - break; - } - } - return false; - }; - - //public - - - TempusDominusBootstrap4.prototype.hide = function hide() { - var transitioning = false; - if (!this.widget) { - return; - } - // Ignore event if in the middle of a picker transition - this.widget.find('.collapse').each(function () { - var collapseData = $(this).data('collapse'); - if (collapseData && collapseData.transitioning) { - transitioning = true; - return false; - } - return true; - }); - if (transitioning) { - return; - } - if (this.component && this.component.hasClass('btn')) { - this.component.toggleClass('active'); - } - this.widget.hide(); - - $(window).off('resize', this._place()); - this.widget.off('click', '[data-action]'); - this.widget.off('mousedown', false); - - this.widget.remove(); - this.widget = false; - - this._notifyEvent({ - type: DateTimePicker.Event.HIDE, - date: this._getLastPickedDate().clone() - }); - - if (this.input !== undefined) { - this.input.blur(); - } - - this._viewDate = this._getLastPickedDate().clone(); - }; - - TempusDominusBootstrap4.prototype.show = function show() { - var currentMoment = void 0; - var useCurrentGranularity = { - 'year': function year(m) { - return m.month(0).date(1).hours(0).seconds(0).minutes(0); - }, - 'month': function month(m) { - return m.date(1).hours(0).seconds(0).minutes(0); - }, - 'day': function day(m) { - return m.hours(0).seconds(0).minutes(0); - }, - 'hour': function hour(m) { - return m.seconds(0).minutes(0); - }, - 'minute': function minute(m) { - return m.seconds(0); - } - }; - - if (this.input !== undefined) { - if (this.input.prop('disabled') || !this._options.ignoreReadonly && this.input.prop('readonly') || this.widget) { - return; - } - if (this.input.val() !== undefined && this.input.val().trim().length !== 0) { - this._setValue(this._parseInputDate(this.input.val().trim()), 0); - } else if (this.unset && this._options.useCurrent) { - currentMoment = this.getMoment(); - if (typeof this._options.useCurrent === 'string') { - currentMoment = useCurrentGranularity[this._options.useCurrent](currentMoment); - } - this._setValue(currentMoment, 0); - } - } else if (this.unset && this._options.useCurrent) { - currentMoment = this.getMoment(); - if (typeof this._options.useCurrent === 'string') { - currentMoment = useCurrentGranularity[this._options.useCurrent](currentMoment); - } - this._setValue(currentMoment, 0); - } - - this.widget = this._getTemplate(); - - this._fillDow(); - this._fillMonths(); - - this.widget.find('.timepicker-hours').hide(); - this.widget.find('.timepicker-minutes').hide(); - this.widget.find('.timepicker-seconds').hide(); - - this._update(); - this._showMode(); - - $(window).on('resize', { picker: this }, this._place); - this.widget.on('click', '[data-action]', $.proxy(this._doAction, this)); // this handles clicks on the widget - this.widget.on('mousedown', false); - - if (this.component && this.component.hasClass('btn')) { - this.component.toggleClass('active'); - } - this._place(); - this.widget.show(); - if (this.input !== undefined && this._options.focusOnShow && !this.input.is(':focus')) { - this.input.focus(); - } - - this._notifyEvent({ - type: DateTimePicker.Event.SHOW - }); - }; - - TempusDominusBootstrap4.prototype.destroy = function destroy() { - this.hide(); - //todo doc off? - this._element.removeData(DateTimePicker.DATA_KEY); - this._element.removeData('date'); - }; - - TempusDominusBootstrap4.prototype.disable = function disable() { - this.hide(); - if (this.component && this.component.hasClass('btn')) { - this.component.addClass('disabled'); - } - if (this.input !== undefined) { - this.input.prop('disabled', true); //todo disable this/comp if input is null - } - }; - - TempusDominusBootstrap4.prototype.enable = function enable() { - if (this.component && this.component.hasClass('btn')) { - this.component.removeClass('disabled'); - } - if (this.input !== undefined) { - this.input.prop('disabled', false); //todo enable comp/this if input is null - } - }; - - TempusDominusBootstrap4.prototype.toolbarPlacement = function toolbarPlacement(_toolbarPlacement) { - if (arguments.length === 0) { - return this._options.toolbarPlacement; - } - - if (typeof _toolbarPlacement !== 'string') { - throw new TypeError('toolbarPlacement() expects a string parameter'); - } - if (toolbarPlacements.indexOf(_toolbarPlacement) === -1) { - throw new TypeError('toolbarPlacement() parameter must be one of (' + toolbarPlacements.join(', ') + ') value'); - } - this._options.toolbarPlacement = _toolbarPlacement; - - if (this.widget) { - this.hide(); - this.show(); - } - }; - - TempusDominusBootstrap4.prototype.widgetPositioning = function widgetPositioning(_widgetPositioning) { - if (arguments.length === 0) { - return $.extend({}, this._options.widgetPositioning); - } - - if ({}.toString.call(_widgetPositioning) !== '[object Object]') { - throw new TypeError('widgetPositioning() expects an object variable'); - } - if (_widgetPositioning.horizontal) { - if (typeof _widgetPositioning.horizontal !== 'string') { - throw new TypeError('widgetPositioning() horizontal variable must be a string'); - } - _widgetPositioning.horizontal = _widgetPositioning.horizontal.toLowerCase(); - if (horizontalModes.indexOf(_widgetPositioning.horizontal) === -1) { - throw new TypeError('widgetPositioning() expects horizontal parameter to be one of (' + horizontalModes.join(', ') + ')'); - } - this._options.widgetPositioning.horizontal = _widgetPositioning.horizontal; - } - if (_widgetPositioning.vertical) { - if (typeof _widgetPositioning.vertical !== 'string') { - throw new TypeError('widgetPositioning() vertical variable must be a string'); - } - _widgetPositioning.vertical = _widgetPositioning.vertical.toLowerCase(); - if (verticalModes.indexOf(_widgetPositioning.vertical) === -1) { - throw new TypeError('widgetPositioning() expects vertical parameter to be one of (' + verticalModes.join(', ') + ')'); - } - this._options.widgetPositioning.vertical = _widgetPositioning.vertical; - } - this._update(); - }; - - TempusDominusBootstrap4.prototype.widgetParent = function widgetParent(_widgetParent) { - if (arguments.length === 0) { - return this._options.widgetParent; - } - - if (typeof _widgetParent === 'string') { - _widgetParent = $(_widgetParent); - } - - if (_widgetParent !== null && typeof _widgetParent !== 'string' && !(_widgetParent instanceof $)) { - throw new TypeError('widgetParent() expects a string or a jQuery object parameter'); - } - - this._options.widgetParent = _widgetParent; - if (this.widget) { - this.hide(); - this.show(); - } - }; - - //static - - - TempusDominusBootstrap4._jQueryHandleThis = function _jQueryHandleThis(me, option, argument) { - var data = $(me).data(DateTimePicker.DATA_KEY); - if ((typeof option === 'undefined' ? 'undefined' : _typeof(option)) === 'object') { - $.extend({}, DateTimePicker.Default, option); - } - - if (!data) { - data = new TempusDominusBootstrap4($(me), option); - $(me).data(DateTimePicker.DATA_KEY, data); - } - - if (typeof option === 'string') { - if (data[option] === undefined) { - throw new Error('No method named "' + option + '"'); - } - if (argument === undefined) { - return data[option](); - } else { - return data[option](argument); - } - } - }; - - TempusDominusBootstrap4._jQueryInterface = function _jQueryInterface(option, argument) { - if (this.length === 1) { - return TempusDominusBootstrap4._jQueryHandleThis(this[0], option, argument); - } - return this.each(function () { - TempusDominusBootstrap4._jQueryHandleThis(this, option, argument); - }); - }; - - return TempusDominusBootstrap4; - }(DateTimePicker); - - /** - * ------------------------------------------------------------------------ - * jQuery - * ------------------------------------------------------------------------ - */ - - - $(document).on(DateTimePicker.Event.CLICK_DATA_API, DateTimePicker.Selector.DATA_TOGGLE, function () { - var $target = getSelectorFromElement($(this)); - if ($target.length === 0) { - return; - } - TempusDominusBootstrap4._jQueryInterface.call($target, 'toggle'); - }).on(DateTimePicker.Event.CHANGE, '.' + DateTimePicker.ClassName.INPUT, function (event) { - var $target = getSelectorFromElement($(this)); - if ($target.length === 0) { - return; - } - TempusDominusBootstrap4._jQueryInterface.call($target, '_change', event); - }).on(DateTimePicker.Event.BLUR, '.' + DateTimePicker.ClassName.INPUT, function (event) { - var $target = getSelectorFromElement($(this)), - config = $target.data(DateTimePicker.DATA_KEY); - if ($target.length === 0) { - return; - } - if (config._options.debug || window.debug) { - return; - } - TempusDominusBootstrap4._jQueryInterface.call($target, 'hide', event); - }).on(DateTimePicker.Event.KEYDOWN, '.' + DateTimePicker.ClassName.INPUT, function (event) { - var $target = getSelectorFromElement($(this)); - if ($target.length === 0) { - return; - } - TempusDominusBootstrap4._jQueryInterface.call($target, '_keydown', event); - }).on(DateTimePicker.Event.KEYUP, '.' + DateTimePicker.ClassName.INPUT, function (event) { - var $target = getSelectorFromElement($(this)); - if ($target.length === 0) { - return; - } - TempusDominusBootstrap4._jQueryInterface.call($target, '_keyup', event); - }).on(DateTimePicker.Event.FOCUS, '.' + DateTimePicker.ClassName.INPUT, function (event) { - var $target = getSelectorFromElement($(this)), - config = $target.data(DateTimePicker.DATA_KEY); - if ($target.length === 0) { - return; - } - if (!config._options.allowInputToggle) { - return; - } - TempusDominusBootstrap4._jQueryInterface.call($target, 'show', event); - }); - - $.fn[DateTimePicker.NAME] = TempusDominusBootstrap4._jQueryInterface; - $.fn[DateTimePicker.NAME].Constructor = TempusDominusBootstrap4; - $.fn[DateTimePicker.NAME].noConflict = function () { - $.fn[DateTimePicker.NAME] = JQUERY_NO_CONFLICT; - return TempusDominusBootstrap4._jQueryInterface; - }; - - return TempusDominusBootstrap4; -}(jQuery); - -}(); - -// script_datepicker_config.js.coffee -(function() { - decko.addEditor('.date-editor', function() { - return decko.initDatepicker($(this)); - }, function() { - return this.val(); - }); - - $.extend(decko, { - setDatepickerConfig: function(string) { - var setter; - setter = function() { - try { - return $.parseJSON(string); - } catch (error) { - return {}; - } - }; - return decko.datepickerConfig = setter(); - }, - configDatepicker: function() { - var conf, hard_conf, user_conf; - conf = { - format: "YY-MM-DD" - }; - hard_conf = {}; - user_conf = decko.datepickerConfig != null ? decko.datepickerConfig : {}; - $.extend(conf, user_conf, hard_conf); - return conf; - }, - initDatepicker: function(input) { - return input.datetimepicker(decko.configDatepicker()); - } - }); - -}).call(this); diff --git a/mod/edit/data/files/mod_edit_script_asset_output/file.js b/mod/edit/data/files/mod_edit/script/asset_output/file.js similarity index 100% rename from mod/edit/data/files/mod_edit_script_asset_output/file.js rename to mod/edit/data/files/mod_edit/script/asset_output/file.js diff --git a/mod/email/spec/set/type/email_template/email_config_spec.rb b/mod/email/spec/set/type/email_template/email_config_spec.rb index a4b5748c7d..b471cb80bb 100644 --- a/mod/email/spec/set/type/email_template/email_config_spec.rb +++ b/mod/email/spec/set/type/email_template/email_config_spec.rb @@ -197,8 +197,8 @@ def create_field name, args={} it "handles inline image nests in html message in core view" do Cardio.with_config deck_origin: "http://testhost" do - yeti_img = "http://testhost/files/:yeti_skin_image/bootstrap-medium.png" - update_field "*html message", content: "Triggered by {{:yeti_skin_image|core}}" + yeti_img = "http://testhost/files/:yeti_skin+:image/bootstrap-medium.png" + update_field "*html message", content: "Triggered by {{:yeti_skin+:image|core}}" mail = email.format.mail context_card expect(mail.parts.size).to eq 2 expect(mail.parts[0].mime_type).to eq "text/plain" @@ -209,7 +209,7 @@ def create_field name, args={} it "handles inline image nests in html message" do update_field "*html message", - content: "Triggered by {{:yeti_skin_image|inline}}" + content: "Triggered by {{:yeti_skin+:image|inline}}" mail = email.format.mail context_card expect(mail.parts[0].mime_type).to eq "image/png" url = mail.parts[0].url @@ -220,14 +220,14 @@ def create_field name, args={} it "handles image nests in html message in default view" do update_field "*html message", - content: "Triggered by {{:yeti_skin_image|core}}" + content: "Triggered by {{:yeti_skin+:image|core}}" mail = email.format.mail context_card expect(mail.parts.size).to eq 2 expect(mail.parts[0].mime_type).to eq "text/plain" expect(mail.parts[1].mime_type).to eq "text/html" expect(mail.parts[1].body.raw_source) .to have_tag(:img, - with: { src: "/files/:yeti_skin_image/bootstrap-medium.png" }) + with: { src: "/files/:yeti_skin+:image/bootstrap-medium.png" }) end it "handles contextual name for attachments" do diff --git a/mod/follow/data/files/mod_follow_script_asset_output/file.js b/mod/follow/data/files/mod_follow/script/asset_output/file.js similarity index 100% rename from mod/follow/data/files/mod_follow_script_asset_output/file.js rename to mod/follow/data/files/mod_follow/script/asset_output/file.js diff --git a/mod/format/data/files/mod_format_script_asset_output/file.js b/mod/format/data/files/mod_format/script/asset_output/file.js similarity index 100% rename from mod/format/data/files/mod_format_script_asset_output/file.js rename to mod/format/data/files/mod_format/script/asset_output/file.js diff --git a/mod/layout/data/files/mod_layout_script_asset_output/file.js b/mod/layout/data/files/mod_layout/script/asset_output/file.js similarity index 100% rename from mod/layout/data/files/mod_layout_script_asset_output/file.js rename to mod/layout/data/files/mod_layout/script/asset_output/file.js diff --git a/mod/list/data/files/mod_list_script_asset_output/file.js b/mod/list/data/files/mod_list/script/asset_output/file.js similarity index 100% rename from mod/list/data/files/mod_list_script_asset_output/file.js rename to mod/list/data/files/mod_list/script/asset_output/file.js diff --git a/mod/list/set/self/input_options.rb b/mod/list/set/self/input_type/right/content_options.rb similarity index 100% rename from mod/list/set/self/input_options.rb rename to mod/list/set/self/input_type/right/content_options.rb diff --git a/mod/recaptcha/data/files/mod_recaptcha_script_asset_output/file.js b/mod/recaptcha/data/files/mod_recaptcha/script/asset_output/file.js similarity index 100% rename from mod/recaptcha/data/files/mod_recaptcha_script_asset_output/file.js rename to mod/recaptcha/data/files/mod_recaptcha/script/asset_output/file.js diff --git a/mod/rules/data/files/mod_rules_script_asset_output/file.js b/mod/rules/data/files/mod_rules/script/asset_output/file.js similarity index 100% rename from mod/rules/data/files/mod_rules_script_asset_output/file.js rename to mod/rules/data/files/mod_rules/script/asset_output/file.js diff --git a/mod/rules/data/files/mod_rules_script_local_machine_output/file.js b/mod/rules/data/files/mod_rules/script/local_machine_output/file.js similarity index 100% rename from mod/rules/data/files/mod_rules_script_local_machine_output/file.js rename to mod/rules/data/files/mod_rules/script/local_machine_output/file.js diff --git a/mod/search/data/files/mod_search_script_asset_output/file.js b/mod/search/data/files/mod_search/script/asset_output/file.js similarity index 100% rename from mod/search/data/files/mod_search_script_asset_output/file.js rename to mod/search/data/files/mod_search/script/asset_output/file.js diff --git a/mod/tabs/data/files/mod_tabs_script_asset_output/file.js b/mod/tabs/data/files/mod_tabs/script/asset_output/file.js similarity index 100% rename from mod/tabs/data/files/mod_tabs_script_asset_output/file.js rename to mod/tabs/data/files/mod_tabs/script/asset_output/file.js diff --git a/mod/tinymce_editor/data/files/mod_tinymce_editor_script_asset_output/file.js b/mod/tinymce_editor/data/files/mod_tinymce_editor/script/asset_output/file.js similarity index 100% rename from mod/tinymce_editor/data/files/mod_tinymce_editor_script_asset_output/file.js rename to mod/tinymce_editor/data/files/mod_tinymce_editor/script/asset_output/file.js diff --git a/mod/tinymce_editor/data/files/mod_tinymce_editor_script_local_machine_output/file.js b/mod/tinymce_editor/data/files/mod_tinymce_editor/script/local_machine_output/file.js similarity index 100% rename from mod/tinymce_editor/data/files/mod_tinymce_editor_script_local_machine_output/file.js rename to mod/tinymce_editor/data/files/mod_tinymce_editor/script/local_machine_output/file.js From d4b971609340ab9b1880154fc29c2f0d2e5c3631 Mon Sep 17 00:00:00 2001 From: Ethan McCutchen Date: Tue, 4 Feb 2025 14:40:30 -0500 Subject: [PATCH 09/21] compound self set migration --- .../20250204175412_fix_compound_self_sets.rb | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 mod/carrierwave/data/transform/20250204175412_fix_compound_self_sets.rb diff --git a/mod/carrierwave/data/transform/20250204175412_fix_compound_self_sets.rb b/mod/carrierwave/data/transform/20250204175412_fix_compound_self_sets.rb new file mode 100644 index 0000000000..92dff7320b --- /dev/null +++ b/mod/carrierwave/data/transform/20250204175412_fix_compound_self_sets.rb @@ -0,0 +1,13 @@ +# -*- encoding : utf-8 -*- + +class FixCompoundSelfSets < Cardio::Migration::Transform + def up + Card.where("codename is not null and name is null").each do |card| + card.include_set_modules + card.update_column :codename, nil + next unless card.respond_to? :attachment + + card.update_column :db_content, card.attachment.db_content + end + end +end From 4aceadb184f64536e50b6a117177d1b8bc3a1ddb Mon Sep 17 00:00:00 2001 From: Ethan McCutchen Date: Tue, 4 Feb 2025 15:01:02 -0500 Subject: [PATCH 10/21] new codename handling now working well enough to reseed. --- mod/assets/set/abstract/asset_outputter.rb | 9 +-------- mod/carrierwave/set/abstract/attachment/coded.rb | 4 ++-- 2 files changed, 3 insertions(+), 10 deletions(-) diff --git a/mod/assets/set/abstract/asset_outputter.rb b/mod/assets/set/abstract/asset_outputter.rb index 14b8fa66e1..b9c0b56dc6 100644 --- a/mod/assets/set/abstract/asset_outputter.rb +++ b/mod/assets/set/abstract/asset_outputter.rb @@ -66,18 +66,11 @@ def make_asset_output_coded mod mod ||= :assets Card::Auth.as_bot do ENV["STORE_CODED_FILES"] = "true" - asset_output_card.update! storage_type: :coded, mod: mod, - codename: asset_output_codename + asset_output_card.update! storage_type: :coded, mod: mod ENV["STORE_CODED_FILES"] = nil end end -def asset_output_codename - asset_output_card.name.parts.map do |part| - Card[part].codename&.to_s || part.cardname.safe_key - end.join "_" -end - def input_item_cards item_cards(known_only: true).compact.reject(&:trash) end diff --git a/mod/carrierwave/set/abstract/attachment/coded.rb b/mod/carrierwave/set/abstract/attachment/coded.rb index 46bef476a3..980b74e226 100644 --- a/mod/carrierwave/set/abstract/attachment/coded.rb +++ b/mod/carrierwave/set/abstract/attachment/coded.rb @@ -6,7 +6,7 @@ event :validate_coded_storage_type, :validate, on: :save, when: :coded? do storage_type_error :mod_argument_needed_to_save unless mod - storage_type_error :codename_needed_for_storage if coded_ok? + storage_type_error :codename_needed_for_storage unless coded_ok? end def mod= value @@ -53,7 +53,7 @@ def coded_dir new_mod=nil end def codename_parts - @codename_parts ||= name.parts.map { |p| p.card&.codename&.to_s } + @codename_parts ||= name.parts.map { |p| p.codename&.to_s } end def mod_dir new_mod=nil From bf7612011e857c969f0e9f89756db2b6b1d06496 Mon Sep 17 00:00:00 2001 From: Ethan McCutchen Date: Tue, 4 Feb 2025 15:47:16 -0500 Subject: [PATCH 11/21] codename parts fix --- card/mod/core/set/all/codename.rb | 2 +- mod/carrierwave/set/abstract/attachment/coded.rb | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/card/mod/core/set/all/codename.rb b/card/mod/core/set/all/codename.rb index 441683536d..99512f2116 100644 --- a/card/mod/core/set/all/codename.rb +++ b/card/mod/core/set/all/codename.rb @@ -36,4 +36,4 @@ def validate_codename_simplicity return if name.simple? errors.add :codename, t(:core_codename_must_be_simple) -end \ No newline at end of file +end diff --git a/mod/carrierwave/set/abstract/attachment/coded.rb b/mod/carrierwave/set/abstract/attachment/coded.rb index 980b74e226..0164323aff 100644 --- a/mod/carrierwave/set/abstract/attachment/coded.rb +++ b/mod/carrierwave/set/abstract/attachment/coded.rb @@ -53,6 +53,8 @@ def coded_dir new_mod=nil end def codename_parts + return [codename.to_s] if name.simple? + @codename_parts ||= name.parts.map { |p| p.codename&.to_s } end From 1244aabd67227609ec974d82ef4a13b2933ad5b7 Mon Sep 17 00:00:00 2001 From: Ethan McCutchen Date: Tue, 4 Feb 2025 16:11:51 -0500 Subject: [PATCH 12/21] updated fixtures --- .../files/all/style/asset_output/file.css | 24 + .../data/fixtures/real/card_actions.yml | 3892 +++++----- mod/defaults/data/fixtures/real/card_acts.yml | 4 +- .../data/fixtures/real/card_references.yml | 3528 +++++---- mod/defaults/data/fixtures/real/cards.yml | 6444 +++++++++-------- .../data/fixtures/real/schema_migrations.yml | 2 + .../fixtures/real/transform_migrations.yml | 2 + .../data/fixtures/test/card_actions.yml | 56 + mod/defaults/data/fixtures/test/card_acts.yml | 72 + .../data/fixtures/test/card_changes.yml | 114 + .../data/fixtures/test/card_references.yml | 1814 ++--- mod/defaults/data/fixtures/test/cards.yml | 237 +- .../fixtures/test/transform_migrations.yml | 2 + 13 files changed, 8194 insertions(+), 7997 deletions(-) create mode 100644 mod/defaults/data/files/all/style/asset_output/file.css diff --git a/mod/defaults/data/files/all/style/asset_output/file.css b/mod/defaults/data/files/all/style/asset_output/file.css new file mode 100644 index 0000000000..fc19b57514 --- /dev/null +++ b/mod/defaults/data/files/all/style/asset_output/file.css @@ -0,0 +1,24 @@ +@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");:root{--bs-blue: #008cba;--bs-indigo: #6610f2;--bs-purple: #6f42c1;--bs-pink: #e83e8c;--bs-red: #f04124;--bs-orange: #fd7e14;--bs-yellow: #e99002;--bs-green: #43ac6a;--bs-teal: #20c997;--bs-cyan: #5bc0de;--bs-white: #fff;--bs-gray: #888;--bs-gray-dark: #333;--bs-gray-100: #f8f9fa;--bs-gray-200: #eee;--bs-gray-300: #dee2e6;--bs-gray-400: #ccc;--bs-gray-500: #adb5bd;--bs-gray-600: #888;--bs-gray-700: #495057;--bs-gray-800: #333;--bs-gray-900: #222;--bs-primary: #008cba;--bs-secondary: #eee;--bs-success: #43ac6a;--bs-info: #5bc0de;--bs-warning: #e99002;--bs-danger: #f04124;--bs-light: #eee;--bs-dark: #222;--bs-primary-rgb: 0,140,186;--bs-secondary-rgb: 238,238,238;--bs-success-rgb: 67,172,106;--bs-info-rgb: 91,192,222;--bs-warning-rgb: 233,144,2;--bs-danger-rgb: 240,65,36;--bs-light-rgb: 238,238,238;--bs-dark-rgb: 34,34,34;--bs-white-rgb: 255,255,255;--bs-black-rgb: 0,0,0;--bs-body-color-rgb: 34,34,34;--bs-body-bg-rgb: 255,255,255;--bs-font-sans-serif: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--bs-gradient: linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0));--bs-body-font-family: var(--bs-font-sans-serif);--bs-body-font-size: 1rem;--bs-body-font-weight: 400;--bs-body-line-height: 1.5;--bs-body-color: #222;--bs-body-bg: #fff}*,*::before,*::after{box-sizing:border-box}@media (prefers-reduced-motion: no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}h6,.h6,h5,.h5,h4,.h4,h3,.h3,h2,.h2,h1,.h1{margin-top:0;margin-bottom:.5rem;font-weight:300;line-height:1.2}h1,.h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width: 1200px){h1,.h1{font-size:2.5rem}}h2,.h2{font-size:calc(1.325rem + .9vw)}@media (min-width: 1200px){h2,.h2{font-size:2rem}}h3,.h3{font-size:calc(1.3rem + .6vw)}@media (min-width: 1200px){h3,.h3{font-size:1.75rem}}h4,.h4{font-size:calc(1.275rem + .3vw)}@media (min-width: 1200px){h4,.h4{font-size:1.5rem}}h5,.h5{font-size:1.25rem}h6,.h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-bs-original-title]{text-decoration:underline dotted;cursor:help;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small,.small{font-size:.875em}mark,.mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#008cba;text-decoration:underline}a:hover{color:#007095}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr /* rtl:ignore */;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#e83e8c;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#222;border-radius:0}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#888;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}thead,tbody,tfoot,tr,td,th{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role="button"]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button:not(:disabled),[type="button"]:not(:disabled),[type="reset"]:not(:disabled),[type="submit"]:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width: 1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-text,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type="search"]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none !important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#888}.blockquote-footer::before{content:"\2014\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:0;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#888}.container,.container-fluid,.container-xxl,.container-xl,.container-lg,.container-md,.container-sm{width:100%;padding-right:var(--bs-gutter-x, .75rem);padding-left:var(--bs-gutter-x, .75rem);margin-right:auto;margin-left:auto}@media (min-width: 576px){.container-sm,.container{max-width:540px}}@media (min-width: 768px){.container-md,.container-sm,.container{max-width:720px}}@media (min-width: 992px){.container-lg,.container-md,.container-sm,.container{max-width:960px}}@media (min-width: 1200px){.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1140px}}@media (min-width: 1400px){.container-xxl,.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1320px}}.row{--bs-gutter-x: 1.5rem;--bs-gutter-y: 0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x: 0}.g-0,.gy-0{--bs-gutter-y: 0}.g-1,.gx-1{--bs-gutter-x: .25rem}.g-1,.gy-1{--bs-gutter-y: .25rem}.g-2,.gx-2{--bs-gutter-x: .5rem}.g-2,.gy-2{--bs-gutter-y: .5rem}.g-3,.gx-3{--bs-gutter-x: 1rem}.g-3,.gy-3{--bs-gutter-y: 1rem}.g-4,.gx-4{--bs-gutter-x: 1.5rem}.g-4,.gy-4{--bs-gutter-y: 1.5rem}.g-5,.gx-5{--bs-gutter-x: 3rem}.g-5,.gy-5{--bs-gutter-y: 3rem}@media (min-width: 576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x: 0}.g-sm-0,.gy-sm-0{--bs-gutter-y: 0}.g-sm-1,.gx-sm-1{--bs-gutter-x: .25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y: .25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x: .5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y: .5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x: 1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y: 1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x: 1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y: 1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x: 3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y: 3rem}}@media (min-width: 768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x: 0}.g-md-0,.gy-md-0{--bs-gutter-y: 0}.g-md-1,.gx-md-1{--bs-gutter-x: .25rem}.g-md-1,.gy-md-1{--bs-gutter-y: .25rem}.g-md-2,.gx-md-2{--bs-gutter-x: .5rem}.g-md-2,.gy-md-2{--bs-gutter-y: .5rem}.g-md-3,.gx-md-3{--bs-gutter-x: 1rem}.g-md-3,.gy-md-3{--bs-gutter-y: 1rem}.g-md-4,.gx-md-4{--bs-gutter-x: 1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y: 1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x: 3rem}.g-md-5,.gy-md-5{--bs-gutter-y: 3rem}}@media (min-width: 992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x: 0}.g-lg-0,.gy-lg-0{--bs-gutter-y: 0}.g-lg-1,.gx-lg-1{--bs-gutter-x: .25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y: .25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x: .5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y: .5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x: 1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y: 1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x: 1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y: 1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x: 3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y: 3rem}}@media (min-width: 1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x: 0}.g-xl-0,.gy-xl-0{--bs-gutter-y: 0}.g-xl-1,.gx-xl-1{--bs-gutter-x: .25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y: .25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x: .5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y: .5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x: 1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y: 1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x: 1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y: 1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x: 3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y: 3rem}}@media (min-width: 1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x: 0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y: 0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x: .25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y: .25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x: .5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y: .5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x: 1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y: 1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x: 1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y: 1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x: 3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y: 3rem}}.table{--bs-table-bg: rgba(0,0,0,0);--bs-table-accent-bg: rgba(0,0,0,0);--bs-table-striped-color: #222;--bs-table-striped-bg: rgba(0,0,0,0.05);--bs-table-active-color: #222;--bs-table-active-bg: rgba(0,0,0,0.1);--bs-table-hover-color: #222;--bs-table-hover-bg: rgba(0,0,0,0.075);width:100%;margin-bottom:1rem;color:#222;vertical-align:top;border-color:#dee2e6}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:first-child){border-top:2px solid currentColor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-accent-bg: var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg: var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover>*{--bs-table-accent-bg: var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-bg: #008cba;--bs-table-striped-bg: #0d92bd;--bs-table-striped-color: #fff;--bs-table-active-bg: #1a98c1;--bs-table-active-color: #fff;--bs-table-hover-bg: #1395bf;--bs-table-hover-color: #fff;color:#fff;border-color:#1a98c1}.table-secondary{--bs-table-bg: #eee;--bs-table-striped-bg: #e2e2e2;--bs-table-striped-color: #000;--bs-table-active-bg: #d6d6d6;--bs-table-active-color: #000;--bs-table-hover-bg: #dcdcdc;--bs-table-hover-color: #000;color:#000;border-color:#d6d6d6}.table-success{--bs-table-bg: #43ac6a;--bs-table-striped-bg: #4cb071;--bs-table-striped-color: #fff;--bs-table-active-bg: #56b479;--bs-table-active-color: #fff;--bs-table-hover-bg: #51b275;--bs-table-hover-color: #fff;color:#fff;border-color:#56b479}.table-info{--bs-table-bg: #5bc0de;--bs-table-striped-bg: #63c3e0;--bs-table-striped-color: #fff;--bs-table-active-bg: #6bc6e1;--bs-table-active-color: #fff;--bs-table-hover-bg: #67c5e0;--bs-table-hover-color: #fff;color:#fff;border-color:#6bc6e1}.table-warning{--bs-table-bg: #e99002;--bs-table-striped-bg: #ea960f;--bs-table-striped-color: #fff;--bs-table-active-bg: #eb9b1b;--bs-table-active-color: #fff;--bs-table-hover-bg: #eb9815;--bs-table-hover-color: #fff;color:#fff;border-color:#eb9b1b}.table-danger{--bs-table-bg: #f04124;--bs-table-striped-bg: #f14b2f;--bs-table-striped-color: #fff;--bs-table-active-bg: #f2543a;--bs-table-active-color: #fff;--bs-table-hover-bg: #f14f34;--bs-table-hover-color: #fff;color:#fff;border-color:#f2543a}.table-light{--bs-table-bg: #eee;--bs-table-striped-bg: #e2e2e2;--bs-table-striped-color: #000;--bs-table-active-bg: #d6d6d6;--bs-table-active-color: #000;--bs-table-hover-bg: #dcdcdc;--bs-table-hover-color: #000;color:#000;border-color:#d6d6d6}.table-dark{--bs-table-bg: #222;--bs-table-striped-bg: #2d2d2d;--bs-table-striped-color: #fff;--bs-table-active-bg: #383838;--bs-table-active-color: #fff;--bs-table-hover-bg: #333;--bs-table-hover-color: #fff;color:#fff;border-color:#383838}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width: 575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width: 767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width: 991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width: 1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width: 1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:#888}.form-control{display:block;width:100%;padding:.375rem .5rem;font-size:1rem;font-weight:400;line-height:1.5;color:#222;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;appearance:none;border-radius:0;transition:border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.form-control{transition:none}}.form-control[type="file"]{overflow:hidden}.form-control[type="file"]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#222;background-color:#fff;border-color:#80c6dd;outline:0;box-shadow:0 0 0 .25rem rgba(0,140,186,0.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::placeholder{color:#888;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#eee;opacity:1}.form-control::file-selector-button{padding:.375rem .5rem;margin:-.375rem -.5rem;margin-inline-end:.5rem;color:#222;background-color:#eee;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#e2e2e2}.form-control::-webkit-file-upload-button{padding:.375rem .5rem;margin:-.375rem -.5rem;margin-inline-end:.5rem;color:#222;background-color:#eee;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.form-control::-webkit-file-upload-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#e2e2e2}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#222;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;border-radius:0}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;border-radius:0}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + 2px)}textarea.form-control-sm{min-height:calc(1.5em + .5rem + 2px)}textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}.form-control-color{width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.5em;border-radius:0}.form-control-color::-webkit-color-swatch{height:1.5em;border-radius:0}.form-select{display:block;width:100%;padding:.375rem 1.5rem .375rem .5rem;-moz-padding-start:calc(.5rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:#222;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .5rem center;background-size:16px 12px;border:1px solid #ccc;border-radius:0;transition:border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.form-select{transition:none}}.form-select:focus{border-color:#80c6dd;outline:0;box-shadow:0 0 0 .25rem rgba(0,140,186,0.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.5rem;background-image:none}.form-select:disabled{background-color:#eee}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #222}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem;border-radius:0}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem;border-radius:0}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,0.25);appearance:none;color-adjust:exact}.form-check-input[type="checkbox"]{border-radius:.25em}.form-check-input[type="radio"]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#80c6dd;outline:0;box-shadow:0 0 0 .25rem rgba(0,140,186,0.25)}.form-check-input:checked{background-color:#008cba;border-color:#008cba}.form-check-input[type="checkbox"]:checked{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")}.form-check-input[type="radio"]:checked{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type="checkbox"]:indeterminate{background-color:#008cba;border-color:#008cba;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input[disabled]~.form-check-label,.form-check-input:disabled~.form-check-label{opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280,0,0,0.25%29'/%3e%3c/svg%3e");background-position:left center;border-radius:2em;transition:background-position 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2380c6dd'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.btn-check[disabled]+.btn,.btn-check:disabled+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(0,140,186,0.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(0,140,186,0.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#008cba;border:0;border-radius:1rem;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.form-range::-webkit-slider-thumb{transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b3ddea}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#008cba;border:0;border-radius:1rem;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.form-range::-moz-range-thumb{transition:none}}.form-range::-moz-range-thumb:active{background-color:#b3ddea}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .5rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity 0.1s ease-in-out,transform 0.1s ease-in-out}@media (prefers-reduced-motion: reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem .5rem}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(0.85) translateY(-0.5rem) translateX(0.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(0.85) translateY(-0.5rem) translateX(0.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .5rem;font-size:1rem;font-weight:400;line-height:1.5;color:#222;text-align:center;white-space:nowrap;background-color:#eee;border:1px solid #ccc;border-radius:0}.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text,.input-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;border-radius:0}.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text,.input-group-sm>.btn{padding:.25rem .5rem;font-size:.875rem;border-radius:0}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:2rem}.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n + 3){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>:nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu),.input-group.has-validation>.dropdown-toggle:nth-last-child(n + 4){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#43ac6a}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(67,172,106,0.9);border-radius:0}.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip,.is-valid~.valid-feedback,.is-valid~.valid-tooltip{display:block}.was-validated .form-control:valid,.form-control.is-valid{border-color:#43ac6a;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2343ac6a' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#43ac6a;box-shadow:0 0 0 .25rem rgba(67,172,106,0.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.was-validated .form-select:valid,.form-select.is-valid{border-color:#43ac6a}.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select[size="1"]:valid:not([multiple]),.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid[size="1"]:not([multiple]){padding-right:2.75rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2343ac6a' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:right .5rem center,center right 1.5rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .form-select:valid:focus,.form-select.is-valid:focus{border-color:#43ac6a;box-shadow:0 0 0 .25rem rgba(67,172,106,0.25)}.was-validated .form-check-input:valid,.form-check-input.is-valid{border-color:#43ac6a}.was-validated .form-check-input:valid:checked,.form-check-input.is-valid:checked{background-color:#43ac6a}.was-validated .form-check-input:valid:focus,.form-check-input.is-valid:focus{box-shadow:0 0 0 .25rem rgba(67,172,106,0.25)}.was-validated .form-check-input:valid~.form-check-label,.form-check-input.is-valid~.form-check-label{color:#43ac6a}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.was-validated .input-group .form-control:valid,.input-group .form-control.is-valid,.was-validated .input-group .form-select:valid,.input-group .form-select.is-valid{z-index:1}.was-validated .input-group .form-control:valid:focus,.input-group .form-control.is-valid:focus,.was-validated .input-group .form-select:valid:focus,.input-group .form-select.is-valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#f04124}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(240,65,36,0.9);border-radius:0}.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip,.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip{display:block}.was-validated .form-control:invalid,.form-control.is-invalid{border-color:#f04124;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f04124'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f04124' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#f04124;box-shadow:0 0 0 .25rem rgba(240,65,36,0.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.was-validated .form-select:invalid,.form-select.is-invalid{border-color:#f04124}.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select[size="1"]:invalid:not([multiple]),.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid[size="1"]:not([multiple]){padding-right:2.75rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f04124'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f04124' stroke='none'/%3e%3c/svg%3e");background-position:right .5rem center,center right 1.5rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .form-select:invalid:focus,.form-select.is-invalid:focus{border-color:#f04124;box-shadow:0 0 0 .25rem rgba(240,65,36,0.25)}.was-validated .form-check-input:invalid,.form-check-input.is-invalid{border-color:#f04124}.was-validated .form-check-input:invalid:checked,.form-check-input.is-invalid:checked{background-color:#f04124}.was-validated .form-check-input:invalid:focus,.form-check-input.is-invalid:focus{box-shadow:0 0 0 .25rem rgba(240,65,36,0.25)}.was-validated .form-check-input:invalid~.form-check-label,.form-check-input.is-invalid~.form-check-label{color:#f04124}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.was-validated .input-group .form-control:invalid,.input-group .form-control.is-invalid,.was-validated .input-group .form-select:invalid,.input-group .form-select.is-invalid{z-index:2}.was-validated .input-group .form-control:invalid:focus,.input-group .form-control.is-invalid:focus,.was-validated .input-group .form-select:invalid:focus,.input-group .form-select.is-invalid:focus{z-index:3}.btn{display:inline-block;font-weight:300;line-height:1.5;color:#222;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .5rem;font-size:1rem;border-radius:0;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.btn{transition:none}}.btn:hover{color:#222}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 0 0 .25rem rgba(0,140,186,0.25)}.btn:disabled,.btn.disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-primary{color:#fff;background-color:#008cba;border-color:#008cba}.btn-primary:hover{color:#fff;background-color:#00779e;border-color:#007095}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#00779e;border-color:#007095;box-shadow:0 0 0 .25rem rgba(38,157,196,0.5)}.btn-check:checked+.btn-primary,.btn-check:active+.btn-primary,.btn-primary:active,.btn-primary.active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#007095;border-color:#00698c}.btn-check:checked+.btn-primary:focus,.btn-check:active+.btn-primary:focus,.btn-primary:active:focus,.btn-primary.active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(38,157,196,0.5)}.btn-primary:disabled,.btn-primary.disabled{color:#fff;background-color:#008cba;border-color:#008cba}.btn-secondary{color:#000;background-color:#eee;border-color:#eee}.btn-secondary:hover{color:#000;background-color:#f1f1f1;border-color:#f0f0f0}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#000;background-color:#f1f1f1;border-color:#f0f0f0;box-shadow:0 0 0 .25rem rgba(202,202,202,0.5)}.btn-check:checked+.btn-secondary,.btn-check:active+.btn-secondary,.btn-secondary:active,.btn-secondary.active,.show>.btn-secondary.dropdown-toggle{color:#000;background-color:#f1f1f1;border-color:#f0f0f0}.btn-check:checked+.btn-secondary:focus,.btn-check:active+.btn-secondary:focus,.btn-secondary:active:focus,.btn-secondary.active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(202,202,202,0.5)}.btn-secondary:disabled,.btn-secondary.disabled{color:#000;background-color:#eee;border-color:#eee}.btn-success{color:#fff;background-color:#43ac6a;border-color:#43ac6a}.btn-success:hover{color:#fff;background-color:#39925a;border-color:#368a55}.btn-check:focus+.btn-success,.btn-success:focus{color:#fff;background-color:#39925a;border-color:#368a55;box-shadow:0 0 0 .25rem rgba(95,184,128,0.5)}.btn-check:checked+.btn-success,.btn-check:active+.btn-success,.btn-success:active,.btn-success.active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#368a55;border-color:#328150}.btn-check:checked+.btn-success:focus,.btn-check:active+.btn-success:focus,.btn-success:active:focus,.btn-success.active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(95,184,128,0.5)}.btn-success:disabled,.btn-success.disabled{color:#fff;background-color:#43ac6a;border-color:#43ac6a}.btn-info{color:#fff;background-color:#5bc0de;border-color:#5bc0de}.btn-info:hover{color:#fff;background-color:#4da3bd;border-color:#499ab2}.btn-check:focus+.btn-info,.btn-info:focus{color:#fff;background-color:#4da3bd;border-color:#499ab2;box-shadow:0 0 0 .25rem rgba(116,201,227,0.5)}.btn-check:checked+.btn-info,.btn-check:active+.btn-info,.btn-info:active,.btn-info.active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#499ab2;border-color:#4490a7}.btn-check:checked+.btn-info:focus,.btn-check:active+.btn-info:focus,.btn-info:active:focus,.btn-info.active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(116,201,227,0.5)}.btn-info:disabled,.btn-info.disabled{color:#fff;background-color:#5bc0de;border-color:#5bc0de}.btn-warning{color:#fff;background-color:#e99002;border-color:#e99002}.btn-warning:hover{color:#fff;background-color:#c67a02;border-color:#ba7302}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#fff;background-color:#c67a02;border-color:#ba7302;box-shadow:0 0 0 .25rem rgba(236,161,40,0.5)}.btn-check:checked+.btn-warning,.btn-check:active+.btn-warning,.btn-warning:active,.btn-warning.active,.show>.btn-warning.dropdown-toggle{color:#fff;background-color:#ba7302;border-color:#af6c02}.btn-check:checked+.btn-warning:focus,.btn-check:active+.btn-warning:focus,.btn-warning:active:focus,.btn-warning.active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(236,161,40,0.5)}.btn-warning:disabled,.btn-warning.disabled{color:#fff;background-color:#e99002;border-color:#e99002}.btn-danger{color:#fff;background-color:#f04124;border-color:#f04124}.btn-danger:hover{color:#fff;background-color:#cc371f;border-color:#c0341d}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#fff;background-color:#cc371f;border-color:#c0341d;box-shadow:0 0 0 .25rem rgba(242,94,69,0.5)}.btn-check:checked+.btn-danger,.btn-check:active+.btn-danger,.btn-danger:active,.btn-danger.active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#c0341d;border-color:#b4311b}.btn-check:checked+.btn-danger:focus,.btn-check:active+.btn-danger:focus,.btn-danger:active:focus,.btn-danger.active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(242,94,69,0.5)}.btn-danger:disabled,.btn-danger.disabled{color:#fff;background-color:#f04124;border-color:#f04124}.btn-light{color:#000;background-color:#eee;border-color:#eee}.btn-light:hover{color:#000;background-color:#f1f1f1;border-color:#f0f0f0}.btn-check:focus+.btn-light,.btn-light:focus{color:#000;background-color:#f1f1f1;border-color:#f0f0f0;box-shadow:0 0 0 .25rem rgba(202,202,202,0.5)}.btn-check:checked+.btn-light,.btn-check:active+.btn-light,.btn-light:active,.btn-light.active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#f1f1f1;border-color:#f0f0f0}.btn-check:checked+.btn-light:focus,.btn-check:active+.btn-light:focus,.btn-light:active:focus,.btn-light.active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(202,202,202,0.5)}.btn-light:disabled,.btn-light.disabled{color:#000;background-color:#eee;border-color:#eee}.btn-dark{color:#fff;background-color:#222;border-color:#222}.btn-dark:hover{color:#fff;background-color:#1d1d1d;border-color:#1b1b1b}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:#1d1d1d;border-color:#1b1b1b;box-shadow:0 0 0 .25rem rgba(67,67,67,0.5)}.btn-check:checked+.btn-dark,.btn-check:active+.btn-dark,.btn-dark:active,.btn-dark.active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1b1b1b;border-color:#1a1a1a}.btn-check:checked+.btn-dark:focus,.btn-check:active+.btn-dark:focus,.btn-dark:active:focus,.btn-dark.active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(67,67,67,0.5)}.btn-dark:disabled,.btn-dark.disabled{color:#fff;background-color:#222;border-color:#222}.btn-outline-primary{color:#008cba;border-color:#008cba}.btn-outline-primary:hover{color:#fff;background-color:#008cba;border-color:#008cba}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(0,140,186,0.5)}.btn-check:checked+.btn-outline-primary,.btn-check:active+.btn-outline-primary,.btn-outline-primary:active,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show{color:#fff;background-color:#008cba;border-color:#008cba}.btn-check:checked+.btn-outline-primary:focus,.btn-check:active+.btn-outline-primary:focus,.btn-outline-primary:active:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(0,140,186,0.5)}.btn-outline-primary:disabled,.btn-outline-primary.disabled{color:#008cba;background-color:transparent}.btn-outline-secondary{color:#eee;border-color:#eee}.btn-outline-secondary:hover{color:#000;background-color:#eee;border-color:#eee}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(238,238,238,0.5)}.btn-check:checked+.btn-outline-secondary,.btn-check:active+.btn-outline-secondary,.btn-outline-secondary:active,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show{color:#000;background-color:#eee;border-color:#eee}.btn-check:checked+.btn-outline-secondary:focus,.btn-check:active+.btn-outline-secondary:focus,.btn-outline-secondary:active:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(238,238,238,0.5)}.btn-outline-secondary:disabled,.btn-outline-secondary.disabled{color:#eee;background-color:transparent}.btn-outline-success{color:#43ac6a;border-color:#43ac6a}.btn-outline-success:hover{color:#fff;background-color:#43ac6a;border-color:#43ac6a}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(67,172,106,0.5)}.btn-check:checked+.btn-outline-success,.btn-check:active+.btn-outline-success,.btn-outline-success:active,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show{color:#fff;background-color:#43ac6a;border-color:#43ac6a}.btn-check:checked+.btn-outline-success:focus,.btn-check:active+.btn-outline-success:focus,.btn-outline-success:active:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(67,172,106,0.5)}.btn-outline-success:disabled,.btn-outline-success.disabled{color:#43ac6a;background-color:transparent}.btn-outline-info{color:#5bc0de;border-color:#5bc0de}.btn-outline-info:hover{color:#fff;background-color:#5bc0de;border-color:#5bc0de}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(91,192,222,0.5)}.btn-check:checked+.btn-outline-info,.btn-check:active+.btn-outline-info,.btn-outline-info:active,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show{color:#fff;background-color:#5bc0de;border-color:#5bc0de}.btn-check:checked+.btn-outline-info:focus,.btn-check:active+.btn-outline-info:focus,.btn-outline-info:active:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(91,192,222,0.5)}.btn-outline-info:disabled,.btn-outline-info.disabled{color:#5bc0de;background-color:transparent}.btn-outline-warning{color:#e99002;border-color:#e99002}.btn-outline-warning:hover{color:#fff;background-color:#e99002;border-color:#e99002}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(233,144,2,0.5)}.btn-check:checked+.btn-outline-warning,.btn-check:active+.btn-outline-warning,.btn-outline-warning:active,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show{color:#fff;background-color:#e99002;border-color:#e99002}.btn-check:checked+.btn-outline-warning:focus,.btn-check:active+.btn-outline-warning:focus,.btn-outline-warning:active:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(233,144,2,0.5)}.btn-outline-warning:disabled,.btn-outline-warning.disabled{color:#e99002;background-color:transparent}.btn-outline-danger{color:#f04124;border-color:#f04124}.btn-outline-danger:hover{color:#fff;background-color:#f04124;border-color:#f04124}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(240,65,36,0.5)}.btn-check:checked+.btn-outline-danger,.btn-check:active+.btn-outline-danger,.btn-outline-danger:active,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show{color:#fff;background-color:#f04124;border-color:#f04124}.btn-check:checked+.btn-outline-danger:focus,.btn-check:active+.btn-outline-danger:focus,.btn-outline-danger:active:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(240,65,36,0.5)}.btn-outline-danger:disabled,.btn-outline-danger.disabled{color:#f04124;background-color:transparent}.btn-outline-light{color:#eee;border-color:#eee}.btn-outline-light:hover{color:#000;background-color:#eee;border-color:#eee}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(238,238,238,0.5)}.btn-check:checked+.btn-outline-light,.btn-check:active+.btn-outline-light,.btn-outline-light:active,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show{color:#000;background-color:#eee;border-color:#eee}.btn-check:checked+.btn-outline-light:focus,.btn-check:active+.btn-outline-light:focus,.btn-outline-light:active:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(238,238,238,0.5)}.btn-outline-light:disabled,.btn-outline-light.disabled{color:#eee;background-color:transparent}.btn-outline-dark{color:#222;border-color:#222}.btn-outline-dark:hover{color:#fff;background-color:#222;border-color:#222}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(34,34,34,0.5)}.btn-check:checked+.btn-outline-dark,.btn-check:active+.btn-outline-dark,.btn-outline-dark:active,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show{color:#fff;background-color:#222;border-color:#222}.btn-check:checked+.btn-outline-dark:focus,.btn-check:active+.btn-outline-dark:focus,.btn-outline-dark:active:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(34,34,34,0.5)}.btn-outline-dark:disabled,.btn-outline-dark.disabled{color:#222;background-color:transparent}.btn-link{font-weight:400;color:#008cba;text-decoration:underline}.btn-link:hover{color:#007095}.btn-link:disabled,.btn-link.disabled{color:#888}.btn-lg,.btn-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;border-radius:0}.btn-sm,.btn-group-sm>.btn{padding:.25rem .5rem;font-size:.875rem;border-radius:0}.fade{transition:opacity 0.15s linear}@media (prefers-reduced-motion: reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height 0.35s ease}@media (prefers-reduced-motion: reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width 0.35s ease}@media (prefers-reduced-motion: reduce){.collapsing.collapse-horizontal{transition:none}}.dropup,.dropend,.dropdown,.dropstart{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#222;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.1);border-radius:0}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:.125rem}.dropdown-menu-start{--bs-position: start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position: end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width: 576px){.dropdown-menu-sm-start{--bs-position: start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position: end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width: 768px){.dropdown-menu-md-start{--bs-position: start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position: end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width: 992px){.dropdown-menu-lg-start{--bs-position: start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position: end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width: 1200px){.dropdown-menu-xl-start{--bs-position: start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position: end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width: 1400px){.dropdown-menu-xxl-start{--bs-position: start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position: end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,0.1)}.dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#222;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:hover,.dropdown-item:focus{color:#1f1f1f;background-color:#eee}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#008cba}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#888;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1rem;color:#222}.dropdown-menu-dark{color:#dee2e6;background-color:#333;border-color:rgba(0,0,0,0.1)}.dropdown-menu-dark .dropdown-item{color:#dee2e6}.dropdown-menu-dark .dropdown-item:hover,.dropdown-menu-dark .dropdown-item:focus{color:#fff;background-color:rgba(255,255,255,0.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#008cba}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#adb5bd}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,0.1)}.dropdown-menu-dark .dropdown-item-text{color:#dee2e6}.dropdown-menu-dark .dropdown-header{color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;flex:1 1 auto}.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn:hover,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child){margin-left:-1px}.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:nth-child(n + 3),.btn-group>:not(.btn-check)+.btn,.btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn~.btn,.btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#008cba;text-decoration:none;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.nav-link{transition:none}}.nav-link:hover,.nav-link:focus{color:#007095}.nav-link.disabled{color:#ccc;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid rgba(0,0,0,0.1)}.nav-tabs .nav-link{margin-bottom:-1px;background:none;border:1px solid transparent;border-top-left-radius:0;border-top-right-radius:0}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{border-color:rgba(0,0,0,0.1);isolation:isolate}.nav-tabs .nav-link.disabled{color:#ccc;background-color:transparent;border-color:transparent}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#495057;background-color:#fff;border-color:rgba(0,0,0,0.1)}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:none;border:0;border-radius:0}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#008cba}.nav-fill>.nav-link,.nav-fill .nav-item{flex:1 1 auto;text-align:center}.nav-justified>.nav-link,.nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-sm,.navbar>.container-md,.navbar>.container-lg,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:0;transition:box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height, 75vh);overflow-y:auto}@media (min-width: 576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas-header{display:none}.navbar-expand-sm .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-sm .offcanvas-top,.navbar-expand-sm .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width: 768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas-header{display:none}.navbar-expand-md .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-md .offcanvas-top,.navbar-expand-md .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width: 992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas-header{display:none}.navbar-expand-lg .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-lg .offcanvas-top,.navbar-expand-lg .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width: 1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas-header{display:none}.navbar-expand-xl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xl .offcanvas-top,.navbar-expand-xl .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width: 1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xxl .offcanvas-top,.navbar-expand-xxl .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas-header{display:none}.navbar-expand .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible !important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand .offcanvas-top,.navbar-expand .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-light .navbar-brand{color:rgba(0,0,0,0.9)}.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus{color:rgba(0,0,0,0.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,0.55)}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,0.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,0.3)}.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,0.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,0.55);border-color:rgba(0,0,0,0.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,0.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:hover,.navbar-light .navbar-text a:focus{color:rgba(0,0,0,0.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:hover,.navbar-dark .navbar-brand:focus{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,0.7)}.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav .nav-link:focus{color:#fff}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,0.25)}.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav .nav-link.active{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,0.7);border-color:rgba(255,255,255,0.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,0.7)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:hover,.navbar-dark .navbar-text a:focus{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,0.125);border-radius:0}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:0;border-top-right-radius:0}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1rem 1rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:1rem}.card-header{padding:.5rem 1rem;margin-bottom:0;background-color:rgba(0,0,0,0.03);border-bottom:1px solid rgba(0,0,0,0.125)}.card-header:first-child{border-radius:0 0 0 0}.card-footer{padding:.5rem 1rem;background-color:rgba(0,0,0,0.03);border-top:1px solid rgba(0,0,0,0.125)}.card-footer:last-child{border-radius:0 0 0 0}.card-header-tabs{margin-right:-.5rem;margin-bottom:-.5rem;margin-left:-.5rem;border-bottom:0}.card-header-pills{margin-right:-.5rem;margin-left:-.5rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:0}.card-img,.card-img-top,.card-img-bottom{width:100%}.card-img,.card-img-top{border-top-left-radius:0;border-top-right-radius:0}.card-img,.card-img-bottom{border-bottom-right-radius:0;border-bottom-left-radius:0}.card-group>.card{margin-bottom:.75rem}@media (min-width: 576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-img-top,.card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-img-bottom,.card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-img-top,.card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-img-bottom,.card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1rem 1.25rem;font-size:1rem;color:#222;text-align:left;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease}@media (prefers-reduced-motion: reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#007ea7;background-color:#e6f4f8;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.125)}.accordion-button:not(.collapsed)::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23007ea7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(-180deg)}.accordion-button::after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23222'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:1.25rem;transition:transform 0.2s ease-in-out}@media (prefers-reduced-motion: reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#80c6dd;outline:0;box-shadow:0 0 0 .25rem rgba(0,140,186,0.25)}.accordion-header{margin-bottom:0}.accordion-item{background-color:#fff;border:1px solid rgba(0,0,0,0.125)}.accordion-item:first-of-type{border-top-left-radius:0;border-top-right-radius:0}.accordion-item:first-of-type .accordion-button{border-top-left-radius:0;border-top-right-radius:0}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion-body{padding:1rem 1.25rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}.breadcrumb{display:flex;flex-wrap:wrap;padding:.375rem .75rem;margin-bottom:1rem;list-style:none;border-radius:3px}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#888;content:var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */}.breadcrumb-item.active{color:#888}.pagination{display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;color:#888;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,0.1);transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#007095;background-color:#eee;border-color:#dee2e6}.page-link:focus{z-index:3;color:#007095;background-color:#eee;outline:0;box-shadow:0 0 0 .25rem rgba(0,140,186,0.25)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#008cba;border-color:#0079a1}.page-item.disabled .page-link{color:#eee;pointer-events:none;background-color:#fff;border-color:#dee2e6}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-left-radius:0;border-bottom-left-radius:0}.page-item:last-child .page-link{border-top-right-radius:0;border-bottom-right-radius:0}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:0;border-bottom-left-radius:0}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:0;border-bottom-right-radius:0}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:0;border-bottom-left-radius:0}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:0;border-bottom-right-radius:0}.badge{display:inline-block;padding:.35em 1rem;font-size:.75em;font-weight:300;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:0}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1rem 1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:0}.alert-heading{color:inherit}.alert-link{font-weight:400}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{color:#005470;background-color:#008cba;border-color:#b3ddea}.alert-primary .alert-link{color:#00435a}.alert-secondary{color:#8f8f8f;background-color:#eee;border-color:#fafafa}.alert-secondary .alert-link{color:#727272}.alert-success{color:#286740;background-color:#43ac6a;border-color:#c7e6d2}.alert-success .alert-link{color:#205233}.alert-info{color:#377385;background-color:#5bc0de;border-color:#ceecf5}.alert-info .alert-link{color:#2c5c6a}.alert-warning{color:#8c5601;background-color:#e99002;border-color:#f8deb3}.alert-warning .alert-link{color:#704501}.alert-danger{color:#902716;background-color:#f04124;border-color:#fbc6bd}.alert-danger .alert-link{color:#731f12}.alert-light{color:#8f8f8f;background-color:#eee;border-color:#fafafa}.alert-light .alert-link{color:#727272}.alert-dark{color:#a7a7a7;background-color:#222;border-color:#bdbdbd}.alert-dark .alert-link{color:#868686}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#ccc;border-radius:0}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#008cba;transition:width 0.6s ease}@media (prefers-reduced-motion: reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:1rem 1rem}.progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion: reduce){.progress-bar-animated{animation:none}}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:0}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:hover,.list-group-item-action:focus{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#222;background-color:#eee}.list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#222;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,0.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#888;pointer-events:none;background-color:#eee}.list-group-item.active{z-index:2;color:#fff;background-color:#008cba;border-color:#008cba}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:0;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:0;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width: 576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:0;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:0;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:0;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:0;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:0;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:0;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:0;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:0;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:0;border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:0;border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#005470;background-color:#cce8f1}.list-group-item-primary.list-group-item-action:hover,.list-group-item-primary.list-group-item-action:focus{color:#005470;background-color:#b8d1d9}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#005470;border-color:#005470}.list-group-item-secondary{color:#8f8f8f;background-color:#fcfcfc}.list-group-item-secondary.list-group-item-action:hover,.list-group-item-secondary.list-group-item-action:focus{color:#8f8f8f;background-color:#e3e3e3}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#8f8f8f;border-color:#8f8f8f}.list-group-item-success{color:#286740;background-color:#d9eee1}.list-group-item-success.list-group-item-action:hover,.list-group-item-success.list-group-item-action:focus{color:#286740;background-color:#c3d6cb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#286740;border-color:#286740}.list-group-item-info{color:#377385;background-color:#def2f8}.list-group-item-info.list-group-item-action:hover,.list-group-item-info.list-group-item-action:focus{color:#377385;background-color:#c8dadf}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#377385;border-color:#377385}.list-group-item-warning{color:#8c5601;background-color:#fbe9cc}.list-group-item-warning.list-group-item-action:hover,.list-group-item-warning.list-group-item-action:focus{color:#8c5601;background-color:#e2d2b8}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#8c5601;border-color:#8c5601}.list-group-item-danger{color:#902716;background-color:#fcd9d3}.list-group-item-danger.list-group-item-action:hover,.list-group-item-danger.list-group-item-action:focus{color:#902716;background-color:#e3c3be}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#902716;border-color:#902716}.list-group-item-light{color:#8f8f8f;background-color:#fcfcfc}.list-group-item-light.list-group-item-action:hover,.list-group-item-light.list-group-item-action:focus{color:#8f8f8f;background-color:#e3e3e3}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#8f8f8f;border-color:#8f8f8f}.list-group-item-dark{color:#141414;background-color:#d3d3d3}.list-group-item-dark.list-group-item-action:hover,.list-group-item-dark.list-group-item-action:focus{color:#141414;background-color:#bebebe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141414;border-color:#141414}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#888;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23888'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:0;opacity:.6}.btn-close:hover{color:#888;text-decoration:none;opacity:1}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(0,140,186,0.25);opacity:1}.btn-close:disabled,.btn-close.disabled{pointer-events:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border:1px solid rgba(0,0,0,0.1);box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15);border-radius:0}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#888;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,0.05);border-top-left-radius:0;border-top-right-radius:0}.toast-header .btn-close{margin-right:-.375rem;margin-left:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;left:0;z-index:1055;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform 0.3s ease-out;transform:translate(0, -50px)}@media (prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:0;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1050;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:0;border-top-right-radius:0}.modal-header .btn-close{padding:.5rem .5rem;margin:-.5rem -.5rem -.5rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:0;border-bottom-left-radius:0}.modal-footer>*{margin:.25rem}@media (min-width: 576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width: 992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width: 1200px){.modal-xl{max-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media (max-width: 575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media (max-width: 767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media (max-width: 991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media (max-width: 1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media (max-width: 1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-top,.bs-tooltip-auto[data-popper-placement^="top"]{padding:.4rem 0}.bs-tooltip-top .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow{bottom:0}.bs-tooltip-top .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-end,.bs-tooltip-auto[data-popper-placement^="right"]{padding:0 .4rem}.bs-tooltip-end .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-end .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bs-tooltip-auto[data-popper-placement^="bottom"]{padding:.4rem 0}.bs-tooltip-bottom .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow{top:0}.bs-tooltip-bottom .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-start,.bs-tooltip-auto[data-popper-placement^="left"]{padding:0 .4rem}.bs-tooltip-start .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-start .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:0}.popover{position:absolute;top:0;left:0 /* rtl:ignore */;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:0}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::before,.popover .popover-arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-top>.popover-arrow,.bs-popover-auto[data-popper-placement^="top"]>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-top>.popover-arrow::before,.bs-popover-auto[data-popper-placement^="top"]>.popover-arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,0.25)}.bs-popover-top>.popover-arrow::after,.bs-popover-auto[data-popper-placement^="top"]>.popover-arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-end>.popover-arrow,.bs-popover-auto[data-popper-placement^="right"]>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-end>.popover-arrow::before,.bs-popover-auto[data-popper-placement^="right"]>.popover-arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,0.25)}.bs-popover-end>.popover-arrow::after,.bs-popover-auto[data-popper-placement^="right"]>.popover-arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-bottom>.popover-arrow,.bs-popover-auto[data-popper-placement^="bottom"]>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-bottom>.popover-arrow::before,.bs-popover-auto[data-popper-placement^="bottom"]>.popover-arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,0.25)}.bs-popover-bottom>.popover-arrow::after,.bs-popover-auto[data-popper-placement^="bottom"]>.popover-arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[data-popper-placement^="bottom"] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f0f0f0}.bs-popover-start>.popover-arrow,.bs-popover-auto[data-popper-placement^="left"]>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-start>.popover-arrow::before,.bs-popover-auto[data-popper-placement^="left"]>.popover-arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,0.25)}.bs-popover-start>.popover-arrow::after,.bs-popover-auto[data-popper-placement^="left"]>.popover-arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,0.2);border-top-left-radius:0;border-top-right-radius:0}.popover-header:empty{display:none}.popover-body{padding:1rem 1rem;color:#222}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion: reduce){.carousel-item{transition:none}}.carousel-item.active,.carousel-item-next,.carousel-item-prev{display:block}.carousel-item-next:not(.carousel-item-start),.active.carousel-item-end{transform:translateX(100%)}.carousel-item-prev:not(.carousel-item-end),.active.carousel-item-start{transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end{z-index:1;opacity:1}.carousel-fade .active.carousel-item-start,.carousel-fade .active.carousel-item-end{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion: reduce){.carousel-fade .active.carousel-item-start,.carousel-fade .active.carousel-item-end{transition:none}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity 0.15s ease}@media (prefers-reduced-motion: reduce){.carousel-control-prev,.carousel-control-next{transition:none}}.carousel-control-prev:hover,.carousel-control-prev:focus,.carousel-control-next:hover,.carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-prev-icon,.carousel-control-next-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity 0.6s ease}@media (prefers-reduced-motion: reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-prev-icon,.carousel-dark .carousel-control-next-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@keyframes spinner-border{to{transform:rotate(360deg) /* rtl:ignore */}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion: reduce){.spinner-border,.spinner-grow{animation-duration:1.5s}}.offcanvas{position:fixed;bottom:0;z-index:1045;display:flex;flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media (prefers-reduced-motion: reduce){.offcanvas{transition:none}}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:1rem 1rem}.offcanvas-header .btn-close{padding:.5rem .5rem;margin-top:-.5rem;margin-right:-.5rem;margin-bottom:-.5rem}.offcanvas-title{margin-bottom:0;line-height:1.5}.offcanvas-body{flex-grow:1;padding:1rem 1rem;overflow-y:auto}.offcanvas-start{top:0;left:0;width:400px;border-right:1px solid rgba(0,0,0,0.2);transform:translateX(-100%)}.offcanvas-end{top:0;right:0;width:400px;border-left:1px solid rgba(0,0,0,0.2);transform:translateX(100%)}.offcanvas-top{top:0;right:0;left:0;height:30vh;max-height:100%;border-bottom:1px solid rgba(0,0,0,0.2);transform:translateY(-100%)}.offcanvas-bottom{right:0;left:0;height:30vh;max-height:100%;border-top:1px solid rgba(0,0,0,0.2);transform:translateY(100%)}.offcanvas.show{transform:none}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentColor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{animation:placeholder-glow 2s ease-in-out infinite}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{mask-image:linear-gradient(130deg, #000 55%, rgba(0,0,0,0.8) 75%, #000 95%);mask-size:200% 100%;animation:placeholder-wave 2s linear infinite}@keyframes placeholder-wave{100%{mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.link-primary{color:#008cba}.link-primary:hover,.link-primary:focus{color:#007095}.link-secondary{color:#eee}.link-secondary:hover,.link-secondary:focus{color:#f1f1f1}.link-success{color:#43ac6a}.link-success:hover,.link-success:focus{color:#368a55}.link-info{color:#5bc0de}.link-info:hover,.link-info:focus{color:#499ab2}.link-warning{color:#e99002}.link-warning:hover,.link-warning:focus{color:#ba7302}.link-danger{color:#f04124}.link-danger:hover,.link-danger:focus{color:#c0341d}.link-light{color:#eee}.link-light:hover,.link-light:focus{color:#f1f1f1}.link-dark{color:#222}.link-dark:hover,.link-dark:focus{color:#1b1b1b}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio: 100%}.ratio-4x3{--bs-aspect-ratio: calc(3 / 4 * 100%)}.ratio-16x9{--bs-aspect-ratio: calc(9 / 16 * 100%)}.ratio-21x9{--bs-aspect-ratio: calc(9 / 21 * 100%)}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:sticky;top:0;z-index:1020}@media (min-width: 576px){.sticky-sm-top{position:sticky;top:0;z-index:1020}}@media (min-width: 768px){.sticky-md-top{position:sticky;top:0;z-index:1020}}@media (min-width: 992px){.sticky-lg-top{position:sticky;top:0;z-index:1020}}@media (min-width: 1200px){.sticky-xl-top{position:sticky;top:0;z-index:1020}}@media (min-width: 1400px){.sticky-xxl-top{position:sticky;top:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute !important;width:1px !important;height:1px !important;padding:0 !important;margin:-1px !important;overflow:hidden !important;clip:rect(0, 0, 0, 0) !important;white-space:nowrap !important;border:0 !important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentColor;opacity:.25}.align-baseline{vertical-align:baseline !important}.align-top{vertical-align:top !important}.align-middle{vertical-align:middle !important}.align-bottom{vertical-align:bottom !important}.align-text-bottom{vertical-align:text-bottom !important}.align-text-top{vertical-align:text-top !important}.float-start{float:left !important}.float-end{float:right !important}.float-none{float:none !important}.opacity-0{opacity:0 !important}.opacity-25{opacity:.25 !important}.opacity-50{opacity:.5 !important}.opacity-75{opacity:.75 !important}.opacity-100{opacity:1 !important}.overflow-auto{overflow:auto !important}.overflow-hidden{overflow:hidden !important}.overflow-visible{overflow:visible !important}.overflow-scroll{overflow:scroll !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-block{display:block !important}.d-grid{display:grid !important}.d-table{display:table !important}.d-table-row{display:table-row !important}.d-table-cell{display:table-cell !important}.d-flex{display:flex !important}.d-inline-flex{display:inline-flex !important}.d-none{display:none !important}.shadow{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important}.shadow-sm{box-shadow:0 0.125rem 0.25rem rgba(0,0,0,0.075) !important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,0.175) !important}.shadow-none{box-shadow:none !important}.position-static{position:static !important}.position-relative{position:relative !important}.position-absolute{position:absolute !important}.position-fixed{position:fixed !important}.position-sticky{position:sticky !important}.top-0{top:0 !important}.top-50{top:50% !important}.top-100{top:100% !important}.bottom-0{bottom:0 !important}.bottom-50{bottom:50% !important}.bottom-100{bottom:100% !important}.start-0{left:0 !important}.start-50{left:50% !important}.start-100{left:100% !important}.end-0{right:0 !important}.end-50{right:50% !important}.end-100{right:100% !important}.translate-middle{transform:translate(-50%, -50%) !important}.translate-middle-x{transform:translateX(-50%) !important}.translate-middle-y{transform:translateY(-50%) !important}.border{border:1px solid #dee2e6 !important}.border-0{border:0 !important}.border-top{border-top:1px solid #dee2e6 !important}.border-top-0{border-top:0 !important}.border-end{border-right:1px solid #dee2e6 !important}.border-end-0{border-right:0 !important}.border-bottom{border-bottom:1px solid #dee2e6 !important}.border-bottom-0{border-bottom:0 !important}.border-start{border-left:1px solid #dee2e6 !important}.border-start-0{border-left:0 !important}.border-primary{border-color:#008cba !important}.border-secondary{border-color:#eee !important}.border-success{border-color:#43ac6a !important}.border-info{border-color:#5bc0de !important}.border-warning{border-color:#e99002 !important}.border-danger{border-color:#f04124 !important}.border-light{border-color:#eee !important}.border-dark{border-color:#222 !important}.border-white{border-color:#fff !important}.border-1{border-width:1px !important}.border-2{border-width:2px !important}.border-3{border-width:3px !important}.border-4{border-width:4px !important}.border-5{border-width:5px !important}.w-25{width:25% !important}.w-50{width:50% !important}.w-75{width:75% !important}.w-100{width:100% !important}.w-auto{width:auto !important}.mw-100{max-width:100% !important}.vw-100{width:100vw !important}.min-vw-100{min-width:100vw !important}.h-25{height:25% !important}.h-50{height:50% !important}.h-75{height:75% !important}.h-100{height:100% !important}.h-auto{height:auto !important}.mh-100{max-height:100% !important}.vh-100{height:100vh !important}.min-vh-100{min-height:100vh !important}.flex-fill{flex:1 1 auto !important}.flex-row{flex-direction:row !important}.flex-column{flex-direction:column !important}.flex-row-reverse{flex-direction:row-reverse !important}.flex-column-reverse{flex-direction:column-reverse !important}.flex-grow-0{flex-grow:0 !important}.flex-grow-1{flex-grow:1 !important}.flex-shrink-0{flex-shrink:0 !important}.flex-shrink-1{flex-shrink:1 !important}.flex-wrap{flex-wrap:wrap !important}.flex-nowrap{flex-wrap:nowrap !important}.flex-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-0{gap:0 !important}.gap-1{gap:.25rem !important}.gap-2{gap:.5rem !important}.gap-3{gap:1rem !important}.gap-4{gap:1.5rem !important}.gap-5{gap:3rem !important}.justify-content-start{justify-content:flex-start !important}.justify-content-end{justify-content:flex-end !important}.justify-content-center{justify-content:center !important}.justify-content-between{justify-content:space-between !important}.justify-content-around{justify-content:space-around !important}.justify-content-evenly{justify-content:space-evenly !important}.align-items-start{align-items:flex-start !important}.align-items-end{align-items:flex-end !important}.align-items-center{align-items:center !important}.align-items-baseline{align-items:baseline !important}.align-items-stretch{align-items:stretch !important}.align-content-start{align-content:flex-start !important}.align-content-end{align-content:flex-end !important}.align-content-center{align-content:center !important}.align-content-between{align-content:space-between !important}.align-content-around{align-content:space-around !important}.align-content-stretch{align-content:stretch !important}.align-self-auto{align-self:auto !important}.align-self-start{align-self:flex-start !important}.align-self-end{align-self:flex-end !important}.align-self-center{align-self:center !important}.align-self-baseline{align-self:baseline !important}.align-self-stretch{align-self:stretch !important}.order-first{order:-1 !important}.order-0{order:0 !important}.order-1{order:1 !important}.order-2{order:2 !important}.order-3{order:3 !important}.order-4{order:4 !important}.order-5{order:5 !important}.order-last{order:6 !important}.m-0{margin:0 !important}.m-1{margin:.25rem !important}.m-2{margin:.5rem !important}.m-3{margin:1rem !important}.m-4{margin:1.5rem !important}.m-5{margin:3rem !important}.m-auto{margin:auto !important}.mx-0{margin-right:0 !important;margin-left:0 !important}.mx-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-3{margin-right:1rem !important;margin-left:1rem !important}.mx-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-5{margin-right:3rem !important;margin-left:3rem !important}.mx-auto{margin-right:auto !important;margin-left:auto !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-0{margin-top:0 !important}.mt-1{margin-top:.25rem !important}.mt-2{margin-top:.5rem !important}.mt-3{margin-top:1rem !important}.mt-4{margin-top:1.5rem !important}.mt-5{margin-top:3rem !important}.mt-auto{margin-top:auto !important}.me-0{margin-right:0 !important}.me-1{margin-right:.25rem !important}.me-2{margin-right:.5rem !important}.me-3{margin-right:1rem !important}.me-4{margin-right:1.5rem !important}.me-5{margin-right:3rem !important}.me-auto{margin-right:auto !important}.mb-0{margin-bottom:0 !important}.mb-1{margin-bottom:.25rem !important}.mb-2{margin-bottom:.5rem !important}.mb-3{margin-bottom:1rem !important}.mb-4{margin-bottom:1.5rem !important}.mb-5{margin-bottom:3rem !important}.mb-auto{margin-bottom:auto !important}.ms-0{margin-left:0 !important}.ms-1{margin-left:.25rem !important}.ms-2{margin-left:.5rem !important}.ms-3{margin-left:1rem !important}.ms-4{margin-left:1.5rem !important}.ms-5{margin-left:3rem !important}.ms-auto{margin-left:auto !important}.p-0{padding:0 !important}.p-1{padding:.25rem !important}.p-2{padding:.5rem !important}.p-3{padding:1rem !important}.p-4{padding:1.5rem !important}.p-5{padding:3rem !important}.px-0{padding-right:0 !important;padding-left:0 !important}.px-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-3{padding-right:1rem !important;padding-left:1rem !important}.px-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-5{padding-right:3rem !important;padding-left:3rem !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-0{padding-top:0 !important}.pt-1{padding-top:.25rem !important}.pt-2{padding-top:.5rem !important}.pt-3{padding-top:1rem !important}.pt-4{padding-top:1.5rem !important}.pt-5{padding-top:3rem !important}.pe-0{padding-right:0 !important}.pe-1{padding-right:.25rem !important}.pe-2{padding-right:.5rem !important}.pe-3{padding-right:1rem !important}.pe-4{padding-right:1.5rem !important}.pe-5{padding-right:3rem !important}.pb-0{padding-bottom:0 !important}.pb-1{padding-bottom:.25rem !important}.pb-2{padding-bottom:.5rem !important}.pb-3{padding-bottom:1rem !important}.pb-4{padding-bottom:1.5rem !important}.pb-5{padding-bottom:3rem !important}.ps-0{padding-left:0 !important}.ps-1{padding-left:.25rem !important}.ps-2{padding-left:.5rem !important}.ps-3{padding-left:1rem !important}.ps-4{padding-left:1.5rem !important}.ps-5{padding-left:3rem !important}.font-monospace{font-family:var(--bs-font-monospace) !important}.fs-1{font-size:calc(1.375rem + 1.5vw) !important}.fs-2{font-size:calc(1.325rem + .9vw) !important}.fs-3{font-size:calc(1.3rem + .6vw) !important}.fs-4{font-size:calc(1.275rem + .3vw) !important}.fs-5{font-size:1.25rem !important}.fs-6{font-size:1rem !important}.fst-italic{font-style:italic !important}.fst-normal{font-style:normal !important}.fw-light{font-weight:300 !important}.fw-lighter{font-weight:lighter !important}.fw-normal{font-weight:400 !important}.fw-bold{font-weight:700 !important}.fw-bolder{font-weight:bolder !important}.lh-1{line-height:1 !important}.lh-sm{line-height:1.25 !important}.lh-base{line-height:1.5 !important}.lh-lg{line-height:2 !important}.text-start{text-align:left !important}.text-end{text-align:right !important}.text-center{text-align:center !important}.text-decoration-none{text-decoration:none !important}.text-decoration-underline{text-decoration:underline !important}.text-decoration-line-through{text-decoration:line-through !important}.text-lowercase{text-transform:lowercase !important}.text-uppercase{text-transform:uppercase !important}.text-capitalize{text-transform:capitalize !important}.text-wrap{white-space:normal !important}.text-nowrap{white-space:nowrap !important}.text-break{word-wrap:break-word !important;word-break:break-word !important}.text-primary{--bs-text-opacity: 1;color:rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important}.text-secondary{--bs-text-opacity: 1;color:rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important}.text-success{--bs-text-opacity: 1;color:rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important}.text-info{--bs-text-opacity: 1;color:rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important}.text-warning{--bs-text-opacity: 1;color:rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important}.text-danger{--bs-text-opacity: 1;color:rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important}.text-light{--bs-text-opacity: 1;color:rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important}.text-dark{--bs-text-opacity: 1;color:rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important}.text-black{--bs-text-opacity: 1;color:rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important}.text-white{--bs-text-opacity: 1;color:rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important}.text-body{--bs-text-opacity: 1;color:rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important}.text-muted{--bs-text-opacity: 1;color:#888 !important}.text-black-50{--bs-text-opacity: 1;color:rgba(0,0,0,0.5) !important}.text-white-50{--bs-text-opacity: 1;color:rgba(255,255,255,0.5) !important}.text-reset{--bs-text-opacity: 1;color:inherit !important}.text-opacity-25{--bs-text-opacity: .25}.text-opacity-50{--bs-text-opacity: .5}.text-opacity-75{--bs-text-opacity: .75}.text-opacity-100{--bs-text-opacity: 1}.bg-primary{--bs-bg-opacity: 1;background-color:rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important}.bg-secondary{--bs-bg-opacity: 1;background-color:rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important}.bg-success{--bs-bg-opacity: 1;background-color:rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important}.bg-info{--bs-bg-opacity: 1;background-color:rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important}.bg-warning{--bs-bg-opacity: 1;background-color:rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important}.bg-danger{--bs-bg-opacity: 1;background-color:rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important}.bg-light{--bs-bg-opacity: 1;background-color:rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important}.bg-dark{--bs-bg-opacity: 1;background-color:rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important}.bg-black{--bs-bg-opacity: 1;background-color:rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important}.bg-white{--bs-bg-opacity: 1;background-color:rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important}.bg-body{--bs-bg-opacity: 1;background-color:rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important}.bg-transparent{--bs-bg-opacity: 1;background-color:rgba(0,0,0,0) !important}.bg-opacity-10{--bs-bg-opacity: .1}.bg-opacity-25{--bs-bg-opacity: .25}.bg-opacity-50{--bs-bg-opacity: .5}.bg-opacity-75{--bs-bg-opacity: .75}.bg-opacity-100{--bs-bg-opacity: 1}.bg-gradient{background-image:var(--bs-gradient) !important}.user-select-all{user-select:all !important}.user-select-auto{user-select:auto !important}.user-select-none{user-select:none !important}.pe-none{pointer-events:none !important}.pe-auto{pointer-events:auto !important}.rounded{border-radius:0 !important}.rounded-0{border-radius:0 !important}.rounded-1{border-radius:0 !important}.rounded-2{border-radius:0 !important}.rounded-3{border-radius:0 !important}.rounded-circle{border-radius:50% !important}.rounded-pill{border-radius:50rem !important}.rounded-top{border-top-left-radius:0 !important;border-top-right-radius:0 !important}.rounded-end{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.rounded-bottom{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.rounded-start{border-bottom-left-radius:0 !important;border-top-left-radius:0 !important}.visible{visibility:visible !important}.invisible{visibility:hidden !important}@media (min-width: 576px){.float-sm-start{float:left !important}.float-sm-end{float:right !important}.float-sm-none{float:none !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-grid{display:grid !important}.d-sm-table{display:table !important}.d-sm-table-row{display:table-row !important}.d-sm-table-cell{display:table-cell !important}.d-sm-flex{display:flex !important}.d-sm-inline-flex{display:inline-flex !important}.d-sm-none{display:none !important}.flex-sm-fill{flex:1 1 auto !important}.flex-sm-row{flex-direction:row !important}.flex-sm-column{flex-direction:column !important}.flex-sm-row-reverse{flex-direction:row-reverse !important}.flex-sm-column-reverse{flex-direction:column-reverse !important}.flex-sm-grow-0{flex-grow:0 !important}.flex-sm-grow-1{flex-grow:1 !important}.flex-sm-shrink-0{flex-shrink:0 !important}.flex-sm-shrink-1{flex-shrink:1 !important}.flex-sm-wrap{flex-wrap:wrap !important}.flex-sm-nowrap{flex-wrap:nowrap !important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-sm-0{gap:0 !important}.gap-sm-1{gap:.25rem !important}.gap-sm-2{gap:.5rem !important}.gap-sm-3{gap:1rem !important}.gap-sm-4{gap:1.5rem !important}.gap-sm-5{gap:3rem !important}.justify-content-sm-start{justify-content:flex-start !important}.justify-content-sm-end{justify-content:flex-end !important}.justify-content-sm-center{justify-content:center !important}.justify-content-sm-between{justify-content:space-between !important}.justify-content-sm-around{justify-content:space-around !important}.justify-content-sm-evenly{justify-content:space-evenly !important}.align-items-sm-start{align-items:flex-start !important}.align-items-sm-end{align-items:flex-end !important}.align-items-sm-center{align-items:center !important}.align-items-sm-baseline{align-items:baseline !important}.align-items-sm-stretch{align-items:stretch !important}.align-content-sm-start{align-content:flex-start !important}.align-content-sm-end{align-content:flex-end !important}.align-content-sm-center{align-content:center !important}.align-content-sm-between{align-content:space-between !important}.align-content-sm-around{align-content:space-around !important}.align-content-sm-stretch{align-content:stretch !important}.align-self-sm-auto{align-self:auto !important}.align-self-sm-start{align-self:flex-start !important}.align-self-sm-end{align-self:flex-end !important}.align-self-sm-center{align-self:center !important}.align-self-sm-baseline{align-self:baseline !important}.align-self-sm-stretch{align-self:stretch !important}.order-sm-first{order:-1 !important}.order-sm-0{order:0 !important}.order-sm-1{order:1 !important}.order-sm-2{order:2 !important}.order-sm-3{order:3 !important}.order-sm-4{order:4 !important}.order-sm-5{order:5 !important}.order-sm-last{order:6 !important}.m-sm-0{margin:0 !important}.m-sm-1{margin:.25rem !important}.m-sm-2{margin:.5rem !important}.m-sm-3{margin:1rem !important}.m-sm-4{margin:1.5rem !important}.m-sm-5{margin:3rem !important}.m-sm-auto{margin:auto !important}.mx-sm-0{margin-right:0 !important;margin-left:0 !important}.mx-sm-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-sm-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-sm-3{margin-right:1rem !important;margin-left:1rem !important}.mx-sm-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-sm-5{margin-right:3rem !important;margin-left:3rem !important}.mx-sm-auto{margin-right:auto !important;margin-left:auto !important}.my-sm-0{margin-top:0 !important;margin-bottom:0 !important}.my-sm-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-sm-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-sm-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-sm-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-sm-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-sm-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-sm-0{margin-top:0 !important}.mt-sm-1{margin-top:.25rem !important}.mt-sm-2{margin-top:.5rem !important}.mt-sm-3{margin-top:1rem !important}.mt-sm-4{margin-top:1.5rem !important}.mt-sm-5{margin-top:3rem !important}.mt-sm-auto{margin-top:auto !important}.me-sm-0{margin-right:0 !important}.me-sm-1{margin-right:.25rem !important}.me-sm-2{margin-right:.5rem !important}.me-sm-3{margin-right:1rem !important}.me-sm-4{margin-right:1.5rem !important}.me-sm-5{margin-right:3rem !important}.me-sm-auto{margin-right:auto !important}.mb-sm-0{margin-bottom:0 !important}.mb-sm-1{margin-bottom:.25rem !important}.mb-sm-2{margin-bottom:.5rem !important}.mb-sm-3{margin-bottom:1rem !important}.mb-sm-4{margin-bottom:1.5rem !important}.mb-sm-5{margin-bottom:3rem !important}.mb-sm-auto{margin-bottom:auto !important}.ms-sm-0{margin-left:0 !important}.ms-sm-1{margin-left:.25rem !important}.ms-sm-2{margin-left:.5rem !important}.ms-sm-3{margin-left:1rem !important}.ms-sm-4{margin-left:1.5rem !important}.ms-sm-5{margin-left:3rem !important}.ms-sm-auto{margin-left:auto !important}.p-sm-0{padding:0 !important}.p-sm-1{padding:.25rem !important}.p-sm-2{padding:.5rem !important}.p-sm-3{padding:1rem !important}.p-sm-4{padding:1.5rem !important}.p-sm-5{padding:3rem !important}.px-sm-0{padding-right:0 !important;padding-left:0 !important}.px-sm-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-sm-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-sm-3{padding-right:1rem !important;padding-left:1rem !important}.px-sm-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-sm-5{padding-right:3rem !important;padding-left:3rem !important}.py-sm-0{padding-top:0 !important;padding-bottom:0 !important}.py-sm-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-sm-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-sm-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-sm-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-sm-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-sm-0{padding-top:0 !important}.pt-sm-1{padding-top:.25rem !important}.pt-sm-2{padding-top:.5rem !important}.pt-sm-3{padding-top:1rem !important}.pt-sm-4{padding-top:1.5rem !important}.pt-sm-5{padding-top:3rem !important}.pe-sm-0{padding-right:0 !important}.pe-sm-1{padding-right:.25rem !important}.pe-sm-2{padding-right:.5rem !important}.pe-sm-3{padding-right:1rem !important}.pe-sm-4{padding-right:1.5rem !important}.pe-sm-5{padding-right:3rem !important}.pb-sm-0{padding-bottom:0 !important}.pb-sm-1{padding-bottom:.25rem !important}.pb-sm-2{padding-bottom:.5rem !important}.pb-sm-3{padding-bottom:1rem !important}.pb-sm-4{padding-bottom:1.5rem !important}.pb-sm-5{padding-bottom:3rem !important}.ps-sm-0{padding-left:0 !important}.ps-sm-1{padding-left:.25rem !important}.ps-sm-2{padding-left:.5rem !important}.ps-sm-3{padding-left:1rem !important}.ps-sm-4{padding-left:1.5rem !important}.ps-sm-5{padding-left:3rem !important}.text-sm-start{text-align:left !important}.text-sm-end{text-align:right !important}.text-sm-center{text-align:center !important}}@media (min-width: 768px){.float-md-start{float:left !important}.float-md-end{float:right !important}.float-md-none{float:none !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-grid{display:grid !important}.d-md-table{display:table !important}.d-md-table-row{display:table-row !important}.d-md-table-cell{display:table-cell !important}.d-md-flex{display:flex !important}.d-md-inline-flex{display:inline-flex !important}.d-md-none{display:none !important}.flex-md-fill{flex:1 1 auto !important}.flex-md-row{flex-direction:row !important}.flex-md-column{flex-direction:column !important}.flex-md-row-reverse{flex-direction:row-reverse !important}.flex-md-column-reverse{flex-direction:column-reverse !important}.flex-md-grow-0{flex-grow:0 !important}.flex-md-grow-1{flex-grow:1 !important}.flex-md-shrink-0{flex-shrink:0 !important}.flex-md-shrink-1{flex-shrink:1 !important}.flex-md-wrap{flex-wrap:wrap !important}.flex-md-nowrap{flex-wrap:nowrap !important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-md-0{gap:0 !important}.gap-md-1{gap:.25rem !important}.gap-md-2{gap:.5rem !important}.gap-md-3{gap:1rem !important}.gap-md-4{gap:1.5rem !important}.gap-md-5{gap:3rem !important}.justify-content-md-start{justify-content:flex-start !important}.justify-content-md-end{justify-content:flex-end !important}.justify-content-md-center{justify-content:center !important}.justify-content-md-between{justify-content:space-between !important}.justify-content-md-around{justify-content:space-around !important}.justify-content-md-evenly{justify-content:space-evenly !important}.align-items-md-start{align-items:flex-start !important}.align-items-md-end{align-items:flex-end !important}.align-items-md-center{align-items:center !important}.align-items-md-baseline{align-items:baseline !important}.align-items-md-stretch{align-items:stretch !important}.align-content-md-start{align-content:flex-start !important}.align-content-md-end{align-content:flex-end !important}.align-content-md-center{align-content:center !important}.align-content-md-between{align-content:space-between !important}.align-content-md-around{align-content:space-around !important}.align-content-md-stretch{align-content:stretch !important}.align-self-md-auto{align-self:auto !important}.align-self-md-start{align-self:flex-start !important}.align-self-md-end{align-self:flex-end !important}.align-self-md-center{align-self:center !important}.align-self-md-baseline{align-self:baseline !important}.align-self-md-stretch{align-self:stretch !important}.order-md-first{order:-1 !important}.order-md-0{order:0 !important}.order-md-1{order:1 !important}.order-md-2{order:2 !important}.order-md-3{order:3 !important}.order-md-4{order:4 !important}.order-md-5{order:5 !important}.order-md-last{order:6 !important}.m-md-0{margin:0 !important}.m-md-1{margin:.25rem !important}.m-md-2{margin:.5rem !important}.m-md-3{margin:1rem !important}.m-md-4{margin:1.5rem !important}.m-md-5{margin:3rem !important}.m-md-auto{margin:auto !important}.mx-md-0{margin-right:0 !important;margin-left:0 !important}.mx-md-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-md-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-md-3{margin-right:1rem !important;margin-left:1rem !important}.mx-md-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-md-5{margin-right:3rem !important;margin-left:3rem !important}.mx-md-auto{margin-right:auto !important;margin-left:auto !important}.my-md-0{margin-top:0 !important;margin-bottom:0 !important}.my-md-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-md-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-md-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-md-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-md-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-md-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-md-0{margin-top:0 !important}.mt-md-1{margin-top:.25rem !important}.mt-md-2{margin-top:.5rem !important}.mt-md-3{margin-top:1rem !important}.mt-md-4{margin-top:1.5rem !important}.mt-md-5{margin-top:3rem !important}.mt-md-auto{margin-top:auto !important}.me-md-0{margin-right:0 !important}.me-md-1{margin-right:.25rem !important}.me-md-2{margin-right:.5rem !important}.me-md-3{margin-right:1rem !important}.me-md-4{margin-right:1.5rem !important}.me-md-5{margin-right:3rem !important}.me-md-auto{margin-right:auto !important}.mb-md-0{margin-bottom:0 !important}.mb-md-1{margin-bottom:.25rem !important}.mb-md-2{margin-bottom:.5rem !important}.mb-md-3{margin-bottom:1rem !important}.mb-md-4{margin-bottom:1.5rem !important}.mb-md-5{margin-bottom:3rem !important}.mb-md-auto{margin-bottom:auto !important}.ms-md-0{margin-left:0 !important}.ms-md-1{margin-left:.25rem !important}.ms-md-2{margin-left:.5rem !important}.ms-md-3{margin-left:1rem !important}.ms-md-4{margin-left:1.5rem !important}.ms-md-5{margin-left:3rem !important}.ms-md-auto{margin-left:auto !important}.p-md-0{padding:0 !important}.p-md-1{padding:.25rem !important}.p-md-2{padding:.5rem !important}.p-md-3{padding:1rem !important}.p-md-4{padding:1.5rem !important}.p-md-5{padding:3rem !important}.px-md-0{padding-right:0 !important;padding-left:0 !important}.px-md-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-md-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-md-3{padding-right:1rem !important;padding-left:1rem !important}.px-md-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-md-5{padding-right:3rem !important;padding-left:3rem !important}.py-md-0{padding-top:0 !important;padding-bottom:0 !important}.py-md-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-md-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-md-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-md-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-md-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-md-0{padding-top:0 !important}.pt-md-1{padding-top:.25rem !important}.pt-md-2{padding-top:.5rem !important}.pt-md-3{padding-top:1rem !important}.pt-md-4{padding-top:1.5rem !important}.pt-md-5{padding-top:3rem !important}.pe-md-0{padding-right:0 !important}.pe-md-1{padding-right:.25rem !important}.pe-md-2{padding-right:.5rem !important}.pe-md-3{padding-right:1rem !important}.pe-md-4{padding-right:1.5rem !important}.pe-md-5{padding-right:3rem !important}.pb-md-0{padding-bottom:0 !important}.pb-md-1{padding-bottom:.25rem !important}.pb-md-2{padding-bottom:.5rem !important}.pb-md-3{padding-bottom:1rem !important}.pb-md-4{padding-bottom:1.5rem !important}.pb-md-5{padding-bottom:3rem !important}.ps-md-0{padding-left:0 !important}.ps-md-1{padding-left:.25rem !important}.ps-md-2{padding-left:.5rem !important}.ps-md-3{padding-left:1rem !important}.ps-md-4{padding-left:1.5rem !important}.ps-md-5{padding-left:3rem !important}.text-md-start{text-align:left !important}.text-md-end{text-align:right !important}.text-md-center{text-align:center !important}}@media (min-width: 992px){.float-lg-start{float:left !important}.float-lg-end{float:right !important}.float-lg-none{float:none !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-grid{display:grid !important}.d-lg-table{display:table !important}.d-lg-table-row{display:table-row !important}.d-lg-table-cell{display:table-cell !important}.d-lg-flex{display:flex !important}.d-lg-inline-flex{display:inline-flex !important}.d-lg-none{display:none !important}.flex-lg-fill{flex:1 1 auto !important}.flex-lg-row{flex-direction:row !important}.flex-lg-column{flex-direction:column !important}.flex-lg-row-reverse{flex-direction:row-reverse !important}.flex-lg-column-reverse{flex-direction:column-reverse !important}.flex-lg-grow-0{flex-grow:0 !important}.flex-lg-grow-1{flex-grow:1 !important}.flex-lg-shrink-0{flex-shrink:0 !important}.flex-lg-shrink-1{flex-shrink:1 !important}.flex-lg-wrap{flex-wrap:wrap !important}.flex-lg-nowrap{flex-wrap:nowrap !important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-lg-0{gap:0 !important}.gap-lg-1{gap:.25rem !important}.gap-lg-2{gap:.5rem !important}.gap-lg-3{gap:1rem !important}.gap-lg-4{gap:1.5rem !important}.gap-lg-5{gap:3rem !important}.justify-content-lg-start{justify-content:flex-start !important}.justify-content-lg-end{justify-content:flex-end !important}.justify-content-lg-center{justify-content:center !important}.justify-content-lg-between{justify-content:space-between !important}.justify-content-lg-around{justify-content:space-around !important}.justify-content-lg-evenly{justify-content:space-evenly !important}.align-items-lg-start{align-items:flex-start !important}.align-items-lg-end{align-items:flex-end !important}.align-items-lg-center{align-items:center !important}.align-items-lg-baseline{align-items:baseline !important}.align-items-lg-stretch{align-items:stretch !important}.align-content-lg-start{align-content:flex-start !important}.align-content-lg-end{align-content:flex-end !important}.align-content-lg-center{align-content:center !important}.align-content-lg-between{align-content:space-between !important}.align-content-lg-around{align-content:space-around !important}.align-content-lg-stretch{align-content:stretch !important}.align-self-lg-auto{align-self:auto !important}.align-self-lg-start{align-self:flex-start !important}.align-self-lg-end{align-self:flex-end !important}.align-self-lg-center{align-self:center !important}.align-self-lg-baseline{align-self:baseline !important}.align-self-lg-stretch{align-self:stretch !important}.order-lg-first{order:-1 !important}.order-lg-0{order:0 !important}.order-lg-1{order:1 !important}.order-lg-2{order:2 !important}.order-lg-3{order:3 !important}.order-lg-4{order:4 !important}.order-lg-5{order:5 !important}.order-lg-last{order:6 !important}.m-lg-0{margin:0 !important}.m-lg-1{margin:.25rem !important}.m-lg-2{margin:.5rem !important}.m-lg-3{margin:1rem !important}.m-lg-4{margin:1.5rem !important}.m-lg-5{margin:3rem !important}.m-lg-auto{margin:auto !important}.mx-lg-0{margin-right:0 !important;margin-left:0 !important}.mx-lg-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-lg-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-lg-3{margin-right:1rem !important;margin-left:1rem !important}.mx-lg-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-lg-5{margin-right:3rem !important;margin-left:3rem !important}.mx-lg-auto{margin-right:auto !important;margin-left:auto !important}.my-lg-0{margin-top:0 !important;margin-bottom:0 !important}.my-lg-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-lg-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-lg-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-lg-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-lg-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-lg-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-lg-0{margin-top:0 !important}.mt-lg-1{margin-top:.25rem !important}.mt-lg-2{margin-top:.5rem !important}.mt-lg-3{margin-top:1rem !important}.mt-lg-4{margin-top:1.5rem !important}.mt-lg-5{margin-top:3rem !important}.mt-lg-auto{margin-top:auto !important}.me-lg-0{margin-right:0 !important}.me-lg-1{margin-right:.25rem !important}.me-lg-2{margin-right:.5rem !important}.me-lg-3{margin-right:1rem !important}.me-lg-4{margin-right:1.5rem !important}.me-lg-5{margin-right:3rem !important}.me-lg-auto{margin-right:auto !important}.mb-lg-0{margin-bottom:0 !important}.mb-lg-1{margin-bottom:.25rem !important}.mb-lg-2{margin-bottom:.5rem !important}.mb-lg-3{margin-bottom:1rem !important}.mb-lg-4{margin-bottom:1.5rem !important}.mb-lg-5{margin-bottom:3rem !important}.mb-lg-auto{margin-bottom:auto !important}.ms-lg-0{margin-left:0 !important}.ms-lg-1{margin-left:.25rem !important}.ms-lg-2{margin-left:.5rem !important}.ms-lg-3{margin-left:1rem !important}.ms-lg-4{margin-left:1.5rem !important}.ms-lg-5{margin-left:3rem !important}.ms-lg-auto{margin-left:auto !important}.p-lg-0{padding:0 !important}.p-lg-1{padding:.25rem !important}.p-lg-2{padding:.5rem !important}.p-lg-3{padding:1rem !important}.p-lg-4{padding:1.5rem !important}.p-lg-5{padding:3rem !important}.px-lg-0{padding-right:0 !important;padding-left:0 !important}.px-lg-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-lg-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-lg-3{padding-right:1rem !important;padding-left:1rem !important}.px-lg-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-lg-5{padding-right:3rem !important;padding-left:3rem !important}.py-lg-0{padding-top:0 !important;padding-bottom:0 !important}.py-lg-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-lg-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-lg-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-lg-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-lg-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-lg-0{padding-top:0 !important}.pt-lg-1{padding-top:.25rem !important}.pt-lg-2{padding-top:.5rem !important}.pt-lg-3{padding-top:1rem !important}.pt-lg-4{padding-top:1.5rem !important}.pt-lg-5{padding-top:3rem !important}.pe-lg-0{padding-right:0 !important}.pe-lg-1{padding-right:.25rem !important}.pe-lg-2{padding-right:.5rem !important}.pe-lg-3{padding-right:1rem !important}.pe-lg-4{padding-right:1.5rem !important}.pe-lg-5{padding-right:3rem !important}.pb-lg-0{padding-bottom:0 !important}.pb-lg-1{padding-bottom:.25rem !important}.pb-lg-2{padding-bottom:.5rem !important}.pb-lg-3{padding-bottom:1rem !important}.pb-lg-4{padding-bottom:1.5rem !important}.pb-lg-5{padding-bottom:3rem !important}.ps-lg-0{padding-left:0 !important}.ps-lg-1{padding-left:.25rem !important}.ps-lg-2{padding-left:.5rem !important}.ps-lg-3{padding-left:1rem !important}.ps-lg-4{padding-left:1.5rem !important}.ps-lg-5{padding-left:3rem !important}.text-lg-start{text-align:left !important}.text-lg-end{text-align:right !important}.text-lg-center{text-align:center !important}}@media (min-width: 1200px){.float-xl-start{float:left !important}.float-xl-end{float:right !important}.float-xl-none{float:none !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-grid{display:grid !important}.d-xl-table{display:table !important}.d-xl-table-row{display:table-row !important}.d-xl-table-cell{display:table-cell !important}.d-xl-flex{display:flex !important}.d-xl-inline-flex{display:inline-flex !important}.d-xl-none{display:none !important}.flex-xl-fill{flex:1 1 auto !important}.flex-xl-row{flex-direction:row !important}.flex-xl-column{flex-direction:column !important}.flex-xl-row-reverse{flex-direction:row-reverse !important}.flex-xl-column-reverse{flex-direction:column-reverse !important}.flex-xl-grow-0{flex-grow:0 !important}.flex-xl-grow-1{flex-grow:1 !important}.flex-xl-shrink-0{flex-shrink:0 !important}.flex-xl-shrink-1{flex-shrink:1 !important}.flex-xl-wrap{flex-wrap:wrap !important}.flex-xl-nowrap{flex-wrap:nowrap !important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-xl-0{gap:0 !important}.gap-xl-1{gap:.25rem !important}.gap-xl-2{gap:.5rem !important}.gap-xl-3{gap:1rem !important}.gap-xl-4{gap:1.5rem !important}.gap-xl-5{gap:3rem !important}.justify-content-xl-start{justify-content:flex-start !important}.justify-content-xl-end{justify-content:flex-end !important}.justify-content-xl-center{justify-content:center !important}.justify-content-xl-between{justify-content:space-between !important}.justify-content-xl-around{justify-content:space-around !important}.justify-content-xl-evenly{justify-content:space-evenly !important}.align-items-xl-start{align-items:flex-start !important}.align-items-xl-end{align-items:flex-end !important}.align-items-xl-center{align-items:center !important}.align-items-xl-baseline{align-items:baseline !important}.align-items-xl-stretch{align-items:stretch !important}.align-content-xl-start{align-content:flex-start !important}.align-content-xl-end{align-content:flex-end !important}.align-content-xl-center{align-content:center !important}.align-content-xl-between{align-content:space-between !important}.align-content-xl-around{align-content:space-around !important}.align-content-xl-stretch{align-content:stretch !important}.align-self-xl-auto{align-self:auto !important}.align-self-xl-start{align-self:flex-start !important}.align-self-xl-end{align-self:flex-end !important}.align-self-xl-center{align-self:center !important}.align-self-xl-baseline{align-self:baseline !important}.align-self-xl-stretch{align-self:stretch !important}.order-xl-first{order:-1 !important}.order-xl-0{order:0 !important}.order-xl-1{order:1 !important}.order-xl-2{order:2 !important}.order-xl-3{order:3 !important}.order-xl-4{order:4 !important}.order-xl-5{order:5 !important}.order-xl-last{order:6 !important}.m-xl-0{margin:0 !important}.m-xl-1{margin:.25rem !important}.m-xl-2{margin:.5rem !important}.m-xl-3{margin:1rem !important}.m-xl-4{margin:1.5rem !important}.m-xl-5{margin:3rem !important}.m-xl-auto{margin:auto !important}.mx-xl-0{margin-right:0 !important;margin-left:0 !important}.mx-xl-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-xl-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-xl-3{margin-right:1rem !important;margin-left:1rem !important}.mx-xl-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-xl-5{margin-right:3rem !important;margin-left:3rem !important}.mx-xl-auto{margin-right:auto !important;margin-left:auto !important}.my-xl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xl-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xl-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xl-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-xl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xl-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-xl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xl-0{margin-top:0 !important}.mt-xl-1{margin-top:.25rem !important}.mt-xl-2{margin-top:.5rem !important}.mt-xl-3{margin-top:1rem !important}.mt-xl-4{margin-top:1.5rem !important}.mt-xl-5{margin-top:3rem !important}.mt-xl-auto{margin-top:auto !important}.me-xl-0{margin-right:0 !important}.me-xl-1{margin-right:.25rem !important}.me-xl-2{margin-right:.5rem !important}.me-xl-3{margin-right:1rem !important}.me-xl-4{margin-right:1.5rem !important}.me-xl-5{margin-right:3rem !important}.me-xl-auto{margin-right:auto !important}.mb-xl-0{margin-bottom:0 !important}.mb-xl-1{margin-bottom:.25rem !important}.mb-xl-2{margin-bottom:.5rem !important}.mb-xl-3{margin-bottom:1rem !important}.mb-xl-4{margin-bottom:1.5rem !important}.mb-xl-5{margin-bottom:3rem !important}.mb-xl-auto{margin-bottom:auto !important}.ms-xl-0{margin-left:0 !important}.ms-xl-1{margin-left:.25rem !important}.ms-xl-2{margin-left:.5rem !important}.ms-xl-3{margin-left:1rem !important}.ms-xl-4{margin-left:1.5rem !important}.ms-xl-5{margin-left:3rem !important}.ms-xl-auto{margin-left:auto !important}.p-xl-0{padding:0 !important}.p-xl-1{padding:.25rem !important}.p-xl-2{padding:.5rem !important}.p-xl-3{padding:1rem !important}.p-xl-4{padding:1.5rem !important}.p-xl-5{padding:3rem !important}.px-xl-0{padding-right:0 !important;padding-left:0 !important}.px-xl-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-xl-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-xl-3{padding-right:1rem !important;padding-left:1rem !important}.px-xl-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-xl-5{padding-right:3rem !important;padding-left:3rem !important}.py-xl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xl-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xl-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xl-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-xl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xl-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xl-0{padding-top:0 !important}.pt-xl-1{padding-top:.25rem !important}.pt-xl-2{padding-top:.5rem !important}.pt-xl-3{padding-top:1rem !important}.pt-xl-4{padding-top:1.5rem !important}.pt-xl-5{padding-top:3rem !important}.pe-xl-0{padding-right:0 !important}.pe-xl-1{padding-right:.25rem !important}.pe-xl-2{padding-right:.5rem !important}.pe-xl-3{padding-right:1rem !important}.pe-xl-4{padding-right:1.5rem !important}.pe-xl-5{padding-right:3rem !important}.pb-xl-0{padding-bottom:0 !important}.pb-xl-1{padding-bottom:.25rem !important}.pb-xl-2{padding-bottom:.5rem !important}.pb-xl-3{padding-bottom:1rem !important}.pb-xl-4{padding-bottom:1.5rem !important}.pb-xl-5{padding-bottom:3rem !important}.ps-xl-0{padding-left:0 !important}.ps-xl-1{padding-left:.25rem !important}.ps-xl-2{padding-left:.5rem !important}.ps-xl-3{padding-left:1rem !important}.ps-xl-4{padding-left:1.5rem !important}.ps-xl-5{padding-left:3rem !important}.text-xl-start{text-align:left !important}.text-xl-end{text-align:right !important}.text-xl-center{text-align:center !important}}@media (min-width: 1400px){.float-xxl-start{float:left !important}.float-xxl-end{float:right !important}.float-xxl-none{float:none !important}.d-xxl-inline{display:inline !important}.d-xxl-inline-block{display:inline-block !important}.d-xxl-block{display:block !important}.d-xxl-grid{display:grid !important}.d-xxl-table{display:table !important}.d-xxl-table-row{display:table-row !important}.d-xxl-table-cell{display:table-cell !important}.d-xxl-flex{display:flex !important}.d-xxl-inline-flex{display:inline-flex !important}.d-xxl-none{display:none !important}.flex-xxl-fill{flex:1 1 auto !important}.flex-xxl-row{flex-direction:row !important}.flex-xxl-column{flex-direction:column !important}.flex-xxl-row-reverse{flex-direction:row-reverse !important}.flex-xxl-column-reverse{flex-direction:column-reverse !important}.flex-xxl-grow-0{flex-grow:0 !important}.flex-xxl-grow-1{flex-grow:1 !important}.flex-xxl-shrink-0{flex-shrink:0 !important}.flex-xxl-shrink-1{flex-shrink:1 !important}.flex-xxl-wrap{flex-wrap:wrap !important}.flex-xxl-nowrap{flex-wrap:nowrap !important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-xxl-0{gap:0 !important}.gap-xxl-1{gap:.25rem !important}.gap-xxl-2{gap:.5rem !important}.gap-xxl-3{gap:1rem !important}.gap-xxl-4{gap:1.5rem !important}.gap-xxl-5{gap:3rem !important}.justify-content-xxl-start{justify-content:flex-start !important}.justify-content-xxl-end{justify-content:flex-end !important}.justify-content-xxl-center{justify-content:center !important}.justify-content-xxl-between{justify-content:space-between !important}.justify-content-xxl-around{justify-content:space-around !important}.justify-content-xxl-evenly{justify-content:space-evenly !important}.align-items-xxl-start{align-items:flex-start !important}.align-items-xxl-end{align-items:flex-end !important}.align-items-xxl-center{align-items:center !important}.align-items-xxl-baseline{align-items:baseline !important}.align-items-xxl-stretch{align-items:stretch !important}.align-content-xxl-start{align-content:flex-start !important}.align-content-xxl-end{align-content:flex-end !important}.align-content-xxl-center{align-content:center !important}.align-content-xxl-between{align-content:space-between !important}.align-content-xxl-around{align-content:space-around !important}.align-content-xxl-stretch{align-content:stretch !important}.align-self-xxl-auto{align-self:auto !important}.align-self-xxl-start{align-self:flex-start !important}.align-self-xxl-end{align-self:flex-end !important}.align-self-xxl-center{align-self:center !important}.align-self-xxl-baseline{align-self:baseline !important}.align-self-xxl-stretch{align-self:stretch !important}.order-xxl-first{order:-1 !important}.order-xxl-0{order:0 !important}.order-xxl-1{order:1 !important}.order-xxl-2{order:2 !important}.order-xxl-3{order:3 !important}.order-xxl-4{order:4 !important}.order-xxl-5{order:5 !important}.order-xxl-last{order:6 !important}.m-xxl-0{margin:0 !important}.m-xxl-1{margin:.25rem !important}.m-xxl-2{margin:.5rem !important}.m-xxl-3{margin:1rem !important}.m-xxl-4{margin:1.5rem !important}.m-xxl-5{margin:3rem !important}.m-xxl-auto{margin:auto !important}.mx-xxl-0{margin-right:0 !important;margin-left:0 !important}.mx-xxl-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-xxl-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-xxl-3{margin-right:1rem !important;margin-left:1rem !important}.mx-xxl-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-xxl-5{margin-right:3rem !important;margin-left:3rem !important}.mx-xxl-auto{margin-right:auto !important;margin-left:auto !important}.my-xxl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xxl-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xxl-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xxl-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-xxl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xxl-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-xxl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xxl-0{margin-top:0 !important}.mt-xxl-1{margin-top:.25rem !important}.mt-xxl-2{margin-top:.5rem !important}.mt-xxl-3{margin-top:1rem !important}.mt-xxl-4{margin-top:1.5rem !important}.mt-xxl-5{margin-top:3rem !important}.mt-xxl-auto{margin-top:auto !important}.me-xxl-0{margin-right:0 !important}.me-xxl-1{margin-right:.25rem !important}.me-xxl-2{margin-right:.5rem !important}.me-xxl-3{margin-right:1rem !important}.me-xxl-4{margin-right:1.5rem !important}.me-xxl-5{margin-right:3rem !important}.me-xxl-auto{margin-right:auto !important}.mb-xxl-0{margin-bottom:0 !important}.mb-xxl-1{margin-bottom:.25rem !important}.mb-xxl-2{margin-bottom:.5rem !important}.mb-xxl-3{margin-bottom:1rem !important}.mb-xxl-4{margin-bottom:1.5rem !important}.mb-xxl-5{margin-bottom:3rem !important}.mb-xxl-auto{margin-bottom:auto !important}.ms-xxl-0{margin-left:0 !important}.ms-xxl-1{margin-left:.25rem !important}.ms-xxl-2{margin-left:.5rem !important}.ms-xxl-3{margin-left:1rem !important}.ms-xxl-4{margin-left:1.5rem !important}.ms-xxl-5{margin-left:3rem !important}.ms-xxl-auto{margin-left:auto !important}.p-xxl-0{padding:0 !important}.p-xxl-1{padding:.25rem !important}.p-xxl-2{padding:.5rem !important}.p-xxl-3{padding:1rem !important}.p-xxl-4{padding:1.5rem !important}.p-xxl-5{padding:3rem !important}.px-xxl-0{padding-right:0 !important;padding-left:0 !important}.px-xxl-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-xxl-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-xxl-3{padding-right:1rem !important;padding-left:1rem !important}.px-xxl-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-xxl-5{padding-right:3rem !important;padding-left:3rem !important}.py-xxl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xxl-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xxl-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xxl-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-xxl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xxl-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xxl-0{padding-top:0 !important}.pt-xxl-1{padding-top:.25rem !important}.pt-xxl-2{padding-top:.5rem !important}.pt-xxl-3{padding-top:1rem !important}.pt-xxl-4{padding-top:1.5rem !important}.pt-xxl-5{padding-top:3rem !important}.pe-xxl-0{padding-right:0 !important}.pe-xxl-1{padding-right:.25rem !important}.pe-xxl-2{padding-right:.5rem !important}.pe-xxl-3{padding-right:1rem !important}.pe-xxl-4{padding-right:1.5rem !important}.pe-xxl-5{padding-right:3rem !important}.pb-xxl-0{padding-bottom:0 !important}.pb-xxl-1{padding-bottom:.25rem !important}.pb-xxl-2{padding-bottom:.5rem !important}.pb-xxl-3{padding-bottom:1rem !important}.pb-xxl-4{padding-bottom:1.5rem !important}.pb-xxl-5{padding-bottom:3rem !important}.ps-xxl-0{padding-left:0 !important}.ps-xxl-1{padding-left:.25rem !important}.ps-xxl-2{padding-left:.5rem !important}.ps-xxl-3{padding-left:1rem !important}.ps-xxl-4{padding-left:1.5rem !important}.ps-xxl-5{padding-left:3rem !important}.text-xxl-start{text-align:left !important}.text-xxl-end{text-align:right !important}.text-xxl-center{text-align:center !important}}@media (min-width: 1200px){.fs-1{font-size:2.5rem !important}.fs-2{font-size:2rem !important}.fs-3{font-size:1.75rem !important}.fs-4{font-size:1.5rem !important}}@media print{.d-print-inline{display:inline !important}.d-print-inline-block{display:inline-block !important}.d-print-block{display:block !important}.d-print-grid{display:grid !important}.d-print-table{display:table !important}.d-print-table-row{display:table-row !important}.d-print-table-cell{display:table-cell !important}.d-print-flex{display:flex !important}.d-print-inline-flex{display:inline-flex !important}.d-print-none{display:none !important}}form{margin:0;padding:0}a,a:visited{text-decoration:none}a:focus,a:hover{text-decoration:underline}.card-slot{position:relative}.d0-card-frame,.d0-card-body,.ALL{overflow:inherit;white-space:normal}.d0-card-frame{text-align:left;font-weight:normal;font-style:normal}.d0-card-frame .d0-card-frame-title{overflow:hidden}.d0-card-frame .d0-card-frame-title span.header-icon{margin:0 5px}.d0-card-frame .type-info{margin-right:10px}.d0-card-header{display:flex;justify-content:space-between}.titled-view>.d0-card-header{min-height:1.5em}a.unknown-link{color:#888}a.unknown-link .card-title{font-variant:small-caps}a.unknown-link:hover{color:#008cba}.SELF-Xlogo.content_panel-view,.SELF-Xcredit.content_panel-view{text-align:center;background:#fff}.SELF-Xlogo.content_panel-view img,.SELF-Xcredit.content_panel-view img{max-width:100%}.SELF-Xlogo.content_panel-view a,.SELF-Xcredit.content_panel-view a{color:#008cba}[id^='svg-card-'] use{fill:#008cba}[id^='svg-card-']:nth-child(even) use{fill:#eee}.card-menu{position:absolute;right:8px;top:5px;width:auto}.card-menu>a{text-decoration:none !important}.d0-card-content>.card-menu,.titled-view>.d0-card-header>.card-menu{top:0}.d0-card-content .card-menu i,.labeled-view .card-menu i{font-size:1.2em}.modal-menu a,.overlay-menu a{color:#888 !important;opacity:0.6 !important}.modal-menu a:hover,.overlay-menu a:hover{opacity:1 !important}.card-slot>.d0-card-frame>.d0-card-header>.card-menu._show-on-hover>a,.card-slot>.d0-card-header>.card-menu._show-on-hover>a,.card-slot.labeled-view>.card-menu._show-on-hover>a,.card-slot>.card-menu._show-on-hover>a,.card>.card-body>.card-menu._show-on-hover>a,.card>.card-header>.card-menu._show-on-hover>a{display:none}.card-slot>.d0-card-frame>.d0-card-header:hover>.card-menu._show-on-hover>a,.card-slot>.d0-card-header:hover>.card-menu._show-on-hover>a,.card-slot.labeled-view:hover>.card-menu._show-on-hover>a,.card-slot:hover>.card-menu._show-on-hover>a,.card>.card-body:hover>.card-menu._show-on-hover>a,.card>.card-header:hover>.card-menu._show-on-hover>a{display:inline-block}.card-menu-hoverspace .card-menu._show-on-hover>a{display:none}.card-menu-hoverspace:hover .card-menu._show-on-hover>a{display:inline-block}.card-notice,.new-current-revision-id,.confirm_update_all-view,._template,.admin-error-message{display:none}.exception p{margin:15px}.card-notice{background:#fff;font-weight:bold;font-style:italic;text-align:center}.card-notice>div{margin:1em}.card-notice .card-error-msg{text-align:left}.conflict-view{text-align:left;border:1px solid #ccc;padding:10px;margin-top:12px}.name-editor.known-name input{border:3px solid #f04124}.name-messages{font-style:italic;background:#5bc0de}.alert.guide{margin-left:20px;width:40%}.alert-heading.error{margin-bottom:30px}.alert-info p:last-child{margin-bottom:0}.TYPE-toggle.d0-card-content{font-style:italic}pre,.TYPE-plain_text.d0-card-content,.SELF-Xhead.d0-card-content{white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word}.unknown-view a{display:inline}.VIEW-type{font-style:italic;font-size:.85em}.one-line{text-overflow:ellipsis;white-space:nowrap;overflow-x:hidden}.labeled-view:hover .card-menu{display:inline-block}.labeled-view{padding:5px 0;max-width:100%}.labeled-view .label{font-weight:bold}.labeled-view .labeled-content .pointer-list,.labeled-view .labeled-content .pointer-item,.labeled-view .labeled-content .search-result-list,.labeled-view .labeled-content .search-result-item{font-size:1em;padding:0;text-indent:0}.btn-reduced-padding{padding:0.1rem 0.2rem}.material-icons{vertical-align:sub}.d0-card-frame .toggler{display:inline-block;position:relative}.closed-view{position:relative}.closed-view>.d0-card-frame{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;position:static;width:100%}.closed-view .d0-card-frame{display:inline-block}.closed-content{margin-top:2px;white-space:nowrap;text-overflow:ellipsis;padding:10px}.closed-content table,.closed-content thead,.closed-content tbody,.closed-content tr,.closed-content th,.closed-content td,.closed-content p,.closed-content h1,.closed-content .h1,.closed-content h2,.closed-content .h2,.closed-content h3,.closed-content .h3,.closed-content h4,.closed-content .h4,.closed-content h5,.closed-content .h5,.closed-content h6,.closed-content .h6,.closed-content ul,.closed-content li,.closed-content pre,.closed-content ol,.closed-content div,.closed-content span,.closed-content a,.closed-content blockquote,.closed-content img,.closed-content label,.closed-content i{display:inline;white-space:nowrap;float:none}.closed-content br,.closed-content hr,.closed-content input,.closed-content textarea,.closed-content object,.closed-content :after,.closed-content :before{display:none}.closed-view.panel{margin:0;width:100%}.closed-content table,.closed-content tbody,.closed-content tr,.closed-content th,.closed-content td,.closed-content p,.closed-content h1,.closed-content .h1,.closed-content h2,.closed-content .h2,.closed-content h3,.closed-content .h3,.closed-content h4,.closed-content .h4,.closed-content h5,.closed-content .h5,.closed-content h6,.closed-content .h6,.closed-content ul,.closed-content li,.closed-content pre,.closed-content ol,.closed-content div,.closed-content span,.closed-content a,.closed-content blockquote,.closed-content img{font-size:1em;margin:0 6px 0 0;padding:0;border:0}.closed-content a{margin:0}.closed-content img{max-height:1em;width:auto}.toggler>i.material-icons{color:#000;font-size:15px;font-weight:bolder !important;border:2px solid #000;border-radius:3px;margin-right:3px}ul.pointer{margin:0;padding:0}.pointer-list-editor{margin:0px;padding:0px}.pointer-list-editor li{list-style:none;white-space:nowrap}.pointer-list-editor .input-group-btn .btn{border-bottom-width:1px}.pointer-list-editor ._pointer-item-add{margin-top:10px}.pointer-list-editor .input-group-addon.handle{padding-left:1px;padding-right:1px}.pointer-list-editor .input-group-addon.handle .glyphicon-option-vertical.left{margin-right:-7px}.pointer-list-editor .input-group-addon.handle .glyphicon-option-vertical.right{margin-left:-7px}.group-text-middle{border-left:none;border-right:none}.group-text-left{border-right:none}.group-text-right{border-left:none}.input-nest-syntax{background-color:#fff;font-weight:200;font-size:1.3rem;padding-top:0.1rem;padding-bottom:0.1rem}.nest-form-header .input-group{height:2rem}.nest-form-header .input-group .input-group-text{visibility:hidden}.one-line-pointer-list div.pointer-item{display:inline-block}div.pointer-list,div.search-result-list{list-style:none;padding:5px 0;margin:0}div.pointer-list .closed-view>.d0-card-frame,div.search-result-list .closed-view>.d0-card-frame{margin-bottom:0}div.pointer-list .pointer-item,div.search-result-list .search-result-item{margin:0}.search-result-item.item-link,.pointer-item.item-link,.search-result-item.item-name,.pointer-item.item-name{text-indent:-15px;padding-left:15px}.perm-editor{margin-left:40px}.perm-section{margin-bottom:20px}.perm-section h5,.perm-section .h5{margin:0 0 10px 0}.help-text{color:#888}.nav-pills .nav-link.active .help-text{color:#87e1ff}.d0-search-box{width:100%}.search-keyword{font-style:italic}.search-count{float:right;color:#888}.closed-content .search-no-results:after{content:''}.search-no-results:after{content:'0 results'}.search-box-nav{flex:1 0 50%}.search-box-nav .search-box-form{width:100%}.search-box-nav .select2-results>.select2-results__options{max-height:none !important}.search-box-nav .select2-search__field{width:100% !important}.search-box-item-label{float:left;position:relative;font-size:10px;width:50px;padding:3px 0 3px 5px}.search-box-item-value mark,.search-box-item-value .mark{padding:0.2em 0}.ui-autocomplete{z-index:2000 !important}.ui-autocomplete .ui-menu-item-wrapper{display:block}.autocomplete-item{display:flex;margin:0.4em 0}.autocomplete-item .autocomplete-icon{width:30px;margin-right:1em;text-align:center}.autocomplete-item .autocomplete-icon img,.autocomplete-item .autocomplete-icon svg{max-width:100% !important;max-height:100% !important;min-width:auto !important;min-height:auto !important}.setting-klass,.rule-setting{font-weight:bold}.rule-set{white-space:nowrap}.closed-rule{height:30px}.closed-rule .rule-content{width:350px}.rule-content-container{max-width:350px;overflow:hidden;text-overflow:ellipsis;line-height:inherit;background:inherit;white-space:nowrap}.rule-content-container .closed-content,.rule-content-container .closed-content .pointer-list,.rule-content-container .closed-content .search-list{margin:0}.rule-setting{padding-top:4px}.open-rule>.rule-setting{width:28%;float:left}.open-rule .d0-card-body{clear:both}.open-rule .rule-instruction{float:right;text-align:left;max-width:68%}.edit-rule .set-editor ul,.set-list .set-editor ul{list-style-type:none}.edit-rule .set-editor .current-set-label,.set-list .set-editor .current-set-label{font-weight:bold}.edit-rule .edit-button-area,.set-list .edit-button-area{clear:both;padding-top:5px}.rule-delete-section{float:right}.guide-line-number{display:inline-block;background:#000;color:#fff;border-radius:100%;width:21px;height:21px;font-size:61%;text-align:center;padding-top:3px;font-weight:bold;margin-left:-1.7rem;position:relative;top:-5px;left:-4px}.guide-line{border-left:1px solid #dee2e6}.rule-section{padding-left:20px;margin-left:12px;margin-right:5px}.rule-section h4,.rule-section .h4{position:relative;top:-4px}.template_link-view{display:inline}.rule-item{background-color:#fff;border:1px solid rgba(0,0,0,0.125);border-left:5px solid rgba(0,0,0,0.125);margin-bottom:-1px;padding:5px}.rule-item h5,.rule-item .h5{font-weight:bold}.rule-item:hover,.rule-item.active{border-left-color:#008cba}.card-slot.set-info .form-group{margin-bottom:0.3rem}.card-slot.set-info .form-group label{margin-bottom:0.2rem}.card-slot.set-info p{margin-bottom:0.5rem}.help-text.rule-instruction>div p:last-child{margin-bottom:0}a.setting-link{font-style:italic;margin-left:2%;font-weight:normal;color:#000;white-space:nowrap}h2.set-label,.set-label.h2{padding-bottom:10px}._modal-stack{z-index:1010}.modal-header .card-title{margin-bottom:0}.modal-dialog.no-gaps>.modal-content>.modal-body{padding:0}.modal-dialog.no-gaps>.modal-content>.modal-header>nav>ol.breadcrumb{margin-bottom:0;padding:0.2rem 0.3rem}.board-sidebar{background-color:#d9d9d9;padding-left:0;padding-right:0;min-height:calc(100vh - 90px)}.board-sidebar .guide-text{padding:15px;background-color:#fff}.bg-body{background-color:#fff !important}.board-main{border-right:1px solid #dee2e6;padding-left:0;padding-right:0}.board-main>.overlay-container>.board-view{padding-top:0px}.board-main>.overlay-container>.card-slot>.d0-card-frame>.d0-card-body{padding:1em}.board-main>._overlay-container-placeholder>.board-view{padding-top:1em;padding-left:1.5em;padding-right:1.5em}.board-pills .help-text{font-size:0.8rem}.board-pills>.nav-item{padding:0;background-color:#fff;border:1px solid rgba(0,0,0,0.1);border-left:3px solid rgba(0,0,0,0.1);margin-bottom:-1px}.board-pills>.nav-item>a{color:inherit}.board-pills>.nav-item:hover,.board-pills>.nav-item.active,.board-pills>.nav-item:focus{border-left-color:#008cba}.board .perm-editor{margin-left:0}.board .set-editor ul{background:#fff;padding-left:0;margin-left:15px}.board .set-editor ul:first-child{margin-left:0}.board .set-editor li.radio{padding:10px 0px 0px 15px;border-left:1px solid #dee2e6;border-top:1px solid #dee2e6;margin-top:10px}.board .board-sidebar .history_tab-view>div{margin:0.5rem}.board .board-sidebar .d0-card-header-title>.card-title{font-size:1rem}.board .board-sidebar .nav-link{padding:0.5rem 0.5rem}.card-editor{white-space:normal;padding-bottom:15px}.button-form-group{display:flex}.rename-button-form-group .btn{margin-right:1rem}.d0-card-header-title a{color:#222}.SELF-Xsignin>.d0-card-body{display:flex;justify-content:center}.SELF-Xsignin>.d0-card-body>.card-form{width:400px;max-width:400px}.SELF-Xsignin>.d0-card-body .signin-buttons>div{margin-bottom:1em}.SELF-Xsignin>.d0-card-body .signin-buttons>div button{width:100%}.SELF-Xsignin>.d0-card-body .signup-button{text-align:center}.invite-links{padding:10px;margin-top:10px;text-align:center}.invite-links a{font-weight:bold;margin:0 20px}#sign-in input#login_field,#sign-in input#password,#forgot-password input#email{width:50%}#forgot-password{margin-top:40px}.new-account-link{text-align:center}.form-group .signup-link{display:inline}._toggle-pw-visibility{float:right;margin-right:0.6rem;margin-top:-1.95rem;position:relative;z-index:2}.history-slot{overflow:hidden;clear:both}ul.action-list{list-style-type:none;padding-left:15px}ul.action-list li{border:1px solid #dee2e6}ul.action-list li:before{font-family:'Material Icons';font-weight:normal;font-style:normal;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga';float:left;margin-top:8px;margin-left:-2rem;font-size:120%;padding-left:4px;max-height:30px}ul.action-list li.update:before{content:"edit";color:#888}ul.action-list li.create:before{content:"add_circle";color:#43ac6a}ul.action-list li.delete:before{content:"remove_circle";color:#f04124}ul.action-list li.draft:before{content:"build";color:#888}.change-view{padding:5px 0px;clear:both}.change-view .change-card{font-weight:bold}.change-view .last-update{float:right;text-align:right}.change-view .last-update a{white-space:nowrap}.diff-deleted{text-decoration:line-through;color:#f04124;background:#f9b3a7}.diff-deleted img{border:2px solid #f04124}.diff-added{color:#43ac6a;background:#b4dec3;text-decoration:none}.diff-added img{margin:0px 4px 0px 4px;border:2px solid #43ac6a}.fileupload-buttonbar .btn,.fileupload-buttonbar .toggle{margin-bottom:5px}.fileinput-button{position:relative;overflow:hidden;display:inline-block}.fileinput-button input{position:absolute;top:0;right:0;margin:0;opacity:0;-ms-filter:'alpha(opacity=0)';font-size:200px;direction:ltr;cursor:pointer}.TYPE-image .d0-card-content img,.TYPE-image .d0-card-body img,.TYPE-image.d0-card-content img{max-width:100%;max-height:100%}.api-key-core{display:flex;width:100%;justify-content:space-between;padding:1em}.api-key-core .current-api-key{width:50%}.api-key-core .current-api-key input{width:100%;font-family:monospace;font-size:1.3rem;border:1px solid transparent;box-shadow:none;background-color:lightyellow}.api-key-core .current-api-key:hover input{border:1px solid #DDD}.ui-menu-icons .ui-menu-item a{padding-left:0}.ui-icon{background-image:url(/mod/style/jquery-ui-smoothness/ui-icons_454545_256x240.png)}.ui-menu-item .glyphicon{float:left;font-size:10px;padding:3px 0 3px 0px}/*! jQuery UI - v1.12.1 - 2018-05-16 +* http://jqueryui.com +* Includes: draggable.css, core.css, resizable.css, selectable.css, sortable.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, dialog.css, theme.css +* To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=smoothness&cornerRadiusShadow=8px&offsetLeftShadow=-8px&offsetTopShadow=-8px&thicknessShadow=8px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=aaaaaa&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cd0a0a&fcError=cd0a0a&borderColorError=cd0a0a&bgImgOpacityError=95&bgTextureError=glass&bgColorError=fef1ec&iconColorHighlight=2e83ff&fcHighlight=363636&borderColorHighlight=fcefa1&bgImgOpacityHighlight=55&bgTextureHighlight=glass&bgColorHighlight=fbf9ee&iconColorActive=454545&fcActive=212121&borderColorActive=aaaaaa&bgImgOpacityActive=65&bgTextureActive=glass&bgColorActive=ffffff&iconColorHover=454545&fcHover=212121&borderColorHover=999999&bgImgOpacityHover=75&bgTextureHover=glass&bgColorHover=dadada&iconColorDefault=888888&fcDefault=555555&borderColorDefault=d3d3d3&bgImgOpacityDefault=75&bgTextureDefault=glass&bgColorDefault=e6e6e6&iconColorContent=222222&fcContent=222222&borderColorContent=aaaaaa&bgImgOpacityContent=75&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=222222&fcHeader=222222&borderColorHeader=aaaaaa&bgImgOpacityHeader=75&bgTextureHeader=highlight_soft&bgColorHeader=cccccc&cornerRadius=4px&fsDefault=1.1em&fwDefault=normal&ffDefault=Verdana%2CArial%2Csans-serif +* Copyright jQuery Foundation and other contributors; Licensed MIT */.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default !important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-button{padding:.4em 1em;display:inline-block;position:relative;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2em;box-sizing:border-box;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-button-icon-only{text-indent:0}.ui-button-icon-only .ui-icon{position:absolute;top:50%;left:50%;margin-top:-8px;margin-left:-8px}.ui-button.ui-icon-notext .ui-icon{padding:0;width:2.1em;height:2.1em;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-icon-notext .ui-icon{width:auto;height:auto;text-indent:0;white-space:normal;padding:.4em 1em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-controlgroup{vertical-align:middle;display:inline-block}.ui-controlgroup>.ui-controlgroup-item{float:left;margin-left:0;margin-right:0}.ui-controlgroup>.ui-controlgroup-item:focus,.ui-controlgroup>.ui-controlgroup-item.ui-visual-focus{z-index:9999}.ui-controlgroup-vertical>.ui-controlgroup-item{display:block;float:none;width:100%;margin-top:0;margin-bottom:0;text-align:left}.ui-controlgroup-vertical .ui-controlgroup-item{box-sizing:border-box}.ui-controlgroup .ui-controlgroup-label{padding:.4em 1em}.ui-controlgroup .ui-controlgroup-label span{font-size:80%}.ui-controlgroup-horizontal .ui-controlgroup-label+.ui-controlgroup-item{border-left:none}.ui-controlgroup-vertical .ui-controlgroup-label+.ui-controlgroup-item{border-top:none}.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content{border-right:none}.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content{border-bottom:none}.ui-controlgroup-vertical .ui-spinner-input{width:75%;width:calc( 100% - 2.4em)}.ui-controlgroup-vertical .ui-spinner .ui-spinner-up{border-top-style:solid}.ui-checkboxradio-label .ui-icon-background{box-shadow:inset 1px 1px 1px #ccc;border-radius:.12em;border:none}.ui-checkboxradio-radio-label .ui-icon-background{width:16px;height:16px;border-radius:1em;overflow:visible;border:none}.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon{background-image:none;width:8px;height:8px;border-width:4px;border-style:solid}.ui-checkboxradio-disabled{pointer-events:none}.ui-dialog{position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-n{height:2px;top:0}.ui-dialog .ui-resizable-e{width:2px;right:0}.ui-dialog .ui-resizable-s{height:2px;bottom:0}.ui-dialog .ui-resizable-w{width:2px;left:0}.ui-dialog .ui-resizable-se,.ui-dialog .ui-resizable-sw,.ui-dialog .ui-resizable-ne,.ui-dialog .ui-resizable-nw{width:7px;height:7px}.ui-dialog .ui-resizable-se{right:0;bottom:0}.ui-dialog .ui-resizable-sw{left:0;bottom:0}.ui-dialog .ui-resizable-ne{right:0;top:0}.ui-dialog .ui-resizable-nw{left:0;top:0}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-widget{font-family:Verdana,Arial,sans-serif;font-size:1.1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Verdana,Arial,sans-serif;font-size:1em}.ui-widget.ui-widget-content{border:1px solid #d3d3d3}.ui-widget-content{border:1px solid #aaaaaa;background:#ffffff;color:#222222}.ui-widget-content a{color:#222222}.ui-widget-header{border:1px solid #aaaaaa;background:#ccc url(/mod/style/jquery-ui-smoothness/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x;color:#222222;font-weight:bold}.ui-widget-header a{color:#222222}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default,.ui-button,html .ui-button.ui-state-disabled:hover,html .ui-button.ui-state-disabled:active{border:1px solid #d3d3d3;background:#e6e6e6 url(/mod/style/jquery-ui-smoothness/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x;font-weight:normal;color:#555555}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited,a.ui-button,a.ui-button:link,a.ui-button:visited,.ui-button{color:#555555;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus,.ui-button:hover,.ui-button:focus{border:1px solid #999999;background:#dadada url(/mod/style/jquery-ui-smoothness/ui-bg_glass_75_dadada_1x400.png) 50% 50% repeat-x;font-weight:normal;color:#212121}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited,a.ui-button:hover,a.ui-button:focus{color:#212121;text-decoration:none}.ui-visual-focus{box-shadow:0 0 3px 1px #5e9ed6}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active,a.ui-button:active,.ui-button:active,.ui-button.ui-state-active:hover{border:1px solid #aaaaaa;background:#fff url(/mod/style/jquery-ui-smoothness/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x;font-weight:normal;color:#212121}.ui-icon-background,.ui-state-active .ui-icon-background{border:#aaaaaa;background-color:#212121}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#212121;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #fcefa1;background:#fbf9ee url(/mod/style/jquery-ui-smoothness/ui-bg_glass_55_fbf9ee_1x400.png) 50% 50% repeat-x;color:#363636}.ui-state-checked{border:1px solid #fcefa1;background:#fbf9ee}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#363636}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #cd0a0a;background:#fef1ec url(/mod/style/jquery-ui-smoothness/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x;color:#cd0a0a}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#cd0a0a}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#cd0a0a}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url(/mod/style/jquery-ui-smoothness/ui-icons_222222_256x240.png)}.ui-widget-header .ui-icon{background-image:url(/mod/style/jquery-ui-smoothness/ui-icons_222222_256x240.png)}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon,.ui-button:hover .ui-icon,.ui-button:focus .ui-icon{background-image:url(/mod/style/jquery-ui-smoothness/ui-icons_454545_256x240.png)}.ui-state-active .ui-icon,.ui-button:active .ui-icon{background-image:url(/mod/style/jquery-ui-smoothness/ui-icons_454545_256x240.png)}.ui-state-highlight .ui-icon,.ui-button .ui-state-highlight.ui-icon{background-image:url(/mod/style/jquery-ui-smoothness/ui-icons_2e83ff_256x240.png)}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url(/mod/style/jquery-ui-smoothness/ui-icons_cd0a0a_256x240.png)}.ui-button .ui-icon{background-image:url(/mod/style/jquery-ui-smoothness/ui-icons_888888_256x240.png)}.ui-icon-blank{background-position:16px 16px}.ui-icon-caret-1-n{background-position:0 0}.ui-icon-caret-1-ne{background-position:-16px 0}.ui-icon-caret-1-e{background-position:-32px 0}.ui-icon-caret-1-se{background-position:-48px 0}.ui-icon-caret-1-s{background-position:-65px 0}.ui-icon-caret-1-sw{background-position:-80px 0}.ui-icon-caret-1-w{background-position:-96px 0}.ui-icon-caret-1-nw{background-position:-112px 0}.ui-icon-caret-2-n-s{background-position:-128px 0}.ui-icon-caret-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-65px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-65px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:1px -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:4px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:4px}.ui-widget-overlay{background:#aaaaaa;opacity:.3;filter:Alpha(Opacity=30)}.ui-widget-shadow{-webkit-box-shadow:-8px -8px 8px #aaaaaa;box-shadow:-8px -8px 8px #aaaaaa}._card-link{cursor:pointer}.bar{border:1px solid #dee2e6}.bar>.bar-body,.bar>.bar-menu,.bar>.accordion-header>.accordion-button{transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease}@media (prefers-reduced-motion: reduce){.bar>.bar-body,.bar>.bar-menu,.bar>.accordion-header>.accordion-button{transition:none}}.bar:hover:not(.no-bar-hover){cursor:pointer}.bar:hover:not(.no-bar-hover)>.bar-body,.bar:hover:not(.no-bar-hover)>.bar-menu,.bar:hover:not(.no-bar-hover)>.accordion-header>.accordion-button{background-color:rgba(248,249,250,0.5)}.bar.accordion-item>.accordion-header .bar-left,.bar.accordion-item>.accordion-header .bar-right{padding:0}.selected .bar,.selected .box{border:3px solid #008cba !important}.bar-accordion .accordion-body{padding:0}.bar-accordion .accordion-body .bar{border-left:1px solid #dee2e6 !important}.bar{border-left:3px solid #222 !important}.bar .media{width:100%}.bar .media-left{max-width:25%}.bar-left,.bar-right,.bar-middle{display:flex;padding:0.5rem;flex-wrap:wrap;align-items:center}.bar-left{font-weight:bold;align-items:flex-start}.bar-middle{justify-content:center}.bar-right{justify-content:flex-end}.bar-menu{min-width:3em;width:3em;display:flex;align-items:center}.bar-body{width:100%;display:flex}.bar.with-bar-menu .bar-body{width:calc(100% - 3em)}.bar-menu-button{padding:0.25em}.bar-menu-button:hover{background-color:#eee;color:#fff}.bar-menu-button:after{display:none}.bar-menu-list a i{padding-right:0.4em}.accordion-subheader>.card-menu{position:static;background:inherit !important}@media (min-width: 768px){.bar-menu-button{display:none}._card-link:hover .bar-menu-button{display:flex}}.box{border:1px solid #dee2e6;box-shadow:0 0.125rem 0.25rem rgba(0,0,0,0.075);border-top:3px solid #eee}.box:hover{box-shadow:0 1rem 3rem rgba(0,0,0,0.175);cursor:pointer}.box-top{display:flex;min-height:60px;flex-direction:column;justify-content:center;overflow:auto}.box-top h1,.box-top .h1,.box-top h2,.box-top .h2,.box-top h3,.box-top .h3,.box-top h4,.box-top .h4,.box-top h5,.box-top .h5,.box-top h6,.box-top .h6,.box-top div,.box-top span,.box-top a{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.box-middle{min-height:180px;overflow:hidden;text-overflow:ellipsis;display:flex;justify-content:center}.box-middle img{object-fit:contain;height:130px;width:190px}.box-middle i{display:flex;justify-content:center;min-height:130px;align-items:center;font-size:70px;color:#888}.box-bottom{display:flex;align-items:center;justify-content:space-around}.card-list-box{display:flex;flex-wrap:wrap;justify-content:space-around}.item-box{display:flex;padding:1rem 0;vertical-align:top;justify-content:center}.box,.item-box{min-width:320px;max-width:400px;width:100%}.image-box{display:flex;align-items:center;justify-content:center;width:94px;height:94px;min-width:94px;min-height:94px;box-sizing:border-box;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;border:1px solid #eee;border-radius:0;background-color:#f8f9fa;margin-right:0.5rem;overflow:hidden}.image-box.icon{width:16px;height:16px;min-width:16px;min-height:16px}.image-box.icon i{font-size:8px}.image-box.small{width:40px;height:40px;min-width:40px;min-height:40px}.image-box.small i{font-size:20px}.image-box.medium{width:64px;height:64px;min-width:64px;min-height:64px}.image-box.medium i{font-size:32px}.image-box.large{width:94px;height:94px;min-width:94px;min-height:94px}.image-box.large i{font-size:47px}.image-box.xlarge{width:150px;height:150px;min-width:150px;min-height:150px}.image-box.xlarge i{font-size:75px}.image-box a,.image-box i{width:100%;text-align:center}.image-box i{color:#888}.image-box.icon a{line-height:0;height:8px}.image-box img{max-width:100%;max-height:100%;height:auto;display:inline !important}@media (max-width: 1260px){.image-box.large{width:120px;height:120px;min-width:120px;min-height:120px}.image-box.large i{font-size:60px}.media-body{padding:6px}}@media (max-width: 575.98px){.image-box.xlarge{width:100px;height:100px;min-width:100px;min-height:100px}.image-box.xlarge i{font-size:50px}.image-box.large{width:80px;height:80px;min-width:80px;min-height:80px}.image-box.large i{font-size:40px}.media-body{padding:4px}}.media{display:flex}.media-body .media-heading a{color:inherit}.media-body .media-text{clear:both}.badge{vertical-align:text-top !important}.dropdown-menu{z-index:1005}.select2-dropdown a{text-decoration:none !important}/*! + * Font Awesome Free 5.15.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */.fa,.fas,.far,.fal,.fad,.fab{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:0.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:solid 0.08em #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fas.fa-pull-left,.far.fa-pull-left,.fal.fa-pull-left,.fab.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fas.fa-pull-right,.far.fa-pull-right,.fal.fa-pull-right,.fab.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);transform:scale(1, -1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(-1, -1);transform:scale(-1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-flip-both{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-bacon:before{content:"\f7e5"}.fa-bacteria:before{content:"\e059"}.fa-bacterium:before{content:"\e05a"}.fa-bahai:before{content:"\f666"}.fa-balance-scale:before{content:"\f24e"}.fa-balance-scale-left:before{content:"\f515"}.fa-balance-scale-right:before{content:"\f516"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-battle-net:before{content:"\f835"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-biking:before{content:"\f84a"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bootstrap:before{content:"\f836"}.fa-border-all:before{content:"\f84c"}.fa-border-none:before{content:"\f850"}.fa-border-style:before{content:"\f853"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-box-tissue:before{content:"\e05b"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-bread-slice:before{content:"\f7ec"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buy-n-large:before{content:"\f8a6"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caravan:before{content:"\f8ff"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clinic-medical:before{content:"\f7f2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudflare:before{content:"\e07d"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress-alt:before{content:"\f422"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-cotton-bureau:before{content:"\f89e"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dailymotion:before{content:"\e052"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-deezer:before{content:"\e077"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-disease:before{content:"\f7fa"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edge-legacy:before{content:"\e078"}.fa-edit:before{content:"\f044"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-evernote:before{content:"\f839"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-alt:before{content:"\f424"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fan:before{content:"\f863"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-faucet:before{content:"\e005"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-firefox-browser:before{content:"\e007"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-pay:before{content:"\e079"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guilded:before{content:"\e07e"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamburger:before{content:"\f805"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-holding-water:before{content:"\f4c1"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-sparkles:before{content:"\e05d"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-hands-wash:before{content:"\e05e"}.fa-handshake:before{content:"\f2b5"}.fa-handshake-alt-slash:before{content:"\e05f"}.fa-handshake-slash:before{content:"\e060"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-hat:before{content:"\f807"}.fa-hashtag:before{content:"\f292"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-hat-wizard:before{content:"\f6e8"}.fa-hdd:before{content:"\f0a0"}.fa-head-side-cough:before{content:"\e061"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-head-side-mask:before{content:"\e063"}.fa-head-side-virus:before{content:"\e064"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hive:before{content:"\e07f"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hospital-user:before{content:"\f80d"}.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-house-user:before{content:"\e065"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-icons:before{content:"\f86d"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-ideal:before{content:"\e013"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-innosoft:before{content:"\e080"}.fa-instagram:before{content:"\f16d"}.fa-instagram-square:before{content:"\e055"}.fa-instalod:before{content:"\e081"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-house:before{content:"\e066"}.fa-laptop-medical:before{content:"\f812"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lungs:before{content:"\f604"}.fa-lungs-virus:before{content:"\e067"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-mdb:before{content:"\f8ca"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microblog:before{content:"\e01a"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mixer:before{content:"\e056"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse:before{content:"\f8cc"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-octopus-deploy:before{content:"\e082"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-orcid:before{content:"\f8d2"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-pager:before{content:"\f815"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-arrows:before{content:"\e068"}.fa-people-carry:before{content:"\f4ce"}.fa-pepper-hot:before{content:"\f816"}.fa-perbyte:before{content:"\e083"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-alt:before{content:"\f879"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-square-alt:before{content:"\f87b"}.fa-phone-volume:before{content:"\f2a0"}.fa-photo-video:before{content:"\f87c"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-square:before{content:"\e01e"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-plane-slash:before{content:"\e069"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pump-medical:before{content:"\e06a"}.fa-pump-soap:before{content:"\e06b"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-record-vinyl:before{content:"\f8d9"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-remove-format:before{content:"\f87d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-rust:before{content:"\e07a"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-shield-virus:before{content:"\e06c"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopify:before{content:"\e057"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sink:before{content:"\e06d"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-sketch:before{content:"\f7c6"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-soap:before{content:"\e06e"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-down-alt:before{content:"\f884"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-amount-up-alt:before{content:"\f885"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spell-check:before{content:"\f891"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-stopwatch-20:before{content:"\e06f"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-store-alt-slash:before{content:"\e070"}.fa-store-slash:before{content:"\e071"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swift:before{content:"\f8e1"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-symfony:before{content:"\f83d"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-tiktok:before{content:"\e07b"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-trailer:before{content:"\e041"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-trash-restore:before{content:"\f829"}.fa-trash-restore-alt:before{content:"\f82a"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbraco:before{content:"\f8e8"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-uncharted:before{content:"\e084"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-unity:before{content:"\e049"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-unsplash:before{content:"\e07c"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-users-slash:before{content:"\e073"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-vest:before{content:"\e085"}.fa-vest-patches:before{content:"\e086"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-virus:before{content:"\e074"}.fa-virus-slash:before{content:"\e075"}.fa-viruses:before{content:"\e076"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-voicemail:before{content:"\f897"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-watchman-monitoring:before{content:"\e087"}.fa-water:before{content:"\f773"}.fa-wave-square:before{content:"\f83e"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wodu:before{content:"\e088"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0, 0, 0, 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:'Font Awesome 5 Brands';font-style:normal;font-weight:400;font-display:block;src:url(/mod/bootstrap/fonts/fa-brands-400.eot);src:url(/mod/bootstrap/fonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(/mod/bootstrap/fonts/fa-brands-400.woff2) format("woff2"),url(/mod/bootstrap/fonts/fa-brands-400.woff) format("woff"),url(/mod/bootstrap/fonts/fa-brands-400.ttf) format("truetype"),url(/mod/bootstrap/fonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:'Font Awesome 5 Brands';font-weight:400}@font-face{font-family:'FontAwesome';font-style:normal;font-weight:400;font-display:block;src:url(/mod/bootstrap/fonts/fa-regular-400.eot);src:url(/mod/bootstrap/fonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(/mod/bootstrap/fonts/fa-regular-400.woff2) format("woff2"),url(/mod/bootstrap/fonts/fa-regular-400.woff) format("woff"),url(/mod/bootstrap/fonts/fa-regular-400.ttf) format("truetype"),url(/mod/bootstrap/fonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-family:'FontAwesome';font-weight:400}@font-face{font-family:'FontAwesome';font-style:normal;font-weight:900;font-display:block;src:url(/mod/bootstrap/fonts/fa-solid-900.eot);src:url(/mod/bootstrap/fonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(/mod/bootstrap/fonts/fa-solid-900.woff2) format("woff2"),url(/mod/bootstrap/fonts/fa-solid-900.woff) format("woff"),url(/mod/bootstrap/fonts/fa-solid-900.ttf) format("truetype"),url(/mod/bootstrap/fonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.fas{font-family:'FontAwesome';font-weight:900}@font-face{font-display:block;font-family:"bootstrap-icons";src:url(/mod/bootstrap/fonts/bootstrap-icons.woff2?24e3eb84d0bcaf83d77f904c78ac1f47) format("woff2"),url(/mod/bootstrap/fonts/bootstrap-icons.woff?24e3eb84d0bcaf83d77f904c78ac1f47) format("woff")}.bi::before,[class^="bi-"]::before,[class*=" bi-"]::before{display:inline-block;font-family:bootstrap-icons !important;font-style:normal;font-weight:normal !important;font-variant:normal;text-transform:none;line-height:1;vertical-align:-.125em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.bi-123::before{content:"\f67f"}.bi-alarm-fill::before{content:"\f101"}.bi-alarm::before{content:"\f102"}.bi-align-bottom::before{content:"\f103"}.bi-align-center::before{content:"\f104"}.bi-align-end::before{content:"\f105"}.bi-align-middle::before{content:"\f106"}.bi-align-start::before{content:"\f107"}.bi-align-top::before{content:"\f108"}.bi-alt::before{content:"\f109"}.bi-app-indicator::before{content:"\f10a"}.bi-app::before{content:"\f10b"}.bi-archive-fill::before{content:"\f10c"}.bi-archive::before{content:"\f10d"}.bi-arrow-90deg-down::before{content:"\f10e"}.bi-arrow-90deg-left::before{content:"\f10f"}.bi-arrow-90deg-right::before{content:"\f110"}.bi-arrow-90deg-up::before{content:"\f111"}.bi-arrow-bar-down::before{content:"\f112"}.bi-arrow-bar-left::before{content:"\f113"}.bi-arrow-bar-right::before{content:"\f114"}.bi-arrow-bar-up::before{content:"\f115"}.bi-arrow-clockwise::before{content:"\f116"}.bi-arrow-counterclockwise::before{content:"\f117"}.bi-arrow-down-circle-fill::before{content:"\f118"}.bi-arrow-down-circle::before{content:"\f119"}.bi-arrow-down-left-circle-fill::before{content:"\f11a"}.bi-arrow-down-left-circle::before{content:"\f11b"}.bi-arrow-down-left-square-fill::before{content:"\f11c"}.bi-arrow-down-left-square::before{content:"\f11d"}.bi-arrow-down-left::before{content:"\f11e"}.bi-arrow-down-right-circle-fill::before{content:"\f11f"}.bi-arrow-down-right-circle::before{content:"\f120"}.bi-arrow-down-right-square-fill::before{content:"\f121"}.bi-arrow-down-right-square::before{content:"\f122"}.bi-arrow-down-right::before{content:"\f123"}.bi-arrow-down-short::before{content:"\f124"}.bi-arrow-down-square-fill::before{content:"\f125"}.bi-arrow-down-square::before{content:"\f126"}.bi-arrow-down-up::before{content:"\f127"}.bi-arrow-down::before{content:"\f128"}.bi-arrow-left-circle-fill::before{content:"\f129"}.bi-arrow-left-circle::before{content:"\f12a"}.bi-arrow-left-right::before{content:"\f12b"}.bi-arrow-left-short::before{content:"\f12c"}.bi-arrow-left-square-fill::before{content:"\f12d"}.bi-arrow-left-square::before{content:"\f12e"}.bi-arrow-left::before{content:"\f12f"}.bi-arrow-repeat::before{content:"\f130"}.bi-arrow-return-left::before{content:"\f131"}.bi-arrow-return-right::before{content:"\f132"}.bi-arrow-right-circle-fill::before{content:"\f133"}.bi-arrow-right-circle::before{content:"\f134"}.bi-arrow-right-short::before{content:"\f135"}.bi-arrow-right-square-fill::before{content:"\f136"}.bi-arrow-right-square::before{content:"\f137"}.bi-arrow-right::before{content:"\f138"}.bi-arrow-up-circle-fill::before{content:"\f139"}.bi-arrow-up-circle::before{content:"\f13a"}.bi-arrow-up-left-circle-fill::before{content:"\f13b"}.bi-arrow-up-left-circle::before{content:"\f13c"}.bi-arrow-up-left-square-fill::before{content:"\f13d"}.bi-arrow-up-left-square::before{content:"\f13e"}.bi-arrow-up-left::before{content:"\f13f"}.bi-arrow-up-right-circle-fill::before{content:"\f140"}.bi-arrow-up-right-circle::before{content:"\f141"}.bi-arrow-up-right-square-fill::before{content:"\f142"}.bi-arrow-up-right-square::before{content:"\f143"}.bi-arrow-up-right::before{content:"\f144"}.bi-arrow-up-short::before{content:"\f145"}.bi-arrow-up-square-fill::before{content:"\f146"}.bi-arrow-up-square::before{content:"\f147"}.bi-arrow-up::before{content:"\f148"}.bi-arrows-angle-contract::before{content:"\f149"}.bi-arrows-angle-expand::before{content:"\f14a"}.bi-arrows-collapse::before{content:"\f14b"}.bi-arrows-expand::before{content:"\f14c"}.bi-arrows-fullscreen::before{content:"\f14d"}.bi-arrows-move::before{content:"\f14e"}.bi-aspect-ratio-fill::before{content:"\f14f"}.bi-aspect-ratio::before{content:"\f150"}.bi-asterisk::before{content:"\f151"}.bi-at::before{content:"\f152"}.bi-award-fill::before{content:"\f153"}.bi-award::before{content:"\f154"}.bi-back::before{content:"\f155"}.bi-backspace-fill::before{content:"\f156"}.bi-backspace-reverse-fill::before{content:"\f157"}.bi-backspace-reverse::before{content:"\f158"}.bi-backspace::before{content:"\f159"}.bi-badge-3d-fill::before{content:"\f15a"}.bi-badge-3d::before{content:"\f15b"}.bi-badge-4k-fill::before{content:"\f15c"}.bi-badge-4k::before{content:"\f15d"}.bi-badge-8k-fill::before{content:"\f15e"}.bi-badge-8k::before{content:"\f15f"}.bi-badge-ad-fill::before{content:"\f160"}.bi-badge-ad::before{content:"\f161"}.bi-badge-ar-fill::before{content:"\f162"}.bi-badge-ar::before{content:"\f163"}.bi-badge-cc-fill::before{content:"\f164"}.bi-badge-cc::before{content:"\f165"}.bi-badge-hd-fill::before{content:"\f166"}.bi-badge-hd::before{content:"\f167"}.bi-badge-tm-fill::before{content:"\f168"}.bi-badge-tm::before{content:"\f169"}.bi-badge-vo-fill::before{content:"\f16a"}.bi-badge-vo::before{content:"\f16b"}.bi-badge-vr-fill::before{content:"\f16c"}.bi-badge-vr::before{content:"\f16d"}.bi-badge-wc-fill::before{content:"\f16e"}.bi-badge-wc::before{content:"\f16f"}.bi-bag-check-fill::before{content:"\f170"}.bi-bag-check::before{content:"\f171"}.bi-bag-dash-fill::before{content:"\f172"}.bi-bag-dash::before{content:"\f173"}.bi-bag-fill::before{content:"\f174"}.bi-bag-plus-fill::before{content:"\f175"}.bi-bag-plus::before{content:"\f176"}.bi-bag-x-fill::before{content:"\f177"}.bi-bag-x::before{content:"\f178"}.bi-bag::before{content:"\f179"}.bi-bar-chart-fill::before{content:"\f17a"}.bi-bar-chart-line-fill::before{content:"\f17b"}.bi-bar-chart-line::before{content:"\f17c"}.bi-bar-chart-steps::before{content:"\f17d"}.bi-bar-chart::before{content:"\f17e"}.bi-basket-fill::before{content:"\f17f"}.bi-basket::before{content:"\f180"}.bi-basket2-fill::before{content:"\f181"}.bi-basket2::before{content:"\f182"}.bi-basket3-fill::before{content:"\f183"}.bi-basket3::before{content:"\f184"}.bi-battery-charging::before{content:"\f185"}.bi-battery-full::before{content:"\f186"}.bi-battery-half::before{content:"\f187"}.bi-battery::before{content:"\f188"}.bi-bell-fill::before{content:"\f189"}.bi-bell::before{content:"\f18a"}.bi-bezier::before{content:"\f18b"}.bi-bezier2::before{content:"\f18c"}.bi-bicycle::before{content:"\f18d"}.bi-binoculars-fill::before{content:"\f18e"}.bi-binoculars::before{content:"\f18f"}.bi-blockquote-left::before{content:"\f190"}.bi-blockquote-right::before{content:"\f191"}.bi-book-fill::before{content:"\f192"}.bi-book-half::before{content:"\f193"}.bi-book::before{content:"\f194"}.bi-bookmark-check-fill::before{content:"\f195"}.bi-bookmark-check::before{content:"\f196"}.bi-bookmark-dash-fill::before{content:"\f197"}.bi-bookmark-dash::before{content:"\f198"}.bi-bookmark-fill::before{content:"\f199"}.bi-bookmark-heart-fill::before{content:"\f19a"}.bi-bookmark-heart::before{content:"\f19b"}.bi-bookmark-plus-fill::before{content:"\f19c"}.bi-bookmark-plus::before{content:"\f19d"}.bi-bookmark-star-fill::before{content:"\f19e"}.bi-bookmark-star::before{content:"\f19f"}.bi-bookmark-x-fill::before{content:"\f1a0"}.bi-bookmark-x::before{content:"\f1a1"}.bi-bookmark::before{content:"\f1a2"}.bi-bookmarks-fill::before{content:"\f1a3"}.bi-bookmarks::before{content:"\f1a4"}.bi-bookshelf::before{content:"\f1a5"}.bi-bootstrap-fill::before{content:"\f1a6"}.bi-bootstrap-reboot::before{content:"\f1a7"}.bi-bootstrap::before{content:"\f1a8"}.bi-border-all::before{content:"\f1a9"}.bi-border-bottom::before{content:"\f1aa"}.bi-border-center::before{content:"\f1ab"}.bi-border-inner::before{content:"\f1ac"}.bi-border-left::before{content:"\f1ad"}.bi-border-middle::before{content:"\f1ae"}.bi-border-outer::before{content:"\f1af"}.bi-border-right::before{content:"\f1b0"}.bi-border-style::before{content:"\f1b1"}.bi-border-top::before{content:"\f1b2"}.bi-border-width::before{content:"\f1b3"}.bi-border::before{content:"\f1b4"}.bi-bounding-box-circles::before{content:"\f1b5"}.bi-bounding-box::before{content:"\f1b6"}.bi-box-arrow-down-left::before{content:"\f1b7"}.bi-box-arrow-down-right::before{content:"\f1b8"}.bi-box-arrow-down::before{content:"\f1b9"}.bi-box-arrow-in-down-left::before{content:"\f1ba"}.bi-box-arrow-in-down-right::before{content:"\f1bb"}.bi-box-arrow-in-down::before{content:"\f1bc"}.bi-box-arrow-in-left::before{content:"\f1bd"}.bi-box-arrow-in-right::before{content:"\f1be"}.bi-box-arrow-in-up-left::before{content:"\f1bf"}.bi-box-arrow-in-up-right::before{content:"\f1c0"}.bi-box-arrow-in-up::before{content:"\f1c1"}.bi-box-arrow-left::before{content:"\f1c2"}.bi-box-arrow-right::before{content:"\f1c3"}.bi-box-arrow-up-left::before{content:"\f1c4"}.bi-box-arrow-up-right::before{content:"\f1c5"}.bi-box-arrow-up::before{content:"\f1c6"}.bi-box-seam::before{content:"\f1c7"}.bi-box::before{content:"\f1c8"}.bi-braces::before{content:"\f1c9"}.bi-bricks::before{content:"\f1ca"}.bi-briefcase-fill::before{content:"\f1cb"}.bi-briefcase::before{content:"\f1cc"}.bi-brightness-alt-high-fill::before{content:"\f1cd"}.bi-brightness-alt-high::before{content:"\f1ce"}.bi-brightness-alt-low-fill::before{content:"\f1cf"}.bi-brightness-alt-low::before{content:"\f1d0"}.bi-brightness-high-fill::before{content:"\f1d1"}.bi-brightness-high::before{content:"\f1d2"}.bi-brightness-low-fill::before{content:"\f1d3"}.bi-brightness-low::before{content:"\f1d4"}.bi-broadcast-pin::before{content:"\f1d5"}.bi-broadcast::before{content:"\f1d6"}.bi-brush-fill::before{content:"\f1d7"}.bi-brush::before{content:"\f1d8"}.bi-bucket-fill::before{content:"\f1d9"}.bi-bucket::before{content:"\f1da"}.bi-bug-fill::before{content:"\f1db"}.bi-bug::before{content:"\f1dc"}.bi-building::before{content:"\f1dd"}.bi-bullseye::before{content:"\f1de"}.bi-calculator-fill::before{content:"\f1df"}.bi-calculator::before{content:"\f1e0"}.bi-calendar-check-fill::before{content:"\f1e1"}.bi-calendar-check::before{content:"\f1e2"}.bi-calendar-date-fill::before{content:"\f1e3"}.bi-calendar-date::before{content:"\f1e4"}.bi-calendar-day-fill::before{content:"\f1e5"}.bi-calendar-day::before{content:"\f1e6"}.bi-calendar-event-fill::before{content:"\f1e7"}.bi-calendar-event::before{content:"\f1e8"}.bi-calendar-fill::before{content:"\f1e9"}.bi-calendar-minus-fill::before{content:"\f1ea"}.bi-calendar-minus::before{content:"\f1eb"}.bi-calendar-month-fill::before{content:"\f1ec"}.bi-calendar-month::before{content:"\f1ed"}.bi-calendar-plus-fill::before{content:"\f1ee"}.bi-calendar-plus::before{content:"\f1ef"}.bi-calendar-range-fill::before{content:"\f1f0"}.bi-calendar-range::before{content:"\f1f1"}.bi-calendar-week-fill::before{content:"\f1f2"}.bi-calendar-week::before{content:"\f1f3"}.bi-calendar-x-fill::before{content:"\f1f4"}.bi-calendar-x::before{content:"\f1f5"}.bi-calendar::before{content:"\f1f6"}.bi-calendar2-check-fill::before{content:"\f1f7"}.bi-calendar2-check::before{content:"\f1f8"}.bi-calendar2-date-fill::before{content:"\f1f9"}.bi-calendar2-date::before{content:"\f1fa"}.bi-calendar2-day-fill::before{content:"\f1fb"}.bi-calendar2-day::before{content:"\f1fc"}.bi-calendar2-event-fill::before{content:"\f1fd"}.bi-calendar2-event::before{content:"\f1fe"}.bi-calendar2-fill::before{content:"\f1ff"}.bi-calendar2-minus-fill::before{content:"\f200"}.bi-calendar2-minus::before{content:"\f201"}.bi-calendar2-month-fill::before{content:"\f202"}.bi-calendar2-month::before{content:"\f203"}.bi-calendar2-plus-fill::before{content:"\f204"}.bi-calendar2-plus::before{content:"\f205"}.bi-calendar2-range-fill::before{content:"\f206"}.bi-calendar2-range::before{content:"\f207"}.bi-calendar2-week-fill::before{content:"\f208"}.bi-calendar2-week::before{content:"\f209"}.bi-calendar2-x-fill::before{content:"\f20a"}.bi-calendar2-x::before{content:"\f20b"}.bi-calendar2::before{content:"\f20c"}.bi-calendar3-event-fill::before{content:"\f20d"}.bi-calendar3-event::before{content:"\f20e"}.bi-calendar3-fill::before{content:"\f20f"}.bi-calendar3-range-fill::before{content:"\f210"}.bi-calendar3-range::before{content:"\f211"}.bi-calendar3-week-fill::before{content:"\f212"}.bi-calendar3-week::before{content:"\f213"}.bi-calendar3::before{content:"\f214"}.bi-calendar4-event::before{content:"\f215"}.bi-calendar4-range::before{content:"\f216"}.bi-calendar4-week::before{content:"\f217"}.bi-calendar4::before{content:"\f218"}.bi-camera-fill::before{content:"\f219"}.bi-camera-reels-fill::before{content:"\f21a"}.bi-camera-reels::before{content:"\f21b"}.bi-camera-video-fill::before{content:"\f21c"}.bi-camera-video-off-fill::before{content:"\f21d"}.bi-camera-video-off::before{content:"\f21e"}.bi-camera-video::before{content:"\f21f"}.bi-camera::before{content:"\f220"}.bi-camera2::before{content:"\f221"}.bi-capslock-fill::before{content:"\f222"}.bi-capslock::before{content:"\f223"}.bi-card-checklist::before{content:"\f224"}.bi-card-heading::before{content:"\f225"}.bi-card-image::before{content:"\f226"}.bi-card-list::before{content:"\f227"}.bi-card-text::before{content:"\f228"}.bi-caret-down-fill::before{content:"\f229"}.bi-caret-down-square-fill::before{content:"\f22a"}.bi-caret-down-square::before{content:"\f22b"}.bi-caret-down::before{content:"\f22c"}.bi-caret-left-fill::before{content:"\f22d"}.bi-caret-left-square-fill::before{content:"\f22e"}.bi-caret-left-square::before{content:"\f22f"}.bi-caret-left::before{content:"\f230"}.bi-caret-right-fill::before{content:"\f231"}.bi-caret-right-square-fill::before{content:"\f232"}.bi-caret-right-square::before{content:"\f233"}.bi-caret-right::before{content:"\f234"}.bi-caret-up-fill::before{content:"\f235"}.bi-caret-up-square-fill::before{content:"\f236"}.bi-caret-up-square::before{content:"\f237"}.bi-caret-up::before{content:"\f238"}.bi-cart-check-fill::before{content:"\f239"}.bi-cart-check::before{content:"\f23a"}.bi-cart-dash-fill::before{content:"\f23b"}.bi-cart-dash::before{content:"\f23c"}.bi-cart-fill::before{content:"\f23d"}.bi-cart-plus-fill::before{content:"\f23e"}.bi-cart-plus::before{content:"\f23f"}.bi-cart-x-fill::before{content:"\f240"}.bi-cart-x::before{content:"\f241"}.bi-cart::before{content:"\f242"}.bi-cart2::before{content:"\f243"}.bi-cart3::before{content:"\f244"}.bi-cart4::before{content:"\f245"}.bi-cash-stack::before{content:"\f246"}.bi-cash::before{content:"\f247"}.bi-cast::before{content:"\f248"}.bi-chat-dots-fill::before{content:"\f249"}.bi-chat-dots::before{content:"\f24a"}.bi-chat-fill::before{content:"\f24b"}.bi-chat-left-dots-fill::before{content:"\f24c"}.bi-chat-left-dots::before{content:"\f24d"}.bi-chat-left-fill::before{content:"\f24e"}.bi-chat-left-quote-fill::before{content:"\f24f"}.bi-chat-left-quote::before{content:"\f250"}.bi-chat-left-text-fill::before{content:"\f251"}.bi-chat-left-text::before{content:"\f252"}.bi-chat-left::before{content:"\f253"}.bi-chat-quote-fill::before{content:"\f254"}.bi-chat-quote::before{content:"\f255"}.bi-chat-right-dots-fill::before{content:"\f256"}.bi-chat-right-dots::before{content:"\f257"}.bi-chat-right-fill::before{content:"\f258"}.bi-chat-right-quote-fill::before{content:"\f259"}.bi-chat-right-quote::before{content:"\f25a"}.bi-chat-right-text-fill::before{content:"\f25b"}.bi-chat-right-text::before{content:"\f25c"}.bi-chat-right::before{content:"\f25d"}.bi-chat-square-dots-fill::before{content:"\f25e"}.bi-chat-square-dots::before{content:"\f25f"}.bi-chat-square-fill::before{content:"\f260"}.bi-chat-square-quote-fill::before{content:"\f261"}.bi-chat-square-quote::before{content:"\f262"}.bi-chat-square-text-fill::before{content:"\f263"}.bi-chat-square-text::before{content:"\f264"}.bi-chat-square::before{content:"\f265"}.bi-chat-text-fill::before{content:"\f266"}.bi-chat-text::before{content:"\f267"}.bi-chat::before{content:"\f268"}.bi-check-all::before{content:"\f269"}.bi-check-circle-fill::before{content:"\f26a"}.bi-check-circle::before{content:"\f26b"}.bi-check-square-fill::before{content:"\f26c"}.bi-check-square::before{content:"\f26d"}.bi-check::before{content:"\f26e"}.bi-check2-all::before{content:"\f26f"}.bi-check2-circle::before{content:"\f270"}.bi-check2-square::before{content:"\f271"}.bi-check2::before{content:"\f272"}.bi-chevron-bar-contract::before{content:"\f273"}.bi-chevron-bar-down::before{content:"\f274"}.bi-chevron-bar-expand::before{content:"\f275"}.bi-chevron-bar-left::before{content:"\f276"}.bi-chevron-bar-right::before{content:"\f277"}.bi-chevron-bar-up::before{content:"\f278"}.bi-chevron-compact-down::before{content:"\f279"}.bi-chevron-compact-left::before{content:"\f27a"}.bi-chevron-compact-right::before{content:"\f27b"}.bi-chevron-compact-up::before{content:"\f27c"}.bi-chevron-contract::before{content:"\f27d"}.bi-chevron-double-down::before{content:"\f27e"}.bi-chevron-double-left::before{content:"\f27f"}.bi-chevron-double-right::before{content:"\f280"}.bi-chevron-double-up::before{content:"\f281"}.bi-chevron-down::before{content:"\f282"}.bi-chevron-expand::before{content:"\f283"}.bi-chevron-left::before{content:"\f284"}.bi-chevron-right::before{content:"\f285"}.bi-chevron-up::before{content:"\f286"}.bi-circle-fill::before{content:"\f287"}.bi-circle-half::before{content:"\f288"}.bi-circle-square::before{content:"\f289"}.bi-circle::before{content:"\f28a"}.bi-clipboard-check::before{content:"\f28b"}.bi-clipboard-data::before{content:"\f28c"}.bi-clipboard-minus::before{content:"\f28d"}.bi-clipboard-plus::before{content:"\f28e"}.bi-clipboard-x::before{content:"\f28f"}.bi-clipboard::before{content:"\f290"}.bi-clock-fill::before{content:"\f291"}.bi-clock-history::before{content:"\f292"}.bi-clock::before{content:"\f293"}.bi-cloud-arrow-down-fill::before{content:"\f294"}.bi-cloud-arrow-down::before{content:"\f295"}.bi-cloud-arrow-up-fill::before{content:"\f296"}.bi-cloud-arrow-up::before{content:"\f297"}.bi-cloud-check-fill::before{content:"\f298"}.bi-cloud-check::before{content:"\f299"}.bi-cloud-download-fill::before{content:"\f29a"}.bi-cloud-download::before{content:"\f29b"}.bi-cloud-drizzle-fill::before{content:"\f29c"}.bi-cloud-drizzle::before{content:"\f29d"}.bi-cloud-fill::before{content:"\f29e"}.bi-cloud-fog-fill::before{content:"\f29f"}.bi-cloud-fog::before{content:"\f2a0"}.bi-cloud-fog2-fill::before{content:"\f2a1"}.bi-cloud-fog2::before{content:"\f2a2"}.bi-cloud-hail-fill::before{content:"\f2a3"}.bi-cloud-hail::before{content:"\f2a4"}.bi-cloud-haze-1::before{content:"\f2a5"}.bi-cloud-haze-fill::before{content:"\f2a6"}.bi-cloud-haze::before{content:"\f2a7"}.bi-cloud-haze2-fill::before{content:"\f2a8"}.bi-cloud-lightning-fill::before{content:"\f2a9"}.bi-cloud-lightning-rain-fill::before{content:"\f2aa"}.bi-cloud-lightning-rain::before{content:"\f2ab"}.bi-cloud-lightning::before{content:"\f2ac"}.bi-cloud-minus-fill::before{content:"\f2ad"}.bi-cloud-minus::before{content:"\f2ae"}.bi-cloud-moon-fill::before{content:"\f2af"}.bi-cloud-moon::before{content:"\f2b0"}.bi-cloud-plus-fill::before{content:"\f2b1"}.bi-cloud-plus::before{content:"\f2b2"}.bi-cloud-rain-fill::before{content:"\f2b3"}.bi-cloud-rain-heavy-fill::before{content:"\f2b4"}.bi-cloud-rain-heavy::before{content:"\f2b5"}.bi-cloud-rain::before{content:"\f2b6"}.bi-cloud-slash-fill::before{content:"\f2b7"}.bi-cloud-slash::before{content:"\f2b8"}.bi-cloud-sleet-fill::before{content:"\f2b9"}.bi-cloud-sleet::before{content:"\f2ba"}.bi-cloud-snow-fill::before{content:"\f2bb"}.bi-cloud-snow::before{content:"\f2bc"}.bi-cloud-sun-fill::before{content:"\f2bd"}.bi-cloud-sun::before{content:"\f2be"}.bi-cloud-upload-fill::before{content:"\f2bf"}.bi-cloud-upload::before{content:"\f2c0"}.bi-cloud::before{content:"\f2c1"}.bi-clouds-fill::before{content:"\f2c2"}.bi-clouds::before{content:"\f2c3"}.bi-cloudy-fill::before{content:"\f2c4"}.bi-cloudy::before{content:"\f2c5"}.bi-code-slash::before{content:"\f2c6"}.bi-code-square::before{content:"\f2c7"}.bi-code::before{content:"\f2c8"}.bi-collection-fill::before{content:"\f2c9"}.bi-collection-play-fill::before{content:"\f2ca"}.bi-collection-play::before{content:"\f2cb"}.bi-collection::before{content:"\f2cc"}.bi-columns-gap::before{content:"\f2cd"}.bi-columns::before{content:"\f2ce"}.bi-command::before{content:"\f2cf"}.bi-compass-fill::before{content:"\f2d0"}.bi-compass::before{content:"\f2d1"}.bi-cone-striped::before{content:"\f2d2"}.bi-cone::before{content:"\f2d3"}.bi-controller::before{content:"\f2d4"}.bi-cpu-fill::before{content:"\f2d5"}.bi-cpu::before{content:"\f2d6"}.bi-credit-card-2-back-fill::before{content:"\f2d7"}.bi-credit-card-2-back::before{content:"\f2d8"}.bi-credit-card-2-front-fill::before{content:"\f2d9"}.bi-credit-card-2-front::before{content:"\f2da"}.bi-credit-card-fill::before{content:"\f2db"}.bi-credit-card::before{content:"\f2dc"}.bi-crop::before{content:"\f2dd"}.bi-cup-fill::before{content:"\f2de"}.bi-cup-straw::before{content:"\f2df"}.bi-cup::before{content:"\f2e0"}.bi-cursor-fill::before{content:"\f2e1"}.bi-cursor-text::before{content:"\f2e2"}.bi-cursor::before{content:"\f2e3"}.bi-dash-circle-dotted::before{content:"\f2e4"}.bi-dash-circle-fill::before{content:"\f2e5"}.bi-dash-circle::before{content:"\f2e6"}.bi-dash-square-dotted::before{content:"\f2e7"}.bi-dash-square-fill::before{content:"\f2e8"}.bi-dash-square::before{content:"\f2e9"}.bi-dash::before{content:"\f2ea"}.bi-diagram-2-fill::before{content:"\f2eb"}.bi-diagram-2::before{content:"\f2ec"}.bi-diagram-3-fill::before{content:"\f2ed"}.bi-diagram-3::before{content:"\f2ee"}.bi-diamond-fill::before{content:"\f2ef"}.bi-diamond-half::before{content:"\f2f0"}.bi-diamond::before{content:"\f2f1"}.bi-dice-1-fill::before{content:"\f2f2"}.bi-dice-1::before{content:"\f2f3"}.bi-dice-2-fill::before{content:"\f2f4"}.bi-dice-2::before{content:"\f2f5"}.bi-dice-3-fill::before{content:"\f2f6"}.bi-dice-3::before{content:"\f2f7"}.bi-dice-4-fill::before{content:"\f2f8"}.bi-dice-4::before{content:"\f2f9"}.bi-dice-5-fill::before{content:"\f2fa"}.bi-dice-5::before{content:"\f2fb"}.bi-dice-6-fill::before{content:"\f2fc"}.bi-dice-6::before{content:"\f2fd"}.bi-disc-fill::before{content:"\f2fe"}.bi-disc::before{content:"\f2ff"}.bi-discord::before{content:"\f300"}.bi-display-fill::before{content:"\f301"}.bi-display::before{content:"\f302"}.bi-distribute-horizontal::before{content:"\f303"}.bi-distribute-vertical::before{content:"\f304"}.bi-door-closed-fill::before{content:"\f305"}.bi-door-closed::before{content:"\f306"}.bi-door-open-fill::before{content:"\f307"}.bi-door-open::before{content:"\f308"}.bi-dot::before{content:"\f309"}.bi-download::before{content:"\f30a"}.bi-droplet-fill::before{content:"\f30b"}.bi-droplet-half::before{content:"\f30c"}.bi-droplet::before{content:"\f30d"}.bi-earbuds::before{content:"\f30e"}.bi-easel-fill::before{content:"\f30f"}.bi-easel::before{content:"\f310"}.bi-egg-fill::before{content:"\f311"}.bi-egg-fried::before{content:"\f312"}.bi-egg::before{content:"\f313"}.bi-eject-fill::before{content:"\f314"}.bi-eject::before{content:"\f315"}.bi-emoji-angry-fill::before{content:"\f316"}.bi-emoji-angry::before{content:"\f317"}.bi-emoji-dizzy-fill::before{content:"\f318"}.bi-emoji-dizzy::before{content:"\f319"}.bi-emoji-expressionless-fill::before{content:"\f31a"}.bi-emoji-expressionless::before{content:"\f31b"}.bi-emoji-frown-fill::before{content:"\f31c"}.bi-emoji-frown::before{content:"\f31d"}.bi-emoji-heart-eyes-fill::before{content:"\f31e"}.bi-emoji-heart-eyes::before{content:"\f31f"}.bi-emoji-laughing-fill::before{content:"\f320"}.bi-emoji-laughing::before{content:"\f321"}.bi-emoji-neutral-fill::before{content:"\f322"}.bi-emoji-neutral::before{content:"\f323"}.bi-emoji-smile-fill::before{content:"\f324"}.bi-emoji-smile-upside-down-fill::before{content:"\f325"}.bi-emoji-smile-upside-down::before{content:"\f326"}.bi-emoji-smile::before{content:"\f327"}.bi-emoji-sunglasses-fill::before{content:"\f328"}.bi-emoji-sunglasses::before{content:"\f329"}.bi-emoji-wink-fill::before{content:"\f32a"}.bi-emoji-wink::before{content:"\f32b"}.bi-envelope-fill::before{content:"\f32c"}.bi-envelope-open-fill::before{content:"\f32d"}.bi-envelope-open::before{content:"\f32e"}.bi-envelope::before{content:"\f32f"}.bi-eraser-fill::before{content:"\f330"}.bi-eraser::before{content:"\f331"}.bi-exclamation-circle-fill::before{content:"\f332"}.bi-exclamation-circle::before{content:"\f333"}.bi-exclamation-diamond-fill::before{content:"\f334"}.bi-exclamation-diamond::before{content:"\f335"}.bi-exclamation-octagon-fill::before{content:"\f336"}.bi-exclamation-octagon::before{content:"\f337"}.bi-exclamation-square-fill::before{content:"\f338"}.bi-exclamation-square::before{content:"\f339"}.bi-exclamation-triangle-fill::before{content:"\f33a"}.bi-exclamation-triangle::before{content:"\f33b"}.bi-exclamation::before{content:"\f33c"}.bi-exclude::before{content:"\f33d"}.bi-eye-fill::before{content:"\f33e"}.bi-eye-slash-fill::before{content:"\f33f"}.bi-eye-slash::before{content:"\f340"}.bi-eye::before{content:"\f341"}.bi-eyedropper::before{content:"\f342"}.bi-eyeglasses::before{content:"\f343"}.bi-facebook::before{content:"\f344"}.bi-file-arrow-down-fill::before{content:"\f345"}.bi-file-arrow-down::before{content:"\f346"}.bi-file-arrow-up-fill::before{content:"\f347"}.bi-file-arrow-up::before{content:"\f348"}.bi-file-bar-graph-fill::before{content:"\f349"}.bi-file-bar-graph::before{content:"\f34a"}.bi-file-binary-fill::before{content:"\f34b"}.bi-file-binary::before{content:"\f34c"}.bi-file-break-fill::before{content:"\f34d"}.bi-file-break::before{content:"\f34e"}.bi-file-check-fill::before{content:"\f34f"}.bi-file-check::before{content:"\f350"}.bi-file-code-fill::before{content:"\f351"}.bi-file-code::before{content:"\f352"}.bi-file-diff-fill::before{content:"\f353"}.bi-file-diff::before{content:"\f354"}.bi-file-earmark-arrow-down-fill::before{content:"\f355"}.bi-file-earmark-arrow-down::before{content:"\f356"}.bi-file-earmark-arrow-up-fill::before{content:"\f357"}.bi-file-earmark-arrow-up::before{content:"\f358"}.bi-file-earmark-bar-graph-fill::before{content:"\f359"}.bi-file-earmark-bar-graph::before{content:"\f35a"}.bi-file-earmark-binary-fill::before{content:"\f35b"}.bi-file-earmark-binary::before{content:"\f35c"}.bi-file-earmark-break-fill::before{content:"\f35d"}.bi-file-earmark-break::before{content:"\f35e"}.bi-file-earmark-check-fill::before{content:"\f35f"}.bi-file-earmark-check::before{content:"\f360"}.bi-file-earmark-code-fill::before{content:"\f361"}.bi-file-earmark-code::before{content:"\f362"}.bi-file-earmark-diff-fill::before{content:"\f363"}.bi-file-earmark-diff::before{content:"\f364"}.bi-file-earmark-easel-fill::before{content:"\f365"}.bi-file-earmark-easel::before{content:"\f366"}.bi-file-earmark-excel-fill::before{content:"\f367"}.bi-file-earmark-excel::before{content:"\f368"}.bi-file-earmark-fill::before{content:"\f369"}.bi-file-earmark-font-fill::before{content:"\f36a"}.bi-file-earmark-font::before{content:"\f36b"}.bi-file-earmark-image-fill::before{content:"\f36c"}.bi-file-earmark-image::before{content:"\f36d"}.bi-file-earmark-lock-fill::before{content:"\f36e"}.bi-file-earmark-lock::before{content:"\f36f"}.bi-file-earmark-lock2-fill::before{content:"\f370"}.bi-file-earmark-lock2::before{content:"\f371"}.bi-file-earmark-medical-fill::before{content:"\f372"}.bi-file-earmark-medical::before{content:"\f373"}.bi-file-earmark-minus-fill::before{content:"\f374"}.bi-file-earmark-minus::before{content:"\f375"}.bi-file-earmark-music-fill::before{content:"\f376"}.bi-file-earmark-music::before{content:"\f377"}.bi-file-earmark-person-fill::before{content:"\f378"}.bi-file-earmark-person::before{content:"\f379"}.bi-file-earmark-play-fill::before{content:"\f37a"}.bi-file-earmark-play::before{content:"\f37b"}.bi-file-earmark-plus-fill::before{content:"\f37c"}.bi-file-earmark-plus::before{content:"\f37d"}.bi-file-earmark-post-fill::before{content:"\f37e"}.bi-file-earmark-post::before{content:"\f37f"}.bi-file-earmark-ppt-fill::before{content:"\f380"}.bi-file-earmark-ppt::before{content:"\f381"}.bi-file-earmark-richtext-fill::before{content:"\f382"}.bi-file-earmark-richtext::before{content:"\f383"}.bi-file-earmark-ruled-fill::before{content:"\f384"}.bi-file-earmark-ruled::before{content:"\f385"}.bi-file-earmark-slides-fill::before{content:"\f386"}.bi-file-earmark-slides::before{content:"\f387"}.bi-file-earmark-spreadsheet-fill::before{content:"\f388"}.bi-file-earmark-spreadsheet::before{content:"\f389"}.bi-file-earmark-text-fill::before{content:"\f38a"}.bi-file-earmark-text::before{content:"\f38b"}.bi-file-earmark-word-fill::before{content:"\f38c"}.bi-file-earmark-word::before{content:"\f38d"}.bi-file-earmark-x-fill::before{content:"\f38e"}.bi-file-earmark-x::before{content:"\f38f"}.bi-file-earmark-zip-fill::before{content:"\f390"}.bi-file-earmark-zip::before{content:"\f391"}.bi-file-earmark::before{content:"\f392"}.bi-file-easel-fill::before{content:"\f393"}.bi-file-easel::before{content:"\f394"}.bi-file-excel-fill::before{content:"\f395"}.bi-file-excel::before{content:"\f396"}.bi-file-fill::before{content:"\f397"}.bi-file-font-fill::before{content:"\f398"}.bi-file-font::before{content:"\f399"}.bi-file-image-fill::before{content:"\f39a"}.bi-file-image::before{content:"\f39b"}.bi-file-lock-fill::before{content:"\f39c"}.bi-file-lock::before{content:"\f39d"}.bi-file-lock2-fill::before{content:"\f39e"}.bi-file-lock2::before{content:"\f39f"}.bi-file-medical-fill::before{content:"\f3a0"}.bi-file-medical::before{content:"\f3a1"}.bi-file-minus-fill::before{content:"\f3a2"}.bi-file-minus::before{content:"\f3a3"}.bi-file-music-fill::before{content:"\f3a4"}.bi-file-music::before{content:"\f3a5"}.bi-file-person-fill::before{content:"\f3a6"}.bi-file-person::before{content:"\f3a7"}.bi-file-play-fill::before{content:"\f3a8"}.bi-file-play::before{content:"\f3a9"}.bi-file-plus-fill::before{content:"\f3aa"}.bi-file-plus::before{content:"\f3ab"}.bi-file-post-fill::before{content:"\f3ac"}.bi-file-post::before{content:"\f3ad"}.bi-file-ppt-fill::before{content:"\f3ae"}.bi-file-ppt::before{content:"\f3af"}.bi-file-richtext-fill::before{content:"\f3b0"}.bi-file-richtext::before{content:"\f3b1"}.bi-file-ruled-fill::before{content:"\f3b2"}.bi-file-ruled::before{content:"\f3b3"}.bi-file-slides-fill::before{content:"\f3b4"}.bi-file-slides::before{content:"\f3b5"}.bi-file-spreadsheet-fill::before{content:"\f3b6"}.bi-file-spreadsheet::before{content:"\f3b7"}.bi-file-text-fill::before{content:"\f3b8"}.bi-file-text::before{content:"\f3b9"}.bi-file-word-fill::before{content:"\f3ba"}.bi-file-word::before{content:"\f3bb"}.bi-file-x-fill::before{content:"\f3bc"}.bi-file-x::before{content:"\f3bd"}.bi-file-zip-fill::before{content:"\f3be"}.bi-file-zip::before{content:"\f3bf"}.bi-file::before{content:"\f3c0"}.bi-files-alt::before{content:"\f3c1"}.bi-files::before{content:"\f3c2"}.bi-film::before{content:"\f3c3"}.bi-filter-circle-fill::before{content:"\f3c4"}.bi-filter-circle::before{content:"\f3c5"}.bi-filter-left::before{content:"\f3c6"}.bi-filter-right::before{content:"\f3c7"}.bi-filter-square-fill::before{content:"\f3c8"}.bi-filter-square::before{content:"\f3c9"}.bi-filter::before{content:"\f3ca"}.bi-flag-fill::before{content:"\f3cb"}.bi-flag::before{content:"\f3cc"}.bi-flower1::before{content:"\f3cd"}.bi-flower2::before{content:"\f3ce"}.bi-flower3::before{content:"\f3cf"}.bi-folder-check::before{content:"\f3d0"}.bi-folder-fill::before{content:"\f3d1"}.bi-folder-minus::before{content:"\f3d2"}.bi-folder-plus::before{content:"\f3d3"}.bi-folder-symlink-fill::before{content:"\f3d4"}.bi-folder-symlink::before{content:"\f3d5"}.bi-folder-x::before{content:"\f3d6"}.bi-folder::before{content:"\f3d7"}.bi-folder2-open::before{content:"\f3d8"}.bi-folder2::before{content:"\f3d9"}.bi-fonts::before{content:"\f3da"}.bi-forward-fill::before{content:"\f3db"}.bi-forward::before{content:"\f3dc"}.bi-front::before{content:"\f3dd"}.bi-fullscreen-exit::before{content:"\f3de"}.bi-fullscreen::before{content:"\f3df"}.bi-funnel-fill::before{content:"\f3e0"}.bi-funnel::before{content:"\f3e1"}.bi-gear-fill::before{content:"\f3e2"}.bi-gear-wide-connected::before{content:"\f3e3"}.bi-gear-wide::before{content:"\f3e4"}.bi-gear::before{content:"\f3e5"}.bi-gem::before{content:"\f3e6"}.bi-geo-alt-fill::before{content:"\f3e7"}.bi-geo-alt::before{content:"\f3e8"}.bi-geo-fill::before{content:"\f3e9"}.bi-geo::before{content:"\f3ea"}.bi-gift-fill::before{content:"\f3eb"}.bi-gift::before{content:"\f3ec"}.bi-github::before{content:"\f3ed"}.bi-globe::before{content:"\f3ee"}.bi-globe2::before{content:"\f3ef"}.bi-google::before{content:"\f3f0"}.bi-graph-down::before{content:"\f3f1"}.bi-graph-up::before{content:"\f3f2"}.bi-grid-1x2-fill::before{content:"\f3f3"}.bi-grid-1x2::before{content:"\f3f4"}.bi-grid-3x2-gap-fill::before{content:"\f3f5"}.bi-grid-3x2-gap::before{content:"\f3f6"}.bi-grid-3x2::before{content:"\f3f7"}.bi-grid-3x3-gap-fill::before{content:"\f3f8"}.bi-grid-3x3-gap::before{content:"\f3f9"}.bi-grid-3x3::before{content:"\f3fa"}.bi-grid-fill::before{content:"\f3fb"}.bi-grid::before{content:"\f3fc"}.bi-grip-horizontal::before{content:"\f3fd"}.bi-grip-vertical::before{content:"\f3fe"}.bi-hammer::before{content:"\f3ff"}.bi-hand-index-fill::before{content:"\f400"}.bi-hand-index-thumb-fill::before{content:"\f401"}.bi-hand-index-thumb::before{content:"\f402"}.bi-hand-index::before{content:"\f403"}.bi-hand-thumbs-down-fill::before{content:"\f404"}.bi-hand-thumbs-down::before{content:"\f405"}.bi-hand-thumbs-up-fill::before{content:"\f406"}.bi-hand-thumbs-up::before{content:"\f407"}.bi-handbag-fill::before{content:"\f408"}.bi-handbag::before{content:"\f409"}.bi-hash::before{content:"\f40a"}.bi-hdd-fill::before{content:"\f40b"}.bi-hdd-network-fill::before{content:"\f40c"}.bi-hdd-network::before{content:"\f40d"}.bi-hdd-rack-fill::before{content:"\f40e"}.bi-hdd-rack::before{content:"\f40f"}.bi-hdd-stack-fill::before{content:"\f410"}.bi-hdd-stack::before{content:"\f411"}.bi-hdd::before{content:"\f412"}.bi-headphones::before{content:"\f413"}.bi-headset::before{content:"\f414"}.bi-heart-fill::before{content:"\f415"}.bi-heart-half::before{content:"\f416"}.bi-heart::before{content:"\f417"}.bi-heptagon-fill::before{content:"\f418"}.bi-heptagon-half::before{content:"\f419"}.bi-heptagon::before{content:"\f41a"}.bi-hexagon-fill::before{content:"\f41b"}.bi-hexagon-half::before{content:"\f41c"}.bi-hexagon::before{content:"\f41d"}.bi-hourglass-bottom::before{content:"\f41e"}.bi-hourglass-split::before{content:"\f41f"}.bi-hourglass-top::before{content:"\f420"}.bi-hourglass::before{content:"\f421"}.bi-house-door-fill::before{content:"\f422"}.bi-house-door::before{content:"\f423"}.bi-house-fill::before{content:"\f424"}.bi-house::before{content:"\f425"}.bi-hr::before{content:"\f426"}.bi-hurricane::before{content:"\f427"}.bi-image-alt::before{content:"\f428"}.bi-image-fill::before{content:"\f429"}.bi-image::before{content:"\f42a"}.bi-images::before{content:"\f42b"}.bi-inbox-fill::before{content:"\f42c"}.bi-inbox::before{content:"\f42d"}.bi-inboxes-fill::before{content:"\f42e"}.bi-inboxes::before{content:"\f42f"}.bi-info-circle-fill::before{content:"\f430"}.bi-info-circle::before{content:"\f431"}.bi-info-square-fill::before{content:"\f432"}.bi-info-square::before{content:"\f433"}.bi-info::before{content:"\f434"}.bi-input-cursor-text::before{content:"\f435"}.bi-input-cursor::before{content:"\f436"}.bi-instagram::before{content:"\f437"}.bi-intersect::before{content:"\f438"}.bi-journal-album::before{content:"\f439"}.bi-journal-arrow-down::before{content:"\f43a"}.bi-journal-arrow-up::before{content:"\f43b"}.bi-journal-bookmark-fill::before{content:"\f43c"}.bi-journal-bookmark::before{content:"\f43d"}.bi-journal-check::before{content:"\f43e"}.bi-journal-code::before{content:"\f43f"}.bi-journal-medical::before{content:"\f440"}.bi-journal-minus::before{content:"\f441"}.bi-journal-plus::before{content:"\f442"}.bi-journal-richtext::before{content:"\f443"}.bi-journal-text::before{content:"\f444"}.bi-journal-x::before{content:"\f445"}.bi-journal::before{content:"\f446"}.bi-journals::before{content:"\f447"}.bi-joystick::before{content:"\f448"}.bi-justify-left::before{content:"\f449"}.bi-justify-right::before{content:"\f44a"}.bi-justify::before{content:"\f44b"}.bi-kanban-fill::before{content:"\f44c"}.bi-kanban::before{content:"\f44d"}.bi-key-fill::before{content:"\f44e"}.bi-key::before{content:"\f44f"}.bi-keyboard-fill::before{content:"\f450"}.bi-keyboard::before{content:"\f451"}.bi-ladder::before{content:"\f452"}.bi-lamp-fill::before{content:"\f453"}.bi-lamp::before{content:"\f454"}.bi-laptop-fill::before{content:"\f455"}.bi-laptop::before{content:"\f456"}.bi-layer-backward::before{content:"\f457"}.bi-layer-forward::before{content:"\f458"}.bi-layers-fill::before{content:"\f459"}.bi-layers-half::before{content:"\f45a"}.bi-layers::before{content:"\f45b"}.bi-layout-sidebar-inset-reverse::before{content:"\f45c"}.bi-layout-sidebar-inset::before{content:"\f45d"}.bi-layout-sidebar-reverse::before{content:"\f45e"}.bi-layout-sidebar::before{content:"\f45f"}.bi-layout-split::before{content:"\f460"}.bi-layout-text-sidebar-reverse::before{content:"\f461"}.bi-layout-text-sidebar::before{content:"\f462"}.bi-layout-text-window-reverse::before{content:"\f463"}.bi-layout-text-window::before{content:"\f464"}.bi-layout-three-columns::before{content:"\f465"}.bi-layout-wtf::before{content:"\f466"}.bi-life-preserver::before{content:"\f467"}.bi-lightbulb-fill::before{content:"\f468"}.bi-lightbulb-off-fill::before{content:"\f469"}.bi-lightbulb-off::before{content:"\f46a"}.bi-lightbulb::before{content:"\f46b"}.bi-lightning-charge-fill::before{content:"\f46c"}.bi-lightning-charge::before{content:"\f46d"}.bi-lightning-fill::before{content:"\f46e"}.bi-lightning::before{content:"\f46f"}.bi-link-45deg::before{content:"\f470"}.bi-link::before{content:"\f471"}.bi-linkedin::before{content:"\f472"}.bi-list-check::before{content:"\f473"}.bi-list-nested::before{content:"\f474"}.bi-list-ol::before{content:"\f475"}.bi-list-stars::before{content:"\f476"}.bi-list-task::before{content:"\f477"}.bi-list-ul::before{content:"\f478"}.bi-list::before{content:"\f479"}.bi-lock-fill::before{content:"\f47a"}.bi-lock::before{content:"\f47b"}.bi-mailbox::before{content:"\f47c"}.bi-mailbox2::before{content:"\f47d"}.bi-map-fill::before{content:"\f47e"}.bi-map::before{content:"\f47f"}.bi-markdown-fill::before{content:"\f480"}.bi-markdown::before{content:"\f481"}.bi-mask::before{content:"\f482"}.bi-megaphone-fill::before{content:"\f483"}.bi-megaphone::before{content:"\f484"}.bi-menu-app-fill::before{content:"\f485"}.bi-menu-app::before{content:"\f486"}.bi-menu-button-fill::before{content:"\f487"}.bi-menu-button-wide-fill::before{content:"\f488"}.bi-menu-button-wide::before{content:"\f489"}.bi-menu-button::before{content:"\f48a"}.bi-menu-down::before{content:"\f48b"}.bi-menu-up::before{content:"\f48c"}.bi-mic-fill::before{content:"\f48d"}.bi-mic-mute-fill::before{content:"\f48e"}.bi-mic-mute::before{content:"\f48f"}.bi-mic::before{content:"\f490"}.bi-minecart-loaded::before{content:"\f491"}.bi-minecart::before{content:"\f492"}.bi-moisture::before{content:"\f493"}.bi-moon-fill::before{content:"\f494"}.bi-moon-stars-fill::before{content:"\f495"}.bi-moon-stars::before{content:"\f496"}.bi-moon::before{content:"\f497"}.bi-mouse-fill::before{content:"\f498"}.bi-mouse::before{content:"\f499"}.bi-mouse2-fill::before{content:"\f49a"}.bi-mouse2::before{content:"\f49b"}.bi-mouse3-fill::before{content:"\f49c"}.bi-mouse3::before{content:"\f49d"}.bi-music-note-beamed::before{content:"\f49e"}.bi-music-note-list::before{content:"\f49f"}.bi-music-note::before{content:"\f4a0"}.bi-music-player-fill::before{content:"\f4a1"}.bi-music-player::before{content:"\f4a2"}.bi-newspaper::before{content:"\f4a3"}.bi-node-minus-fill::before{content:"\f4a4"}.bi-node-minus::before{content:"\f4a5"}.bi-node-plus-fill::before{content:"\f4a6"}.bi-node-plus::before{content:"\f4a7"}.bi-nut-fill::before{content:"\f4a8"}.bi-nut::before{content:"\f4a9"}.bi-octagon-fill::before{content:"\f4aa"}.bi-octagon-half::before{content:"\f4ab"}.bi-octagon::before{content:"\f4ac"}.bi-option::before{content:"\f4ad"}.bi-outlet::before{content:"\f4ae"}.bi-paint-bucket::before{content:"\f4af"}.bi-palette-fill::before{content:"\f4b0"}.bi-palette::before{content:"\f4b1"}.bi-palette2::before{content:"\f4b2"}.bi-paperclip::before{content:"\f4b3"}.bi-paragraph::before{content:"\f4b4"}.bi-patch-check-fill::before{content:"\f4b5"}.bi-patch-check::before{content:"\f4b6"}.bi-patch-exclamation-fill::before{content:"\f4b7"}.bi-patch-exclamation::before{content:"\f4b8"}.bi-patch-minus-fill::before{content:"\f4b9"}.bi-patch-minus::before{content:"\f4ba"}.bi-patch-plus-fill::before{content:"\f4bb"}.bi-patch-plus::before{content:"\f4bc"}.bi-patch-question-fill::before{content:"\f4bd"}.bi-patch-question::before{content:"\f4be"}.bi-pause-btn-fill::before{content:"\f4bf"}.bi-pause-btn::before{content:"\f4c0"}.bi-pause-circle-fill::before{content:"\f4c1"}.bi-pause-circle::before{content:"\f4c2"}.bi-pause-fill::before{content:"\f4c3"}.bi-pause::before{content:"\f4c4"}.bi-peace-fill::before{content:"\f4c5"}.bi-peace::before{content:"\f4c6"}.bi-pen-fill::before{content:"\f4c7"}.bi-pen::before{content:"\f4c8"}.bi-pencil-fill::before{content:"\f4c9"}.bi-pencil-square::before{content:"\f4ca"}.bi-pencil::before{content:"\f4cb"}.bi-pentagon-fill::before{content:"\f4cc"}.bi-pentagon-half::before{content:"\f4cd"}.bi-pentagon::before{content:"\f4ce"}.bi-people-fill::before{content:"\f4cf"}.bi-people::before{content:"\f4d0"}.bi-percent::before{content:"\f4d1"}.bi-person-badge-fill::before{content:"\f4d2"}.bi-person-badge::before{content:"\f4d3"}.bi-person-bounding-box::before{content:"\f4d4"}.bi-person-check-fill::before{content:"\f4d5"}.bi-person-check::before{content:"\f4d6"}.bi-person-circle::before{content:"\f4d7"}.bi-person-dash-fill::before{content:"\f4d8"}.bi-person-dash::before{content:"\f4d9"}.bi-person-fill::before{content:"\f4da"}.bi-person-lines-fill::before{content:"\f4db"}.bi-person-plus-fill::before{content:"\f4dc"}.bi-person-plus::before{content:"\f4dd"}.bi-person-square::before{content:"\f4de"}.bi-person-x-fill::before{content:"\f4df"}.bi-person-x::before{content:"\f4e0"}.bi-person::before{content:"\f4e1"}.bi-phone-fill::before{content:"\f4e2"}.bi-phone-landscape-fill::before{content:"\f4e3"}.bi-phone-landscape::before{content:"\f4e4"}.bi-phone-vibrate-fill::before{content:"\f4e5"}.bi-phone-vibrate::before{content:"\f4e6"}.bi-phone::before{content:"\f4e7"}.bi-pie-chart-fill::before{content:"\f4e8"}.bi-pie-chart::before{content:"\f4e9"}.bi-pin-angle-fill::before{content:"\f4ea"}.bi-pin-angle::before{content:"\f4eb"}.bi-pin-fill::before{content:"\f4ec"}.bi-pin::before{content:"\f4ed"}.bi-pip-fill::before{content:"\f4ee"}.bi-pip::before{content:"\f4ef"}.bi-play-btn-fill::before{content:"\f4f0"}.bi-play-btn::before{content:"\f4f1"}.bi-play-circle-fill::before{content:"\f4f2"}.bi-play-circle::before{content:"\f4f3"}.bi-play-fill::before{content:"\f4f4"}.bi-play::before{content:"\f4f5"}.bi-plug-fill::before{content:"\f4f6"}.bi-plug::before{content:"\f4f7"}.bi-plus-circle-dotted::before{content:"\f4f8"}.bi-plus-circle-fill::before{content:"\f4f9"}.bi-plus-circle::before{content:"\f4fa"}.bi-plus-square-dotted::before{content:"\f4fb"}.bi-plus-square-fill::before{content:"\f4fc"}.bi-plus-square::before{content:"\f4fd"}.bi-plus::before{content:"\f4fe"}.bi-power::before{content:"\f4ff"}.bi-printer-fill::before{content:"\f500"}.bi-printer::before{content:"\f501"}.bi-puzzle-fill::before{content:"\f502"}.bi-puzzle::before{content:"\f503"}.bi-question-circle-fill::before{content:"\f504"}.bi-question-circle::before{content:"\f505"}.bi-question-diamond-fill::before{content:"\f506"}.bi-question-diamond::before{content:"\f507"}.bi-question-octagon-fill::before{content:"\f508"}.bi-question-octagon::before{content:"\f509"}.bi-question-square-fill::before{content:"\f50a"}.bi-question-square::before{content:"\f50b"}.bi-question::before{content:"\f50c"}.bi-rainbow::before{content:"\f50d"}.bi-receipt-cutoff::before{content:"\f50e"}.bi-receipt::before{content:"\f50f"}.bi-reception-0::before{content:"\f510"}.bi-reception-1::before{content:"\f511"}.bi-reception-2::before{content:"\f512"}.bi-reception-3::before{content:"\f513"}.bi-reception-4::before{content:"\f514"}.bi-record-btn-fill::before{content:"\f515"}.bi-record-btn::before{content:"\f516"}.bi-record-circle-fill::before{content:"\f517"}.bi-record-circle::before{content:"\f518"}.bi-record-fill::before{content:"\f519"}.bi-record::before{content:"\f51a"}.bi-record2-fill::before{content:"\f51b"}.bi-record2::before{content:"\f51c"}.bi-reply-all-fill::before{content:"\f51d"}.bi-reply-all::before{content:"\f51e"}.bi-reply-fill::before{content:"\f51f"}.bi-reply::before{content:"\f520"}.bi-rss-fill::before{content:"\f521"}.bi-rss::before{content:"\f522"}.bi-rulers::before{content:"\f523"}.bi-save-fill::before{content:"\f524"}.bi-save::before{content:"\f525"}.bi-save2-fill::before{content:"\f526"}.bi-save2::before{content:"\f527"}.bi-scissors::before{content:"\f528"}.bi-screwdriver::before{content:"\f529"}.bi-search::before{content:"\f52a"}.bi-segmented-nav::before{content:"\f52b"}.bi-server::before{content:"\f52c"}.bi-share-fill::before{content:"\f52d"}.bi-share::before{content:"\f52e"}.bi-shield-check::before{content:"\f52f"}.bi-shield-exclamation::before{content:"\f530"}.bi-shield-fill-check::before{content:"\f531"}.bi-shield-fill-exclamation::before{content:"\f532"}.bi-shield-fill-minus::before{content:"\f533"}.bi-shield-fill-plus::before{content:"\f534"}.bi-shield-fill-x::before{content:"\f535"}.bi-shield-fill::before{content:"\f536"}.bi-shield-lock-fill::before{content:"\f537"}.bi-shield-lock::before{content:"\f538"}.bi-shield-minus::before{content:"\f539"}.bi-shield-plus::before{content:"\f53a"}.bi-shield-shaded::before{content:"\f53b"}.bi-shield-slash-fill::before{content:"\f53c"}.bi-shield-slash::before{content:"\f53d"}.bi-shield-x::before{content:"\f53e"}.bi-shield::before{content:"\f53f"}.bi-shift-fill::before{content:"\f540"}.bi-shift::before{content:"\f541"}.bi-shop-window::before{content:"\f542"}.bi-shop::before{content:"\f543"}.bi-shuffle::before{content:"\f544"}.bi-signpost-2-fill::before{content:"\f545"}.bi-signpost-2::before{content:"\f546"}.bi-signpost-fill::before{content:"\f547"}.bi-signpost-split-fill::before{content:"\f548"}.bi-signpost-split::before{content:"\f549"}.bi-signpost::before{content:"\f54a"}.bi-sim-fill::before{content:"\f54b"}.bi-sim::before{content:"\f54c"}.bi-skip-backward-btn-fill::before{content:"\f54d"}.bi-skip-backward-btn::before{content:"\f54e"}.bi-skip-backward-circle-fill::before{content:"\f54f"}.bi-skip-backward-circle::before{content:"\f550"}.bi-skip-backward-fill::before{content:"\f551"}.bi-skip-backward::before{content:"\f552"}.bi-skip-end-btn-fill::before{content:"\f553"}.bi-skip-end-btn::before{content:"\f554"}.bi-skip-end-circle-fill::before{content:"\f555"}.bi-skip-end-circle::before{content:"\f556"}.bi-skip-end-fill::before{content:"\f557"}.bi-skip-end::before{content:"\f558"}.bi-skip-forward-btn-fill::before{content:"\f559"}.bi-skip-forward-btn::before{content:"\f55a"}.bi-skip-forward-circle-fill::before{content:"\f55b"}.bi-skip-forward-circle::before{content:"\f55c"}.bi-skip-forward-fill::before{content:"\f55d"}.bi-skip-forward::before{content:"\f55e"}.bi-skip-start-btn-fill::before{content:"\f55f"}.bi-skip-start-btn::before{content:"\f560"}.bi-skip-start-circle-fill::before{content:"\f561"}.bi-skip-start-circle::before{content:"\f562"}.bi-skip-start-fill::before{content:"\f563"}.bi-skip-start::before{content:"\f564"}.bi-slack::before{content:"\f565"}.bi-slash-circle-fill::before{content:"\f566"}.bi-slash-circle::before{content:"\f567"}.bi-slash-square-fill::before{content:"\f568"}.bi-slash-square::before{content:"\f569"}.bi-slash::before{content:"\f56a"}.bi-sliders::before{content:"\f56b"}.bi-smartwatch::before{content:"\f56c"}.bi-snow::before{content:"\f56d"}.bi-snow2::before{content:"\f56e"}.bi-snow3::before{content:"\f56f"}.bi-sort-alpha-down-alt::before{content:"\f570"}.bi-sort-alpha-down::before{content:"\f571"}.bi-sort-alpha-up-alt::before{content:"\f572"}.bi-sort-alpha-up::before{content:"\f573"}.bi-sort-down-alt::before{content:"\f574"}.bi-sort-down::before{content:"\f575"}.bi-sort-numeric-down-alt::before{content:"\f576"}.bi-sort-numeric-down::before{content:"\f577"}.bi-sort-numeric-up-alt::before{content:"\f578"}.bi-sort-numeric-up::before{content:"\f579"}.bi-sort-up-alt::before{content:"\f57a"}.bi-sort-up::before{content:"\f57b"}.bi-soundwave::before{content:"\f57c"}.bi-speaker-fill::before{content:"\f57d"}.bi-speaker::before{content:"\f57e"}.bi-speedometer::before{content:"\f57f"}.bi-speedometer2::before{content:"\f580"}.bi-spellcheck::before{content:"\f581"}.bi-square-fill::before{content:"\f582"}.bi-square-half::before{content:"\f583"}.bi-square::before{content:"\f584"}.bi-stack::before{content:"\f585"}.bi-star-fill::before{content:"\f586"}.bi-star-half::before{content:"\f587"}.bi-star::before{content:"\f588"}.bi-stars::before{content:"\f589"}.bi-stickies-fill::before{content:"\f58a"}.bi-stickies::before{content:"\f58b"}.bi-sticky-fill::before{content:"\f58c"}.bi-sticky::before{content:"\f58d"}.bi-stop-btn-fill::before{content:"\f58e"}.bi-stop-btn::before{content:"\f58f"}.bi-stop-circle-fill::before{content:"\f590"}.bi-stop-circle::before{content:"\f591"}.bi-stop-fill::before{content:"\f592"}.bi-stop::before{content:"\f593"}.bi-stoplights-fill::before{content:"\f594"}.bi-stoplights::before{content:"\f595"}.bi-stopwatch-fill::before{content:"\f596"}.bi-stopwatch::before{content:"\f597"}.bi-subtract::before{content:"\f598"}.bi-suit-club-fill::before{content:"\f599"}.bi-suit-club::before{content:"\f59a"}.bi-suit-diamond-fill::before{content:"\f59b"}.bi-suit-diamond::before{content:"\f59c"}.bi-suit-heart-fill::before{content:"\f59d"}.bi-suit-heart::before{content:"\f59e"}.bi-suit-spade-fill::before{content:"\f59f"}.bi-suit-spade::before{content:"\f5a0"}.bi-sun-fill::before{content:"\f5a1"}.bi-sun::before{content:"\f5a2"}.bi-sunglasses::before{content:"\f5a3"}.bi-sunrise-fill::before{content:"\f5a4"}.bi-sunrise::before{content:"\f5a5"}.bi-sunset-fill::before{content:"\f5a6"}.bi-sunset::before{content:"\f5a7"}.bi-symmetry-horizontal::before{content:"\f5a8"}.bi-symmetry-vertical::before{content:"\f5a9"}.bi-table::before{content:"\f5aa"}.bi-tablet-fill::before{content:"\f5ab"}.bi-tablet-landscape-fill::before{content:"\f5ac"}.bi-tablet-landscape::before{content:"\f5ad"}.bi-tablet::before{content:"\f5ae"}.bi-tag-fill::before{content:"\f5af"}.bi-tag::before{content:"\f5b0"}.bi-tags-fill::before{content:"\f5b1"}.bi-tags::before{content:"\f5b2"}.bi-telegram::before{content:"\f5b3"}.bi-telephone-fill::before{content:"\f5b4"}.bi-telephone-forward-fill::before{content:"\f5b5"}.bi-telephone-forward::before{content:"\f5b6"}.bi-telephone-inbound-fill::before{content:"\f5b7"}.bi-telephone-inbound::before{content:"\f5b8"}.bi-telephone-minus-fill::before{content:"\f5b9"}.bi-telephone-minus::before{content:"\f5ba"}.bi-telephone-outbound-fill::before{content:"\f5bb"}.bi-telephone-outbound::before{content:"\f5bc"}.bi-telephone-plus-fill::before{content:"\f5bd"}.bi-telephone-plus::before{content:"\f5be"}.bi-telephone-x-fill::before{content:"\f5bf"}.bi-telephone-x::before{content:"\f5c0"}.bi-telephone::before{content:"\f5c1"}.bi-terminal-fill::before{content:"\f5c2"}.bi-terminal::before{content:"\f5c3"}.bi-text-center::before{content:"\f5c4"}.bi-text-indent-left::before{content:"\f5c5"}.bi-text-indent-right::before{content:"\f5c6"}.bi-text-left::before{content:"\f5c7"}.bi-text-paragraph::before{content:"\f5c8"}.bi-text-right::before{content:"\f5c9"}.bi-textarea-resize::before{content:"\f5ca"}.bi-textarea-t::before{content:"\f5cb"}.bi-textarea::before{content:"\f5cc"}.bi-thermometer-half::before{content:"\f5cd"}.bi-thermometer-high::before{content:"\f5ce"}.bi-thermometer-low::before{content:"\f5cf"}.bi-thermometer-snow::before{content:"\f5d0"}.bi-thermometer-sun::before{content:"\f5d1"}.bi-thermometer::before{content:"\f5d2"}.bi-three-dots-vertical::before{content:"\f5d3"}.bi-three-dots::before{content:"\f5d4"}.bi-toggle-off::before{content:"\f5d5"}.bi-toggle-on::before{content:"\f5d6"}.bi-toggle2-off::before{content:"\f5d7"}.bi-toggle2-on::before{content:"\f5d8"}.bi-toggles::before{content:"\f5d9"}.bi-toggles2::before{content:"\f5da"}.bi-tools::before{content:"\f5db"}.bi-tornado::before{content:"\f5dc"}.bi-trash-fill::before{content:"\f5dd"}.bi-trash::before{content:"\f5de"}.bi-trash2-fill::before{content:"\f5df"}.bi-trash2::before{content:"\f5e0"}.bi-tree-fill::before{content:"\f5e1"}.bi-tree::before{content:"\f5e2"}.bi-triangle-fill::before{content:"\f5e3"}.bi-triangle-half::before{content:"\f5e4"}.bi-triangle::before{content:"\f5e5"}.bi-trophy-fill::before{content:"\f5e6"}.bi-trophy::before{content:"\f5e7"}.bi-tropical-storm::before{content:"\f5e8"}.bi-truck-flatbed::before{content:"\f5e9"}.bi-truck::before{content:"\f5ea"}.bi-tsunami::before{content:"\f5eb"}.bi-tv-fill::before{content:"\f5ec"}.bi-tv::before{content:"\f5ed"}.bi-twitch::before{content:"\f5ee"}.bi-twitter::before{content:"\f5ef"}.bi-type-bold::before{content:"\f5f0"}.bi-type-h1::before{content:"\f5f1"}.bi-type-h2::before{content:"\f5f2"}.bi-type-h3::before{content:"\f5f3"}.bi-type-italic::before{content:"\f5f4"}.bi-type-strikethrough::before{content:"\f5f5"}.bi-type-underline::before{content:"\f5f6"}.bi-type::before{content:"\f5f7"}.bi-ui-checks-grid::before{content:"\f5f8"}.bi-ui-checks::before{content:"\f5f9"}.bi-ui-radios-grid::before{content:"\f5fa"}.bi-ui-radios::before{content:"\f5fb"}.bi-umbrella-fill::before{content:"\f5fc"}.bi-umbrella::before{content:"\f5fd"}.bi-union::before{content:"\f5fe"}.bi-unlock-fill::before{content:"\f5ff"}.bi-unlock::before{content:"\f600"}.bi-upc-scan::before{content:"\f601"}.bi-upc::before{content:"\f602"}.bi-upload::before{content:"\f603"}.bi-vector-pen::before{content:"\f604"}.bi-view-list::before{content:"\f605"}.bi-view-stacked::before{content:"\f606"}.bi-vinyl-fill::before{content:"\f607"}.bi-vinyl::before{content:"\f608"}.bi-voicemail::before{content:"\f609"}.bi-volume-down-fill::before{content:"\f60a"}.bi-volume-down::before{content:"\f60b"}.bi-volume-mute-fill::before{content:"\f60c"}.bi-volume-mute::before{content:"\f60d"}.bi-volume-off-fill::before{content:"\f60e"}.bi-volume-off::before{content:"\f60f"}.bi-volume-up-fill::before{content:"\f610"}.bi-volume-up::before{content:"\f611"}.bi-vr::before{content:"\f612"}.bi-wallet-fill::before{content:"\f613"}.bi-wallet::before{content:"\f614"}.bi-wallet2::before{content:"\f615"}.bi-watch::before{content:"\f616"}.bi-water::before{content:"\f617"}.bi-whatsapp::before{content:"\f618"}.bi-wifi-1::before{content:"\f619"}.bi-wifi-2::before{content:"\f61a"}.bi-wifi-off::before{content:"\f61b"}.bi-wifi::before{content:"\f61c"}.bi-wind::before{content:"\f61d"}.bi-window-dock::before{content:"\f61e"}.bi-window-sidebar::before{content:"\f61f"}.bi-window::before{content:"\f620"}.bi-wrench::before{content:"\f621"}.bi-x-circle-fill::before{content:"\f622"}.bi-x-circle::before{content:"\f623"}.bi-x-diamond-fill::before{content:"\f624"}.bi-x-diamond::before{content:"\f625"}.bi-x-octagon-fill::before{content:"\f626"}.bi-x-octagon::before{content:"\f627"}.bi-x-square-fill::before{content:"\f628"}.bi-x-square::before{content:"\f629"}.bi-x::before{content:"\f62a"}.bi-youtube::before{content:"\f62b"}.bi-zoom-in::before{content:"\f62c"}.bi-zoom-out::before{content:"\f62d"}.bi-bank::before{content:"\f62e"}.bi-bank2::before{content:"\f62f"}.bi-bell-slash-fill::before{content:"\f630"}.bi-bell-slash::before{content:"\f631"}.bi-cash-coin::before{content:"\f632"}.bi-check-lg::before{content:"\f633"}.bi-coin::before{content:"\f634"}.bi-currency-bitcoin::before{content:"\f635"}.bi-currency-dollar::before{content:"\f636"}.bi-currency-euro::before{content:"\f637"}.bi-currency-exchange::before{content:"\f638"}.bi-currency-pound::before{content:"\f639"}.bi-currency-yen::before{content:"\f63a"}.bi-dash-lg::before{content:"\f63b"}.bi-exclamation-lg::before{content:"\f63c"}.bi-file-earmark-pdf-fill::before{content:"\f63d"}.bi-file-earmark-pdf::before{content:"\f63e"}.bi-file-pdf-fill::before{content:"\f63f"}.bi-file-pdf::before{content:"\f640"}.bi-gender-ambiguous::before{content:"\f641"}.bi-gender-female::before{content:"\f642"}.bi-gender-male::before{content:"\f643"}.bi-gender-trans::before{content:"\f644"}.bi-headset-vr::before{content:"\f645"}.bi-info-lg::before{content:"\f646"}.bi-mastodon::before{content:"\f647"}.bi-messenger::before{content:"\f648"}.bi-piggy-bank-fill::before{content:"\f649"}.bi-piggy-bank::before{content:"\f64a"}.bi-pin-map-fill::before{content:"\f64b"}.bi-pin-map::before{content:"\f64c"}.bi-plus-lg::before{content:"\f64d"}.bi-question-lg::before{content:"\f64e"}.bi-recycle::before{content:"\f64f"}.bi-reddit::before{content:"\f650"}.bi-safe-fill::before{content:"\f651"}.bi-safe2-fill::before{content:"\f652"}.bi-safe2::before{content:"\f653"}.bi-sd-card-fill::before{content:"\f654"}.bi-sd-card::before{content:"\f655"}.bi-skype::before{content:"\f656"}.bi-slash-lg::before{content:"\f657"}.bi-translate::before{content:"\f658"}.bi-x-lg::before{content:"\f659"}.bi-safe::before{content:"\f65a"}.bi-apple::before{content:"\f65b"}.bi-microsoft::before{content:"\f65d"}.bi-windows::before{content:"\f65e"}.bi-behance::before{content:"\f65c"}.bi-dribbble::before{content:"\f65f"}.bi-line::before{content:"\f660"}.bi-medium::before{content:"\f661"}.bi-paypal::before{content:"\f662"}.bi-pinterest::before{content:"\f663"}.bi-signal::before{content:"\f664"}.bi-snapchat::before{content:"\f665"}.bi-spotify::before{content:"\f666"}.bi-stack-overflow::before{content:"\f667"}.bi-strava::before{content:"\f668"}.bi-wordpress::before{content:"\f669"}.bi-vimeo::before{content:"\f66a"}.bi-activity::before{content:"\f66b"}.bi-easel2-fill::before{content:"\f66c"}.bi-easel2::before{content:"\f66d"}.bi-easel3-fill::before{content:"\f66e"}.bi-easel3::before{content:"\f66f"}.bi-fan::before{content:"\f670"}.bi-fingerprint::before{content:"\f671"}.bi-graph-down-arrow::before{content:"\f672"}.bi-graph-up-arrow::before{content:"\f673"}.bi-hypnotize::before{content:"\f674"}.bi-magic::before{content:"\f675"}.bi-person-rolodex::before{content:"\f676"}.bi-person-video::before{content:"\f677"}.bi-person-video2::before{content:"\f678"}.bi-person-video3::before{content:"\f679"}.bi-person-workspace::before{content:"\f67a"}.bi-radioactive::before{content:"\f67b"}.bi-webcam-fill::before{content:"\f67c"}.bi-webcam::before{content:"\f67d"}.bi-yin-yang::before{content:"\f67e"}.bi-bandaid-fill::before{content:"\f680"}.bi-bandaid::before{content:"\f681"}.bi-bluetooth::before{content:"\f682"}.bi-body-text::before{content:"\f683"}.bi-boombox::before{content:"\f684"}.bi-boxes::before{content:"\f685"}.bi-dpad-fill::before{content:"\f686"}.bi-dpad::before{content:"\f687"}.bi-ear-fill::before{content:"\f688"}.bi-ear::before{content:"\f689"}.bi-envelope-check-1::before{content:"\f68a"}.bi-envelope-check-fill::before{content:"\f68b"}.bi-envelope-check::before{content:"\f68c"}.bi-envelope-dash-1::before{content:"\f68d"}.bi-envelope-dash-fill::before{content:"\f68e"}.bi-envelope-dash::before{content:"\f68f"}.bi-envelope-exclamation-1::before{content:"\f690"}.bi-envelope-exclamation-fill::before{content:"\f691"}.bi-envelope-exclamation::before{content:"\f692"}.bi-envelope-plus-fill::before{content:"\f693"}.bi-envelope-plus::before{content:"\f694"}.bi-envelope-slash-1::before{content:"\f695"}.bi-envelope-slash-fill::before{content:"\f696"}.bi-envelope-slash::before{content:"\f697"}.bi-envelope-x-1::before{content:"\f698"}.bi-envelope-x-fill::before{content:"\f699"}.bi-envelope-x::before{content:"\f69a"}.bi-explicit-fill::before{content:"\f69b"}.bi-explicit::before{content:"\f69c"}.bi-git::before{content:"\f69d"}.bi-infinity::before{content:"\f69e"}.bi-list-columns-reverse::before{content:"\f69f"}.bi-list-columns::before{content:"\f6a0"}.bi-meta::before{content:"\f6a1"}.bi-mortorboard-fill::before{content:"\f6a2"}.bi-mortorboard::before{content:"\f6a3"}.bi-nintendo-switch::before{content:"\f6a4"}.bi-pc-display-horizontal::before{content:"\f6a5"}.bi-pc-display::before{content:"\f6a6"}.bi-pc-horizontal::before{content:"\f6a7"}.bi-pc::before{content:"\f6a8"}.bi-playstation::before{content:"\f6a9"}.bi-plus-slash-minus::before{content:"\f6aa"}.bi-projector-fill::before{content:"\f6ab"}.bi-projector::before{content:"\f6ac"}.bi-qr-code-scan::before{content:"\f6ad"}.bi-qr-code::before{content:"\f6ae"}.bi-quora::before{content:"\f6af"}.bi-quote::before{content:"\f6b0"}.bi-robot::before{content:"\f6b1"}.bi-send-check-fill::before{content:"\f6b2"}.bi-send-check::before{content:"\f6b3"}.bi-send-dash-fill::before{content:"\f6b4"}.bi-send-dash::before{content:"\f6b5"}.bi-send-exclamation-1::before{content:"\f6b6"}.bi-send-exclamation-fill::before{content:"\f6b7"}.bi-send-exclamation::before{content:"\f6b8"}.bi-send-fill::before{content:"\f6b9"}.bi-send-plus-fill::before{content:"\f6ba"}.bi-send-plus::before{content:"\f6bb"}.bi-send-slash-fill::before{content:"\f6bc"}.bi-send-slash::before{content:"\f6bd"}.bi-send-x-fill::before{content:"\f6be"}.bi-send-x::before{content:"\f6bf"}.bi-send::before{content:"\f6c0"}.bi-steam::before{content:"\f6c1"}.bi-terminal-dash-1::before{content:"\f6c2"}.bi-terminal-dash::before{content:"\f6c3"}.bi-terminal-plus::before{content:"\f6c4"}.bi-terminal-split::before{content:"\f6c5"}.bi-ticket-detailed-fill::before{content:"\f6c6"}.bi-ticket-detailed::before{content:"\f6c7"}.bi-ticket-fill::before{content:"\f6c8"}.bi-ticket-perforated-fill::before{content:"\f6c9"}.bi-ticket-perforated::before{content:"\f6ca"}.bi-ticket::before{content:"\f6cb"}.bi-tiktok::before{content:"\f6cc"}.bi-window-dash::before{content:"\f6cd"}.bi-window-desktop::before{content:"\f6ce"}.bi-window-fullscreen::before{content:"\f6cf"}.bi-window-plus::before{content:"\f6d0"}.bi-window-split::before{content:"\f6d1"}.bi-window-stack::before{content:"\f6d2"}.bi-window-x::before{content:"\f6d3"}.bi-xbox::before{content:"\f6d4"}.bi-ethernet::before{content:"\f6d5"}.bi-hdmi-fill::before{content:"\f6d6"}.bi-hdmi::before{content:"\f6d7"}.bi-usb-c-fill::before{content:"\f6d8"}.bi-usb-c::before{content:"\f6d9"}.bi-usb-fill::before{content:"\f6da"}.bi-usb-plug-fill::before{content:"\f6db"}.bi-usb-plug::before{content:"\f6dc"}.bi-usb-symbol::before{content:"\f6dd"}.bi-usb::before{content:"\f6de"}.bi-boombox-fill::before{content:"\f6df"}.bi-displayport-1::before{content:"\f6e0"}.bi-displayport::before{content:"\f6e1"}.bi-gpu-card::before{content:"\f6e2"}.bi-memory::before{content:"\f6e3"}.bi-modem-fill::before{content:"\f6e4"}.bi-modem::before{content:"\f6e5"}.bi-motherboard-fill::before{content:"\f6e6"}.bi-motherboard::before{content:"\f6e7"}.bi-optical-audio-fill::before{content:"\f6e8"}.bi-optical-audio::before{content:"\f6e9"}.bi-pci-card::before{content:"\f6ea"}.bi-router-fill::before{content:"\f6eb"}.bi-router::before{content:"\f6ec"}.bi-ssd-fill::before{content:"\f6ed"}.bi-ssd::before{content:"\f6ee"}.bi-thunderbolt-fill::before{content:"\f6ef"}.bi-thunderbolt::before{content:"\f6f0"}.bi-usb-drive-fill::before{content:"\f6f1"}.bi-usb-drive::before{content:"\f6f2"}.bi-usb-micro-fill::before{content:"\f6f3"}.bi-usb-micro::before{content:"\f6f4"}.bi-usb-mini-fill::before{content:"\f6f5"}.bi-usb-mini::before{content:"\f6f6"}.bi-cloud-haze2::before{content:"\f6f7"}.bi-device-hdd-fill::before{content:"\f6f8"}.bi-device-hdd::before{content:"\f6f9"}.bi-device-ssd-fill::before{content:"\f6fa"}.bi-device-ssd::before{content:"\f6fb"}.bi-displayport-fill::before{content:"\f6fc"}.bi-mortarboard-fill::before{content:"\f6fd"}.bi-mortarboard::before{content:"\f6fe"}.bi-terminal-x::before{content:"\f6ff"}.bi-arrow-through-heart-fill::before{content:"\f700"}.bi-arrow-through-heart::before{content:"\f701"}.bi-badge-sd-fill::before{content:"\f702"}.bi-badge-sd::before{content:"\f703"}.bi-bag-heart-fill::before{content:"\f704"}.bi-bag-heart::before{content:"\f705"}.bi-balloon-fill::before{content:"\f706"}.bi-balloon-heart-fill::before{content:"\f707"}.bi-balloon-heart::before{content:"\f708"}.bi-balloon::before{content:"\f709"}.bi-box2-fill::before{content:"\f70a"}.bi-box2-heart-fill::before{content:"\f70b"}.bi-box2-heart::before{content:"\f70c"}.bi-box2::before{content:"\f70d"}.bi-braces-asterisk::before{content:"\f70e"}.bi-calendar-heart-fill::before{content:"\f70f"}.bi-calendar-heart::before{content:"\f710"}.bi-calendar2-heart-fill::before{content:"\f711"}.bi-calendar2-heart::before{content:"\f712"}.bi-chat-heart-fill::before{content:"\f713"}.bi-chat-heart::before{content:"\f714"}.bi-chat-left-heart-fill::before{content:"\f715"}.bi-chat-left-heart::before{content:"\f716"}.bi-chat-right-heart-fill::before{content:"\f717"}.bi-chat-right-heart::before{content:"\f718"}.bi-chat-square-heart-fill::before{content:"\f719"}.bi-chat-square-heart::before{content:"\f71a"}.bi-clipboard-check-fill::before{content:"\f71b"}.bi-clipboard-data-fill::before{content:"\f71c"}.bi-clipboard-fill::before{content:"\f71d"}.bi-clipboard-heart-fill::before{content:"\f71e"}.bi-clipboard-heart::before{content:"\f71f"}.bi-clipboard-minus-fill::before{content:"\f720"}.bi-clipboard-plus-fill::before{content:"\f721"}.bi-clipboard-pulse::before{content:"\f722"}.bi-clipboard-x-fill::before{content:"\f723"}.bi-clipboard2-check-fill::before{content:"\f724"}.bi-clipboard2-check::before{content:"\f725"}.bi-clipboard2-data-fill::before{content:"\f726"}.bi-clipboard2-data::before{content:"\f727"}.bi-clipboard2-fill::before{content:"\f728"}.bi-clipboard2-heart-fill::before{content:"\f729"}.bi-clipboard2-heart::before{content:"\f72a"}.bi-clipboard2-minus-fill::before{content:"\f72b"}.bi-clipboard2-minus::before{content:"\f72c"}.bi-clipboard2-plus-fill::before{content:"\f72d"}.bi-clipboard2-plus::before{content:"\f72e"}.bi-clipboard2-pulse-fill::before{content:"\f72f"}.bi-clipboard2-pulse::before{content:"\f730"}.bi-clipboard2-x-fill::before{content:"\f731"}.bi-clipboard2-x::before{content:"\f732"}.bi-clipboard2::before{content:"\f733"}.bi-emoji-kiss-fill::before{content:"\f734"}.bi-emoji-kiss::before{content:"\f735"}.bi-envelope-heart-fill::before{content:"\f736"}.bi-envelope-heart::before{content:"\f737"}.bi-envelope-open-heart-fill::before{content:"\f738"}.bi-envelope-open-heart::before{content:"\f739"}.bi-envelope-paper-fill::before{content:"\f73a"}.bi-envelope-paper-heart-fill::before{content:"\f73b"}.bi-envelope-paper-heart::before{content:"\f73c"}.bi-envelope-paper::before{content:"\f73d"}.bi-filetype-aac::before{content:"\f73e"}.bi-filetype-ai::before{content:"\f73f"}.bi-filetype-bmp::before{content:"\f740"}.bi-filetype-cs::before{content:"\f741"}.bi-filetype-css::before{content:"\f742"}.bi-filetype-csv::before{content:"\f743"}.bi-filetype-doc::before{content:"\f744"}.bi-filetype-docx::before{content:"\f745"}.bi-filetype-exe::before{content:"\f746"}.bi-filetype-gif::before{content:"\f747"}.bi-filetype-heic::before{content:"\f748"}.bi-filetype-html::before{content:"\f749"}.bi-filetype-java::before{content:"\f74a"}.bi-filetype-jpg::before{content:"\f74b"}.bi-filetype-js::before{content:"\f74c"}.bi-filetype-jsx::before{content:"\f74d"}.bi-filetype-key::before{content:"\f74e"}.bi-filetype-m4p::before{content:"\f74f"}.bi-filetype-md::before{content:"\f750"}.bi-filetype-mdx::before{content:"\f751"}.bi-filetype-mov::before{content:"\f752"}.bi-filetype-mp3::before{content:"\f753"}.bi-filetype-mp4::before{content:"\f754"}.bi-filetype-otf::before{content:"\f755"}.bi-filetype-pdf::before{content:"\f756"}.bi-filetype-php::before{content:"\f757"}.bi-filetype-png::before{content:"\f758"}.bi-filetype-ppt-1::before{content:"\f759"}.bi-filetype-ppt::before{content:"\f75a"}.bi-filetype-psd::before{content:"\f75b"}.bi-filetype-py::before{content:"\f75c"}.bi-filetype-raw::before{content:"\f75d"}.bi-filetype-rb::before{content:"\f75e"}.bi-filetype-sass::before{content:"\f75f"}.bi-filetype-scss::before{content:"\f760"}.bi-filetype-sh::before{content:"\f761"}.bi-filetype-svg::before{content:"\f762"}.bi-filetype-tiff::before{content:"\f763"}.bi-filetype-tsx::before{content:"\f764"}.bi-filetype-ttf::before{content:"\f765"}.bi-filetype-txt::before{content:"\f766"}.bi-filetype-wav::before{content:"\f767"}.bi-filetype-woff::before{content:"\f768"}.bi-filetype-xls-1::before{content:"\f769"}.bi-filetype-xls::before{content:"\f76a"}.bi-filetype-xml::before{content:"\f76b"}.bi-filetype-yml::before{content:"\f76c"}.bi-heart-arrow::before{content:"\f76d"}.bi-heart-pulse-fill::before{content:"\f76e"}.bi-heart-pulse::before{content:"\f76f"}.bi-heartbreak-fill::before{content:"\f770"}.bi-heartbreak::before{content:"\f771"}.bi-hearts::before{content:"\f772"}.bi-hospital-fill::before{content:"\f773"}.bi-hospital::before{content:"\f774"}.bi-house-heart-fill::before{content:"\f775"}.bi-house-heart::before{content:"\f776"}.bi-incognito::before{content:"\f777"}.bi-magnet-fill::before{content:"\f778"}.bi-magnet::before{content:"\f779"}.bi-person-heart::before{content:"\f77a"}.bi-person-hearts::before{content:"\f77b"}.bi-phone-flip::before{content:"\f77c"}.bi-plugin::before{content:"\f77d"}.bi-postage-fill::before{content:"\f77e"}.bi-postage-heart-fill::before{content:"\f77f"}.bi-postage-heart::before{content:"\f780"}.bi-postage::before{content:"\f781"}.bi-postcard-fill::before{content:"\f782"}.bi-postcard-heart-fill::before{content:"\f783"}.bi-postcard-heart::before{content:"\f784"}.bi-postcard::before{content:"\f785"}.bi-search-heart-fill::before{content:"\f786"}.bi-search-heart::before{content:"\f787"}.bi-sliders2-vertical::before{content:"\f788"}.bi-sliders2::before{content:"\f789"}.bi-trash3-fill::before{content:"\f78a"}.bi-trash3::before{content:"\f78b"}.bi-valentine::before{content:"\f78c"}.bi-valentine2::before{content:"\f78d"}.bi-wrench-adjustable-circle-fill::before{content:"\f78e"}.bi-wrench-adjustable-circle::before{content:"\f78f"}.bi-wrench-adjustable::before{content:"\f790"}.bi-filetype-json::before{content:"\f791"}.bi-filetype-pptx::before{content:"\f792"}.bi-filetype-xlsx::before{content:"\f793"}.bi-1-circle-1::before{content:"\f794"}.bi-1-circle-fill-1::before{content:"\f795"}.bi-1-circle-fill::before{content:"\f796"}.bi-1-circle::before{content:"\f797"}.bi-1-square-fill::before{content:"\f798"}.bi-1-square::before{content:"\f799"}.bi-2-circle-1::before{content:"\f79a"}.bi-2-circle-fill-1::before{content:"\f79b"}.bi-2-circle-fill::before{content:"\f79c"}.bi-2-circle::before{content:"\f79d"}.bi-2-square-fill::before{content:"\f79e"}.bi-2-square::before{content:"\f79f"}.bi-3-circle-1::before{content:"\f7a0"}.bi-3-circle-fill-1::before{content:"\f7a1"}.bi-3-circle-fill::before{content:"\f7a2"}.bi-3-circle::before{content:"\f7a3"}.bi-3-square-fill::before{content:"\f7a4"}.bi-3-square::before{content:"\f7a5"}.bi-4-circle-1::before{content:"\f7a6"}.bi-4-circle-fill-1::before{content:"\f7a7"}.bi-4-circle-fill::before{content:"\f7a8"}.bi-4-circle::before{content:"\f7a9"}.bi-4-square-fill::before{content:"\f7aa"}.bi-4-square::before{content:"\f7ab"}.bi-5-circle-1::before{content:"\f7ac"}.bi-5-circle-fill-1::before{content:"\f7ad"}.bi-5-circle-fill::before{content:"\f7ae"}.bi-5-circle::before{content:"\f7af"}.bi-5-square-fill::before{content:"\f7b0"}.bi-5-square::before{content:"\f7b1"}.bi-6-circle-1::before{content:"\f7b2"}.bi-6-circle-fill-1::before{content:"\f7b3"}.bi-6-circle-fill::before{content:"\f7b4"}.bi-6-circle::before{content:"\f7b5"}.bi-6-square-fill::before{content:"\f7b6"}.bi-6-square::before{content:"\f7b7"}.bi-7-circle-1::before{content:"\f7b8"}.bi-7-circle-fill-1::before{content:"\f7b9"}.bi-7-circle-fill::before{content:"\f7ba"}.bi-7-circle::before{content:"\f7bb"}.bi-7-square-fill::before{content:"\f7bc"}.bi-7-square::before{content:"\f7bd"}.bi-8-circle-1::before{content:"\f7be"}.bi-8-circle-fill-1::before{content:"\f7bf"}.bi-8-circle-fill::before{content:"\f7c0"}.bi-8-circle::before{content:"\f7c1"}.bi-8-square-fill::before{content:"\f7c2"}.bi-8-square::before{content:"\f7c3"}.bi-9-circle-1::before{content:"\f7c4"}.bi-9-circle-fill-1::before{content:"\f7c5"}.bi-9-circle-fill::before{content:"\f7c6"}.bi-9-circle::before{content:"\f7c7"}.bi-9-square-fill::before{content:"\f7c8"}.bi-9-square::before{content:"\f7c9"}.bi-airplane-engines-fill::before{content:"\f7ca"}.bi-airplane-engines::before{content:"\f7cb"}.bi-airplane-fill::before{content:"\f7cc"}.bi-airplane::before{content:"\f7cd"}.bi-alexa::before{content:"\f7ce"}.bi-alipay::before{content:"\f7cf"}.bi-android::before{content:"\f7d0"}.bi-android2::before{content:"\f7d1"}.bi-box-fill::before{content:"\f7d2"}.bi-box-seam-fill::before{content:"\f7d3"}.bi-browser-chrome::before{content:"\f7d4"}.bi-browser-edge::before{content:"\f7d5"}.bi-browser-firefox::before{content:"\f7d6"}.bi-browser-safari::before{content:"\f7d7"}.bi-c-circle-1::before{content:"\f7d8"}.bi-c-circle-fill-1::before{content:"\f7d9"}.bi-c-circle-fill::before{content:"\f7da"}.bi-c-circle::before{content:"\f7db"}.bi-c-square-fill::before{content:"\f7dc"}.bi-c-square::before{content:"\f7dd"}.bi-capsule-pill::before{content:"\f7de"}.bi-capsule::before{content:"\f7df"}.bi-car-front-fill::before{content:"\f7e0"}.bi-car-front::before{content:"\f7e1"}.bi-cassette-fill::before{content:"\f7e2"}.bi-cassette::before{content:"\f7e3"}.bi-cc-circle-1::before{content:"\f7e4"}.bi-cc-circle-fill-1::before{content:"\f7e5"}.bi-cc-circle-fill::before{content:"\f7e6"}.bi-cc-circle::before{content:"\f7e7"}.bi-cc-square-fill::before{content:"\f7e8"}.bi-cc-square::before{content:"\f7e9"}.bi-cup-hot-fill::before{content:"\f7ea"}.bi-cup-hot::before{content:"\f7eb"}.bi-currency-rupee::before{content:"\f7ec"}.bi-dropbox::before{content:"\f7ed"}.bi-escape::before{content:"\f7ee"}.bi-fast-forward-btn-fill::before{content:"\f7ef"}.bi-fast-forward-btn::before{content:"\f7f0"}.bi-fast-forward-circle-fill::before{content:"\f7f1"}.bi-fast-forward-circle::before{content:"\f7f2"}.bi-fast-forward-fill::before{content:"\f7f3"}.bi-fast-forward::before{content:"\f7f4"}.bi-filetype-sql::before{content:"\f7f5"}.bi-fire::before{content:"\f7f6"}.bi-google-play::before{content:"\f7f7"}.bi-h-circle-1::before{content:"\f7f8"}.bi-h-circle-fill-1::before{content:"\f7f9"}.bi-h-circle-fill::before{content:"\f7fa"}.bi-h-circle::before{content:"\f7fb"}.bi-h-square-fill::before{content:"\f7fc"}.bi-h-square::before{content:"\f7fd"}.bi-indent::before{content:"\f7fe"}.bi-lungs-fill::before{content:"\f7ff"}.bi-lungs::before{content:"\f800"}.bi-microsoft-teams::before{content:"\f801"}.bi-p-circle-1::before{content:"\f802"}.bi-p-circle-fill-1::before{content:"\f803"}.bi-p-circle-fill::before{content:"\f804"}.bi-p-circle::before{content:"\f805"}.bi-p-square-fill::before{content:"\f806"}.bi-p-square::before{content:"\f807"}.bi-pass-fill::before{content:"\f808"}.bi-pass::before{content:"\f809"}.bi-prescription::before{content:"\f80a"}.bi-prescription2::before{content:"\f80b"}.bi-r-circle-1::before{content:"\f80c"}.bi-r-circle-fill-1::before{content:"\f80d"}.bi-r-circle-fill::before{content:"\f80e"}.bi-r-circle::before{content:"\f80f"}.bi-r-square-fill::before{content:"\f810"}.bi-r-square::before{content:"\f811"}.bi-repeat-1::before{content:"\f812"}.bi-repeat::before{content:"\f813"}.bi-rewind-btn-fill::before{content:"\f814"}.bi-rewind-btn::before{content:"\f815"}.bi-rewind-circle-fill::before{content:"\f816"}.bi-rewind-circle::before{content:"\f817"}.bi-rewind-fill::before{content:"\f818"}.bi-rewind::before{content:"\f819"}.bi-train-freight-front-fill::before{content:"\f81a"}.bi-train-freight-front::before{content:"\f81b"}.bi-train-front-fill::before{content:"\f81c"}.bi-train-front::before{content:"\f81d"}.bi-train-lightrail-front-fill::before{content:"\f81e"}.bi-train-lightrail-front::before{content:"\f81f"}.bi-truck-front-fill::before{content:"\f820"}.bi-truck-front::before{content:"\f821"}.bi-ubuntu::before{content:"\f822"}.bi-unindent::before{content:"\f823"}.bi-unity::before{content:"\f824"}.bi-universal-access-circle::before{content:"\f825"}.bi-universal-access::before{content:"\f826"}.bi-virus::before{content:"\f827"}.bi-virus2::before{content:"\f828"}.bi-wechat::before{content:"\f829"}.bi-yelp::before{content:"\f82a"}.bi-sign-stop-fill::before{content:"\f82b"}.bi-sign-stop-lights-fill::before{content:"\f82c"}.bi-sign-stop-lights::before{content:"\f82d"}.bi-sign-stop::before{content:"\f82e"}.bi-sign-turn-left-fill::before{content:"\f82f"}.bi-sign-turn-left::before{content:"\f830"}.bi-sign-turn-right-fill::before{content:"\f831"}.bi-sign-turn-right::before{content:"\f832"}.bi-sign-turn-slight-left-fill::before{content:"\f833"}.bi-sign-turn-slight-left::before{content:"\f834"}.bi-sign-turn-slight-right-fill::before{content:"\f835"}.bi-sign-turn-slight-right::before{content:"\f836"}.bi-sign-yield-fill::before{content:"\f837"}.bi-sign-yield::before{content:"\f838"}.bi-ev-station-fill::before{content:"\f839"}.bi-ev-station::before{content:"\f83a"}.bi-fuel-pump-diesel-fill::before{content:"\f83b"}.bi-fuel-pump-diesel::before{content:"\f83c"}.bi-fuel-pump-fill::before{content:"\f83d"}.bi-fuel-pump::before{content:"\f83e"}.bi-0-circle-fill::before{content:"\f83f"}.bi-0-circle::before{content:"\f840"}.bi-0-square-fill::before{content:"\f841"}.bi-0-square::before{content:"\f842"}.bi-rocket-fill::before{content:"\f843"}.bi-rocket-takeoff-fill::before{content:"\f844"}.bi-rocket-takeoff::before{content:"\f845"}.bi-rocket::before{content:"\f846"}.bi-stripe::before{content:"\f847"}.bi-subscript::before{content:"\f848"}.bi-superscript::before{content:"\f849"}.bi-trello::before{content:"\f84a"}.bi-envelope-at-fill::before{content:"\f84b"}.bi-envelope-at::before{content:"\f84c"}.bi-regex::before{content:"\f84d"}.bi-text-wrap::before{content:"\f84e"}.bi-sign-dead-end-fill::before{content:"\f84f"}.bi-sign-dead-end::before{content:"\f850"}.bi-sign-do-not-enter-fill::before{content:"\f851"}.bi-sign-do-not-enter::before{content:"\f852"}.bi-sign-intersection-fill::before{content:"\f853"}.bi-sign-intersection-side-fill::before{content:"\f854"}.bi-sign-intersection-side::before{content:"\f855"}.bi-sign-intersection-t-fill::before{content:"\f856"}.bi-sign-intersection-t::before{content:"\f857"}.bi-sign-intersection-y-fill::before{content:"\f858"}.bi-sign-intersection-y::before{content:"\f859"}.bi-sign-intersection::before{content:"\f85a"}.bi-sign-merge-left-fill::before{content:"\f85b"}.bi-sign-merge-left::before{content:"\f85c"}.bi-sign-merge-right-fill::before{content:"\f85d"}.bi-sign-merge-right::before{content:"\f85e"}.bi-sign-no-left-turn-fill::before{content:"\f85f"}.bi-sign-no-left-turn::before{content:"\f860"}.bi-sign-no-parking-fill::before{content:"\f861"}.bi-sign-no-parking::before{content:"\f862"}.bi-sign-no-right-turn-fill::before{content:"\f863"}.bi-sign-no-right-turn::before{content:"\f864"}.bi-sign-railroad-fill::before{content:"\f865"}.bi-sign-railroad::before{content:"\f866"}.bi-building-add::before{content:"\f867"}.bi-building-check::before{content:"\f868"}.bi-building-dash::before{content:"\f869"}.bi-building-down::before{content:"\f86a"}.bi-building-exclamation::before{content:"\f86b"}.bi-building-fill-add::before{content:"\f86c"}.bi-building-fill-check::before{content:"\f86d"}.bi-building-fill-dash::before{content:"\f86e"}.bi-building-fill-down::before{content:"\f86f"}.bi-building-fill-exclamation::before{content:"\f870"}.bi-building-fill-gear::before{content:"\f871"}.bi-building-fill-lock::before{content:"\f872"}.bi-building-fill-slash::before{content:"\f873"}.bi-building-fill-up::before{content:"\f874"}.bi-building-fill-x::before{content:"\f875"}.bi-building-fill::before{content:"\f876"}.bi-building-gear::before{content:"\f877"}.bi-building-lock::before{content:"\f878"}.bi-building-slash::before{content:"\f879"}.bi-building-up::before{content:"\f87a"}.bi-building-x::before{content:"\f87b"}.bi-buildings-fill::before{content:"\f87c"}.bi-buildings::before{content:"\f87d"}.bi-bus-front-fill::before{content:"\f87e"}.bi-bus-front::before{content:"\f87f"}.bi-ev-front-fill::before{content:"\f880"}.bi-ev-front::before{content:"\f881"}.bi-globe-americas::before{content:"\f882"}.bi-globe-asia-australia::before{content:"\f883"}.bi-globe-central-south-asia::before{content:"\f884"}.bi-globe-europe-africa::before{content:"\f885"}.bi-house-add-fill::before{content:"\f886"}.bi-house-add::before{content:"\f887"}.bi-house-check-fill::before{content:"\f888"}.bi-house-check::before{content:"\f889"}.bi-house-dash-fill::before{content:"\f88a"}.bi-house-dash::before{content:"\f88b"}.bi-house-down-fill::before{content:"\f88c"}.bi-house-down::before{content:"\f88d"}.bi-house-exclamation-fill::before{content:"\f88e"}.bi-house-exclamation::before{content:"\f88f"}.bi-house-gear-fill::before{content:"\f890"}.bi-house-gear::before{content:"\f891"}.bi-house-lock-fill::before{content:"\f892"}.bi-house-lock::before{content:"\f893"}.bi-house-slash-fill::before{content:"\f894"}.bi-house-slash::before{content:"\f895"}.bi-house-up-fill::before{content:"\f896"}.bi-house-up::before{content:"\f897"}.bi-house-x-fill::before{content:"\f898"}.bi-house-x::before{content:"\f899"}.bi-person-add::before{content:"\f89a"}.bi-person-down::before{content:"\f89b"}.bi-person-exclamation::before{content:"\f89c"}.bi-person-fill-add::before{content:"\f89d"}.bi-person-fill-check::before{content:"\f89e"}.bi-person-fill-dash::before{content:"\f89f"}.bi-person-fill-down::before{content:"\f8a0"}.bi-person-fill-exclamation::before{content:"\f8a1"}.bi-person-fill-gear::before{content:"\f8a2"}.bi-person-fill-lock::before{content:"\f8a3"}.bi-person-fill-slash::before{content:"\f8a4"}.bi-person-fill-up::before{content:"\f8a5"}.bi-person-fill-x::before{content:"\f8a6"}.bi-person-gear::before{content:"\f8a7"}.bi-person-lock::before{content:"\f8a8"}.bi-person-slash::before{content:"\f8a9"}.bi-person-up::before{content:"\f8aa"}.bi-scooter::before{content:"\f8ab"}.bi-taxi-front-fill::before{content:"\f8ac"}.bi-taxi-front::before{content:"\f8ad"}.bi-amd::before{content:"\f8ae"}.bi-database-add::before{content:"\f8af"}.bi-database-check::before{content:"\f8b0"}.bi-database-dash::before{content:"\f8b1"}.bi-database-down::before{content:"\f8b2"}.bi-database-exclamation::before{content:"\f8b3"}.bi-database-fill-add::before{content:"\f8b4"}.bi-database-fill-check::before{content:"\f8b5"}.bi-database-fill-dash::before{content:"\f8b6"}.bi-database-fill-down::before{content:"\f8b7"}.bi-database-fill-exclamation::before{content:"\f8b8"}.bi-database-fill-gear::before{content:"\f8b9"}.bi-database-fill-lock::before{content:"\f8ba"}.bi-database-fill-slash::before{content:"\f8bb"}.bi-database-fill-up::before{content:"\f8bc"}.bi-database-fill-x::before{content:"\f8bd"}.bi-database-fill::before{content:"\f8be"}.bi-database-gear::before{content:"\f8bf"}.bi-database-lock::before{content:"\f8c0"}.bi-database-slash::before{content:"\f8c1"}.bi-database-up::before{content:"\f8c2"}.bi-database-x::before{content:"\f8c3"}.bi-database::before{content:"\f8c4"}.bi-houses-fill::before{content:"\f8c5"}.bi-houses::before{content:"\f8c6"}.bi-nvidia::before{content:"\f8c7"}.bi-person-vcard-fill::before{content:"\f8c8"}.bi-person-vcard::before{content:"\f8c9"}.bi-sina-weibo::before{content:"\f8ca"}.bi-tencent-qq::before{content:"\f8cb"}.bi-wikipedia::before{content:"\f8cc"}/*! + * Bootstrap Colorpicker v2.5.2 + * https://itsjavi.com/bootstrap-colorpicker/ + * + * Originally written by (c) 2012 Stefan Petre + * Licensed under the Apache License v2.0 + * http://www.apache.org/licenses/LICENSE-2.0.txt + * + */.colorpicker-saturation{width:100px;height:100px;background-image:url("data:image/png;base64,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");cursor:crosshair;float:left}.colorpicker-saturation i{display:block;height:5px;width:5px;border:1px solid #000;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;position:absolute;top:0;left:0;margin:-4px 0 0 -4px}.colorpicker-saturation i b{display:block;height:5px;width:5px;border:1px solid #fff;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.colorpicker-hue,.colorpicker-alpha{width:15px;height:100px;float:left;cursor:row-resize;margin-left:4px;margin-bottom:4px}.colorpicker-hue i,.colorpicker-alpha i{display:block;height:1px;background:#000;border-top:1px solid #fff;position:absolute;top:0;left:0;width:100%;margin-top:-1px}.colorpicker-hue{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABkCAMAAABw8qpSAAABLFBMVEXqFBb/ABH/ACL/ADH/AEH/AFD/AGD/AG7/AH7/AI3/AJ3/AKz/ALz/AMr/ANv/AOr/APr2AP/mAP/XAP/HAP+4AP+oAP+aAP+JAP97AP9rAP9cAP9MAP8+AP8tAP8fAP8PAP8BAv8AEP8AH/8AL/8APv8ATv8AXP8Abf8Ae/8Ai/8Amv8Aqv8AuP8Ayf8A1/8A5/8A9/8A//gA/+kA/9kA/8oA/7oA/6wA/5sA/40A/30A/24A/14A/1AA/z8A/zEA/yEA/xEB/wMN/wAd/wAs/wA8/wBK/wBb/wBp/wB5/wCI/wCY/wCm/wC3/wDF/wDV/wDk/wD1/wD/+gD/7AD/3AD/zAD/vgD/rQD/nwD/jgD/gAD/cAD/YgD/UQD/QwD/MgD/JAD/FAD4Eg42qAedAAAAh0lEQVR4XgXAg3EDAAAAwI9to7Zt27a1/w49BASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTS1tHXo1KVbj159+g0YNGTYiFFjxk2YNGXajFlz5i1YtGTZilVr1m3YtGXbjl179h04dOTYiVNnzl24dOXajVt37j149OTZi1dv3n349OXbj19//wOxE1dQ8reGAAAAAElFTkSuQmCC")}.colorpicker-alpha{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAABkCAQAAAAVxWkcAAABr0lEQVR4Xo2VwU0DQQxF7dmRuNIFlzlSAR3QAaXQQdIBJVABFXDcOVAAd67cjJLR07dkhcSrkZKfb/t7bG88rFo3B5gZPMNycItu2xloGV7MWHzM9zuzFWCkmA0nK6AszCUJDW6+mG6R03ncw5v8EMTEvZ2O3AliYjpslblc0RF9LmZYWxURU6aKytWZYsoWCAe+xwOZp1GsEukGiIkYxcQCHck99+gRgB7JncyIB5SGEhP3Yh5P6JwX+u6AnYot104d8DJT7uH7M9JH6OZbimj0vfMVaYnJIZFJDBW9kHlerL2C6JV4mSt7uuo2N57RxnZ+usQjn0R1jwBJBrNO3evJpVYUWsJ/E3UiXRlv24/7YZ04xmEdWlzcKS+B/eapeyMvFd2k0+hRk/T0AmTW8h69s2sjYMsdPntECiILhAeIMZAeH4QvUwfn6ijC0tTV+fT9ky8jM9nK2g7Ly1VjSpKYq6IvsAm7MtNu1orEqa/K3KNvgMFdhfquPfJmp2dbh0/8Gzb6Y22ViaNr6n5410zXdngVhbu6XqdOtWOuin5hjABGp4a2uotZ71MVCfwDBt2/v37yo6AAAAAASUVORK5CYII=");display:none}.colorpicker-saturation,.colorpicker-hue,.colorpicker-alpha{background-size:contain}.colorpicker{padding:4px;min-width:130px;margin-top:1px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;z-index:2500}.colorpicker:before,.colorpicker:after{display:table;content:"";line-height:0}.colorpicker:after{clear:both}.colorpicker:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,0.2);position:absolute;top:-7px;left:6px}.colorpicker:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;top:-6px;left:7px}.colorpicker div{position:relative}.colorpicker.colorpicker-with-alpha{min-width:140px}.colorpicker.colorpicker-with-alpha .colorpicker-alpha{display:block}.colorpicker-color{height:10px;margin-top:5px;clear:both;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAABkCAQAAAAVxWkcAAABr0lEQVR4Xo2VwU0DQQxF7dmRuNIFlzlSAR3QAaXQQdIBJVABFXDcOVAAd67cjJLR07dkhcSrkZKfb/t7bG88rFo3B5gZPMNycItu2xloGV7MWHzM9zuzFWCkmA0nK6AszCUJDW6+mG6R03ncw5v8EMTEvZ2O3AliYjpslblc0RF9LmZYWxURU6aKytWZYsoWCAe+xwOZp1GsEukGiIkYxcQCHck99+gRgB7JncyIB5SGEhP3Yh5P6JwX+u6AnYot104d8DJT7uH7M9JH6OZbimj0vfMVaYnJIZFJDBW9kHlerL2C6JV4mSt7uuo2N57RxnZ+usQjn0R1jwBJBrNO3evJpVYUWsJ/E3UiXRlv24/7YZ04xmEdWlzcKS+B/eapeyMvFd2k0+hRk/T0AmTW8h69s2sjYMsdPntECiILhAeIMZAeH4QvUwfn6ijC0tTV+fT9ky8jM9nK2g7Ly1VjSpKYq6IvsAm7MtNu1orEqa/K3KNvgMFdhfquPfJmp2dbh0/8Gzb6Y22ViaNr6n5410zXdngVhbu6XqdOtWOuin5hjABGp4a2uotZ71MVCfwDBt2/v37yo6AAAAAASUVORK5CYII=");background-position:0 100%}.colorpicker-color div{height:10px}.colorpicker-selectors{display:none;height:10px;margin-top:5px;clear:both}.colorpicker-selectors i{cursor:pointer;float:left;height:10px;width:10px}.colorpicker-selectors i+i{margin-left:3px}.colorpicker-element .input-group-addon i,.colorpicker-element .add-on i{display:inline-block;cursor:pointer;height:16px;vertical-align:text-top;width:16px}.colorpicker.colorpicker-inline{position:relative;display:inline-block;float:none;z-index:auto}.colorpicker.colorpicker-horizontal{width:110px;min-width:110px;height:auto}.colorpicker.colorpicker-horizontal .colorpicker-saturation{margin-bottom:4px}.colorpicker.colorpicker-horizontal .colorpicker-color{width:100px}.colorpicker.colorpicker-horizontal .colorpicker-hue,.colorpicker.colorpicker-horizontal .colorpicker-alpha{width:100px;height:15px;float:left;cursor:col-resize;margin-left:0px;margin-bottom:4px}.colorpicker.colorpicker-horizontal .colorpicker-hue i,.colorpicker.colorpicker-horizontal .colorpicker-alpha i{display:block;height:15px;background:#fff;position:absolute;top:0;left:0;width:1px;border:none;margin-top:0px}.colorpicker.colorpicker-horizontal .colorpicker-hue{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAABCAMAAAAfBfuPAAABLFBMVEXqFBb/ABH/ACL/ADH/AEH/AFD/AGD/AG7/AH7/AI3/AJ3/AKz/ALz/AMr/ANv/AOr/APr2AP/mAP/XAP/HAP+4AP+oAP+aAP+JAP97AP9rAP9cAP9MAP8+AP8tAP8fAP8PAP8BAv8AEP8AH/8AL/8APv8ATv8AXP8Abf8Ae/8Ai/8Amv8Aqv8AuP8Ayf8A1/8A5/8A9/8A//gA/+kA/9kA/8oA/7oA/6wA/5sA/40A/30A/24A/14A/1AA/z8A/zEA/yEA/xEB/wMN/wAd/wAs/wA8/wBK/wBb/wBp/wB5/wCI/wCY/wCm/wC3/wDF/wDV/wDk/wD1/wD/+gD/7AD/3AD/zAD/vgD/rQD/nwD/jgD/gAD/cAD/YgD/UQD/QwD/MgD/JAD/FAD4Eg42qAedAAAAbUlEQVR4XgXAghEDsbxtlrZt27ax/w49ACAYQTGcICmaYTleECVZUTXdMC1Wm93hdLk9Xp8/EAyFI9FYPJFMpTPZXL5QLJUr1Vq90Wy1O91efzAcjSfT2XyxXK03293+cDydL9fb/fF8vT/f3x+LfRNXARMbCAAAAABJRU5ErkJggg==")}.colorpicker.colorpicker-horizontal .colorpicker-alpha{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAKCAQAAADoFTP1AAAB9ElEQVR4XoWTQW4VMRBEu9qWEimL7DhEMp8NF+ASnJJLcAQgE1bcgBUSkYKUuHCrZ9pjeqSU5Yn9LPu7umJQBIIv+k7vIOrtK66L4lmr3pVOrOv3otp619KZ0/KjdNI79L52Uo09FBQWrU0vfe5trezU+hLsoUKd3Repovte+0vbq/7Lj5XbaHECKasR9G4MPlbp+gzZxd6koPEJCkAYC5SjcOTAIIOK90Dja1IfIZ8Z+zAY9jm3b5Ia+MT5sFcqRJrR2AYYA8Kua5BzYRrFPNmD4PQMegGJMOffJJUsWiI3nCHZZjInNdffLWOufzbc3JaboCAVxwmnRHbhLSPwRJ4wU0BRSc6HkECYYVw95nMKgJOcylxrJttE5Ibzf9Xq9GPvP+WX3MiV/MGHfRu/SentRQrfG1GzsIrytdNXucSRKxQNIGHM9YhGFQJcdjNcBZvfJayuYe4Sia1CzwW+19mWOhe37HsxJWKwbu/jluEU15QzAQjAqCEbhMJc78GYV2E0kooHDubUImWkTOhGpgv8PoT8DJG/bzxna4BZ0eOFSOaLADGeSpFsg5AzeaDZIDQQXjZ4y/8ryfzUXBwdELRjTjCNvOeT0rNlrJz90vwy6N9pXXQEluX0inElpPWokSdiLCfiNJJjMKQ8Qsh8GEKQKMo/eiHrNbI9UksAAAAASUVORK5CYII=")}.colorpicker-right:before{left:auto;right:6px}.colorpicker-right:after{left:auto;right:7px}.colorpicker-no-arrow:before{border-right:0;border-left:0}.colorpicker-no-arrow:after{border-right:0;border-left:0}.colorpicker.colorpicker-visible,.colorpicker-alpha.colorpicker-visible,.colorpicker-saturation.colorpicker-visible,.colorpicker-hue.colorpicker-visible,.colorpicker-selectors.colorpicker-visible{display:block}.colorpicker.colorpicker-hidden,.colorpicker-alpha.colorpicker-hidden,.colorpicker-saturation.colorpicker-hidden,.colorpicker-hue.colorpicker-hidden,.colorpicker-selectors.colorpicker-hidden{display:none}.colorpicker-inline.colorpicker-visible{display:inline-block}/*! + * Bootstrap Colorpicker v2.5.2 + * https://itsjavi.com/bootstrap-colorpicker/ + * + * Originally written by (c) 2012 Stefan Petre + * Licensed under the Apache License v2.0 + * http://www.apache.org/licenses/LICENSE-2.0.txt + * + */.colorpicker-saturation{width:100px;height:100px;background-image:url("data:image/png;base64,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");cursor:crosshair;float:left}.colorpicker-saturation i{display:block;height:5px;width:5px;border:1px solid #000;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;position:absolute;top:0;left:0;margin:-4px 0 0 -4px}.colorpicker-saturation i b{display:block;height:5px;width:5px;border:1px solid #fff;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.colorpicker-hue,.colorpicker-alpha{width:15px;height:100px;float:left;cursor:row-resize;margin-left:4px;margin-bottom:4px}.colorpicker-hue i,.colorpicker-alpha i{display:block;height:1px;background:#000;border-top:1px solid #fff;position:absolute;top:0;left:0;width:100%;margin-top:-1px}.colorpicker-hue{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABkCAMAAABw8qpSAAABLFBMVEXqFBb/ABH/ACL/ADH/AEH/AFD/AGD/AG7/AH7/AI3/AJ3/AKz/ALz/AMr/ANv/AOr/APr2AP/mAP/XAP/HAP+4AP+oAP+aAP+JAP97AP9rAP9cAP9MAP8+AP8tAP8fAP8PAP8BAv8AEP8AH/8AL/8APv8ATv8AXP8Abf8Ae/8Ai/8Amv8Aqv8AuP8Ayf8A1/8A5/8A9/8A//gA/+kA/9kA/8oA/7oA/6wA/5sA/40A/30A/24A/14A/1AA/z8A/zEA/yEA/xEB/wMN/wAd/wAs/wA8/wBK/wBb/wBp/wB5/wCI/wCY/wCm/wC3/wDF/wDV/wDk/wD1/wD/+gD/7AD/3AD/zAD/vgD/rQD/nwD/jgD/gAD/cAD/YgD/UQD/QwD/MgD/JAD/FAD4Eg42qAedAAAAh0lEQVR4XgXAg3EDAAAAwI9to7Zt27a1/w49BASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTS1tHXo1KVbj159+g0YNGTYiFFjxk2YNGXajFlz5i1YtGTZilVr1m3YtGXbjl179h04dOTYiVNnzl24dOXajVt37j149OTZi1dv3n349OXbj19//wOxE1dQ8reGAAAAAElFTkSuQmCC")}.colorpicker-alpha{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAABkCAQAAAAVxWkcAAABr0lEQVR4Xo2VwU0DQQxF7dmRuNIFlzlSAR3QAaXQQdIBJVABFXDcOVAAd67cjJLR07dkhcSrkZKfb/t7bG88rFo3B5gZPMNycItu2xloGV7MWHzM9zuzFWCkmA0nK6AszCUJDW6+mG6R03ncw5v8EMTEvZ2O3AliYjpslblc0RF9LmZYWxURU6aKytWZYsoWCAe+xwOZp1GsEukGiIkYxcQCHck99+gRgB7JncyIB5SGEhP3Yh5P6JwX+u6AnYot104d8DJT7uH7M9JH6OZbimj0vfMVaYnJIZFJDBW9kHlerL2C6JV4mSt7uuo2N57RxnZ+usQjn0R1jwBJBrNO3evJpVYUWsJ/E3UiXRlv24/7YZ04xmEdWlzcKS+B/eapeyMvFd2k0+hRk/T0AmTW8h69s2sjYMsdPntECiILhAeIMZAeH4QvUwfn6ijC0tTV+fT9ky8jM9nK2g7Ly1VjSpKYq6IvsAm7MtNu1orEqa/K3KNvgMFdhfquPfJmp2dbh0/8Gzb6Y22ViaNr6n5410zXdngVhbu6XqdOtWOuin5hjABGp4a2uotZ71MVCfwDBt2/v37yo6AAAAAASUVORK5CYII=");display:none}.colorpicker-saturation,.colorpicker-hue,.colorpicker-alpha{background-size:contain}.colorpicker{padding:4px;min-width:130px;margin-top:1px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;z-index:2500}.colorpicker:before,.colorpicker:after{display:table;content:"";line-height:0}.colorpicker:after{clear:both}.colorpicker:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,0.2);position:absolute;top:-7px;left:6px}.colorpicker:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #ffffff;position:absolute;top:-6px;left:7px}.colorpicker div{position:relative}.colorpicker.colorpicker-with-alpha{min-width:140px}.colorpicker.colorpicker-with-alpha .colorpicker-alpha{display:block}.colorpicker-color{height:10px;margin-top:5px;clear:both;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAABkCAQAAAAVxWkcAAABr0lEQVR4Xo2VwU0DQQxF7dmRuNIFlzlSAR3QAaXQQdIBJVABFXDcOVAAd67cjJLR07dkhcSrkZKfb/t7bG88rFo3B5gZPMNycItu2xloGV7MWHzM9zuzFWCkmA0nK6AszCUJDW6+mG6R03ncw5v8EMTEvZ2O3AliYjpslblc0RF9LmZYWxURU6aKytWZYsoWCAe+xwOZp1GsEukGiIkYxcQCHck99+gRgB7JncyIB5SGEhP3Yh5P6JwX+u6AnYot104d8DJT7uH7M9JH6OZbimj0vfMVaYnJIZFJDBW9kHlerL2C6JV4mSt7uuo2N57RxnZ+usQjn0R1jwBJBrNO3evJpVYUWsJ/E3UiXRlv24/7YZ04xmEdWlzcKS+B/eapeyMvFd2k0+hRk/T0AmTW8h69s2sjYMsdPntECiILhAeIMZAeH4QvUwfn6ijC0tTV+fT9ky8jM9nK2g7Ly1VjSpKYq6IvsAm7MtNu1orEqa/K3KNvgMFdhfquPfJmp2dbh0/8Gzb6Y22ViaNr6n5410zXdngVhbu6XqdOtWOuin5hjABGp4a2uotZ71MVCfwDBt2/v37yo6AAAAAASUVORK5CYII=");background-position:0 100%}.colorpicker-color div{height:10px}.colorpicker-selectors{display:none;height:10px;margin-top:5px;clear:both}.colorpicker-selectors i{cursor:pointer;float:left;height:10px;width:10px}.colorpicker-selectors i+i{margin-left:3px}.colorpicker-element .input-group-addon i,.colorpicker-element .add-on i{display:inline-block;cursor:pointer;height:16px;vertical-align:text-top;width:16px}.colorpicker.colorpicker-inline{position:relative;display:inline-block;float:none;z-index:auto}.colorpicker.colorpicker-horizontal{width:110px;min-width:110px;height:auto}.colorpicker.colorpicker-horizontal .colorpicker-saturation{margin-bottom:4px}.colorpicker.colorpicker-horizontal .colorpicker-color{width:100px}.colorpicker.colorpicker-horizontal .colorpicker-hue,.colorpicker.colorpicker-horizontal .colorpicker-alpha{width:100px;height:15px;float:left;cursor:col-resize;margin-left:0px;margin-bottom:4px}.colorpicker.colorpicker-horizontal .colorpicker-hue i,.colorpicker.colorpicker-horizontal .colorpicker-alpha i{display:block;height:15px;background:#ffffff;position:absolute;top:0;left:0;width:1px;border:none;margin-top:0px}.colorpicker.colorpicker-horizontal .colorpicker-hue{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAABCAMAAAAfBfuPAAABLFBMVEXqFBb/ABH/ACL/ADH/AEH/AFD/AGD/AG7/AH7/AI3/AJ3/AKz/ALz/AMr/ANv/AOr/APr2AP/mAP/XAP/HAP+4AP+oAP+aAP+JAP97AP9rAP9cAP9MAP8+AP8tAP8fAP8PAP8BAv8AEP8AH/8AL/8APv8ATv8AXP8Abf8Ae/8Ai/8Amv8Aqv8AuP8Ayf8A1/8A5/8A9/8A//gA/+kA/9kA/8oA/7oA/6wA/5sA/40A/30A/24A/14A/1AA/z8A/zEA/yEA/xEB/wMN/wAd/wAs/wA8/wBK/wBb/wBp/wB5/wCI/wCY/wCm/wC3/wDF/wDV/wDk/wD1/wD/+gD/7AD/3AD/zAD/vgD/rQD/nwD/jgD/gAD/cAD/YgD/UQD/QwD/MgD/JAD/FAD4Eg42qAedAAAAbUlEQVR4XgXAghEDsbxtlrZt27ax/w49ACAYQTGcICmaYTleECVZUTXdMC1Wm93hdLk9Xp8/EAyFI9FYPJFMpTPZXL5QLJUr1Vq90Wy1O91efzAcjSfT2XyxXK03293+cDydL9fb/fF8vT/f3x+LfRNXARMbCAAAAABJRU5ErkJggg==")}.colorpicker.colorpicker-horizontal .colorpicker-alpha{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAKCAQAAADoFTP1AAAB9ElEQVR4XoWTQW4VMRBEu9qWEimL7DhEMp8NF+ASnJJLcAQgE1bcgBUSkYKUuHCrZ9pjeqSU5Yn9LPu7umJQBIIv+k7vIOrtK66L4lmr3pVOrOv3otp619KZ0/KjdNI79L52Uo09FBQWrU0vfe5trezU+hLsoUKd3Repovte+0vbq/7Lj5XbaHECKasR9G4MPlbp+gzZxd6koPEJCkAYC5SjcOTAIIOK90Dja1IfIZ8Z+zAY9jm3b5Ia+MT5sFcqRJrR2AYYA8Kua5BzYRrFPNmD4PQMegGJMOffJJUsWiI3nCHZZjInNdffLWOufzbc3JaboCAVxwmnRHbhLSPwRJ4wU0BRSc6HkECYYVw95nMKgJOcylxrJttE5Ibzf9Xq9GPvP+WX3MiV/MGHfRu/SentRQrfG1GzsIrytdNXucSRKxQNIGHM9YhGFQJcdjNcBZvfJayuYe4Sia1CzwW+19mWOhe37HsxJWKwbu/jluEU15QzAQjAqCEbhMJc78GYV2E0kooHDubUImWkTOhGpgv8PoT8DJG/bzxna4BZ0eOFSOaLADGeSpFsg5AzeaDZIDQQXjZ4y/8ryfzUXBwdELRjTjCNvOeT0rNlrJz90vwy6N9pXXQEluX0inElpPWokSdiLCfiNJJjMKQ8Qsh8GEKQKMo/eiHrNbI9UksAAAAASUVORK5CYII=")}.colorpicker-right:before{left:auto;right:6px}.colorpicker-right:after{left:auto;right:7px}.colorpicker-no-arrow:before{border-right:0;border-left:0}.colorpicker-no-arrow:after{border-right:0;border-left:0}.colorpicker.colorpicker-visible,.colorpicker-alpha.colorpicker-visible,.colorpicker-saturation.colorpicker-visible,.colorpicker-hue.colorpicker-visible,.colorpicker-selectors.colorpicker-visible{display:block}.colorpicker.colorpicker-hidden,.colorpicker-alpha.colorpicker-hidden,.colorpicker-saturation.colorpicker-hidden,.colorpicker-hue.colorpicker-hidden,.colorpicker-selectors.colorpicker-hidden{display:none}.colorpicker-inline.colorpicker-visible{display:inline-block}.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{background-color:transparent;border:none;font-size:1em}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline;list-style:none;padding:0}.select2-container .select2-selection--multiple .select2-selection__clear{background-color:transparent;border:none;font-size:1em}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;margin-left:5px;padding:0;max-width:100%;resize:none;height:18px;vertical-align:bottom;font-family:sans-serif;overflow:hidden;word-break:keep-all}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option--selectable{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;height:26px;margin-right:20px;padding-right:0px}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;padding-bottom:5px;padding-right:5px;position:relative}.select2-container--default .select2-selection--multiple.select2-selection--clearable{padding-right:25px}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;font-weight:bold;height:20px;margin-right:10px;margin-top:5px;position:absolute;right:0;padding:1px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:inline-block;margin-left:5px;margin-top:5px;padding:0;padding-left:20px;position:relative;max-width:100%;overflow:hidden;text-overflow:ellipsis;vertical-align:bottom;white-space:nowrap}.select2-container--default .select2-selection--multiple .select2-selection__choice__display{cursor:default;padding-left:2px;padding-right:5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{background-color:transparent;border:none;border-right:1px solid #aaa;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#999;cursor:pointer;font-size:1em;font-weight:bold;padding:0 4px;position:absolute;left:0;top:0}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus{background-color:#f1f1f1;color:#333;outline:none}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display{padding-left:5px;padding-right:2px}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{border-left:1px solid #aaa;border-right:none;border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:4px;border-bottom-right-radius:4px}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__clear{float:left;margin-left:10px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--group{padding:0}.select2-container--default .select2-results__option--disabled{color:#999}.select2-container--default .select2-results__option--selected{background-color:#ddd}.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, white 50%, #eee 100%);background-image:-o-linear-gradient(top, white 50%, #eee 100%);background-image:linear-gradient(to bottom, white 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;height:26px;margin-right:20px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, white 0%, #eee 50%);background-image:-o-linear-gradient(top, white 0%, #eee 50%);background-image:linear-gradient(to bottom, white 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eee 50%, white 100%);background-image:-o-linear-gradient(top, #eee 50%, white 100%);background-image:linear-gradient(to bottom, #eee 50%, white 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0;padding-bottom:5px;padding-right:5px}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;display:inline-block;margin-left:5px;margin-top:5px;padding:0}.select2-container--classic .select2-selection--multiple .select2-selection__choice__display{cursor:default;padding-left:2px;padding-right:5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{background-color:transparent;border:none;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#888;cursor:pointer;font-size:1em;font-weight:bold;padding:0 4px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555;outline:none}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display{padding-left:5px;padding-right:2px}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:4px;border-bottom-right-radius:4px}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:white;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option--group{padding:0}.select2-container--classic .select2-results__option--disabled{color:grey}.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable{background-color:#3875d7;color:white}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}.select2-container--bootstrap-5{display:block}select+.select2-container--bootstrap-5{z-index:1}.select2-container--bootstrap-5 *:focus{outline:0}.select2-container--bootstrap-5 .select2-selection{width:100%;min-height:calc(1.5em + .75rem + 2px);padding:.375rem .5rem;font-family:inherit;font-size:1rem;font-weight:400;line-height:1.5;color:#222;background-color:#fff;border:1px solid #ccc;border-radius:0;transition:border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.select2-container--bootstrap-5 .select2-selection{transition:none}}.select2-container--bootstrap-5.select2-container--focus .select2-selection,.select2-container--bootstrap-5.select2-container--open .select2-selection{border-color:#80c6dd;box-shadow:0 0 0 .25rem rgba(0,140,186,0.25)}.select2-container--bootstrap-5.select2-container--open.select2-container--below .select2-selection{border-bottom:0 solid transparent;border-bottom-right-radius:0;border-bottom-left-radius:0}.select2-container--bootstrap-5.select2-container--open.select2-container--above .select2-selection{border-top:0 solid transparent;border-top-left-radius:0;border-top-right-radius:0}.select2-container--bootstrap-5 .select2-search{width:100%}.select2-container--bootstrap-5 .select2-search--inline .select2-search__field{vertical-align:top}.select2-container--bootstrap-5 .select2-selection--single .select2-selection__clear,.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__clear{position:absolute;top:50%;right:1.5rem;width:.75rem;height:.75rem;padding:.25em .25em;overflow:hidden;text-indent:100%;white-space:nowrap;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/.75rem auto no-repeat;transform:translateY(-50%)}.select2-container--bootstrap-5 .select2-selection--single .select2-selection__clear:hover,.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__clear:hover{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23888'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/.75rem auto no-repeat}.select2-container--bootstrap-5 .select2-selection--single .select2-selection__clear>span,.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__clear>span{display:none}.select2-container--bootstrap-5+.select2-container--bootstrap-5{z-index:1056}.select2-container--bootstrap-5 .select2-dropdown{z-index:1056;overflow:hidden;border-color:#80c6dd;border-radius:0}.select2-container--bootstrap-5 .select2-dropdown.select2-dropdown--below{border-top:0 solid transparent;border-top-left-radius:0;border-top-right-radius:0}.select2-container--bootstrap-5 .select2-dropdown.select2-dropdown--above{border-bottom:0 solid transparent;border-bottom-right-radius:0;border-bottom-left-radius:0}.select2-container--bootstrap-5 .select2-dropdown .select2-search{padding:.375rem .5rem}.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field{display:block;width:100%;padding:.375rem .5rem;font-family:inherit;font-size:1rem;font-weight:400;line-height:1.5;color:#222;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;appearance:none;border-radius:0;transition:border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field{transition:none}}.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field:focus{border-color:#80c6dd;box-shadow:0 0 0 .25rem rgba(0,140,186,0.25)}.select2-container--bootstrap-5 .select2-dropdown .select2-results__options:not(.select2-results__options--nested){max-height:15rem;overflow-y:auto}.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option{padding:.375rem .5rem;font-size:1rem;font-weight:400;line-height:1.5}.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__message{color:#888}.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--highlighted{color:#000;background-color:#eee}.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected,.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected="true"]:not(.select2-results__option--highlighted){color:#fff;background-color:#008cba}.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--disabled,.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-disabled="true"]{color:#888}.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[role="group"]{padding:0}.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[role="group"] .select2-results__group{padding:.375rem .25rem;font-weight:300;line-height:1.5;color:#eee}.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[role="group"] .select2-results__options--nested .select2-results__option{padding:.375rem .5rem}.select2-container--bootstrap-5 .select2-selection--single{padding:.375rem 1.5rem .375rem .5rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .5rem center;background-size:16px 12px}.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered{padding:0;font-weight:400;line-height:1.5;color:#222}.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered .select2-selection__placeholder{font-weight:400;line-height:1.5;color:#888}.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered .select2-selection__arrow{display:none}.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered{display:flex;flex-direction:row;flex-wrap:wrap;padding-left:0;margin:0;list-style:none}.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice{display:flex;flex-direction:row;align-items:center;padding:.35em 1rem;margin-right:.375rem;margin-bottom:.375rem;font-size:1rem;color:#222;cursor:auto;border:1px solid #ccc;border-radius:0}.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove{width:.75rem;height:.75rem;padding:.25em .25em;margin-right:.25rem;overflow:hidden;text-indent:100%;white-space:nowrap;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/.75rem auto no-repeat;border:0}.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove:hover{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23888'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/.75rem auto no-repeat}.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove>span{display:none}.select2-container--bootstrap-5 .select2-selection--multiple .select2-search{display:block;width:100%;height:1.5rem}.select2-container--bootstrap-5 .select2-selection--multiple .select2-search .select2-search__field{width:100%;height:1.5rem;margin-top:0;margin-left:0;font-family:inherit;line-height:1.5;background-color:transparent}.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__clear{right:.5rem}.select2-container--bootstrap-5.select2-container--disabled .select2-selection,.select2-container--bootstrap-5.select2-container--disabled.select2-container--focus .select2-selection{color:#888;cursor:not-allowed;background-color:#eee;border-color:#ccc;box-shadow:none}.select2-container--bootstrap-5.select2-container--disabled .select2-selection--multiple .select2-selection__clear,.select2-container--bootstrap-5.select2-container--disabled.select2-container--focus .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--bootstrap-5.select2-container--disabled .select2-selection--multiple .select2-selection__choice,.select2-container--bootstrap-5.select2-container--disabled.select2-container--focus .select2-selection--multiple .select2-selection__choice{cursor:not-allowed}.select2-container--bootstrap-5.select2-container--disabled .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove,.select2-container--bootstrap-5.select2-container--disabled.select2-container--focus .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove{display:none}.select2-container--bootstrap-5.select2-container--disabled .select2-selection--multiple .select2-selection__rendered:not(:empty),.select2-container--bootstrap-5.select2-container--disabled.select2-container--focus .select2-selection--multiple .select2-selection__rendered:not(:empty){padding-bottom:0}.select2-container--bootstrap-5.select2-container--disabled .select2-selection--multiple .select2-selection__rendered:not(:empty)+.select2-search,.select2-container--bootstrap-5.select2-container--disabled.select2-container--focus .select2-selection--multiple .select2-selection__rendered:not(:empty)+.select2-search{display:none}.input-group:not(.has-validation)>.select2-container--bootstrap-5:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) .select2-selection{border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.select2-container--bootstrap-5:nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu) .select2-selection{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-text~.select2-container--bootstrap-5 .select2-selection,.input-group>.btn~.select2-container--bootstrap-5 .select2-selection,.input-group>.dropdown-menu~.select2-container--bootstrap-5 .select2-selection{border-top-left-radius:0;border-bottom-left-radius:0}.input-group .select2-container--bootstrap-5{flex-grow:1}.input-group .select2-container--bootstrap-5 .select2-selection{height:100%}.is-valid+.select2-container--bootstrap-5 .select2-selection,.was-validated select:valid+.select2-container--bootstrap-5 .select2-selection{border-color:#43ac6a}.is-valid+.select2-container--bootstrap-5.select2-container--focus .select2-selection,.is-valid+.select2-container--bootstrap-5.select2-container--open .select2-selection,.was-validated select:valid+.select2-container--bootstrap-5.select2-container--focus .select2-selection,.was-validated select:valid+.select2-container--bootstrap-5.select2-container--open .select2-selection{border-color:#43ac6a;box-shadow:0 0 0 .25rem rgba(67,172,106,0.25)}.is-valid+.select2-container--bootstrap-5.select2-container--open.select2-container--below .select2-selection,.was-validated select:valid+.select2-container--bootstrap-5.select2-container--open.select2-container--below .select2-selection{border-bottom:0 solid transparent}.is-valid+.select2-container--bootstrap-5.select2-container--open.select2-container--above .select2-selection,.was-validated select:valid+.select2-container--bootstrap-5.select2-container--open.select2-container--above .select2-selection{border-top:0 solid transparent;border-top-left-radius:0;border-top-right-radius:0}.is-invalid+.select2-container--bootstrap-5 .select2-selection,.was-validated select:invalid+.select2-container--bootstrap-5 .select2-selection{border-color:#f04124}.is-invalid+.select2-container--bootstrap-5.select2-container--focus .select2-selection,.is-invalid+.select2-container--bootstrap-5.select2-container--open .select2-selection,.was-validated select:invalid+.select2-container--bootstrap-5.select2-container--focus .select2-selection,.was-validated select:invalid+.select2-container--bootstrap-5.select2-container--open .select2-selection{border-color:#f04124;box-shadow:0 0 0 .25rem rgba(240,65,36,0.25)}.is-invalid+.select2-container--bootstrap-5.select2-container--open.select2-container--below .select2-selection,.was-validated select:invalid+.select2-container--bootstrap-5.select2-container--open.select2-container--below .select2-selection{border-bottom:0 solid transparent}.is-invalid+.select2-container--bootstrap-5.select2-container--open.select2-container--above .select2-selection,.was-validated select:invalid+.select2-container--bootstrap-5.select2-container--open.select2-container--above .select2-selection{border-top:0 solid transparent;border-top-left-radius:0;border-top-right-radius:0}.select2-container--bootstrap-5 .select2--small.select2-selection{min-height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;border-radius:0}.select2-container--bootstrap-5 .select2--small.select2-selection--single .select2-selection__clear,.select2-container--bootstrap-5 .select2--small.select2-selection--multiple .select2-selection__clear{width:.5rem;height:.5rem;padding:.125rem .125rem;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/.5rem auto no-repeat}.select2-container--bootstrap-5 .select2--small.select2-selection--single .select2-selection__clear:hover,.select2-container--bootstrap-5 .select2--small.select2-selection--multiple .select2-selection__clear:hover{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23888'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/.5rem auto no-repeat}.select2-container--bootstrap-5 .select2--small.select2-selection--single .select2-search,.select2-container--bootstrap-5 .select2--small.select2-selection--single .select2-search .select2-search__field,.select2-container--bootstrap-5 .select2--small.select2-selection--multiple .select2-search,.select2-container--bootstrap-5 .select2--small.select2-selection--multiple .select2-search .select2-search__field{height:1.5em}.select2-container--bootstrap-5 .select2--small.select2-dropdown{border-radius:0}.select2-container--bootstrap-5 .select2--small.select2-dropdown.select2-dropdown--below{border-top-left-radius:0;border-top-right-radius:0}.select2-container--bootstrap-5 .select2--small.select2-dropdown.select2-dropdown--above{border-bottom-right-radius:0;border-bottom-left-radius:0}.select2-container--bootstrap-5 .select2--small.select2-dropdown .select2-search .select2-search__field{padding:.25rem .5rem;font-size:.875rem}.select2-container--bootstrap-5 .select2--small.select2-dropdown .select2-results__options .select2-results__option{padding:.25rem .5rem;font-size:.875rem}.select2-container--bootstrap-5 .select2--small.select2-dropdown .select2-results__options .select2-results__option[role="group"] .select2-results__group{padding:.25rem .25rem}.select2-container--bootstrap-5 .select2--small.select2-dropdown .select2-results__options .select2-results__option[role="group"] .select2-results__options--nested .select2-results__option{padding:.25rem .5rem}.select2-container--bootstrap-5 .select2--small.select2-selection--single{padding:.25rem 1.5rem .25rem .5rem}.select2-container--bootstrap-5 .select2--small.select2-selection--multiple .select2-selection__rendered .select2-selection__choice{padding:.35em 1rem;font-size:.875rem}.select2-container--bootstrap-5 .select2--small.select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove{width:.5rem;height:.5rem;padding:.125rem .125rem;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/.5rem auto no-repeat}.select2-container--bootstrap-5 .select2--small.select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove:hover{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23888'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/.5rem auto no-repeat}.select2-container--bootstrap-5 .select2--small.select2-selection--multiple .select2-selection__clear{right:.5rem}.select2-container--bootstrap-5 .select2--large.select2-selection{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;border-radius:0}.select2-container--bootstrap-5 .select2--large.select2-selection--single .select2-selection__clear,.select2-container--bootstrap-5 .select2--large.select2-selection--multiple .select2-selection__clear{width:1rem;height:1rem;padding:.5rem .5rem;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1rem auto no-repeat}.select2-container--bootstrap-5 .select2--large.select2-selection--single .select2-selection__clear:hover,.select2-container--bootstrap-5 .select2--large.select2-selection--multiple .select2-selection__clear:hover{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23888'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1rem auto no-repeat}.select2-container--bootstrap-5 .select2--large.select2-selection--single .select2-search,.select2-container--bootstrap-5 .select2--large.select2-selection--single .select2-search .select2-search__field,.select2-container--bootstrap-5 .select2--large.select2-selection--multiple .select2-search,.select2-container--bootstrap-5 .select2--large.select2-selection--multiple .select2-search .select2-search__field{height:1.5em}.select2-container--bootstrap-5 .select2--large.select2-dropdown{border-radius:0}.select2-container--bootstrap-5 .select2--large.select2-dropdown.select2-dropdown--below{border-top-left-radius:0;border-top-right-radius:0}.select2-container--bootstrap-5 .select2--large.select2-dropdown.select2-dropdown--above{border-bottom-right-radius:0;border-bottom-left-radius:0}.select2-container--bootstrap-5 .select2--large.select2-dropdown .select2-search .select2-search__field{padding:.5rem 1rem;font-size:1.25rem}.select2-container--bootstrap-5 .select2--large.select2-dropdown .select2-results__options .select2-results__option{padding:.5rem 1rem;font-size:1.25rem}.select2-container--bootstrap-5 .select2--large.select2-dropdown .select2-results__options .select2-results__option[role="group"] .select2-results__group{padding:.5rem .5rem}.select2-container--bootstrap-5 .select2--large.select2-dropdown .select2-results__options .select2-results__option[role="group"] .select2-results__options--nested .select2-results__option{padding:.5rem 1rem}.select2-container--bootstrap-5 .select2--large.select2-selection--single{padding:.5rem 1.5rem .5rem 1rem}.select2-container--bootstrap-5 .select2--large.select2-selection--multiple .select2-selection__rendered .select2-selection__choice{padding:.35em 1rem;font-size:1.25rem}.select2-container--bootstrap-5 .select2--large.select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove{width:1rem;height:1rem;padding:.5rem .5rem;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1rem auto no-repeat}.select2-container--bootstrap-5 .select2--large.select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove:hover{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23888'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1rem auto no-repeat}.select2-container--bootstrap-5 .select2--large.select2-selection--multiple .select2-selection__clear{right:1rem}.form-select-sm~.select2-container--bootstrap-5 .select2-selection{min-height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;border-radius:0}.form-select-sm~.select2-container--bootstrap-5 .select2-selection--single .select2-selection__clear,.form-select-sm~.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__clear{width:.5rem;height:.5rem;padding:.125rem .125rem;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/.5rem auto no-repeat}.form-select-sm~.select2-container--bootstrap-5 .select2-selection--single .select2-selection__clear:hover,.form-select-sm~.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__clear:hover{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23888'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/.5rem auto no-repeat}.form-select-sm~.select2-container--bootstrap-5 .select2-selection--single .select2-search,.form-select-sm~.select2-container--bootstrap-5 .select2-selection--single .select2-search .select2-search__field,.form-select-sm~.select2-container--bootstrap-5 .select2-selection--multiple .select2-search,.form-select-sm~.select2-container--bootstrap-5 .select2-selection--multiple .select2-search .select2-search__field{height:1.5em}.form-select-sm~.select2-container--bootstrap-5 .select2-dropdown{border-radius:0}.form-select-sm~.select2-container--bootstrap-5 .select2-dropdown.select2-dropdown--below{border-top-left-radius:0;border-top-right-radius:0}.form-select-sm~.select2-container--bootstrap-5 .select2-dropdown.select2-dropdown--above{border-bottom-right-radius:0;border-bottom-left-radius:0}.form-select-sm~.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field{padding:.25rem .5rem;font-size:.875rem}.form-select-sm~.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option{padding:.25rem .5rem;font-size:.875rem}.form-select-sm~.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[role="group"] .select2-results__group{padding:.25rem .25rem}.form-select-sm~.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[role="group"] .select2-results__options--nested .select2-results__option{padding:.25rem .5rem}.form-select-sm~.select2-container--bootstrap-5 .select2-selection--single{padding:.25rem 1.5rem .25rem .5rem}.form-select-sm~.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice{padding:.35em 1rem;font-size:.875rem}.form-select-sm~.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove{width:.5rem;height:.5rem;padding:.125rem .125rem;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/.5rem auto no-repeat}.form-select-sm~.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove:hover{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23888'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/.5rem auto no-repeat}.form-select-sm~.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__clear{right:.5rem}.form-select-lg~.select2-container--bootstrap-5 .select2-selection{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;border-radius:0}.form-select-lg~.select2-container--bootstrap-5 .select2-selection--single .select2-selection__clear,.form-select-lg~.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__clear{width:1rem;height:1rem;padding:.5rem .5rem;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1rem auto no-repeat}.form-select-lg~.select2-container--bootstrap-5 .select2-selection--single .select2-selection__clear:hover,.form-select-lg~.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__clear:hover{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23888'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1rem auto no-repeat}.form-select-lg~.select2-container--bootstrap-5 .select2-selection--single .select2-search,.form-select-lg~.select2-container--bootstrap-5 .select2-selection--single .select2-search .select2-search__field,.form-select-lg~.select2-container--bootstrap-5 .select2-selection--multiple .select2-search,.form-select-lg~.select2-container--bootstrap-5 .select2-selection--multiple .select2-search .select2-search__field{height:1.5em}.form-select-lg~.select2-container--bootstrap-5 .select2-dropdown{border-radius:0}.form-select-lg~.select2-container--bootstrap-5 .select2-dropdown.select2-dropdown--below{border-top-left-radius:0;border-top-right-radius:0}.form-select-lg~.select2-container--bootstrap-5 .select2-dropdown.select2-dropdown--above{border-bottom-right-radius:0;border-bottom-left-radius:0}.form-select-lg~.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field{padding:.5rem 1rem;font-size:1.25rem}.form-select-lg~.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option{padding:.5rem 1rem;font-size:1.25rem}.form-select-lg~.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[role="group"] .select2-results__group{padding:.5rem .5rem}.form-select-lg~.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[role="group"] .select2-results__options--nested .select2-results__option{padding:.5rem 1rem}.form-select-lg~.select2-container--bootstrap-5 .select2-selection--single{padding:.5rem 1.5rem .5rem 1rem}.form-select-lg~.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice{padding:.35em 1rem;font-size:1.25rem}.form-select-lg~.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove{width:1rem;height:1rem;padding:.5rem .5rem;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1rem auto no-repeat}.form-select-lg~.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove:hover{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23888'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1rem auto no-repeat}.form-select-lg~.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__clear{right:1rem}.comment-box{padding:0.5em 0}.comment-box input{padding:0px}.comment-box textarea{margin-bottom:5px}.w-comment-author{font-style:italic;margin-left:10px}.TYPE_PLUS_RIGHT-user-Xfollow .tab-pane{margin-top:15px}.follow-updater{display:none}.d0-nav-container{flex-wrap:inherit;display:flex;width:100%;justify-content:space-between}.row.row-offcanvas>aside,.row.row-offcanvas article{margin:0}@media screen and (max-width: 576px){.row-offcanvas{position:relative;-webkit-transition:all 0.25s ease-out;-moz-transition:all 0.25s ease-out;transition:all 0.25s ease-out}.sidebar-offcanvas-right{right:-41.6%}.sidebar-offcanvas-left{left:-41.6%}.row-offcanvas.right-active{right:41.6%}.row-offcanvas.left-active{left:41.6%}.sidebar-offcanvas{position:absolute !important;top:0 !important;width:41.6% !important}}.offcanvas-toggle{font-size:10px !important;padding:5px !important;margin-bottom:15px !important}.act-summary{min-width:27px}footer .separator{padding-left:2px;padding-right:2px}body.right-sidebar article,body.right-sidebar #primary,body.left-sidebar article,body.left-sidebar #primary,body.two-sidebar article,body.two-sidebar #primary{margin:0 1% 3em 1%;float:left;width:67%}body.right-sidebar aside,body.right-sidebar #secondary,body.left-sidebar aside,body.left-sidebar #secondary,body.two-sidebar aside,body.two-sidebar #secondary{margin:0 1% 3em 1%;float:right;width:28%}body.right-sidebar footer,body.left-sidebar footer,body.two-sidebar footer{clear:both;text-align:center;padding:1em}@media print{article,#primary{width:100%;float:none;margin:0}aside,#secondary,footer{display:none}}.RIGHT-Xenabled_role.edit_inline-view .pointer-checkbox-list #pointer-checkbox-anyone_signed_in{display:none}.RIGHT-Xenabled_role.edit_inline-view .card-editor{padding-bottom:0}.background-modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:900;outline:0;overflow-x:hidden;overflow-y:auto}.modal-menu .close{font-size:16px}.modal-dialog.modal-full{max-width:99%;margin:1%}.modal-backdrop.in{z-index:auto}.modal-body>div{display:inline-block;width:100%}.modal-body>div .menu-slot{z-index:1}.modal-header .btn-close{background:none;background-image:none}.overlay-container{position:relative;height:100%;overflow:auto}.overlay-container .card-slot.overlay_rule-view{border-left:5px solid #008cba}.overlay-container .card-slot.overlay_rule-view .d0-card-body{padding:0 1em}.overlay-container .d0-card-overlay>.d0-card-frame>.d0-card-content{overflow-y:scroll;padding:1rem 1.5rem}.d0-card-overlay{position:absolute;width:100%;height:100%;z-index:10}.d0-card-overlay>.d0-card-frame{height:100%;width:100%}.d0-card-overlay>.d0-card-frame>.d0-card-header{border-bottom:1px solid #dee2e6;padding:0.25rem 0.25rem 0.25rem 1.25rem}.d0-card-overlay>.d0-card-frame>.d0-card-header .title{font-weight:bold;text-transform:capitalize}.d0-card-overlay>.d0-card-frame>.d0-card-header .card-title{margin-bottom:0}.overlay-menu{display:inline-flex;vertical-align:middle}.d0-card-overlay>.d0-card-frame>.d0-card-header{padding-left:-15px !important;padding-right:-15px !important}._nest-editor .card-body .form{padding:1.5rem 2rem 1rem 2rem}._nest-editor .card-body .form .tab-content{padding-top:2rem}._nest-editor .preview{padding:0.5rem 1rem}._nest-editor .nest-options .nav{justify-content:flex-end}._nest-editor .options-container{word-break:break-all}._nest-editor .options-container ._configure-items-button{white-space:normal;word-break:normal}li.select2-results__option svg{max-height:15px;min-height:15px;max-width:15px;min-width:15px;margin:0}.input-group.show-prefix{border-left:1px solid #ccc}.input-group.show-prefix>input{border-left:none}.input-group.show-prefix ._field-indicator{border-left:none}.input-group.hide-prefix>._field-indicator{display:none}.input-group-text._field-indicator{font-size:1.3rem;line-height:1;font-weight:bold;border-right:none;background:#fff}.navbar{font-weight:300}.bg-primary .dropdown-menu{background-color:#008cba}.bg-primary .dropdown-menu .dropdown-item,.bg-primary .dropdown-menu .dropdown-item:focus{color:rgba(255,255,255,0.7)}.bg-primary .dropdown-menu .dropdown-item.active,.bg-primary .dropdown-menu .dropdown-item:hover,.bg-primary .dropdown-menu .dropdown-item:focus{background-color:#007ea7;color:#fff}.bg-dark{background-color:#333 !important}.bg-dark .dropdown-menu{background-color:#333}.bg-dark .dropdown-menu .dropdown-item,.bg-dark .dropdown-menu .dropdown-item:focus{color:rgba(255,255,255,0.7)}.bg-dark .dropdown-menu .dropdown-item.active,.bg-dark .dropdown-menu .dropdown-item:hover,.bg-dark .dropdown-menu .dropdown-item:focus{background-color:#2e2e2e;color:#fff}.bg-light .dropdown-menu{background-color:#eee}.bg-light .dropdown-menu .dropdown-item,.bg-light .dropdown-menu .dropdown-item:focus{color:rgba(0,0,0,0.55)}.bg-light .dropdown-menu .dropdown-item.active,.bg-light .dropdown-menu .dropdown-item:hover,.bg-light .dropdown-menu .dropdown-item:focus{background-color:#f0f0f0;color:rgba(0,0,0,0.7)}.btn-primary{border-color:#007ea7}.btn-secondary{border-color:#d6d6d6}.btn-success{border-color:#3c9b5f}.btn-info{border-color:#52adc8;color:#fff}.btn-danger{border-color:#d83b20}.btn-warning{border-color:#d28202;color:#fff}.btn-light{border-color:#d6d6d6}.btn-dark{border-color:#1f1f1f}.btn-group .dropdown-menu{border-top-width:0}.btn-group .dropdown-toggle.btn-primary~.dropdown-menu{background-color:#008cba;border-color:#007ea7}.btn-group .dropdown-toggle.btn-primary~.dropdown-menu .dropdown-item{color:#fff}.btn-group .dropdown-toggle.btn-primary~.dropdown-menu .dropdown-item:hover,.btn-group .dropdown-toggle.btn-primary~.dropdown-menu .dropdown-item:focus{background-color:#00769c}.btn-group .dropdown-toggle.btn-secondary~.dropdown-menu{background-color:#eee;border-color:#d6d6d6}.btn-group .dropdown-toggle.btn-secondary~.dropdown-menu .dropdown-item{color:#222}.btn-group .dropdown-toggle.btn-secondary~.dropdown-menu .dropdown-item:hover,.btn-group .dropdown-toggle.btn-secondary~.dropdown-menu .dropdown-item:focus{background-color:#c8c8c8}.btn-group .dropdown-toggle.btn-success~.dropdown-menu{background-color:#43ac6a;border-color:#3c9b5f}.btn-group .dropdown-toggle.btn-success~.dropdown-menu .dropdown-item{color:#fff}.btn-group .dropdown-toggle.btn-success~.dropdown-menu .dropdown-item:hover,.btn-group .dropdown-toggle.btn-success~.dropdown-menu .dropdown-item:focus{background-color:#389059}.btn-group .dropdown-toggle.btn-info~.dropdown-menu{background-color:#5bc0de;border-color:#52adc8}.btn-group .dropdown-toggle.btn-info~.dropdown-menu .dropdown-item{color:#fff}.btn-group .dropdown-toggle.btn-info~.dropdown-menu .dropdown-item:hover,.btn-group .dropdown-toggle.btn-info~.dropdown-menu .dropdown-item:focus{background-color:#4ca1ba}.btn-group .dropdown-toggle.btn-warning~.dropdown-menu{background-color:#e99002;border-color:#d28202}.btn-group .dropdown-toggle.btn-warning~.dropdown-menu .dropdown-item{color:#fff}.btn-group .dropdown-toggle.btn-warning~.dropdown-menu .dropdown-item:hover,.btn-group .dropdown-toggle.btn-warning~.dropdown-menu .dropdown-item:focus{background-color:#c47902}.btn-group .dropdown-toggle.btn-danger~.dropdown-menu{background-color:#f04124;border-color:#d83b20}.btn-group .dropdown-toggle.btn-danger~.dropdown-menu .dropdown-item{color:#fff}.btn-group .dropdown-toggle.btn-danger~.dropdown-menu .dropdown-item:hover,.btn-group .dropdown-toggle.btn-danger~.dropdown-menu .dropdown-item:focus{background-color:#ca371e}.text-secondary{color:#495057 !important}.blockquote-footer{color:#888}table{font-size:.875rem}label,.control-label,.help-block,.checkbox,.radio,.form-control-feedback{font-size:.875rem}.dropdown-item{padding-top:.75rem;padding-bottom:.75rem;font-size:.875rem;font-weight:300}.nav-tabs .nav-link,.nav-tabs .nav-link.disabled,.nav-tabs .nav-link.disabled:hover,.nav-tabs .nav-link.disabled:focus{border-color:rgba(0,0,0,0.1);background-color:#eee}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{background-color:#f0f0f0}.nav-pills .active{border:1px solid #007ea7}.breadcrumb{border:1px solid rgba(0,0,0,0.1);font-size:.875rem;font-weight:300;text-transform:uppercase}.pagination{font-weight:300}.pagination .page-link{border-color:transparent;border-radius:3px;margin-left:.1em;margin-right:.1em}.pagination .page-link:hover,.pagination .page-link:focus{text-decoration:none}.pagination .page-item.disabled .page-link{border-color:transparent}.pagination .page-item:first-child .page-link,.pagination .page-item:last-child .page-link,.pagination-lg .page-item:first-child .page-link,.pagination-lg .page-item:last-child .page-link,.pagination-sm .page-item:first-child .page-link,.pagination-sm .page-item:last-child .page-link{border-radius:3px}.list-group{font-size:.875rem;font-weight:300}.alert{font-size:.875rem;font-weight:300;color:#fff}.alert .alert-link{color:#fff;text-decoration:underline}.alert:not(.alert-secondary):not(.alert-light) .btn-close{background-image:url("data:image/svg+xml,")}.alert-secondary,.alert-secondary a:not(.btn),.alert-secondary .alert-link,.alert-light,.alert-light a:not(.btn),.alert-light .alert-link{color:#222}.badge.bg-secondary,.badge.bg-light{color:#222}.progress[value]{height:22px;padding:2px;background-color:#f6f6f6;border:1px solid #ccc}.popover-header{border-top-left-radius:0;border-top-right-radius:0} diff --git a/mod/defaults/data/fixtures/real/card_actions.yml b/mod/defaults/data/fixtures/real/card_actions.yml index 1b61380e49..6a7f397f64 100644 --- a/mod/defaults/data/fixtures/real/card_actions.yml +++ b/mod/defaults/data/fixtures/real/card_actions.yml @@ -2,7 +2,7 @@ card_actions_001: id: 2 card_id: 2 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 @@ -10,7 +10,7 @@ card_actions_001: card_actions_002: id: 3 card_id: 3 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 @@ -18,7 +18,7 @@ card_actions_002: card_actions_003: id: 4 card_id: 4 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 @@ -26,7 +26,7 @@ card_actions_003: card_actions_004: id: 6 card_id: 6 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 @@ -34,7 +34,7 @@ card_actions_004: card_actions_005: id: 7 card_id: 7 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 @@ -42,7 +42,7 @@ card_actions_005: card_actions_006: id: 8 card_id: 8 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 @@ -50,7 +50,7 @@ card_actions_006: card_actions_007: id: 9 card_id: 9 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 @@ -58,4727 +58,4735 @@ card_actions_007: card_actions_008: id: 11 card_id: 11 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_009: - id: 13 + id: 12 card_id: 12 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_010: - id: 15 + id: 13 card_id: 13 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_011: - id: 17 + id: 15 card_id: 14 - card_act_id: 105330 - super_action_id: 16 + card_act_id: 105326 + super_action_id: 14 action_type: 0 draft: 0 comment: card_actions_012: - id: 20 + id: 16 card_id: 1 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_013: - id: 22 + id: 17 card_id: 15 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_014: - id: 25 + id: 18 card_id: 16 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_015: - id: 27 + id: 19 card_id: 17 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_016: - id: 29 - card_id: 19 - card_act_id: 105330 - super_action_id: 28 + id: 20 + card_id: 18 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_017: - id: 30 - card_id: 18 - card_act_id: 105330 - super_action_id: + id: 22 + card_id: 19 + card_act_id: 105326 + super_action_id: 21 action_type: 0 draft: 0 comment: card_actions_018: - id: 33 + id: 23 card_id: 20 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_019: - id: 35 + id: 24 card_id: 21 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_020: - id: 37 + id: 25 card_id: 22 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_021: - id: 39 + id: 26 card_id: 23 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_022: - id: 41 + id: 27 card_id: 24 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_023: - id: 43 + id: 28 card_id: 25 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_024: - id: 45 + id: 29 card_id: 26 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_025: - id: 47 + id: 30 card_id: 27 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_026: - id: 50 + id: 31 card_id: 28 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_027: - id: 53 + id: 32 card_id: 30 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_028: - id: 54 + id: 33 card_id: 29 - card_act_id: 105330 - super_action_id: 53 + card_act_id: 105326 + super_action_id: 32 action_type: 0 draft: 0 comment: card_actions_029: - id: 56 + id: 34 card_id: 32 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_030: - id: 57 + id: 35 card_id: 31 - card_act_id: 105330 - super_action_id: 56 + card_act_id: 105326 + super_action_id: 34 action_type: 0 draft: 0 comment: card_actions_031: - id: 59 + id: 36 card_id: 33 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_032: - id: 61 + id: 38 card_id: 34 - card_act_id: 105330 - super_action_id: 60 + card_act_id: 105326 + super_action_id: 37 action_type: 0 draft: 0 comment: card_actions_033: - id: 64 - card_id: 36 - card_act_id: 105330 - super_action_id: 63 + id: 39 + card_id: 35 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_034: - id: 65 - card_id: 35 - card_act_id: 105330 - super_action_id: + id: 41 + card_id: 36 + card_act_id: 105326 + super_action_id: 40 action_type: 0 draft: 0 comment: card_actions_035: - id: 67 - card_id: 38 - card_act_id: 105330 - super_action_id: 66 + id: 42 + card_id: 37 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_036: - id: 68 - card_id: 37 - card_act_id: 105330 - super_action_id: + id: 44 + card_id: 38 + card_act_id: 105326 + super_action_id: 43 action_type: 0 draft: 0 comment: card_actions_037: - id: 70 - card_id: 40 - card_act_id: 105330 - super_action_id: 69 + id: 45 + card_id: 39 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_038: - id: 71 - card_id: 39 - card_act_id: 105330 - super_action_id: + id: 47 + card_id: 40 + card_act_id: 105326 + super_action_id: 46 action_type: 0 draft: 0 comment: card_actions_039: - id: 73 - card_id: 42 - card_act_id: 105330 - super_action_id: 72 + id: 48 + card_id: 41 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_040: - id: 74 - card_id: 41 - card_act_id: 105330 - super_action_id: + id: 50 + card_id: 42 + card_act_id: 105326 + super_action_id: 49 action_type: 0 draft: 0 comment: card_actions_041: - id: 76 - card_id: 44 - card_act_id: 105330 - super_action_id: 75 + id: 51 + card_id: 43 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_042: - id: 77 - card_id: 43 - card_act_id: 105330 - super_action_id: + id: 53 + card_id: 44 + card_act_id: 105326 + super_action_id: 52 action_type: 0 draft: 0 comment: card_actions_043: - id: 79 + id: 54 card_id: 45 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_044: - id: 81 - card_id: 47 - card_act_id: 105330 - super_action_id: 80 + id: 55 + card_id: 46 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_045: - id: 82 - card_id: 48 - card_act_id: 105330 - super_action_id: 81 + id: 57 + card_id: 47 + card_act_id: 105326 + super_action_id: 56 action_type: 0 draft: 0 comment: card_actions_046: - id: 83 - card_id: 46 - card_act_id: 105330 - super_action_id: + id: 58 + card_id: 48 + card_act_id: 105326 + super_action_id: 57 action_type: 0 draft: 0 comment: card_actions_047: - id: 85 + id: 59 card_id: 49 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_048: - id: 87 + id: 60 card_id: 50 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_049: - id: 89 - card_id: 52 - card_act_id: 105330 - super_action_id: 88 + id: 61 + card_id: 51 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_050: - id: 90 - card_id: 53 - card_act_id: 105330 - super_action_id: 89 + id: 63 + card_id: 52 + card_act_id: 105326 + super_action_id: 62 action_type: 0 draft: 0 comment: card_actions_051: - id: 91 - card_id: 51 - card_act_id: 105330 - super_action_id: + id: 64 + card_id: 53 + card_act_id: 105326 + super_action_id: 63 action_type: 0 draft: 0 comment: card_actions_052: - id: 93 + id: 65 card_id: 54 - card_act_id: 105330 - super_action_id: 92 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_053: - id: 96 - card_id: 56 - card_act_id: 105330 - super_action_id: 95 + id: 67 + card_id: 55 + card_act_id: 105326 + super_action_id: 66 action_type: 0 draft: 0 comment: card_actions_054: - id: 97 - card_id: 55 - card_act_id: 105330 + id: 68 + card_id: 56 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_055: - id: 99 + id: 70 card_id: 57 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 69 action_type: 0 draft: 0 comment: card_actions_056: - id: 101 + id: 71 card_id: 58 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_057: - id: 103 + id: 72 card_id: 59 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_058: - id: 105 + id: 73 card_id: 60 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_059: - id: 107 - card_id: 62 - card_act_id: 105330 + id: 74 + card_id: 61 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_060: - id: 108 - card_id: 61 - card_act_id: 105330 - super_action_id: 107 + id: 75 + card_id: 63 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_061: - id: 110 - card_id: 63 - card_act_id: 105330 - super_action_id: + id: 76 + card_id: 62 + card_act_id: 105326 + super_action_id: 75 action_type: 0 draft: 0 comment: card_actions_062: - id: 112 + id: 77 card_id: 64 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_063: - id: 114 + id: 78 card_id: 65 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_064: - id: 117 + id: 79 card_id: 66 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_065: - id: 119 + id: 80 card_id: 67 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_066: - id: 121 - card_id: 10 - card_act_id: 105330 - super_action_id: 120 + id: 81 + card_id: 68 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_067: - id: 122 - card_id: 68 - card_act_id: 105330 - super_action_id: 120 + id: 83 + card_id: 10 + card_act_id: 105326 + super_action_id: 82 action_type: 0 draft: 0 comment: card_actions_068: - id: 123 + id: 84 card_id: 69 - card_act_id: 105330 - super_action_id: 120 + card_act_id: 105326 + super_action_id: 82 action_type: 0 draft: 0 comment: card_actions_069: - id: 124 + id: 85 card_id: 70 - card_act_id: 105330 - super_action_id: 120 + card_act_id: 105326 + super_action_id: 82 action_type: 0 draft: 0 comment: card_actions_070: - id: 127 + id: 86 card_id: 71 - card_act_id: 105330 - super_action_id: 126 + card_act_id: 105326 + super_action_id: 82 action_type: 0 draft: 0 comment: card_actions_071: - id: 128 + id: 88 card_id: 72 - card_act_id: 105330 - super_action_id: 126 + card_act_id: 105326 + super_action_id: 87 action_type: 0 draft: 0 comment: card_actions_072: - id: 129 + id: 89 card_id: 73 - card_act_id: 105330 - super_action_id: 126 + card_act_id: 105326 + super_action_id: 87 action_type: 0 draft: 0 comment: card_actions_073: - id: 130 + id: 90 card_id: 74 - card_act_id: 105330 - super_action_id: 126 + card_act_id: 105326 + super_action_id: 87 action_type: 0 draft: 0 comment: card_actions_074: - id: 133 + id: 91 card_id: 75 - card_act_id: 105330 - super_action_id: 132 + card_act_id: 105326 + super_action_id: 87 action_type: 0 draft: 0 comment: card_actions_075: - id: 134 + id: 93 card_id: 76 - card_act_id: 105330 - super_action_id: 132 + card_act_id: 105326 + super_action_id: 92 action_type: 0 draft: 0 comment: card_actions_076: - id: 135 + id: 94 card_id: 77 - card_act_id: 105330 - super_action_id: 132 + card_act_id: 105326 + super_action_id: 92 action_type: 0 draft: 0 comment: card_actions_077: - id: 138 + id: 95 card_id: 78 - card_act_id: 105330 - super_action_id: 137 + card_act_id: 105326 + super_action_id: 92 action_type: 0 draft: 0 comment: card_actions_078: - id: 139 + id: 97 card_id: 79 - card_act_id: 105330 - super_action_id: 137 + card_act_id: 105326 + super_action_id: 96 action_type: 0 draft: 0 comment: card_actions_079: - id: 140 + id: 98 card_id: 80 - card_act_id: 105330 - super_action_id: 137 + card_act_id: 105326 + super_action_id: 96 action_type: 0 draft: 0 comment: card_actions_080: - id: 143 - card_id: 82 - card_act_id: 105330 - super_action_id: 142 + id: 99 + card_id: 81 + card_act_id: 105326 + super_action_id: 96 action_type: 0 draft: 0 comment: card_actions_081: - id: 144 - card_id: 83 - card_act_id: 105330 - super_action_id: 142 + id: 100 + card_id: 82 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_082: - id: 145 - card_id: 84 - card_act_id: 105330 - super_action_id: 142 + id: 102 + card_id: 83 + card_act_id: 105326 + super_action_id: 101 action_type: 0 draft: 0 comment: card_actions_083: - id: 146 - card_id: 81 - card_act_id: 105330 - super_action_id: + id: 103 + card_id: 84 + card_act_id: 105326 + super_action_id: 101 action_type: 0 draft: 0 comment: card_actions_084: - id: 148 + id: 104 card_id: 85 - card_act_id: 105330 - super_action_id: 147 + card_act_id: 105326 + super_action_id: 101 action_type: 0 draft: 0 comment: card_actions_085: - id: 149 + id: 106 card_id: 86 - card_act_id: 105330 - super_action_id: 147 + card_act_id: 105326 + super_action_id: 105 action_type: 0 draft: 0 comment: card_actions_086: - id: 150 + id: 107 card_id: 87 - card_act_id: 105330 - super_action_id: 147 + card_act_id: 105326 + super_action_id: 105 action_type: 0 draft: 0 comment: card_actions_087: - id: 153 + id: 108 card_id: 88 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 105 action_type: 0 draft: 0 comment: card_actions_088: - id: 155 - card_id: 90 - card_act_id: 105330 - super_action_id: 154 + id: 109 + card_id: 89 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_089: - id: 156 - card_id: 91 - card_act_id: 105330 - super_action_id: 155 + id: 110 + card_id: 90 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_090: - id: 157 - card_id: 92 - card_act_id: 105330 - super_action_id: 155 + id: 112 + card_id: 91 + card_act_id: 105326 + super_action_id: 111 action_type: 0 draft: 0 comment: card_actions_091: - id: 158 - card_id: 93 - card_act_id: 105330 - super_action_id: 155 + id: 113 + card_id: 92 + card_act_id: 105326 + super_action_id: 112 action_type: 0 draft: 0 comment: card_actions_092: - id: 159 - card_id: 89 - card_act_id: 105330 - super_action_id: + id: 114 + card_id: 93 + card_act_id: 105326 + super_action_id: 112 action_type: 0 draft: 0 comment: card_actions_093: - id: 161 + id: 115 card_id: 94 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 112 action_type: 0 draft: 0 comment: card_actions_094: - id: 163 + id: 116 card_id: 95 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_095: - id: 165 + id: 117 card_id: 96 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_096: - id: 167 - card_id: 98 - card_act_id: 105330 - super_action_id: 166 + id: 118 + card_id: 97 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_097: - id: 168 - card_id: 97 - card_act_id: 105330 + id: 119 + card_id: 98 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_098: - id: 170 + id: 121 card_id: 99 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 120 action_type: 0 draft: 0 comment: card_actions_099: - id: 172 - card_id: 101 - card_act_id: 105330 - super_action_id: 171 + id: 122 + card_id: 100 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_100: - id: 173 - card_id: 102 - card_act_id: 105330 - super_action_id: 172 + id: 123 + card_id: 101 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_101: - id: 174 - card_id: 100 - card_act_id: 105330 - super_action_id: + id: 125 + card_id: 102 + card_act_id: 105326 + super_action_id: 124 action_type: 0 draft: 0 comment: card_actions_102: - id: 176 + id: 126 card_id: 103 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 125 action_type: 0 draft: 0 comment: card_actions_103: - id: 178 + id: 127 card_id: 104 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_104: - id: 180 + id: 128 card_id: 105 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_105: - id: 182 + id: 129 card_id: 106 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_106: - id: 184 + id: 130 card_id: 107 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_107: - id: 186 + id: 131 card_id: 108 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_108: - id: 188 - card_id: 110 - card_act_id: 105330 - super_action_id: 187 + id: 132 + card_id: 109 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_109: - id: 189 - card_id: 111 - card_act_id: 105330 - super_action_id: 188 + id: 133 + card_id: 110 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_110: - id: 190 - card_id: 109 - card_act_id: 105330 - super_action_id: + id: 135 + card_id: 111 + card_act_id: 105326 + super_action_id: 134 action_type: 0 draft: 0 comment: card_actions_111: - id: 192 - card_id: 113 - card_act_id: 105330 - super_action_id: 191 + id: 136 + card_id: 112 + card_act_id: 105326 + super_action_id: 135 action_type: 0 draft: 0 comment: card_actions_112: - id: 193 - card_id: 114 - card_act_id: 105330 - super_action_id: 192 + id: 137 + card_id: 113 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_113: - id: 194 - card_id: 112 - card_act_id: 105330 - super_action_id: + id: 139 + card_id: 114 + card_act_id: 105326 + super_action_id: 138 action_type: 0 draft: 0 comment: card_actions_114: - id: 196 - card_id: 116 - card_act_id: 105330 - super_action_id: 195 + id: 140 + card_id: 115 + card_act_id: 105326 + super_action_id: 139 action_type: 0 draft: 0 comment: card_actions_115: - id: 197 - card_id: 117 - card_act_id: 105330 - super_action_id: 196 + id: 141 + card_id: 116 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_116: - id: 198 - card_id: 115 - card_act_id: 105330 - super_action_id: + id: 143 + card_id: 117 + card_act_id: 105326 + super_action_id: 142 action_type: 0 draft: 0 comment: card_actions_117: - id: 200 - card_id: 119 - card_act_id: 105330 - super_action_id: 199 + id: 144 + card_id: 118 + card_act_id: 105326 + super_action_id: 143 action_type: 0 draft: 0 comment: card_actions_118: - id: 201 - card_id: 120 - card_act_id: 105330 - super_action_id: 200 + id: 145 + card_id: 119 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_119: - id: 202 - card_id: 118 - card_act_id: 105330 - super_action_id: + id: 147 + card_id: 120 + card_act_id: 105326 + super_action_id: 146 action_type: 0 draft: 0 comment: card_actions_120: - id: 204 - card_id: 122 - card_act_id: 105330 - super_action_id: 203 + id: 148 + card_id: 121 + card_act_id: 105326 + super_action_id: 147 action_type: 0 draft: 0 comment: card_actions_121: - id: 205 - card_id: 123 - card_act_id: 105330 - super_action_id: 204 + id: 149 + card_id: 122 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_122: - id: 206 - card_id: 121 - card_act_id: 105330 - super_action_id: + id: 151 + card_id: 123 + card_act_id: 105326 + super_action_id: 150 action_type: 0 draft: 0 comment: card_actions_123: - id: 208 - card_id: 125 - card_act_id: 105330 - super_action_id: 207 + id: 152 + card_id: 124 + card_act_id: 105326 + super_action_id: 151 action_type: 0 draft: 0 comment: card_actions_124: - id: 209 - card_id: 126 - card_act_id: 105330 - super_action_id: 208 + id: 153 + card_id: 125 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_125: - id: 210 - card_id: 124 - card_act_id: 105330 - super_action_id: + id: 155 + card_id: 126 + card_act_id: 105326 + super_action_id: 154 action_type: 0 draft: 0 comment: card_actions_126: - id: 212 - card_id: 128 - card_act_id: 105330 - super_action_id: 211 + id: 156 + card_id: 127 + card_act_id: 105326 + super_action_id: 155 action_type: 0 draft: 0 comment: card_actions_127: - id: 213 - card_id: 129 - card_act_id: 105330 - super_action_id: 212 + id: 157 + card_id: 128 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_128: - id: 214 - card_id: 127 - card_act_id: 105330 - super_action_id: + id: 159 + card_id: 129 + card_act_id: 105326 + super_action_id: 158 action_type: 0 draft: 0 comment: card_actions_129: - id: 216 - card_id: 131 - card_act_id: 105330 - super_action_id: 215 + id: 160 + card_id: 130 + card_act_id: 105326 + super_action_id: 159 action_type: 0 draft: 0 comment: card_actions_130: - id: 217 - card_id: 132 - card_act_id: 105330 - super_action_id: 216 + id: 161 + card_id: 131 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_131: - id: 218 - card_id: 130 - card_act_id: 105330 - super_action_id: + id: 163 + card_id: 132 + card_act_id: 105326 + super_action_id: 162 action_type: 0 draft: 0 comment: card_actions_132: - id: 220 - card_id: 134 - card_act_id: 105330 - super_action_id: 219 + id: 164 + card_id: 133 + card_act_id: 105326 + super_action_id: 163 action_type: 0 draft: 0 comment: card_actions_133: - id: 221 - card_id: 135 - card_act_id: 105330 - super_action_id: 220 + id: 165 + card_id: 134 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_134: - id: 222 - card_id: 133 - card_act_id: 105330 - super_action_id: + id: 167 + card_id: 135 + card_act_id: 105326 + super_action_id: 166 action_type: 0 draft: 0 comment: card_actions_135: - id: 224 - card_id: 137 - card_act_id: 105330 - super_action_id: 223 + id: 168 + card_id: 136 + card_act_id: 105326 + super_action_id: 167 action_type: 0 draft: 0 comment: card_actions_136: - id: 225 - card_id: 138 - card_act_id: 105330 - super_action_id: 224 + id: 169 + card_id: 137 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_137: - id: 226 - card_id: 136 - card_act_id: 105330 - super_action_id: + id: 171 + card_id: 138 + card_act_id: 105326 + super_action_id: 170 action_type: 0 draft: 0 comment: card_actions_138: - id: 228 - card_id: 140 - card_act_id: 105330 - super_action_id: 227 + id: 172 + card_id: 139 + card_act_id: 105326 + super_action_id: 171 action_type: 0 draft: 0 comment: card_actions_139: - id: 229 - card_id: 141 - card_act_id: 105330 - super_action_id: 228 + id: 173 + card_id: 140 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_140: - id: 230 - card_id: 139 - card_act_id: 105330 - super_action_id: + id: 175 + card_id: 141 + card_act_id: 105326 + super_action_id: 174 action_type: 0 draft: 0 comment: card_actions_141: - id: 232 + id: 176 card_id: 142 - card_act_id: 105330 - super_action_id: 231 + card_act_id: 105326 + super_action_id: 175 action_type: 0 draft: 0 comment: card_actions_142: - id: 233 + id: 178 card_id: 143 - card_act_id: 105330 - super_action_id: 231 + card_act_id: 105326 + super_action_id: 177 action_type: 0 draft: 0 comment: card_actions_143: - id: 234 + id: 179 card_id: 144 - card_act_id: 105330 - super_action_id: 233 + card_act_id: 105326 + super_action_id: 177 action_type: 0 draft: 0 comment: card_actions_144: - id: 237 + id: 180 card_id: 145 - card_act_id: 105330 - super_action_id: 236 + card_act_id: 105326 + super_action_id: 179 action_type: 0 draft: 0 comment: card_actions_145: - id: 238 - card_id: 146 - card_act_id: 105330 - super_action_id: 236 + id: 181 + card_id: 5 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_146: - id: 239 - card_id: 147 - card_act_id: 105330 - super_action_id: 238 + id: 183 + card_id: 146 + card_act_id: 105326 + super_action_id: 182 action_type: 0 draft: 0 comment: card_actions_147: - id: 240 - card_id: 5 - card_act_id: 105330 - super_action_id: + id: 184 + card_id: 147 + card_act_id: 105326 + super_action_id: 182 action_type: 0 draft: 0 comment: card_actions_148: - id: 242 + id: 185 card_id: 148 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 184 action_type: 0 draft: 0 comment: card_actions_149: - id: 244 - card_id: 150 - card_act_id: 105330 - super_action_id: 243 + id: 186 + card_id: 149 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_150: - id: 245 - card_id: 151 - card_act_id: 105330 - super_action_id: 243 + id: 187 + card_id: 150 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_151: - id: 246 - card_id: 149 - card_act_id: 105330 - super_action_id: + id: 189 + card_id: 151 + card_act_id: 105326 + super_action_id: 188 action_type: 0 draft: 0 comment: card_actions_152: - id: 248 - card_id: 153 - card_act_id: 105330 - super_action_id: 247 + id: 190 + card_id: 152 + card_act_id: 105326 + super_action_id: 188 action_type: 0 draft: 0 comment: card_actions_153: - id: 249 - card_id: 154 - card_act_id: 105330 - super_action_id: 247 + id: 191 + card_id: 153 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_154: - id: 250 - card_id: 155 - card_act_id: 105330 - super_action_id: 249 + id: 193 + card_id: 154 + card_act_id: 105326 + super_action_id: 192 action_type: 0 draft: 0 comment: card_actions_155: - id: 251 - card_id: 152 - card_act_id: 105330 - super_action_id: + id: 194 + card_id: 155 + card_act_id: 105326 + super_action_id: 192 action_type: 0 draft: 0 comment: card_actions_156: - id: 253 - card_id: 157 - card_act_id: 105330 - super_action_id: 252 + id: 195 + card_id: 156 + card_act_id: 105326 + super_action_id: 194 action_type: 0 draft: 0 comment: card_actions_157: - id: 254 - card_id: 158 - card_act_id: 105330 - super_action_id: 253 + id: 196 + card_id: 157 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_158: - id: 255 - card_id: 156 - card_act_id: 105330 - super_action_id: + id: 198 + card_id: 158 + card_act_id: 105326 + super_action_id: 197 action_type: 0 draft: 0 comment: card_actions_159: - id: 257 - card_id: 160 - card_act_id: 105330 - super_action_id: 256 + id: 199 + card_id: 159 + card_act_id: 105326 + super_action_id: 198 action_type: 0 draft: 0 comment: card_actions_160: - id: 258 - card_id: 161 - card_act_id: 105330 - super_action_id: 257 + id: 200 + card_id: 160 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_161: - id: 259 - card_id: 159 - card_act_id: 105330 - super_action_id: + id: 202 + card_id: 161 + card_act_id: 105326 + super_action_id: 201 action_type: 0 draft: 0 comment: card_actions_162: - id: 261 - card_id: 163 - card_act_id: 105330 - super_action_id: 260 + id: 203 + card_id: 162 + card_act_id: 105326 + super_action_id: 202 action_type: 0 draft: 0 comment: card_actions_163: - id: 262 - card_id: 164 - card_act_id: 105330 - super_action_id: 261 + id: 204 + card_id: 163 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_164: - id: 263 - card_id: 162 - card_act_id: 105330 - super_action_id: + id: 206 + card_id: 164 + card_act_id: 105326 + super_action_id: 205 action_type: 0 draft: 0 comment: card_actions_165: - id: 265 - card_id: 166 - card_act_id: 105330 - super_action_id: 264 + id: 207 + card_id: 165 + card_act_id: 105326 + super_action_id: 206 action_type: 0 draft: 0 comment: card_actions_166: - id: 266 - card_id: 167 - card_act_id: 105330 - super_action_id: 265 + id: 208 + card_id: 166 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_167: - id: 267 - card_id: 165 - card_act_id: 105330 - super_action_id: + id: 210 + card_id: 167 + card_act_id: 105326 + super_action_id: 209 action_type: 0 draft: 0 comment: card_actions_168: - id: 269 + id: 211 card_id: 168 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 210 action_type: 0 draft: 0 comment: card_actions_169: - id: 271 - card_id: 170 - card_act_id: 105330 - super_action_id: 270 + id: 212 + card_id: 169 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_170: - id: 272 - card_id: 171 - card_act_id: 105330 - super_action_id: 271 + id: 213 + card_id: 170 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_171: - id: 273 - card_id: 169 - card_act_id: 105330 - super_action_id: + id: 215 + card_id: 171 + card_act_id: 105326 + super_action_id: 214 action_type: 0 draft: 0 comment: card_actions_172: - id: 275 + id: 216 card_id: 172 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 215 action_type: 0 draft: 0 comment: card_actions_173: - id: 277 + id: 217 card_id: 173 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_174: - id: 279 + id: 218 card_id: 174 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_175: - id: 281 + id: 219 card_id: 175 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_176: - id: 283 + id: 220 card_id: 176 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_177: - id: 285 - card_id: 178 - card_act_id: 105330 - super_action_id: 284 + id: 221 + card_id: 177 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_178: - id: 286 - card_id: 177 - card_act_id: 105330 + id: 222 + card_id: 178 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_179: - id: 288 + id: 224 card_id: 179 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 223 action_type: 0 draft: 0 comment: card_actions_180: - id: 290 - card_id: 181 - card_act_id: 105330 - super_action_id: 289 + id: 225 + card_id: 180 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_181: - id: 291 - card_id: 180 - card_act_id: 105330 + id: 226 + card_id: 181 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_182: - id: 293 - card_id: 183 - card_act_id: 105330 - super_action_id: 292 + id: 228 + card_id: 182 + card_act_id: 105326 + super_action_id: 227 action_type: 0 draft: 0 comment: card_actions_183: - id: 294 - card_id: 182 - card_act_id: 105330 + id: 229 + card_id: 183 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_184: - id: 296 - card_id: 185 - card_act_id: 105330 - super_action_id: 295 + id: 231 + card_id: 184 + card_act_id: 105326 + super_action_id: 230 action_type: 0 draft: 0 comment: card_actions_185: - id: 297 - card_id: 186 - card_act_id: 105330 - super_action_id: 295 + id: 232 + card_id: 185 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_186: - id: 298 - card_id: 187 - card_act_id: 105330 - super_action_id: 297 + id: 234 + card_id: 186 + card_act_id: 105326 + super_action_id: 233 action_type: 0 draft: 0 comment: card_actions_187: - id: 299 - card_id: 188 - card_act_id: 105330 - super_action_id: 298 + id: 235 + card_id: 187 + card_act_id: 105326 + super_action_id: 233 action_type: 0 draft: 0 comment: card_actions_188: - id: 300 - card_id: 184 - card_act_id: 105330 - super_action_id: + id: 236 + card_id: 188 + card_act_id: 105326 + super_action_id: 235 action_type: 0 draft: 0 comment: card_actions_189: - id: 302 - card_id: 190 - card_act_id: 105330 - super_action_id: 301 + id: 237 + card_id: 189 + card_act_id: 105326 + super_action_id: 236 action_type: 0 draft: 0 comment: card_actions_190: - id: 303 - card_id: 189 - card_act_id: 105330 + id: 238 + card_id: 190 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_191: - id: 305 - card_id: 192 - card_act_id: 105330 - super_action_id: 304 + id: 240 + card_id: 191 + card_act_id: 105326 + super_action_id: 239 action_type: 0 draft: 0 comment: card_actions_192: - id: 306 - card_id: 193 - card_act_id: 105330 - super_action_id: 304 + id: 241 + card_id: 192 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_193: - id: 307 - card_id: 194 - card_act_id: 105330 - super_action_id: 306 + id: 243 + card_id: 193 + card_act_id: 105326 + super_action_id: 242 action_type: 0 draft: 0 comment: card_actions_194: - id: 308 - card_id: 195 - card_act_id: 105330 - super_action_id: 307 + id: 244 + card_id: 194 + card_act_id: 105326 + super_action_id: 242 action_type: 0 draft: 0 comment: card_actions_195: - id: 309 - card_id: 191 - card_act_id: 105330 - super_action_id: + id: 245 + card_id: 195 + card_act_id: 105326 + super_action_id: 244 action_type: 0 draft: 0 comment: card_actions_196: - id: 311 - card_id: 197 - card_act_id: 105330 - super_action_id: 310 + id: 246 + card_id: 196 + card_act_id: 105326 + super_action_id: 245 action_type: 0 draft: 0 comment: card_actions_197: - id: 312 - card_id: 198 - card_act_id: 105330 - super_action_id: 310 + id: 247 + card_id: 197 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_198: - id: 313 - card_id: 199 - card_act_id: 105330 - super_action_id: 312 + id: 249 + card_id: 198 + card_act_id: 105326 + super_action_id: 248 action_type: 0 draft: 0 comment: card_actions_199: - id: 314 - card_id: 200 - card_act_id: 105330 - super_action_id: 313 + id: 250 + card_id: 199 + card_act_id: 105326 + super_action_id: 248 action_type: 0 draft: 0 comment: card_actions_200: - id: 315 - card_id: 196 - card_act_id: 105330 - super_action_id: + id: 251 + card_id: 200 + card_act_id: 105326 + super_action_id: 250 action_type: 0 draft: 0 comment: card_actions_201: - id: 317 + id: 252 card_id: 201 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 251 action_type: 0 draft: 0 comment: card_actions_202: - id: 319 - card_id: 204 - card_act_id: 105330 + id: 253 + card_id: 202 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_203: - id: 320 - card_id: 203 - card_act_id: 105330 - super_action_id: 319 + id: 254 + card_id: 205 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_204: - id: 321 - card_id: 202 - card_act_id: 105330 - super_action_id: 320 + id: 255 + card_id: 204 + card_act_id: 105326 + super_action_id: 254 action_type: 0 draft: 0 comment: card_actions_205: - id: 323 - card_id: 206 - card_act_id: 105330 - super_action_id: 322 + id: 256 + card_id: 203 + card_act_id: 105326 + super_action_id: 255 action_type: 0 draft: 0 comment: card_actions_206: - id: 324 - card_id: 207 - card_act_id: 105330 - super_action_id: 323 + id: 257 + card_id: 206 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_207: - id: 325 - card_id: 208 - card_act_id: 105330 - super_action_id: 323 + id: 259 + card_id: 207 + card_act_id: 105326 + super_action_id: 258 action_type: 0 draft: 0 comment: card_actions_208: - id: 326 - card_id: 209 - card_act_id: 105330 - super_action_id: 323 + id: 260 + card_id: 208 + card_act_id: 105326 + super_action_id: 259 action_type: 0 draft: 0 comment: card_actions_209: - id: 327 - card_id: 210 - card_act_id: 105330 - super_action_id: 323 + id: 261 + card_id: 209 + card_act_id: 105326 + super_action_id: 259 action_type: 0 draft: 0 comment: card_actions_210: - id: 328 - card_id: 205 - card_act_id: 105330 - super_action_id: + id: 262 + card_id: 210 + card_act_id: 105326 + super_action_id: 259 action_type: 0 draft: 0 comment: card_actions_211: - id: 330 - card_id: 212 - card_act_id: 105330 - super_action_id: 329 + id: 263 + card_id: 211 + card_act_id: 105326 + super_action_id: 259 action_type: 0 draft: 0 comment: card_actions_212: - id: 331 - card_id: 213 - card_act_id: 105330 - super_action_id: 330 + id: 264 + card_id: 212 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_213: - id: 332 - card_id: 214 - card_act_id: 105330 - super_action_id: 330 + id: 266 + card_id: 213 + card_act_id: 105326 + super_action_id: 265 action_type: 0 draft: 0 comment: card_actions_214: - id: 333 - card_id: 215 - card_act_id: 105330 - super_action_id: 330 + id: 267 + card_id: 214 + card_act_id: 105326 + super_action_id: 266 action_type: 0 draft: 0 comment: card_actions_215: - id: 334 - card_id: 211 - card_act_id: 105330 - super_action_id: + id: 268 + card_id: 215 + card_act_id: 105326 + super_action_id: 266 action_type: 0 draft: 0 comment: card_actions_216: - id: 336 - card_id: 217 - card_act_id: 105330 - super_action_id: 335 + id: 269 + card_id: 216 + card_act_id: 105326 + super_action_id: 266 action_type: 0 draft: 0 comment: card_actions_217: - id: 337 - card_id: 218 - card_act_id: 105330 - super_action_id: 336 + id: 270 + card_id: 217 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_218: - id: 338 - card_id: 219 - card_act_id: 105330 - super_action_id: 336 + id: 272 + card_id: 218 + card_act_id: 105326 + super_action_id: 271 action_type: 0 draft: 0 comment: card_actions_219: - id: 339 - card_id: 220 - card_act_id: 105330 - super_action_id: 336 + id: 273 + card_id: 219 + card_act_id: 105326 + super_action_id: 272 action_type: 0 draft: 0 comment: card_actions_220: - id: 340 - card_id: 216 - card_act_id: 105330 - super_action_id: + id: 274 + card_id: 220 + card_act_id: 105326 + super_action_id: 272 action_type: 0 draft: 0 comment: card_actions_221: - id: 342 - card_id: 222 - card_act_id: 105330 - super_action_id: 341 + id: 275 + card_id: 221 + card_act_id: 105326 + super_action_id: 272 action_type: 0 draft: 0 comment: card_actions_222: - id: 343 - card_id: 223 - card_act_id: 105330 - super_action_id: 342 + id: 276 + card_id: 222 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_223: - id: 344 - card_id: 221 - card_act_id: 105330 - super_action_id: + id: 278 + card_id: 223 + card_act_id: 105326 + super_action_id: 277 action_type: 0 draft: 0 comment: card_actions_224: - id: 346 - card_id: 225 - card_act_id: 105330 - super_action_id: 345 + id: 279 + card_id: 224 + card_act_id: 105326 + super_action_id: 278 action_type: 0 draft: 0 comment: card_actions_225: - id: 347 - card_id: 226 - card_act_id: 105330 - super_action_id: 346 + id: 280 + card_id: 225 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_226: - id: 348 - card_id: 227 - card_act_id: 105330 - super_action_id: 346 + id: 282 + card_id: 226 + card_act_id: 105326 + super_action_id: 281 action_type: 0 draft: 0 comment: card_actions_227: - id: 349 - card_id: 228 - card_act_id: 105330 - super_action_id: 346 + id: 283 + card_id: 227 + card_act_id: 105326 + super_action_id: 282 action_type: 0 draft: 0 comment: card_actions_228: - id: 350 - card_id: 224 - card_act_id: 105330 - super_action_id: + id: 284 + card_id: 228 + card_act_id: 105326 + super_action_id: 282 action_type: 0 draft: 0 comment: card_actions_229: - id: 352 - card_id: 230 - card_act_id: 105330 - super_action_id: 351 + id: 285 + card_id: 229 + card_act_id: 105326 + super_action_id: 282 action_type: 0 draft: 0 comment: card_actions_230: - id: 353 - card_id: 231 - card_act_id: 105330 - super_action_id: 352 + id: 286 + card_id: 230 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_231: - id: 354 - card_id: 229 - card_act_id: 105330 - super_action_id: + id: 288 + card_id: 231 + card_act_id: 105326 + super_action_id: 287 action_type: 0 draft: 0 comment: card_actions_232: - id: 356 - card_id: 233 - card_act_id: 105330 - super_action_id: 355 + id: 289 + card_id: 232 + card_act_id: 105326 + super_action_id: 288 action_type: 0 draft: 0 comment: card_actions_233: - id: 357 - card_id: 234 - card_act_id: 105330 - super_action_id: 355 + id: 290 + card_id: 233 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_234: - id: 358 - card_id: 235 - card_act_id: 105330 - super_action_id: 357 + id: 292 + card_id: 234 + card_act_id: 105326 + super_action_id: 291 action_type: 0 draft: 0 comment: card_actions_235: - id: 359 - card_id: 236 - card_act_id: 105330 - super_action_id: 355 + id: 293 + card_id: 235 + card_act_id: 105326 + super_action_id: 291 action_type: 0 draft: 0 comment: card_actions_236: - id: 360 - card_id: 237 - card_act_id: 105330 - super_action_id: 359 + id: 294 + card_id: 236 + card_act_id: 105326 + super_action_id: 293 action_type: 0 draft: 0 comment: card_actions_237: - id: 361 - card_id: 238 - card_act_id: 105330 - super_action_id: 359 + id: 295 + card_id: 237 + card_act_id: 105326 + super_action_id: 291 action_type: 0 draft: 0 comment: card_actions_238: - id: 362 - card_id: 239 - card_act_id: 105330 - super_action_id: 355 + id: 296 + card_id: 238 + card_act_id: 105326 + super_action_id: 295 action_type: 0 draft: 0 comment: card_actions_239: - id: 363 - card_id: 240 - card_act_id: 105330 - super_action_id: 362 + id: 297 + card_id: 239 + card_act_id: 105326 + super_action_id: 295 action_type: 0 draft: 0 comment: card_actions_240: - id: 364 - card_id: 241 - card_act_id: 105330 - super_action_id: 363 + id: 298 + card_id: 240 + card_act_id: 105326 + super_action_id: 291 action_type: 0 draft: 0 comment: card_actions_241: - id: 365 - card_id: 243 - card_act_id: 105330 - super_action_id: 362 + id: 299 + card_id: 241 + card_act_id: 105326 + super_action_id: 298 action_type: 0 draft: 0 comment: card_actions_242: - id: 366 - card_id: 232 - card_act_id: 105330 - super_action_id: + id: 300 + card_id: 242 + card_act_id: 105326 + super_action_id: 299 action_type: 0 draft: 0 comment: card_actions_243: - id: 368 - card_id: 248 - card_act_id: 105330 - super_action_id: + id: 301 + card_id: 244 + card_act_id: 105326 + super_action_id: 298 action_type: 0 draft: 0 comment: card_actions_244: - id: 369 - card_id: 247 - card_act_id: 105330 - super_action_id: 368 + id: 302 + card_id: 249 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_245: - id: 370 - card_id: 244 - card_act_id: 105330 - super_action_id: 369 + id: 303 + card_id: 248 + card_act_id: 105326 + super_action_id: 302 action_type: 0 draft: 0 comment: card_actions_246: - id: 371 - card_id: 246 - card_act_id: 105330 - super_action_id: 370 + id: 304 + card_id: 245 + card_act_id: 105326 + super_action_id: 303 action_type: 0 draft: 0 comment: card_actions_247: - id: 373 - card_id: 250 - card_act_id: 105330 - super_action_id: 372 + id: 305 + card_id: 247 + card_act_id: 105326 + super_action_id: 304 action_type: 0 draft: 0 comment: card_actions_248: - id: 374 - card_id: 252 - card_act_id: 105330 - super_action_id: 372 + id: 306 + card_id: 250 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_249: - id: 375 - card_id: 249 - card_act_id: 105330 - super_action_id: + id: 308 + card_id: 251 + card_act_id: 105326 + super_action_id: 307 action_type: 0 draft: 0 comment: card_actions_250: - id: 377 + id: 309 card_id: 253 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 307 action_type: 0 draft: 0 comment: card_actions_251: - id: 379 - card_id: 255 - card_act_id: 105330 - super_action_id: 378 + id: 310 + card_id: 254 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_252: - id: 380 - card_id: 256 - card_act_id: 105330 - super_action_id: 378 + id: 311 + card_id: 255 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_253: - id: 381 - card_id: 257 - card_act_id: 105330 - super_action_id: 378 + id: 313 + card_id: 256 + card_act_id: 105326 + super_action_id: 312 action_type: 0 draft: 0 comment: card_actions_254: - id: 382 - card_id: 258 - card_act_id: 105330 - super_action_id: 378 + id: 314 + card_id: 257 + card_act_id: 105326 + super_action_id: 312 action_type: 0 draft: 0 comment: card_actions_255: - id: 383 - card_id: 254 - card_act_id: 105330 - super_action_id: + id: 315 + card_id: 258 + card_act_id: 105326 + super_action_id: 312 action_type: 0 draft: 0 comment: card_actions_256: - id: 385 - card_id: 260 - card_act_id: 105330 - super_action_id: 384 + id: 316 + card_id: 259 + card_act_id: 105326 + super_action_id: 312 action_type: 0 draft: 0 comment: card_actions_257: - id: 386 - card_id: 261 - card_act_id: 105330 - super_action_id: 384 + id: 317 + card_id: 260 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_258: - id: 387 - card_id: 262 - card_act_id: 105330 - super_action_id: 384 + id: 319 + card_id: 261 + card_act_id: 105326 + super_action_id: 318 action_type: 0 draft: 0 comment: card_actions_259: - id: 388 - card_id: 263 - card_act_id: 105330 - super_action_id: 384 + id: 320 + card_id: 262 + card_act_id: 105326 + super_action_id: 318 action_type: 0 draft: 0 comment: card_actions_260: - id: 389 - card_id: 259 - card_act_id: 105330 - super_action_id: + id: 321 + card_id: 263 + card_act_id: 105326 + super_action_id: 318 action_type: 0 draft: 0 comment: card_actions_261: - id: 391 - card_id: 265 - card_act_id: 105330 - super_action_id: 390 + id: 322 + card_id: 264 + card_act_id: 105326 + super_action_id: 318 action_type: 0 draft: 0 comment: card_actions_262: - id: 392 - card_id: 266 - card_act_id: 105330 - super_action_id: 390 + id: 323 + card_id: 265 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_263: - id: 393 - card_id: 267 - card_act_id: 105330 - super_action_id: 390 + id: 325 + card_id: 266 + card_act_id: 105326 + super_action_id: 324 action_type: 0 draft: 0 comment: card_actions_264: - id: 394 - card_id: 268 - card_act_id: 105330 - super_action_id: 390 + id: 326 + card_id: 267 + card_act_id: 105326 + super_action_id: 324 action_type: 0 draft: 0 comment: card_actions_265: - id: 395 - card_id: 264 - card_act_id: 105330 - super_action_id: + id: 327 + card_id: 268 + card_act_id: 105326 + super_action_id: 324 action_type: 0 draft: 0 comment: card_actions_266: - id: 397 - card_id: 270 - card_act_id: 105330 - super_action_id: 396 + id: 328 + card_id: 269 + card_act_id: 105326 + super_action_id: 324 action_type: 0 draft: 0 comment: card_actions_267: - id: 398 - card_id: 271 - card_act_id: 105330 - super_action_id: 397 + id: 329 + card_id: 270 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_268: - id: 399 - card_id: 269 - card_act_id: 105330 - super_action_id: + id: 331 + card_id: 271 + card_act_id: 105326 + super_action_id: 330 action_type: 0 draft: 0 comment: card_actions_269: - id: 401 - card_id: 273 - card_act_id: 105330 - super_action_id: 400 + id: 332 + card_id: 272 + card_act_id: 105326 + super_action_id: 331 action_type: 0 draft: 0 comment: card_actions_270: - id: 402 - card_id: 274 - card_act_id: 105330 - super_action_id: 401 + id: 333 + card_id: 273 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_271: - id: 403 - card_id: 275 - card_act_id: 105330 - super_action_id: 401 + id: 335 + card_id: 274 + card_act_id: 105326 + super_action_id: 334 action_type: 0 draft: 0 comment: card_actions_272: - id: 404 - card_id: 272 - card_act_id: 105330 - super_action_id: + id: 336 + card_id: 275 + card_act_id: 105326 + super_action_id: 335 action_type: 0 draft: 0 comment: card_actions_273: - id: 406 + id: 337 card_id: 276 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 335 action_type: 0 draft: 0 comment: card_actions_274: - id: 408 + id: 338 card_id: 277 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_275: - id: 410 + id: 339 card_id: 278 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_276: - id: 412 + id: 340 card_id: 279 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_277: - id: 414 + id: 341 card_id: 280 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_278: - id: 416 + id: 342 card_id: 281 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_279: - id: 418 - card_id: 283 - card_act_id: 105330 - super_action_id: 417 + id: 343 + card_id: 282 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_280: - id: 419 - card_id: 282 - card_act_id: 105330 + id: 344 + card_id: 283 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_281: - id: 421 - card_id: 285 - card_act_id: 105330 - super_action_id: 420 + id: 346 + card_id: 284 + card_act_id: 105326 + super_action_id: 345 action_type: 0 draft: 0 comment: card_actions_282: - id: 422 - card_id: 284 - card_act_id: 105330 + id: 347 + card_id: 285 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_283: - id: 424 - card_id: 287 - card_act_id: 105330 - super_action_id: + id: 349 + card_id: 286 + card_act_id: 105326 + super_action_id: 348 action_type: 0 draft: 0 comment: card_actions_284: - id: 425 - card_id: 286 - card_act_id: 105330 - super_action_id: 424 + id: 350 + card_id: 288 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_285: - id: 427 - card_id: 289 - card_act_id: 105330 - super_action_id: 426 + id: 351 + card_id: 287 + card_act_id: 105326 + super_action_id: 350 action_type: 0 draft: 0 comment: card_actions_286: - id: 428 - card_id: 290 - card_act_id: 105330 - super_action_id: 427 + id: 352 + card_id: 289 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 - comment: + comment: logo.svg card_actions_287: - id: 429 - card_id: 288 - card_act_id: 105330 - super_action_id: + id: 354 + card_id: 290 + card_act_id: 105326 + super_action_id: 353 action_type: 0 draft: 0 - comment: logo.svg + comment: card_actions_288: - id: 431 - card_id: 292 - card_act_id: 105330 - super_action_id: 430 + id: 355 + card_id: 291 + card_act_id: 105326 + super_action_id: 354 action_type: 0 draft: 0 comment: card_actions_289: - id: 432 - card_id: 293 - card_act_id: 105330 - super_action_id: 431 + id: 356 + card_id: 292 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 - comment: + comment: logo.svg card_actions_290: - id: 433 - card_id: 291 - card_act_id: 105330 - super_action_id: + id: 358 + card_id: 293 + card_act_id: 105326 + super_action_id: 357 action_type: 0 draft: 0 - comment: logo.svg + comment: card_actions_291: - id: 435 + id: 359 card_id: 294 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 358 action_type: 0 draft: 0 - comment: favicon.png + comment: card_actions_292: - id: 437 + id: 360 card_id: 295 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 - comment: + comment: favicon.png card_actions_293: - id: 439 + id: 361 card_id: 296 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_294: - id: 441 + id: 362 card_id: 297 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_295: - id: 443 + id: 363 card_id: 298 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_296: - id: 445 + id: 364 card_id: 299 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_297: - id: 447 + id: 365 card_id: 300 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_298: - id: 449 - card_id: 302 - card_act_id: 105330 - super_action_id: 448 + id: 366 + card_id: 301 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_299: - id: 450 - card_id: 303 - card_act_id: 105330 - super_action_id: 449 + id: 367 + card_id: 302 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_300: - id: 451 - card_id: 304 - card_act_id: 105330 - super_action_id: 449 + id: 369 + card_id: 303 + card_act_id: 105326 + super_action_id: 368 action_type: 0 draft: 0 comment: card_actions_301: - id: 452 - card_id: 301 - card_act_id: 105330 - super_action_id: + id: 370 + card_id: 304 + card_act_id: 105326 + super_action_id: 369 action_type: 0 draft: 0 comment: card_actions_302: - id: 456 - card_id: 307 - card_act_id: 105330 - super_action_id: 455 + id: 371 + card_id: 305 + card_act_id: 105326 + super_action_id: 369 action_type: 0 draft: 0 comment: card_actions_303: - id: 457 - card_id: 308 - card_act_id: 105330 - super_action_id: 455 + id: 373 + card_id: 307 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_304: - id: 458 - card_id: 309 - card_act_id: 105330 - super_action_id: 457 + id: 375 + card_id: 308 + card_act_id: 105326 + super_action_id: 374 action_type: 0 draft: 0 comment: card_actions_305: - id: 459 - card_id: 310 - card_act_id: 105330 - super_action_id: 457 + id: 376 + card_id: 309 + card_act_id: 105326 + super_action_id: 374 action_type: 0 draft: 0 comment: card_actions_306: - id: 460 - card_id: 311 - card_act_id: 105330 - super_action_id: 457 + id: 377 + card_id: 310 + card_act_id: 105326 + super_action_id: 376 action_type: 0 draft: 0 comment: card_actions_307: - id: 461 - card_id: 306 - card_act_id: 105330 - super_action_id: + id: 378 + card_id: 311 + card_act_id: 105326 + super_action_id: 376 action_type: 0 draft: 0 comment: card_actions_308: - id: 463 - card_id: 313 - card_act_id: 105330 - super_action_id: 462 + id: 379 + card_id: 312 + card_act_id: 105326 + super_action_id: 376 action_type: 0 draft: 0 comment: card_actions_309: - id: 464 - card_id: 314 - card_act_id: 105330 - super_action_id: 462 + id: 380 + card_id: 313 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_310: - id: 465 - card_id: 315 - card_act_id: 105330 - super_action_id: 464 + id: 382 + card_id: 314 + card_act_id: 105326 + super_action_id: 381 action_type: 0 draft: 0 comment: card_actions_311: - id: 466 - card_id: 316 - card_act_id: 105330 - super_action_id: 464 + id: 383 + card_id: 315 + card_act_id: 105326 + super_action_id: 381 action_type: 0 draft: 0 comment: card_actions_312: - id: 467 - card_id: 317 - card_act_id: 105330 - super_action_id: 464 + id: 384 + card_id: 316 + card_act_id: 105326 + super_action_id: 383 action_type: 0 draft: 0 comment: card_actions_313: - id: 468 - card_id: 312 - card_act_id: 105330 - super_action_id: + id: 385 + card_id: 317 + card_act_id: 105326 + super_action_id: 383 action_type: 0 draft: 0 comment: card_actions_314: - id: 470 + id: 386 card_id: 318 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 383 action_type: 0 draft: 0 comment: card_actions_315: - id: 472 + id: 387 card_id: 319 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_316: - id: 474 + id: 388 card_id: 320 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_317: - id: 476 - card_id: 322 - card_act_id: 105330 - super_action_id: 475 + id: 389 + card_id: 321 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_318: - id: 477 - card_id: 323 - card_act_id: 105330 - super_action_id: 476 + id: 390 + card_id: 322 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_319: - id: 478 - card_id: 324 - card_act_id: 105330 - super_action_id: 476 + id: 392 + card_id: 323 + card_act_id: 105326 + super_action_id: 391 action_type: 0 draft: 0 comment: card_actions_320: - id: 479 - card_id: 325 - card_act_id: 105330 - super_action_id: 476 + id: 393 + card_id: 324 + card_act_id: 105326 + super_action_id: 392 action_type: 0 draft: 0 comment: card_actions_321: - id: 480 - card_id: 321 - card_act_id: 105330 - super_action_id: + id: 394 + card_id: 325 + card_act_id: 105326 + super_action_id: 392 action_type: 0 draft: 0 comment: card_actions_322: - id: 484 - card_id: 327 - card_act_id: 105330 - super_action_id: + id: 395 + card_id: 326 + card_act_id: 105326 + super_action_id: 392 action_type: 0 draft: 0 comment: card_actions_323: - id: 486 + id: 397 card_id: 328 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_324: - id: 488 - card_id: 330 - card_act_id: 105330 - super_action_id: 487 + id: 398 + card_id: 329 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_325: - id: 489 - card_id: 331 - card_act_id: 105330 - super_action_id: 487 + id: 399 + card_id: 330 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_326: - id: 490 - card_id: 332 - card_act_id: 105330 - super_action_id: 489 + id: 401 + card_id: 331 + card_act_id: 105326 + super_action_id: 400 action_type: 0 draft: 0 comment: card_actions_327: - id: 491 - card_id: 333 - card_act_id: 105330 - super_action_id: 489 + id: 402 + card_id: 332 + card_act_id: 105326 + super_action_id: 400 action_type: 0 draft: 0 comment: card_actions_328: - id: 492 - card_id: 334 - card_act_id: 105330 - super_action_id: 489 + id: 403 + card_id: 333 + card_act_id: 105326 + super_action_id: 402 action_type: 0 draft: 0 comment: card_actions_329: - id: 493 - card_id: 329 - card_act_id: 105330 - super_action_id: + id: 404 + card_id: 334 + card_act_id: 105326 + super_action_id: 402 action_type: 0 draft: 0 comment: card_actions_330: - id: 495 - card_id: 336 - card_act_id: 105330 - super_action_id: 494 + id: 405 + card_id: 335 + card_act_id: 105326 + super_action_id: 402 action_type: 0 draft: 0 comment: card_actions_331: - id: 496 - card_id: 337 - card_act_id: 105330 - super_action_id: 494 + id: 406 + card_id: 336 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_332: - id: 497 - card_id: 338 - card_act_id: 105330 - super_action_id: 496 + id: 408 + card_id: 337 + card_act_id: 105326 + super_action_id: 407 action_type: 0 draft: 0 comment: card_actions_333: - id: 498 - card_id: 339 - card_act_id: 105330 - super_action_id: 496 + id: 409 + card_id: 338 + card_act_id: 105326 + super_action_id: 407 action_type: 0 draft: 0 comment: card_actions_334: - id: 499 - card_id: 340 - card_act_id: 105330 - super_action_id: 496 + id: 410 + card_id: 339 + card_act_id: 105326 + super_action_id: 409 action_type: 0 draft: 0 comment: card_actions_335: - id: 500 - card_id: 335 - card_act_id: 105330 - super_action_id: + id: 411 + card_id: 340 + card_act_id: 105326 + super_action_id: 409 action_type: 0 draft: 0 comment: card_actions_336: - id: 502 - card_id: 342 - card_act_id: 105330 - super_action_id: 501 + id: 412 + card_id: 341 + card_act_id: 105326 + super_action_id: 409 action_type: 0 draft: 0 comment: card_actions_337: - id: 503 - card_id: 343 - card_act_id: 105330 - super_action_id: 501 + id: 413 + card_id: 342 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_338: - id: 504 - card_id: 344 - card_act_id: 105330 - super_action_id: 503 + id: 415 + card_id: 343 + card_act_id: 105326 + super_action_id: 414 action_type: 0 draft: 0 comment: card_actions_339: - id: 505 - card_id: 345 - card_act_id: 105330 - super_action_id: 503 + id: 416 + card_id: 344 + card_act_id: 105326 + super_action_id: 414 action_type: 0 draft: 0 comment: card_actions_340: - id: 506 - card_id: 346 - card_act_id: 105330 - super_action_id: 503 + id: 417 + card_id: 345 + card_act_id: 105326 + super_action_id: 416 action_type: 0 draft: 0 comment: card_actions_341: - id: 507 - card_id: 341 - card_act_id: 105330 - super_action_id: + id: 418 + card_id: 346 + card_act_id: 105326 + super_action_id: 416 action_type: 0 draft: 0 comment: card_actions_342: - id: 509 - card_id: 348 - card_act_id: 105330 - super_action_id: 508 + id: 419 + card_id: 347 + card_act_id: 105326 + super_action_id: 416 action_type: 0 draft: 0 comment: card_actions_343: - id: 510 - card_id: 349 - card_act_id: 105330 - super_action_id: 509 + id: 420 + card_id: 348 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_344: - id: 511 - card_id: 350 - card_act_id: 105330 - super_action_id: 509 + id: 422 + card_id: 349 + card_act_id: 105326 + super_action_id: 421 action_type: 0 draft: 0 comment: card_actions_345: - id: 512 - card_id: 351 - card_act_id: 105330 - super_action_id: 509 + id: 423 + card_id: 350 + card_act_id: 105326 + super_action_id: 422 action_type: 0 draft: 0 comment: card_actions_346: - id: 513 - card_id: 347 - card_act_id: 105330 - super_action_id: + id: 424 + card_id: 351 + card_act_id: 105326 + super_action_id: 422 action_type: 0 draft: 0 comment: card_actions_347: - id: 515 + id: 425 card_id: 352 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 422 action_type: 0 draft: 0 comment: card_actions_348: - id: 517 + id: 426 card_id: 353 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_349: - id: 519 + id: 427 card_id: 354 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_350: - id: 521 + id: 428 card_id: 355 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_351: - id: 523 + id: 429 card_id: 356 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_352: - id: 525 + id: 430 card_id: 357 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_353: - id: 527 + id: 431 card_id: 358 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_354: - id: 529 + id: 432 card_id: 359 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_355: - id: 531 + id: 433 card_id: 360 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_356: - id: 532 + id: 434 card_id: 361 - card_act_id: 105330 - super_action_id: 531 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_357: - id: 533 + id: 435 card_id: 362 - card_act_id: 105330 - super_action_id: 531 + card_act_id: 105326 + super_action_id: 434 action_type: 0 draft: 0 comment: card_actions_358: - id: 535 + id: 436 card_id: 363 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 434 action_type: 0 draft: 0 - comment: image-original.png + comment: card_actions_359: - id: 537 + id: 437 card_id: 364 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 - comment: + comment: image-original.png card_actions_360: - id: 538 + id: 438 card_id: 365 - card_act_id: 105330 - super_action_id: 537 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_361: - id: 539 + id: 439 card_id: 366 - card_act_id: 105330 - super_action_id: 537 + card_act_id: 105326 + super_action_id: 438 action_type: 0 draft: 0 comment: card_actions_362: - id: 541 + id: 440 card_id: 367 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 438 action_type: 0 draft: 0 - comment: image-original.png + comment: card_actions_363: - id: 543 + id: 441 card_id: 368 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 - comment: + comment: image-original.png card_actions_364: - id: 544 + id: 442 card_id: 369 - card_act_id: 105330 - super_action_id: 543 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_365: - id: 545 + id: 443 card_id: 370 - card_act_id: 105330 - super_action_id: 543 + card_act_id: 105326 + super_action_id: 442 action_type: 0 draft: 0 comment: card_actions_366: - id: 547 + id: 444 card_id: 371 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 442 action_type: 0 draft: 0 - comment: image-original.png + comment: card_actions_367: - id: 549 + id: 445 card_id: 372 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 - comment: + comment: image-original.png card_actions_368: - id: 550 + id: 446 card_id: 373 - card_act_id: 105330 - super_action_id: 549 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_369: - id: 551 + id: 447 card_id: 374 - card_act_id: 105330 - super_action_id: 549 + card_act_id: 105326 + super_action_id: 446 action_type: 0 draft: 0 comment: card_actions_370: - id: 553 + id: 448 card_id: 375 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 446 action_type: 0 draft: 0 - comment: image-original.png + comment: card_actions_371: - id: 555 + id: 449 card_id: 376 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 - comment: + comment: image-original.png card_actions_372: - id: 556 + id: 450 card_id: 377 - card_act_id: 105330 - super_action_id: 555 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_373: - id: 557 + id: 451 card_id: 378 - card_act_id: 105330 - super_action_id: 555 + card_act_id: 105326 + super_action_id: 450 action_type: 0 draft: 0 comment: card_actions_374: - id: 559 + id: 452 card_id: 379 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 450 action_type: 0 draft: 0 - comment: image-original.png + comment: card_actions_375: - id: 561 + id: 453 card_id: 380 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 - comment: + comment: image-original.png card_actions_376: - id: 562 + id: 454 card_id: 381 - card_act_id: 105330 - super_action_id: 561 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_377: - id: 563 + id: 455 card_id: 382 - card_act_id: 105330 - super_action_id: 561 + card_act_id: 105326 + super_action_id: 454 action_type: 0 draft: 0 comment: card_actions_378: - id: 565 + id: 456 card_id: 383 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 454 action_type: 0 draft: 0 - comment: image-original.png + comment: card_actions_379: - id: 567 + id: 457 card_id: 384 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 - comment: + comment: image-original.png card_actions_380: - id: 568 + id: 458 card_id: 385 - card_act_id: 105330 - super_action_id: 567 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_381: - id: 569 + id: 459 card_id: 386 - card_act_id: 105330 - super_action_id: 567 + card_act_id: 105326 + super_action_id: 458 action_type: 0 draft: 0 comment: card_actions_382: - id: 571 + id: 460 card_id: 387 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 458 action_type: 0 draft: 0 - comment: image-original.png + comment: card_actions_383: - id: 573 + id: 461 card_id: 388 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 - comment: + comment: image-original.png card_actions_384: - id: 574 + id: 462 card_id: 389 - card_act_id: 105330 - super_action_id: 573 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_385: - id: 575 + id: 463 card_id: 390 - card_act_id: 105330 - super_action_id: 573 + card_act_id: 105326 + super_action_id: 462 action_type: 0 draft: 0 comment: card_actions_386: - id: 577 + id: 464 card_id: 391 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 462 action_type: 0 draft: 0 - comment: image-original.png + comment: card_actions_387: - id: 579 + id: 465 card_id: 392 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 - comment: + comment: image-original.png card_actions_388: - id: 580 + id: 466 card_id: 393 - card_act_id: 105330 - super_action_id: 579 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_389: - id: 581 + id: 467 card_id: 394 - card_act_id: 105330 - super_action_id: 579 + card_act_id: 105326 + super_action_id: 466 action_type: 0 draft: 0 comment: card_actions_390: - id: 583 + id: 468 card_id: 395 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 466 action_type: 0 draft: 0 - comment: image-original.png + comment: card_actions_391: - id: 585 + id: 469 card_id: 396 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 - comment: + comment: image-original.png card_actions_392: - id: 586 + id: 470 card_id: 397 - card_act_id: 105330 - super_action_id: 585 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_393: - id: 587 + id: 471 card_id: 398 - card_act_id: 105330 - super_action_id: 585 + card_act_id: 105326 + super_action_id: 470 action_type: 0 draft: 0 comment: card_actions_394: - id: 589 + id: 472 card_id: 399 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 470 action_type: 0 draft: 0 - comment: image-original.png + comment: card_actions_395: - id: 591 + id: 473 card_id: 400 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 - comment: + comment: image-original.png card_actions_396: - id: 592 + id: 474 card_id: 401 - card_act_id: 105330 - super_action_id: 591 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_397: - id: 593 + id: 475 card_id: 402 - card_act_id: 105330 - super_action_id: 591 + card_act_id: 105326 + super_action_id: 474 action_type: 0 draft: 0 comment: card_actions_398: - id: 595 + id: 476 card_id: 403 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 474 action_type: 0 draft: 0 - comment: image-original.png + comment: card_actions_399: - id: 597 + id: 477 card_id: 404 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 - comment: + comment: image-original.png card_actions_400: - id: 598 + id: 478 card_id: 405 - card_act_id: 105330 - super_action_id: 597 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_401: - id: 599 + id: 479 card_id: 406 - card_act_id: 105330 - super_action_id: 597 + card_act_id: 105326 + super_action_id: 478 action_type: 0 draft: 0 comment: card_actions_402: - id: 601 + id: 480 card_id: 407 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 478 action_type: 0 draft: 0 - comment: image-original.png + comment: card_actions_403: - id: 603 + id: 481 card_id: 408 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 - comment: + comment: image-original.png card_actions_404: - id: 604 + id: 482 card_id: 409 - card_act_id: 105330 - super_action_id: 603 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_405: - id: 605 + id: 483 card_id: 410 - card_act_id: 105330 - super_action_id: 603 + card_act_id: 105326 + super_action_id: 482 action_type: 0 draft: 0 comment: card_actions_406: - id: 607 + id: 484 card_id: 411 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 482 action_type: 0 draft: 0 - comment: image-original.png + comment: card_actions_407: - id: 609 + id: 485 card_id: 412 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 - comment: + comment: image-original.png card_actions_408: - id: 610 + id: 486 card_id: 413 - card_act_id: 105330 - super_action_id: 609 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_409: - id: 611 + id: 487 card_id: 414 - card_act_id: 105330 - super_action_id: 609 + card_act_id: 105326 + super_action_id: 486 action_type: 0 draft: 0 comment: card_actions_410: - id: 613 + id: 488 card_id: 415 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 486 action_type: 0 draft: 0 - comment: image-original.png + comment: card_actions_411: - id: 615 + id: 489 card_id: 416 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 - comment: + comment: image-original.png card_actions_412: - id: 616 + id: 490 card_id: 417 - card_act_id: 105330 - super_action_id: 615 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_413: - id: 617 + id: 491 card_id: 418 - card_act_id: 105330 - super_action_id: 615 + card_act_id: 105326 + super_action_id: 490 action_type: 0 draft: 0 comment: card_actions_414: - id: 619 + id: 492 card_id: 419 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 490 action_type: 0 draft: 0 - comment: image-original.png + comment: card_actions_415: - id: 621 + id: 493 card_id: 420 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 - comment: + comment: image-original.png card_actions_416: - id: 622 + id: 494 card_id: 421 - card_act_id: 105330 - super_action_id: 621 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_417: - id: 623 + id: 495 card_id: 422 - card_act_id: 105330 - super_action_id: 621 + card_act_id: 105326 + super_action_id: 494 action_type: 0 draft: 0 comment: card_actions_418: - id: 625 + id: 496 card_id: 423 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 494 action_type: 0 draft: 0 - comment: image-original.png + comment: card_actions_419: - id: 627 + id: 497 card_id: 424 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 - comment: + comment: image-original.png card_actions_420: - id: 628 + id: 498 card_id: 425 - card_act_id: 105330 - super_action_id: 627 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_421: - id: 629 + id: 499 card_id: 426 - card_act_id: 105330 - super_action_id: 627 + card_act_id: 105326 + super_action_id: 498 action_type: 0 draft: 0 comment: card_actions_422: - id: 631 + id: 500 card_id: 427 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 498 action_type: 0 draft: 0 - comment: image-original.png + comment: card_actions_423: - id: 633 + id: 501 card_id: 428 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 - comment: + comment: image-original.png card_actions_424: - id: 634 + id: 502 card_id: 429 - card_act_id: 105330 - super_action_id: 633 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_425: - id: 635 + id: 503 card_id: 430 - card_act_id: 105330 - super_action_id: 633 + card_act_id: 105326 + super_action_id: 502 action_type: 0 draft: 0 comment: card_actions_426: - id: 637 + id: 504 card_id: 431 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 502 action_type: 0 draft: 0 - comment: image-original.png + comment: card_actions_427: - id: 639 + id: 505 card_id: 432 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 - comment: + comment: image-original.png card_actions_428: - id: 640 + id: 506 card_id: 433 - card_act_id: 105330 - super_action_id: 639 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_429: - id: 641 + id: 507 card_id: 434 - card_act_id: 105330 - super_action_id: 639 + card_act_id: 105326 + super_action_id: 506 action_type: 0 draft: 0 comment: card_actions_430: - id: 643 + id: 508 card_id: 435 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 506 action_type: 0 draft: 0 - comment: image-original.png + comment: card_actions_431: - id: 645 + id: 509 card_id: 436 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 - comment: + comment: image-original.png card_actions_432: - id: 646 + id: 510 card_id: 437 - card_act_id: 105330 - super_action_id: 645 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_433: - id: 647 + id: 511 card_id: 438 - card_act_id: 105330 - super_action_id: 645 + card_act_id: 105326 + super_action_id: 510 action_type: 0 draft: 0 comment: card_actions_434: - id: 649 + id: 512 card_id: 439 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 510 action_type: 0 draft: 0 - comment: image-original.png + comment: card_actions_435: - id: 651 + id: 513 card_id: 440 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 - comment: + comment: image-original.png card_actions_436: - id: 652 + id: 514 card_id: 441 - card_act_id: 105330 - super_action_id: 651 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_437: - id: 653 + id: 515 card_id: 442 - card_act_id: 105330 - super_action_id: 651 + card_act_id: 105326 + super_action_id: 514 action_type: 0 draft: 0 comment: card_actions_438: - id: 655 + id: 516 card_id: 443 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 514 action_type: 0 draft: 0 - comment: image-original.png + comment: card_actions_439: - id: 657 + id: 517 card_id: 444 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 - comment: + comment: image-original.png card_actions_440: - id: 659 - card_id: 446 - card_act_id: 105330 + id: 518 + card_id: 445 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_441: - id: 661 - card_id: 448 - card_act_id: 105330 - super_action_id: 660 + id: 519 + card_id: 447 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_442: - id: 662 - card_id: 447 - card_act_id: 105330 + id: 520 + card_id: 448 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_443: - id: 664 + id: 522 card_id: 449 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 521 action_type: 0 draft: 0 comment: card_actions_444: - id: 666 + id: 523 card_id: 450 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_445: - id: 668 + id: 524 card_id: 451 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_446: - id: 670 + id: 525 card_id: 452 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_447: - id: 672 - card_id: 454 - card_act_id: 105330 - super_action_id: 671 + id: 526 + card_id: 453 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_448: - id: 673 - card_id: 455 - card_act_id: 105330 - super_action_id: 672 + id: 527 + card_id: 454 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_449: - id: 674 - card_id: 456 - card_act_id: 105330 - super_action_id: 672 + id: 529 + card_id: 455 + card_act_id: 105326 + super_action_id: 528 action_type: 0 draft: 0 comment: card_actions_450: - id: 675 - card_id: 453 - card_act_id: 105330 - super_action_id: + id: 530 + card_id: 456 + card_act_id: 105326 + super_action_id: 529 action_type: 0 draft: 0 comment: card_actions_451: - id: 677 - card_id: 458 - card_act_id: 105330 - super_action_id: 676 + id: 531 + card_id: 457 + card_act_id: 105326 + super_action_id: 529 action_type: 0 draft: 0 comment: card_actions_452: - id: 678 - card_id: 459 - card_act_id: 105330 - super_action_id: 677 + id: 532 + card_id: 458 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_453: - id: 679 - card_id: 460 - card_act_id: 105330 - super_action_id: 677 + id: 534 + card_id: 459 + card_act_id: 105326 + super_action_id: 533 action_type: 0 draft: 0 comment: card_actions_454: - id: 680 - card_id: 457 - card_act_id: 105330 - super_action_id: + id: 535 + card_id: 460 + card_act_id: 105326 + super_action_id: 534 action_type: 0 draft: 0 comment: card_actions_455: - id: 682 + id: 536 card_id: 461 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 534 action_type: 0 draft: 0 comment: card_actions_456: - id: 684 + id: 537 card_id: 462 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_457: - id: 686 + id: 538 card_id: 463 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_458: - id: 688 + id: 539 card_id: 464 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_459: - id: 690 + id: 540 card_id: 465 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_460: - id: 692 + id: 541 card_id: 466 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_461: - id: 694 + id: 542 card_id: 467 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_462: - id: 696 - card_id: 469 - card_act_id: 105330 - super_action_id: 695 + id: 543 + card_id: 468 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_463: - id: 697 - card_id: 470 - card_act_id: 105330 - super_action_id: 696 + id: 544 + card_id: 469 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_464: - id: 698 - card_id: 471 - card_act_id: 105330 - super_action_id: 696 + id: 546 + card_id: 470 + card_act_id: 105326 + super_action_id: 545 action_type: 0 draft: 0 comment: card_actions_465: - id: 699 - card_id: 468 - card_act_id: 105330 - super_action_id: + id: 547 + card_id: 471 + card_act_id: 105326 + super_action_id: 546 action_type: 0 draft: 0 comment: card_actions_466: - id: 701 + id: 548 card_id: 472 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 546 action_type: 0 draft: 0 comment: card_actions_467: - id: 703 + id: 549 card_id: 473 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_468: - id: 705 - card_id: 475 - card_act_id: 105330 - super_action_id: 704 + id: 550 + card_id: 474 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_469: - id: 706 - card_id: 476 - card_act_id: 105330 - super_action_id: 704 + id: 551 + card_id: 475 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_470: - id: 707 - card_id: 477 - card_act_id: 105330 - super_action_id: 704 + id: 553 + card_id: 476 + card_act_id: 105326 + super_action_id: 552 action_type: 0 draft: 0 comment: card_actions_471: - id: 708 - card_id: 478 - card_act_id: 105330 - super_action_id: 704 + id: 554 + card_id: 477 + card_act_id: 105326 + super_action_id: 552 action_type: 0 draft: 0 comment: card_actions_472: - id: 709 - card_id: 474 - card_act_id: 105330 - super_action_id: + id: 555 + card_id: 478 + card_act_id: 105326 + super_action_id: 552 action_type: 0 draft: 0 comment: card_actions_473: - id: 711 - card_id: 480 - card_act_id: 105330 - super_action_id: 710 + id: 556 + card_id: 479 + card_act_id: 105326 + super_action_id: 552 action_type: 0 draft: 0 comment: card_actions_474: - id: 712 - card_id: 479 - card_act_id: 105330 + id: 557 + card_id: 480 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_475: - id: 714 - card_id: 482 - card_act_id: 105330 - super_action_id: 713 + id: 559 + card_id: 481 + card_act_id: 105326 + super_action_id: 558 action_type: 0 draft: 0 comment: card_actions_476: - id: 715 - card_id: 483 - card_act_id: 105330 - super_action_id: 714 + id: 560 + card_id: 482 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_477: - id: 716 - card_id: 484 - card_act_id: 105330 - super_action_id: 714 + id: 562 + card_id: 483 + card_act_id: 105326 + super_action_id: 561 action_type: 0 draft: 0 comment: card_actions_478: - id: 717 - card_id: 485 - card_act_id: 105330 - super_action_id: 714 + id: 563 + card_id: 484 + card_act_id: 105326 + super_action_id: 562 action_type: 0 draft: 0 comment: card_actions_479: - id: 718 - card_id: 481 - card_act_id: 105330 - super_action_id: + id: 564 + card_id: 485 + card_act_id: 105326 + super_action_id: 562 action_type: 0 draft: 0 comment: card_actions_480: - id: 720 - card_id: 487 - card_act_id: 105330 - super_action_id: 719 + id: 565 + card_id: 486 + card_act_id: 105326 + super_action_id: 562 action_type: 0 draft: 0 comment: card_actions_481: - id: 721 - card_id: 488 - card_act_id: 105330 - super_action_id: 719 + id: 566 + card_id: 487 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_482: - id: 722 - card_id: 489 - card_act_id: 105330 - super_action_id: 721 + id: 568 + card_id: 488 + card_act_id: 105326 + super_action_id: 567 action_type: 0 draft: 0 comment: card_actions_483: - id: 723 - card_id: 490 - card_act_id: 105330 - super_action_id: 721 + id: 569 + card_id: 489 + card_act_id: 105326 + super_action_id: 567 action_type: 0 draft: 0 comment: card_actions_484: - id: 724 - card_id: 491 - card_act_id: 105330 - super_action_id: 721 + id: 570 + card_id: 490 + card_act_id: 105326 + super_action_id: 569 action_type: 0 draft: 0 comment: card_actions_485: - id: 725 - card_id: 486 - card_act_id: 105330 - super_action_id: + id: 571 + card_id: 491 + card_act_id: 105326 + super_action_id: 569 action_type: 0 draft: 0 comment: card_actions_486: - id: 727 - card_id: 493 - card_act_id: 105330 - super_action_id: 726 + id: 572 + card_id: 492 + card_act_id: 105326 + super_action_id: 569 action_type: 0 draft: 0 comment: card_actions_487: - id: 728 - card_id: 494 - card_act_id: 105330 - super_action_id: 727 + id: 573 + card_id: 493 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_488: - id: 730 - card_id: 492 - card_act_id: 105330 - super_action_id: + id: 575 + card_id: 494 + card_act_id: 105326 + super_action_id: 574 action_type: 0 draft: 0 comment: card_actions_489: - id: 732 + id: 576 card_id: 495 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 575 action_type: 0 draft: 0 comment: card_actions_490: - id: 736 - card_id: 497 - card_act_id: 105330 + id: 577 + card_id: 496 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_491: - id: 738 + id: 579 card_id: 498 - card_act_id: 105330 - super_action_id: 737 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_492: - id: 739 + id: 581 card_id: 499 - card_act_id: 105330 - super_action_id: 738 + card_act_id: 105326 + super_action_id: 580 action_type: 0 draft: 0 comment: card_actions_493: - id: 742 + id: 582 card_id: 500 - card_act_id: 105330 - super_action_id: 741 + card_act_id: 105326 + super_action_id: 581 action_type: 0 draft: 0 comment: card_actions_494: - id: 743 + id: 584 card_id: 501 - card_act_id: 105330 - super_action_id: 742 + card_act_id: 105326 + super_action_id: 583 action_type: 0 draft: 0 comment: card_actions_495: - id: 746 + id: 585 card_id: 502 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 584 action_type: 0 draft: 0 comment: card_actions_496: - id: 748 + id: 586 card_id: 503 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_497: - id: 750 - card_id: 505 - card_act_id: 105330 - super_action_id: 749 + id: 587 + card_id: 504 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_498: - id: 751 - card_id: 506 - card_act_id: 105330 - super_action_id: 750 + id: 588 + card_id: 505 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_499: - id: 752 - card_id: 504 - card_act_id: 105330 - super_action_id: + id: 590 + card_id: 506 + card_act_id: 105326 + super_action_id: 589 action_type: 0 draft: 0 comment: card_actions_500: - id: 754 + id: 591 card_id: 507 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 590 action_type: 0 draft: 0 comment: card_actions_501: - id: 756 + id: 592 card_id: 508 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_502: - id: 758 + id: 593 card_id: 509 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_503: - id: 760 + id: 594 card_id: 510 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_504: - id: 762 + id: 595 card_id: 511 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_505: - id: 764 + id: 596 card_id: 512 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_506: - id: 766 + id: 597 card_id: 513 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_507: - id: 768 + id: 598 card_id: 514 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_508: - id: 770 + id: 599 card_id: 515 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_509: - id: 772 + id: 600 card_id: 516 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_510: - id: 774 + id: 601 card_id: 517 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_511: - id: 776 + id: 602 card_id: 518 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_512: - id: 778 - card_id: 520 - card_act_id: 105330 - super_action_id: 777 + id: 603 + card_id: 519 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_513: - id: 779 - card_id: 521 - card_act_id: 105330 - super_action_id: 778 + id: 604 + card_id: 520 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_514: - id: 780 - card_id: 519 - card_act_id: 105330 - super_action_id: + id: 606 + card_id: 521 + card_act_id: 105326 + super_action_id: 605 action_type: 0 draft: 0 comment: card_actions_515: - id: 782 + id: 607 card_id: 522 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 606 action_type: 0 draft: 0 comment: card_actions_516: - id: 784 + id: 608 card_id: 523 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_517: - id: 786 - card_id: 525 - card_act_id: 105330 + id: 609 + card_id: 524 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_518: - id: 787 - card_id: 524 - card_act_id: 105330 - super_action_id: 786 + id: 610 + card_id: 526 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_519: - id: 789 - card_id: 496 - card_act_id: 105330 - super_action_id: + id: 611 + card_id: 525 + card_act_id: 105326 + super_action_id: 610 action_type: 0 draft: 0 comment: card_actions_520: - id: 791 - card_id: 526 - card_act_id: 105330 + id: 612 + card_id: 497 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_521: - id: 793 + id: 613 card_id: 527 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_522: - id: 795 + id: 614 card_id: 528 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_523: - id: 797 + id: 615 card_id: 529 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_524: - id: 799 + id: 616 card_id: 530 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_525: - id: 801 + id: 617 card_id: 531 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_526: - id: 803 - card_id: 533 - card_act_id: 105330 - super_action_id: 802 + id: 618 + card_id: 532 + card_act_id: 105326 + super_action_id: action_type: 0 draft: 0 comment: card_actions_527: - id: 804 - card_id: 532 - card_act_id: 105330 + id: 619 + card_id: 533 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_528: - id: 805 + id: 621 card_id: 534 - card_act_id: 105330 - super_action_id: + card_act_id: 105326 + super_action_id: 620 action_type: 0 draft: 0 comment: card_actions_529: - id: 806 + id: 622 card_id: 535 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_530: - id: 807 + id: 623 card_id: 536 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_531: - id: 808 + id: 624 card_id: 537 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_532: - id: 809 + id: 625 card_id: 538 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_533: - id: 810 - card_id: 540 - card_act_id: 105330 + id: 626 + card_id: 539 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_534: - id: 811 + id: 627 card_id: 541 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_535: - id: 812 + id: 628 card_id: 542 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_536: - id: 813 - card_id: 544 - card_act_id: 105330 + id: 629 + card_id: 543 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_537: - id: 814 + id: 630 card_id: 545 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_538: - id: 815 + id: 631 card_id: 546 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_539: - id: 816 + id: 632 card_id: 547 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_540: - id: 817 + id: 633 card_id: 548 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_541: - id: 818 + id: 634 card_id: 549 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_542: - id: 819 + id: 635 card_id: 550 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_543: - id: 820 + id: 636 card_id: 551 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_544: - id: 821 - card_id: 553 - card_act_id: 105330 + id: 637 + card_id: 552 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_545: - id: 822 + id: 638 card_id: 554 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_546: - id: 823 + id: 639 card_id: 555 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_547: - id: 824 - card_id: 557 - card_act_id: 105330 + id: 640 + card_id: 556 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_548: - id: 825 + id: 641 card_id: 558 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_549: - id: 826 + id: 642 card_id: 559 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_550: - id: 827 - card_id: 561 - card_act_id: 105330 + id: 643 + card_id: 560 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_551: - id: 828 + id: 644 card_id: 562 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_552: - id: 829 + id: 645 card_id: 563 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_553: - id: 830 + id: 646 card_id: 564 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_554: - id: 831 + id: 647 card_id: 565 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_555: - id: 832 - card_id: 567 - card_act_id: 105330 + id: 648 + card_id: 566 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_556: - id: 833 + id: 649 card_id: 568 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_557: - id: 834 + id: 650 card_id: 569 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_558: - id: 835 + id: 651 card_id: 570 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_559: - id: 836 + id: 652 card_id: 571 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_560: - id: 837 - card_id: 573 - card_act_id: 105330 + id: 653 + card_id: 572 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_561: - id: 838 + id: 654 card_id: 574 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_562: - id: 839 + id: 655 card_id: 575 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_563: - id: 840 + id: 656 card_id: 576 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_564: - id: 841 + id: 657 card_id: 577 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_565: - id: 842 + id: 658 card_id: 578 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_566: - id: 843 - card_id: 580 - card_act_id: 105330 + id: 659 + card_id: 579 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_567: - id: 844 + id: 660 card_id: 581 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_568: - id: 845 + id: 661 card_id: 582 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_569: - id: 846 + id: 662 card_id: 583 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_570: - id: 847 + id: 663 card_id: 584 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_571: - id: 848 + id: 664 card_id: 585 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_572: - id: 849 - card_id: 587 - card_act_id: 105330 + id: 665 + card_id: 586 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_573: - id: 850 + id: 666 card_id: 588 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_574: - id: 851 + id: 667 card_id: 589 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_575: - id: 852 - card_id: 591 - card_act_id: 105330 + id: 668 + card_id: 590 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_576: - id: 853 + id: 669 card_id: 592 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_577: - id: 854 + id: 670 card_id: 593 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_578: - id: 855 + id: 671 card_id: 594 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_579: - id: 856 + id: 672 card_id: 595 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_580: - id: 857 + id: 673 card_id: 596 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_581: - id: 858 + id: 674 card_id: 597 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_582: - id: 859 - card_id: 599 - card_act_id: 105330 + id: 675 + card_id: 598 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_583: - id: 860 + id: 676 card_id: 600 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_584: - id: 861 + id: 677 card_id: 601 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_585: - id: 862 + id: 678 card_id: 602 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_586: - id: 863 - card_id: 604 - card_act_id: 105330 + id: 679 + card_id: 603 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_587: - id: 864 + id: 680 card_id: 605 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_588: - id: 865 - card_id: 607 - card_act_id: 105330 + id: 681 + card_id: 606 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_589: - id: 866 + id: 682 card_id: 608 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_590: - id: 867 + id: 683 card_id: 609 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_591: - id: 868 - card_id: 611 - card_act_id: 105330 + id: 684 + card_id: 610 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_592: - id: 869 + id: 685 card_id: 612 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_593: - id: 870 - card_id: 614 - card_act_id: 105330 + id: 686 + card_id: 613 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_594: - id: 871 + id: 687 card_id: 615 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_595: - id: 872 + id: 688 card_id: 616 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_596: - id: 873 + id: 689 card_id: 617 - card_act_id: 105330 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_597: - id: 874 - card_id: 305 - card_act_id: 105330 + id: 690 + card_id: 618 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 comment: card_actions_598: - id: 875 - card_id: 326 - card_act_id: 105330 + id: 691 + card_id: 306 + card_act_id: 105326 + super_action_id: + action_type: 0 + draft: 0 + comment: +card_actions_599: + id: 692 + card_id: 327 + card_act_id: 105326 super_action_id: action_type: 0 draft: 0 diff --git a/mod/defaults/data/fixtures/real/card_acts.yml b/mod/defaults/data/fixtures/real/card_acts.yml index d192279cd1..a94cdec9ba 100644 --- a/mod/defaults/data/fixtures/real/card_acts.yml +++ b/mod/defaults/data/fixtures/real/card_acts.yml @@ -1,7 +1,7 @@ --- card_acts_001: - id: 105330 + id: 105326 card_id: 1 actor_id: 1 - acted_at: 2024-10-09 13:51:02.000000000 Z + acted_at: 2025-02-04 20:49:35.790674000 Z ip_address: diff --git a/mod/defaults/data/fixtures/real/card_references.yml b/mod/defaults/data/fixtures/real/card_references.yml index 80c045e941..67fbedca46 100644 --- a/mod/defaults/data/fixtures/real/card_references.yml +++ b/mod/defaults/data/fixtures/real/card_references.yml @@ -52,7 +52,7 @@ card_references_008: id: 10 referer_id: 4 referee_key: list+description - referee_id: 54 + referee_id: 55 ref_type: I is_present: card_references_009: @@ -66,7 +66,7 @@ card_references_010: id: 12 referer_id: 6 referee_key: setting+description - referee_id: 142 + referee_id: 143 ref_type: I is_present: card_references_011: @@ -171,7 +171,7 @@ card_references_025: id: 27 referer_id: 48 referee_key: anyone - referee_id: 180 + referee_id: 181 ref_type: L is_present: card_references_026: @@ -192,54 +192,54 @@ card_references_028: id: 30 referer_id: 53 referee_key: anyone - referee_id: 180 + referee_id: 181 ref_type: L is_present: card_references_029: id: 31 - referer_id: 55 + referer_id: 56 referee_key: pointer+description - referee_id: 56 + referee_id: 57 ref_type: I is_present: card_references_030: id: 32 - referer_id: 57 + referer_id: 58 referee_key: nest_list+description referee_id: ref_type: I is_present: card_references_031: id: 33 - referer_id: 57 + referer_id: 58 referee_key: description referee_id: 12 ref_type: P is_present: card_references_032: id: 34 - referer_id: 58 + referer_id: 59 referee_key: link_list+description referee_id: ref_type: I is_present: card_references_033: id: 35 - referer_id: 58 + referer_id: 59 referee_key: description referee_id: 12 ref_type: P is_present: card_references_034: id: 36 - referer_id: 64 + referer_id: 65 referee_key: markdown+description referee_id: ref_type: I is_present: card_references_035: id: 37 - referer_id: 64 + referer_id: 65 referee_key: description referee_id: 12 ref_type: P @@ -248,3905 +248,3793 @@ card_references_036: id: 38 referer_id: 10 referee_key: anyone - referee_id: 180 + referee_id: 181 ref_type: L is_present: card_references_037: id: 39 - referer_id: 68 + referer_id: 69 referee_key: anyone_signed_in - referee_id: 182 + referee_id: 183 ref_type: L is_present: card_references_038: id: 40 - referer_id: 69 + referer_id: 70 referee_key: anyone_signed_in - referee_id: 182 + referee_id: 183 ref_type: L is_present: card_references_039: id: 41 - referer_id: 70 + referer_id: 71 referee_key: anyone_signed_in - referee_id: 182 + referee_id: 183 ref_type: L is_present: card_references_040: id: 42 - referer_id: 71 + referer_id: 72 referee_key: "*all_plu" referee_id: 20 ref_type: L is_present: card_references_041: id: 43 - referer_id: 72 + referer_id: 73 referee_key: "*all_plu" referee_id: 20 ref_type: L is_present: card_references_042: id: 44 - referer_id: 73 + referer_id: 74 referee_key: "*all_plu" referee_id: 20 ref_type: L is_present: card_references_043: id: 45 - referer_id: 74 + referer_id: 75 referee_key: "*all_plu" referee_id: 20 ref_type: L is_present: card_references_044: id: 46 - referer_id: 75 + referer_id: 76 referee_key: administrator - referee_id: 184 + referee_id: 185 ref_type: L is_present: card_references_045: id: 47 - referer_id: 76 + referer_id: 77 referee_key: administrator - referee_id: 184 + referee_id: 185 ref_type: L is_present: card_references_046: id: 48 - referer_id: 77 + referer_id: 78 referee_key: administrator - referee_id: 184 + referee_id: 185 ref_type: L is_present: card_references_047: id: 49 - referer_id: 78 + referer_id: 79 referee_key: shark - referee_id: 191 + referee_id: 192 ref_type: L is_present: card_references_048: id: 50 - referer_id: 79 + referer_id: 80 referee_key: shark - referee_id: 191 + referee_id: 192 ref_type: L is_present: card_references_049: id: 51 - referer_id: 80 + referer_id: 81 referee_key: shark - referee_id: 191 + referee_id: 192 ref_type: L is_present: card_references_050: id: 52 - referer_id: 82 + referer_id: 83 referee_key: shark - referee_id: 191 + referee_id: 192 ref_type: L is_present: card_references_051: id: 53 - referer_id: 83 + referer_id: 84 referee_key: shark - referee_id: 191 + referee_id: 192 ref_type: L is_present: card_references_052: id: 54 - referer_id: 84 + referer_id: 85 referee_key: shark - referee_id: 191 + referee_id: 192 ref_type: L is_present: card_references_053: id: 55 - referer_id: 85 + referer_id: 86 referee_key: shark - referee_id: 191 + referee_id: 192 ref_type: L is_present: card_references_054: id: 56 - referer_id: 86 + referer_id: 87 referee_key: shark - referee_id: 191 + referee_id: 192 ref_type: L is_present: card_references_055: id: 57 - referer_id: 87 + referer_id: 88 referee_key: shark - referee_id: 191 + referee_id: 192 ref_type: L is_present: card_references_056: id: 58 - referer_id: 91 + referer_id: 92 referee_key: help_desk - referee_id: 196 + referee_id: 197 ref_type: L is_present: card_references_057: id: 59 - referer_id: 92 + referer_id: 93 referee_key: help_desk - referee_id: 196 + referee_id: 197 ref_type: L is_present: card_references_058: id: 60 - referer_id: 93 + referer_id: 94 referee_key: help_desk - referee_id: 196 + referee_id: 197 ref_type: L is_present: card_references_059: id: 61 - referer_id: 94 + referer_id: 95 referee_key: "*guide" - referee_id: 88 + referee_id: 89 ref_type: L is_present: card_references_060: id: 62 - referer_id: 95 + referer_id: 96 referee_key: rich_text referee_id: 2 ref_type: L is_present: card_references_061: id: 63 - referer_id: 95 + referer_id: 96 referee_key: list referee_id: 4 ref_type: L is_present: card_references_062: id: 64 - referer_id: 95 + referer_id: 96 referee_key: image - referee_id: 284 + referee_id: 285 ref_type: L is_present: card_references_063: id: 65 - referer_id: 95 + referer_id: 96 referee_key: search - referee_id: 97 + referee_id: 98 ref_type: L is_present: card_references_064: id: 66 - referer_id: 95 + referer_id: 96 referee_key: java_script - referee_id: 306 + referee_id: 307 ref_type: L is_present: card_references_065: id: 67 - referer_id: 95 + referer_id: 96 referee_key: user referee_id: 18 ref_type: L is_present: card_references_066: id: 68 - referer_id: 95 + referer_id: 96 referee_key: '' referee_id: ref_type: I is_present: card_references_067: id: 69 - referer_id: 95 + referer_id: 96 referee_key: cardtype referee_id: 3 ref_type: L is_present: card_references_068: id: 70 - referer_id: 95 + referer_id: 96 referee_key: "*autoname" referee_id: 17 ref_type: L is_present: card_references_069: id: 71 - referer_id: 95 + referer_id: 96 referee_key: "*structure" referee_id: 28 ref_type: L is_present: card_references_070: id: 72 - referer_id: 96 + referer_id: 97 referee_key: "*structure" referee_id: 28 ref_type: L is_present: card_references_071: id: 73 - referer_id: 97 + referer_id: 98 referee_key: search+description - referee_id: 98 + referee_id: 99 ref_type: I is_present: card_references_072: id: 74 - referer_id: 99 + referer_id: 100 referee_key: keyword referee_id: ref_type: Q is_present: card_references_073: id: 75 - referer_id: 99 + referer_id: 100 referee_key: relevance referee_id: ref_type: Q is_present: card_references_074: id: 76 - referer_id: 102 + referer_id: 103 referee_key: anyone - referee_id: 180 + referee_id: 181 ref_type: L is_present: card_references_075: id: 77 - referer_id: 111 + referer_id: 112 referee_key: "*created+*right" - referee_id: 110 + referee_id: 111 ref_type: I is_present: card_references_076: id: 78 - referer_id: 114 + referer_id: 115 referee_key: "*edited+*right" - referee_id: 113 + referee_id: 114 ref_type: I is_present: card_references_077: id: 79 - referer_id: 117 + referer_id: 118 referee_key: "*editor+*right" - referee_id: 116 + referee_id: 117 ref_type: I is_present: card_references_078: id: 80 - referer_id: 120 + referer_id: 121 referee_key: "*child+*right" - referee_id: 119 + referee_id: 120 ref_type: I is_present: card_references_079: id: 81 - referer_id: 123 + referer_id: 124 referee_key: "*mate+*right" - referee_id: 122 + referee_id: 123 ref_type: I is_present: card_references_080: id: 82 - referer_id: 126 + referer_id: 127 referee_key: "*nested_by+*right" - referee_id: 125 + referee_id: 126 ref_type: I is_present: card_references_081: id: 83 - referer_id: 129 + referer_id: 130 referee_key: "*linked_to_by+*right" - referee_id: 128 + referee_id: 129 ref_type: I is_present: card_references_082: id: 84 - referer_id: 132 + referer_id: 133 referee_key: "*nest+*right" - referee_id: 131 + referee_id: 132 ref_type: I is_present: card_references_083: id: 85 - referer_id: 135 + referer_id: 136 referee_key: "*link_to+*right" - referee_id: 134 + referee_id: 135 ref_type: I is_present: card_references_084: id: 86 - referer_id: 138 + referer_id: 139 referee_key: "*referred_to_by+*right" - referee_id: 137 + referee_id: 138 ref_type: I is_present: card_references_085: id: 87 - referer_id: 141 + referer_id: 142 referee_key: "*refer_to+*right" - referee_id: 140 + referee_id: 141 ref_type: I is_present: card_references_086: id: 88 - referer_id: 144 + referer_id: 145 referee_key: administrator - referee_id: 184 + referee_id: 185 ref_type: L is_present: card_references_087: id: 89 - referer_id: 147 + referer_id: 148 referee_key: set+*self+*structure+description referee_id: ref_type: I is_present: card_references_088: id: 90 - referer_id: 147 + referer_id: 148 referee_key: description referee_id: 12 ref_type: P is_present: card_references_089: id: 91 - referer_id: 147 + referer_id: 148 referee_key: set+*self+*structure+*type+by_name referee_id: ref_type: I is_present: card_references_090: id: 92 - referer_id: 147 + referer_id: 148 referee_key: set+*self+*structure+*type referee_id: ref_type: P is_present: card_references_091: id: 93 - referer_id: 147 + referer_id: 148 referee_key: "*type" referee_id: 21 ref_type: P is_present: card_references_092: id: 94 - referer_id: 147 + referer_id: 148 referee_key: by_name - referee_id: 104 + referee_id: 105 ref_type: P is_present: card_references_093: id: 95 - referer_id: 150 + referer_id: 151 referee_key: overridden referee_id: ref_type: L is_present: card_references_094: id: 96 - referer_id: 151 + referer_id: 152 referee_key: radio referee_id: ref_type: L is_present: card_references_095: id: 97 - referer_id: 152 + referer_id: 153 referee_key: email_template+description - referee_id: 153 + referee_id: 154 ref_type: I is_present: card_references_096: id: 98 - referer_id: 152 + referer_id: 153 referee_key: email_template+*type+by_name referee_id: ref_type: I is_present: card_references_097: id: 99 - referer_id: 152 + referer_id: 153 referee_key: email_template+*type - referee_id: 154 + referee_id: 155 ref_type: P is_present: card_references_098: id: 100 - referer_id: 152 + referer_id: 153 referee_key: by_name - referee_id: 104 + referee_id: 105 ref_type: P is_present: card_references_099: id: 101 - referer_id: 155 - referee_key: email_template+*type+*structure+*from + referer_id: 159 + referee_key: account referee_id: - ref_type: I + ref_type: Q is_present: card_references_100: id: 102 - referer_id: 155 - referee_key: "*from" - referee_id: 159 - ref_type: P + referer_id: 162 + referee_key: account + referee_id: + ref_type: Q is_present: card_references_101: id: 103 - referer_id: 155 - referee_key: email_template+*type+*structure+*to + referer_id: 165 + referee_key: account referee_id: - ref_type: I + ref_type: Q is_present: card_references_102: id: 104 - referer_id: 155 - referee_key: "*to" - referee_id: 156 - ref_type: P + referer_id: 168 + referee_key: account + referee_id: + ref_type: Q is_present: card_references_103: id: 105 - referer_id: 155 - referee_key: email_template+*type+*structure+*cc - referee_id: - ref_type: I + referer_id: 172 + referee_key: file + referee_id: 283 + ref_type: Q is_present: card_references_104: id: 106 - referer_id: 155 - referee_key: "*cc" - referee_id: 162 - ref_type: P + referer_id: 172 + referee_key: update + referee_id: + ref_type: Q is_present: card_references_105: id: 107 - referer_id: 155 - referee_key: email_template+*type+*structure+*bcc - referee_id: + referer_id: 178 + referee_key: role+description + referee_id: 179 ref_type: I is_present: card_references_106: id: 108 - referer_id: 155 - referee_key: "*bcc" - referee_id: 165 - ref_type: P + referer_id: 178 + referee_key: role+*type+by_name + referee_id: + ref_type: I is_present: card_references_107: id: 109 - referer_id: 155 - referee_key: email_template+*type+*structure+*subject - referee_id: - ref_type: I + referer_id: 178 + referee_key: role+*type + referee_id: 525 + ref_type: P is_present: card_references_108: id: 110 - referer_id: 155 - referee_key: "*subject" - referee_id: 168 + referer_id: 178 + referee_key: "*type" + referee_id: 21 ref_type: P is_present: card_references_109: id: 111 - referer_id: 155 - referee_key: email_template+*type+*structure+*html_message - referee_id: - ref_type: I + referer_id: 178 + referee_key: by_name + referee_id: 105 + ref_type: P is_present: card_references_110: id: 112 - referer_id: 155 - referee_key: "*html_message" - referee_id: 172 - ref_type: P + referer_id: 179 + referee_key: user + referee_id: 18 + ref_type: L is_present: card_references_111: id: 113 - referer_id: 155 - referee_key: email_template+*type+*structure+*text_message - referee_id: - ref_type: I + referer_id: 186 + referee_key: administrator+*member + referee_id: 187 + ref_type: L is_present: card_references_112: id: 114 - referer_id: 155 - referee_key: "*text_message" - referee_id: 173 - ref_type: P + referer_id: 189 + referee_key: administrator + referee_id: 185 + ref_type: L is_present: card_references_113: id: 115 - referer_id: 155 - referee_key: email_template+*type+*structure+*attach + referer_id: 191 + referee_key: eagle+*member referee_id: - ref_type: I + ref_type: L is_present: card_references_114: id: 116 - referer_id: 155 - referee_key: "*attach" - referee_id: 169 + referer_id: 191 + referee_key: eagle + referee_id: 190 ref_type: P is_present: card_references_115: id: 117 - referer_id: 158 - referee_key: account - referee_id: - ref_type: Q + referer_id: 191 + referee_key: "*member" + referee_id: 180 + ref_type: P is_present: card_references_116: id: 118 - referer_id: 161 - referee_key: account - referee_id: - ref_type: Q + referer_id: 193 + referee_key: shark+*member + referee_id: 194 + ref_type: L is_present: card_references_117: id: 119 - referer_id: 164 - referee_key: account - referee_id: - ref_type: Q + referer_id: 196 + referee_key: administrator + referee_id: 185 + ref_type: L is_present: card_references_118: id: 120 - referer_id: 167 - referee_key: account - referee_id: - ref_type: Q + referer_id: 198 + referee_key: help_desk+*member + referee_id: 199 + ref_type: L is_present: card_references_119: id: 121 - referer_id: 171 - referee_key: file - referee_id: 282 - ref_type: Q + referer_id: 201 + referee_key: administrator + referee_id: 185 + ref_type: L is_present: card_references_120: id: 122 - referer_id: 171 - referee_key: update - referee_id: - ref_type: Q + referer_id: 205 + referee_key: help_desk + referee_id: 197 + ref_type: L is_present: card_references_121: id: 123 - referer_id: 177 - referee_key: role+description - referee_id: 178 - ref_type: I + referer_id: 206 + referee_key: sign_up + referee_id: 233 + ref_type: L is_present: card_references_122: id: 124 - referer_id: 177 - referee_key: role+*type+by_name - referee_id: + referer_id: 206 + referee_key: sign_up + referee_id: 233 ref_type: I is_present: card_references_123: id: 125 - referer_id: 177 - referee_key: role+*type - referee_id: 524 - ref_type: P - is_present: + referer_id: 206 + referee_key: user + referee_id: 18 + ref_type: L + is_present: card_references_124: id: 126 - referer_id: 177 - referee_key: "*type" - referee_id: 21 - ref_type: P + referer_id: 206 + referee_key: user + referee_id: 18 + ref_type: I is_present: card_references_125: id: 127 - referer_id: 177 - referee_key: by_name - referee_id: 104 - ref_type: P + referer_id: 206 + referee_key: anyone + referee_id: 181 + ref_type: L is_present: card_references_126: id: 128 - referer_id: 178 - referee_key: user - referee_id: 18 + referer_id: 206 + referee_key: "*create" + referee_id: 66 ref_type: L is_present: card_references_127: id: 129 - referer_id: 185 - referee_key: administrator+*member - referee_id: 186 + referer_id: 206 + referee_key: card_with_account + referee_id: 279 ref_type: L is_present: card_references_128: id: 130 - referer_id: 188 + referer_id: 208 referee_key: administrator - referee_id: 184 + referee_id: 185 ref_type: L is_present: card_references_129: id: 131 - referer_id: 190 - referee_key: eagle+*member - referee_id: + referer_id: 209 + referee_key: help_desk + referee_id: 197 ref_type: L is_present: card_references_130: id: 132 - referer_id: 190 - referee_key: eagle - referee_id: 189 - ref_type: P + referer_id: 210 + referee_key: help_desk + referee_id: 197 + ref_type: L is_present: card_references_131: id: 133 - referer_id: 190 - referee_key: "*member" - referee_id: 179 - ref_type: P + referer_id: 211 + referee_key: help_desk + referee_id: 197 + ref_type: L is_present: card_references_132: id: 134 - referer_id: 192 - referee_key: shark+*member - referee_id: 193 + referer_id: 214 + referee_key: help_desk + referee_id: 197 ref_type: L is_present: card_references_133: id: 135 - referer_id: 195 - referee_key: administrator - referee_id: 184 + referer_id: 215 + referee_key: help_desk + referee_id: 197 ref_type: L is_present: card_references_134: id: 136 - referer_id: 197 - referee_key: help_desk+*member - referee_id: 198 + referer_id: 216 + referee_key: help_desk + referee_id: 197 ref_type: L is_present: card_references_135: id: 137 - referer_id: 200 - referee_key: administrator - referee_id: 184 + referer_id: 219 + referee_key: help_desk + referee_id: 197 ref_type: L is_present: card_references_136: id: 138 - referer_id: 204 + referer_id: 220 referee_key: help_desk - referee_id: 196 + referee_id: 197 ref_type: L is_present: card_references_137: id: 139 - referer_id: 205 - referee_key: sign_up - referee_id: 232 + referer_id: 221 + referee_key: help_desk + referee_id: 197 ref_type: L is_present: card_references_138: id: 140 - referer_id: 205 - referee_key: sign_up - referee_id: 232 - ref_type: I + referer_id: 224 + referee_key: help_desk + referee_id: 197 + ref_type: L is_present: card_references_139: id: 141 - referer_id: 205 - referee_key: user - referee_id: 18 + referer_id: 227 + referee_key: help_desk + referee_id: 197 ref_type: L is_present: card_references_140: id: 142 - referer_id: 205 - referee_key: user - referee_id: 18 - ref_type: I + referer_id: 228 + referee_key: help_desk + referee_id: 197 + ref_type: L is_present: card_references_141: id: 143 - referer_id: 205 - referee_key: anyone - referee_id: 180 + referer_id: 229 + referee_key: help_desk + referee_id: 197 ref_type: L is_present: card_references_142: id: 144 - referer_id: 205 - referee_key: "*create" - referee_id: 65 - ref_type: L + referer_id: 232 + referee_key: "*account_setting+*right+*account" + referee_id: + ref_type: I is_present: card_references_143: id: 145 - referer_id: 205 - referee_key: card_with_account - referee_id: 278 - ref_type: L + referer_id: 232 + referee_key: "*account_setting+*right" + referee_id: 231 + ref_type: P is_present: card_references_144: id: 146 - referer_id: 207 - referee_key: administrator - referee_id: 184 - ref_type: L + referer_id: 232 + referee_key: "*account" + referee_id: 206 + ref_type: P is_present: card_references_145: id: 147 - referer_id: 208 - referee_key: help_desk - referee_id: 196 - ref_type: L + referer_id: 233 + referee_key: sign_up+description + referee_id: 234 + ref_type: I is_present: card_references_146: id: 148 - referer_id: 209 - referee_key: help_desk - referee_id: 196 - ref_type: L + referer_id: 233 + referee_key: sign_up+*type+by_name + referee_id: + ref_type: I is_present: card_references_147: id: 149 - referer_id: 210 - referee_key: help_desk - referee_id: 196 - ref_type: L + referer_id: 233 + referee_key: sign_up+*type + referee_id: 237 + ref_type: P is_present: card_references_148: id: 150 - referer_id: 213 - referee_key: help_desk - referee_id: 196 - ref_type: L + referer_id: 233 + referee_key: by_name + referee_id: 105 + ref_type: P is_present: card_references_149: id: 151 - referer_id: 214 - referee_key: help_desk - referee_id: 196 + referer_id: 234 + referee_key: sign_up + referee_id: 233 ref_type: L is_present: card_references_150: id: 152 - referer_id: 215 - referee_key: help_desk - referee_id: 196 + referer_id: 234 + referee_key: user + referee_id: 18 ref_type: L is_present: card_references_151: id: 153 - referer_id: 218 - referee_key: help_desk - referee_id: 196 - ref_type: L + referer_id: 236 + referee_key: sign_up+*self+*structure+description + referee_id: + ref_type: I is_present: card_references_152: id: 154 - referer_id: 219 - referee_key: help_desk - referee_id: 196 - ref_type: L + referer_id: 236 + referee_key: description + referee_id: 12 + ref_type: P is_present: card_references_153: id: 155 - referer_id: 220 - referee_key: help_desk - referee_id: 196 - ref_type: L + referer_id: 236 + referee_key: sign_up+*self+*structure+*type+by_name + referee_id: + ref_type: I is_present: card_references_154: id: 156 - referer_id: 223 - referee_key: help_desk - referee_id: 196 - ref_type: L + referer_id: 236 + referee_key: sign_up+*self+*structure+*type + referee_id: + ref_type: P is_present: card_references_155: id: 157 - referer_id: 226 - referee_key: help_desk - referee_id: 196 - ref_type: L + referer_id: 236 + referee_key: "*type" + referee_id: 21 + ref_type: P is_present: card_references_156: id: 158 - referer_id: 227 - referee_key: help_desk - referee_id: 196 - ref_type: L + referer_id: 236 + referee_key: by_name + referee_id: 105 + ref_type: P is_present: card_references_157: id: 159 - referer_id: 228 - referee_key: help_desk - referee_id: 196 + referer_id: 238 + referee_key: anyone + referee_id: 181 ref_type: L is_present: card_references_158: id: 160 - referer_id: 231 - referee_key: "*account_setting+*right+*account" - referee_id: - ref_type: I + referer_id: 239 + referee_key: signup_alert_email + referee_id: 265 + ref_type: L is_present: card_references_159: id: 161 - referer_id: 231 - referee_key: "*account_setting+*right" - referee_id: 230 - ref_type: P + referer_id: 242 + referee_key: sign_up+*account+*type_plu_right + referee_id: 241 + ref_type: L is_present: card_references_160: id: 162 - referer_id: 231 - referee_key: "*account" - referee_id: 205 - ref_type: P + referer_id: 244 + referee_key: active + referee_id: + ref_type: L is_present: card_references_161: id: 163 - referer_id: 232 - referee_key: sign_up+description - referee_id: 233 - ref_type: I + referer_id: 249 + referee_key: user+*account+*type_plu_right + referee_id: 248 + ref_type: L is_present: card_references_162: id: 164 - referer_id: 232 - referee_key: sign_up+*type+by_name + referer_id: 247 + referee_key: active referee_id: - ref_type: I + ref_type: L is_present: card_references_163: id: 165 - referer_id: 232 - referee_key: sign_up+*type - referee_id: 236 - ref_type: P + referer_id: 253 + referee_key: active + referee_id: + ref_type: L is_present: card_references_164: id: 166 - referer_id: 232 - referee_key: by_name - referee_id: 104 - ref_type: P + referer_id: 254 + referee_key: welcome_email+*from + referee_id: + ref_type: I is_present: card_references_165: id: 167 - referer_id: 233 - referee_key: sign_up - referee_id: 232 - ref_type: L + referer_id: 254 + referee_key: "*from" + referee_id: 160 + ref_type: P is_present: card_references_166: id: 168 - referer_id: 233 - referee_key: user - referee_id: 18 - ref_type: L + referer_id: 254 + referee_key: welcome_email+*to + referee_id: + ref_type: I is_present: card_references_167: id: 169 - referer_id: 235 - referee_key: sign_up+*self+*structure+description - referee_id: - ref_type: I + referer_id: 254 + referee_key: "*to" + referee_id: 157 + ref_type: P is_present: card_references_168: id: 170 - referer_id: 235 - referee_key: description - referee_id: 12 - ref_type: P - is_present: -card_references_169: - id: 171 - referer_id: 235 - referee_key: sign_up+*self+*structure+*type+by_name + referer_id: 254 + referee_key: welcome_email+*cc referee_id: ref_type: I is_present: +card_references_169: + id: 171 + referer_id: 254 + referee_key: "*cc" + referee_id: 163 + ref_type: P + is_present: card_references_170: id: 172 - referer_id: 235 - referee_key: sign_up+*self+*structure+*type + referer_id: 254 + referee_key: welcome_email+*bcc referee_id: - ref_type: P + ref_type: I is_present: card_references_171: id: 173 - referer_id: 235 - referee_key: "*type" - referee_id: 21 + referer_id: 254 + referee_key: "*bcc" + referee_id: 166 ref_type: P is_present: card_references_172: id: 174 - referer_id: 235 - referee_key: by_name - referee_id: 104 - ref_type: P + referer_id: 254 + referee_key: welcome_email+*subject + referee_id: + ref_type: I is_present: card_references_173: id: 175 - referer_id: 237 - referee_key: anyone - referee_id: 180 - ref_type: L + referer_id: 254 + referee_key: "*subject" + referee_id: 169 + ref_type: P is_present: card_references_174: id: 176 - referer_id: 238 - referee_key: signup_alert_email - referee_id: 264 - ref_type: L + referer_id: 254 + referee_key: welcome_email+*html_message + referee_id: + ref_type: I is_present: card_references_175: id: 177 - referer_id: 241 - referee_key: sign_up+*account+*type_plu_right - referee_id: 240 - ref_type: L + referer_id: 254 + referee_key: "*html_message" + referee_id: 173 + ref_type: P is_present: card_references_176: id: 178 - referer_id: 243 - referee_key: active + referer_id: 254 + referee_key: welcome_email+*text_message referee_id: - ref_type: L + ref_type: I is_present: card_references_177: id: 179 - referer_id: 248 - referee_key: user+*account+*type_plu_right - referee_id: 247 - ref_type: L + referer_id: 254 + referee_key: "*text_message" + referee_id: 174 + ref_type: P is_present: card_references_178: id: 180 - referer_id: 246 - referee_key: active + referer_id: 254 + referee_key: welcome_email+*attach referee_id: - ref_type: L + ref_type: I is_present: card_references_179: id: 181 - referer_id: 252 - referee_key: active - referee_id: - ref_type: L + referer_id: 254 + referee_key: "*attach" + referee_id: 170 + ref_type: P is_present: card_references_180: id: 182 - referer_id: 253 - referee_key: welcome_email+*from - referee_id: + referer_id: 255 + referee_key: verification_email+*from + referee_id: 256 ref_type: I is_present: card_references_181: id: 183 - referer_id: 253 - referee_key: "*from" - referee_id: 159 - ref_type: P + referer_id: 255 + referee_key: verification_email+*to + referee_id: + ref_type: I is_present: card_references_182: id: 184 - referer_id: 253 - referee_key: welcome_email+*to - referee_id: - ref_type: I + referer_id: 255 + referee_key: "*to" + referee_id: 157 + ref_type: P is_present: card_references_183: id: 185 - referer_id: 253 - referee_key: "*to" - referee_id: 156 - ref_type: P + referer_id: 255 + referee_key: verification_email+*cc + referee_id: + ref_type: I is_present: card_references_184: id: 186 - referer_id: 253 - referee_key: welcome_email+*cc - referee_id: - ref_type: I + referer_id: 255 + referee_key: "*cc" + referee_id: 163 + ref_type: P is_present: card_references_185: id: 187 - referer_id: 253 - referee_key: "*cc" - referee_id: 162 - ref_type: P + referer_id: 255 + referee_key: verification_email+*bcc + referee_id: + ref_type: I is_present: card_references_186: id: 188 - referer_id: 253 - referee_key: welcome_email+*bcc - referee_id: - ref_type: I + referer_id: 255 + referee_key: "*bcc" + referee_id: 166 + ref_type: P is_present: card_references_187: id: 189 - referer_id: 253 - referee_key: "*bcc" - referee_id: 165 - ref_type: P + referer_id: 255 + referee_key: verification_email+*subject + referee_id: 257 + ref_type: I is_present: card_references_188: id: 190 - referer_id: 253 - referee_key: welcome_email+*subject - referee_id: + referer_id: 255 + referee_key: verification_email+*html_message + referee_id: 258 ref_type: I is_present: card_references_189: id: 191 - referer_id: 253 - referee_key: "*subject" - referee_id: 168 - ref_type: P + referer_id: 255 + referee_key: verification_email+*text_message + referee_id: 259 + ref_type: I is_present: card_references_190: id: 192 - referer_id: 253 - referee_key: welcome_email+*html_message + referer_id: 255 + referee_key: verification_email+*attach referee_id: ref_type: I is_present: card_references_191: id: 193 - referer_id: 253 - referee_key: "*html_message" - referee_id: 172 + referer_id: 255 + referee_key: "*attach" + referee_id: 170 ref_type: P is_present: card_references_192: id: 194 - referer_id: 253 - referee_key: welcome_email+*text_message - referee_id: - ref_type: I + referer_id: 256 + referee_key: decko_bot + referee_id: 1 + ref_type: L is_present: card_references_193: id: 195 - referer_id: 253 - referee_key: "*text_message" - referee_id: 173 - ref_type: P + referer_id: 257 + referee_key: "*title" + referee_id: 50 + ref_type: I is_present: card_references_194: id: 196 - referer_id: 253 - referee_key: welcome_email+*attach - referee_id: + referer_id: 258 + referee_key: "*title" + referee_id: 50 ref_type: I is_present: card_references_195: id: 197 - referer_id: 253 - referee_key: "*attach" - referee_id: 169 - ref_type: P + referer_id: 259 + referee_key: "*title" + referee_id: 50 + ref_type: I is_present: card_references_196: id: 198 - referer_id: 254 - referee_key: verification_email+*from - referee_id: 255 + referer_id: 260 + referee_key: password_reset_email+*from + referee_id: 261 ref_type: I is_present: card_references_197: id: 199 - referer_id: 254 - referee_key: verification_email+*to + referer_id: 260 + referee_key: password_reset_email+*to referee_id: ref_type: I is_present: card_references_198: id: 200 - referer_id: 254 + referer_id: 260 referee_key: "*to" - referee_id: 156 + referee_id: 157 ref_type: P is_present: card_references_199: id: 201 - referer_id: 254 - referee_key: verification_email+*cc + referer_id: 260 + referee_key: password_reset_email+*cc referee_id: ref_type: I is_present: card_references_200: id: 202 - referer_id: 254 + referer_id: 260 referee_key: "*cc" - referee_id: 162 + referee_id: 163 ref_type: P is_present: card_references_201: id: 203 - referer_id: 254 - referee_key: verification_email+*bcc + referer_id: 260 + referee_key: password_reset_email+*bcc referee_id: ref_type: I is_present: card_references_202: id: 204 - referer_id: 254 + referer_id: 260 referee_key: "*bcc" - referee_id: 165 + referee_id: 166 ref_type: P is_present: card_references_203: id: 205 - referer_id: 254 - referee_key: verification_email+*subject - referee_id: 256 + referer_id: 260 + referee_key: password_reset_email+*subject + referee_id: 262 ref_type: I is_present: card_references_204: id: 206 - referer_id: 254 - referee_key: verification_email+*html_message - referee_id: 257 + referer_id: 260 + referee_key: password_reset_email+*html_message + referee_id: 264 ref_type: I is_present: card_references_205: id: 207 - referer_id: 254 - referee_key: verification_email+*text_message - referee_id: 258 + referer_id: 260 + referee_key: password_reset_email+*text_message + referee_id: 263 ref_type: I is_present: card_references_206: id: 208 - referer_id: 254 - referee_key: verification_email+*attach + referer_id: 260 + referee_key: password_reset_email+*attach referee_id: ref_type: I is_present: card_references_207: id: 209 - referer_id: 254 + referer_id: 260 referee_key: "*attach" - referee_id: 169 + referee_id: 170 ref_type: P is_present: card_references_208: id: 210 - referer_id: 255 + referer_id: 261 referee_key: decko_bot referee_id: 1 ref_type: L is_present: card_references_209: id: 211 - referer_id: 256 + referer_id: 262 referee_key: "*title" referee_id: 50 ref_type: I is_present: card_references_210: id: 212 - referer_id: 257 + referer_id: 263 referee_key: "*title" referee_id: 50 ref_type: I is_present: card_references_211: id: 213 - referer_id: 258 + referer_id: 264 referee_key: "*title" referee_id: 50 ref_type: I is_present: card_references_212: id: 214 - referer_id: 259 - referee_key: password_reset_email+*from - referee_id: 260 + referer_id: 265 + referee_key: signup_alert_email+*from + referee_id: 266 ref_type: I is_present: card_references_213: id: 215 - referer_id: 259 - referee_key: password_reset_email+*to + referer_id: 265 + referee_key: signup_alert_email+*to referee_id: ref_type: I is_present: card_references_214: id: 216 - referer_id: 259 + referer_id: 265 referee_key: "*to" - referee_id: 156 + referee_id: 157 ref_type: P is_present: card_references_215: id: 217 - referer_id: 259 - referee_key: password_reset_email+*cc + referer_id: 265 + referee_key: signup_alert_email+*cc referee_id: ref_type: I is_present: card_references_216: id: 218 - referer_id: 259 + referer_id: 265 referee_key: "*cc" - referee_id: 162 + referee_id: 163 ref_type: P is_present: card_references_217: id: 219 - referer_id: 259 - referee_key: password_reset_email+*bcc + referer_id: 265 + referee_key: signup_alert_email+*bcc referee_id: ref_type: I is_present: card_references_218: id: 220 - referer_id: 259 + referer_id: 265 referee_key: "*bcc" - referee_id: 165 + referee_id: 166 ref_type: P is_present: card_references_219: id: 221 - referer_id: 259 - referee_key: password_reset_email+*subject - referee_id: 261 + referer_id: 265 + referee_key: signup_alert_email+*subject + referee_id: 267 ref_type: I is_present: card_references_220: id: 222 - referer_id: 259 - referee_key: password_reset_email+*html_message - referee_id: 263 + referer_id: 265 + referee_key: signup_alert_email+*html_message + referee_id: 269 ref_type: I is_present: card_references_221: id: 223 - referer_id: 259 - referee_key: password_reset_email+*text_message - referee_id: 262 + referer_id: 265 + referee_key: signup_alert_email+*text_message + referee_id: 268 ref_type: I is_present: card_references_222: id: 224 - referer_id: 259 - referee_key: password_reset_email+*attach + referer_id: 265 + referee_key: signup_alert_email+*attach referee_id: ref_type: I is_present: card_references_223: id: 225 - referer_id: 259 + referer_id: 265 referee_key: "*attach" - referee_id: 169 + referee_id: 170 ref_type: P is_present: card_references_224: id: 226 - referer_id: 260 + referer_id: 266 referee_key: decko_bot referee_id: 1 ref_type: L is_present: card_references_225: id: 227 - referer_id: 261 + referer_id: 267 referee_key: "*title" referee_id: 50 ref_type: I is_present: card_references_226: id: 228 - referer_id: 262 + referer_id: 268 referee_key: "*title" referee_id: 50 ref_type: I is_present: card_references_227: id: 229 - referer_id: 263 + referer_id: 269 referee_key: "*title" referee_id: 50 ref_type: I is_present: card_references_228: id: 230 - referer_id: 264 - referee_key: signup_alert_email+*from - referee_id: 265 - ref_type: I + referer_id: 272 + referee_key: anyone + referee_id: 181 + ref_type: L is_present: card_references_229: id: 231 - referer_id: 264 - referee_key: signup_alert_email+*to + referer_id: 275 + referee_key: checkbox referee_id: - ref_type: I + ref_type: L is_present: card_references_230: id: 232 - referer_id: 264 - referee_key: "*to" - referee_id: 156 - ref_type: P + referer_id: 276 + referee_key: role + referee_id: 178 + ref_type: Q is_present: card_references_231: id: 233 - referer_id: 264 - referee_key: signup_alert_email+*cc - referee_id: - ref_type: I + referer_id: 276 + referee_key: anyone + referee_id: 181 + ref_type: Q is_present: card_references_232: id: 234 - referer_id: 264 - referee_key: "*cc" - referee_id: 162 - ref_type: P + referer_id: 276 + referee_key: anyone_signed_in + referee_id: 183 + ref_type: Q is_present: card_references_233: id: 235 - referer_id: 264 - referee_key: signup_alert_email+*bcc - referee_id: - ref_type: I + referer_id: 279 + referee_key: "*account" + referee_id: 206 + ref_type: Q is_present: card_references_234: id: 236 - referer_id: 264 - referee_key: "*bcc" - referee_id: 165 - ref_type: P + referer_id: 282 + referee_key: "*title" + referee_id: 50 + ref_type: I is_present: card_references_235: id: 237 - referer_id: 264 - referee_key: signup_alert_email+*subject - referee_id: 266 + referer_id: 283 + referee_key: file+description + referee_id: 284 ref_type: I is_present: card_references_236: id: 238 - referer_id: 264 - referee_key: signup_alert_email+*html_message - referee_id: 268 + referer_id: 283 + referee_key: file+*type+by_name + referee_id: ref_type: I is_present: card_references_237: id: 239 - referer_id: 264 - referee_key: signup_alert_email+*text_message - referee_id: 267 - ref_type: I + referer_id: 283 + referee_key: file+*type + referee_id: + ref_type: P is_present: card_references_238: id: 240 - referer_id: 264 - referee_key: signup_alert_email+*attach - referee_id: - ref_type: I + referer_id: 283 + referee_key: "*type" + referee_id: 21 + ref_type: P is_present: card_references_239: id: 241 - referer_id: 264 - referee_key: "*attach" - referee_id: 169 + referer_id: 283 + referee_key: by_name + referee_id: 105 ref_type: P is_present: card_references_240: id: 242 - referer_id: 265 - referee_key: decko_bot - referee_id: 1 - ref_type: L + referer_id: 285 + referee_key: image+description + referee_id: 286 + ref_type: I is_present: card_references_241: id: 243 - referer_id: 266 - referee_key: "*title" - referee_id: 50 + referer_id: 285 + referee_key: image+*type+by_name + referee_id: ref_type: I is_present: card_references_242: id: 244 - referer_id: 267 - referee_key: "*title" - referee_id: 50 - ref_type: I + referer_id: 285 + referee_key: image+*type + referee_id: + ref_type: P is_present: card_references_243: id: 245 - referer_id: 268 - referee_key: "*title" - referee_id: 50 - ref_type: I + referer_id: 285 + referee_key: "*type" + referee_id: 21 + ref_type: P is_present: card_references_244: id: 246 - referer_id: 271 - referee_key: anyone - referee_id: 180 - ref_type: L + referer_id: 285 + referee_key: by_name + referee_id: 105 + ref_type: P is_present: card_references_245: id: 247 - referer_id: 274 - referee_key: checkbox - referee_id: + referer_id: 291 + referee_key: anyone + referee_id: 181 ref_type: L is_present: card_references_246: id: 248 - referer_id: 275 - referee_key: role - referee_id: 177 - ref_type: Q + referer_id: 294 + referee_key: anyone + referee_id: 181 + ref_type: L is_present: card_references_247: id: 249 - referer_id: 275 - referee_key: anyone - referee_id: 180 - ref_type: Q + referer_id: 301 + referee_key: remote_manifest_group+description + referee_id: + ref_type: I is_present: card_references_248: id: 250 - referer_id: 275 - referee_key: anyone_signed_in - referee_id: 182 - ref_type: Q + referer_id: 301 + referee_key: description + referee_id: 12 + ref_type: P is_present: card_references_249: id: 251 - referer_id: 278 - referee_key: "*account" - referee_id: 205 - ref_type: Q + referer_id: 301 + referee_key: remote_manifest_group+*type+by_name + referee_id: + ref_type: I is_present: card_references_250: id: 252 - referer_id: 281 - referee_key: "*title" - referee_id: 50 - ref_type: I + referer_id: 301 + referee_key: remote_manifest_group+*type + referee_id: + ref_type: P is_present: card_references_251: id: 253 - referer_id: 282 - referee_key: file+description - referee_id: 283 - ref_type: I + referer_id: 301 + referee_key: "*type" + referee_id: 21 + ref_type: P is_present: card_references_252: id: 254 - referer_id: 282 - referee_key: file+*type+by_name - referee_id: - ref_type: I + referer_id: 301 + referee_key: by_name + referee_id: 105 + ref_type: P is_present: card_references_253: id: 255 - referer_id: 282 - referee_key: file+*type - referee_id: - ref_type: P + referer_id: 304 + referee_key: java_script + referee_id: 307 + ref_type: Q is_present: card_references_254: id: 256 - referer_id: 282 - referee_key: "*type" - referee_id: 21 - ref_type: P + referer_id: 304 + referee_key: coffee_script + referee_id: 313 + ref_type: Q is_present: card_references_255: id: 257 - referer_id: 282 - referee_key: by_name - referee_id: 104 - ref_type: P + referer_id: 305 + referee_key: list + referee_id: 4 + ref_type: L is_present: card_references_256: id: 258 - referer_id: 284 - referee_key: image+description - referee_id: 285 + referer_id: 307 + referee_key: java_script+description + referee_id: 308 ref_type: I is_present: card_references_257: id: 259 - referer_id: 284 - referee_key: image+*type+by_name + referer_id: 307 + referee_key: java_script+*type+by_name referee_id: ref_type: I is_present: card_references_258: id: 260 - referer_id: 284 - referee_key: image+*type - referee_id: + referer_id: 307 + referee_key: java_script+*type + referee_id: 309 ref_type: P is_present: card_references_259: id: 261 - referer_id: 284 - referee_key: "*type" - referee_id: 21 + referer_id: 307 + referee_key: by_name + referee_id: 105 ref_type: P is_present: card_references_260: id: 262 - referer_id: 284 - referee_key: by_name - referee_id: 104 - ref_type: P + referer_id: 308 + referee_key: "*script" + referee_id: 302 + ref_type: L is_present: card_references_261: id: 263 - referer_id: 290 - referee_key: anyone - referee_id: 180 + referer_id: 310 + referee_key: shark + referee_id: 192 ref_type: L is_present: card_references_262: id: 264 - referer_id: 293 - referee_key: anyone - referee_id: 180 + referer_id: 311 + referee_key: shark + referee_id: 192 ref_type: L is_present: card_references_263: id: 265 - referer_id: 300 - referee_key: remote_manifest_group+description - referee_id: - ref_type: I + referer_id: 312 + referee_key: shark + referee_id: 192 + ref_type: L is_present: card_references_264: id: 266 - referer_id: 300 - referee_key: description - referee_id: 12 - ref_type: P + referer_id: 313 + referee_key: coffee_script+description + referee_id: 314 + ref_type: I is_present: card_references_265: id: 267 - referer_id: 300 - referee_key: remote_manifest_group+*type+by_name + referer_id: 313 + referee_key: coffee_script+*type+by_name referee_id: ref_type: I is_present: card_references_266: id: 268 - referer_id: 300 - referee_key: remote_manifest_group+*type - referee_id: + referer_id: 313 + referee_key: coffee_script+*type + referee_id: 315 ref_type: P is_present: card_references_267: id: 269 - referer_id: 300 - referee_key: "*type" - referee_id: 21 + referer_id: 313 + referee_key: by_name + referee_id: 105 ref_type: P is_present: card_references_268: id: 270 - referer_id: 300 - referee_key: by_name - referee_id: 104 - ref_type: P + referer_id: 314 + referee_key: "*script" + referee_id: 302 + ref_type: L is_present: card_references_269: id: 271 - referer_id: 303 - referee_key: java_script - referee_id: 306 - ref_type: Q + referer_id: 316 + referee_key: shark + referee_id: 192 + ref_type: L is_present: card_references_270: id: 272 - referer_id: 303 - referee_key: coffee_script - referee_id: 312 - ref_type: Q + referer_id: 317 + referee_key: shark + referee_id: 192 + ref_type: L is_present: card_references_271: id: 273 - referer_id: 304 - referee_key: list - referee_id: 4 + referer_id: 318 + referee_key: shark + referee_id: 192 ref_type: L is_present: card_references_272: id: 274 - referer_id: 306 - referee_key: java_script+description - referee_id: 307 + referer_id: 319 + referee_key: local_script_folder_group+description + referee_id: ref_type: I is_present: card_references_273: id: 275 - referer_id: 306 - referee_key: java_script+*type+by_name - referee_id: - ref_type: I + referer_id: 319 + referee_key: description + referee_id: 12 + ref_type: P is_present: card_references_274: id: 276 - referer_id: 306 - referee_key: java_script+*type - referee_id: 308 - ref_type: P + referer_id: 319 + referee_key: local_script_folder_group+*type+by_name + referee_id: + ref_type: I is_present: card_references_275: id: 277 - referer_id: 306 - referee_key: by_name - referee_id: 104 + referer_id: 319 + referee_key: local_script_folder_group+*type + referee_id: ref_type: P is_present: card_references_276: id: 278 - referer_id: 307 - referee_key: "*script" - referee_id: 301 - ref_type: L + referer_id: 319 + referee_key: "*type" + referee_id: 21 + ref_type: P is_present: card_references_277: id: 279 - referer_id: 309 - referee_key: shark - referee_id: 191 - ref_type: L + referer_id: 319 + referee_key: by_name + referee_id: 105 + ref_type: P is_present: card_references_278: id: 280 - referer_id: 310 - referee_key: shark - referee_id: 191 - ref_type: L + referer_id: 320 + referee_key: local_script_manifest_group+description + referee_id: + ref_type: I is_present: card_references_279: id: 281 - referer_id: 311 - referee_key: shark - referee_id: 191 - ref_type: L + referer_id: 320 + referee_key: description + referee_id: 12 + ref_type: P is_present: card_references_280: id: 282 - referer_id: 312 - referee_key: coffee_script+description - referee_id: 313 + referer_id: 320 + referee_key: local_script_manifest_group+*type+by_name + referee_id: ref_type: I is_present: card_references_281: id: 283 - referer_id: 312 - referee_key: coffee_script+*type+by_name + referer_id: 320 + referee_key: local_script_manifest_group+*type referee_id: - ref_type: I + ref_type: P is_present: card_references_282: id: 284 - referer_id: 312 - referee_key: coffee_script+*type - referee_id: 314 + referer_id: 320 + referee_key: "*type" + referee_id: 21 ref_type: P is_present: card_references_283: id: 285 - referer_id: 312 + referer_id: 320 referee_key: by_name - referee_id: 104 + referee_id: 105 ref_type: P is_present: card_references_284: id: 286 - referer_id: 313 - referee_key: "*script" - referee_id: 301 + referer_id: 324 + referee_key: help_desk + referee_id: 197 ref_type: L is_present: card_references_285: id: 287 - referer_id: 315 - referee_key: shark - referee_id: 191 + referer_id: 325 + referee_key: help_desk + referee_id: 197 ref_type: L is_present: card_references_286: id: 288 - referer_id: 316 - referee_key: shark - referee_id: 191 + referer_id: 326 + referee_key: help_desk + referee_id: 197 ref_type: L is_present: card_references_287: id: 289 - referer_id: 317 - referee_key: shark - referee_id: 191 - ref_type: L - is_present: -card_references_288: - id: 290 - referer_id: 318 - referee_key: local_script_folder_group+description + referer_id: 328 + referee_key: local_style_folder_group+description referee_id: ref_type: I is_present: -card_references_289: - id: 291 - referer_id: 318 +card_references_288: + id: 290 + referer_id: 328 referee_key: description referee_id: 12 ref_type: P is_present: +card_references_289: + id: 291 + referer_id: 328 + referee_key: local_style_folder_group+*type+by_name + referee_id: + ref_type: I + is_present: card_references_290: id: 292 - referer_id: 318 - referee_key: local_script_folder_group+*type+by_name + referer_id: 328 + referee_key: local_style_folder_group+*type referee_id: - ref_type: I + ref_type: P is_present: card_references_291: id: 293 - referer_id: 318 - referee_key: local_script_folder_group+*type - referee_id: + referer_id: 328 + referee_key: "*type" + referee_id: 21 ref_type: P is_present: card_references_292: id: 294 - referer_id: 318 - referee_key: "*type" - referee_id: 21 + referer_id: 328 + referee_key: by_name + referee_id: 105 ref_type: P is_present: card_references_293: id: 295 - referer_id: 318 - referee_key: by_name - referee_id: 104 - ref_type: P - is_present: -card_references_294: - id: 296 - referer_id: 319 - referee_key: local_script_manifest_group+description + referer_id: 329 + referee_key: local_style_manifest_group+description referee_id: ref_type: I is_present: -card_references_295: - id: 297 - referer_id: 319 +card_references_294: + id: 296 + referer_id: 329 referee_key: description referee_id: 12 ref_type: P is_present: +card_references_295: + id: 297 + referer_id: 329 + referee_key: local_style_manifest_group+*type+by_name + referee_id: + ref_type: I + is_present: card_references_296: id: 298 - referer_id: 319 - referee_key: local_script_manifest_group+*type+by_name + referer_id: 329 + referee_key: local_style_manifest_group+*type referee_id: - ref_type: I + ref_type: P is_present: card_references_297: id: 299 - referer_id: 319 - referee_key: local_script_manifest_group+*type - referee_id: + referer_id: 329 + referee_key: "*type" + referee_id: 21 ref_type: P is_present: card_references_298: id: 300 - referer_id: 319 - referee_key: "*type" - referee_id: 21 + referer_id: 329 + referee_key: by_name + referee_id: 105 ref_type: P is_present: card_references_299: id: 301 - referer_id: 319 - referee_key: by_name - referee_id: 104 - ref_type: P + referer_id: 330 + referee_key: css+description + referee_id: 331 + ref_type: I is_present: card_references_300: id: 302 - referer_id: 323 - referee_key: help_desk - referee_id: 196 - ref_type: L + referer_id: 330 + referee_key: css+*type+by_name + referee_id: + ref_type: I is_present: card_references_301: id: 303 - referer_id: 324 - referee_key: help_desk - referee_id: 196 - ref_type: L + referer_id: 330 + referee_key: css+*type + referee_id: 332 + ref_type: P is_present: card_references_302: id: 304 - referer_id: 325 - referee_key: help_desk - referee_id: 196 - ref_type: L + referer_id: 330 + referee_key: by_name + referee_id: 105 + ref_type: P is_present: card_references_303: id: 305 - referer_id: 327 - referee_key: local_style_folder_group+description - referee_id: - ref_type: I + referer_id: 331 + referee_key: skin + referee_id: 342 + ref_type: L is_present: card_references_304: id: 306 - referer_id: 327 - referee_key: description - referee_id: 12 - ref_type: P + referer_id: 333 + referee_key: shark + referee_id: 192 + ref_type: L is_present: card_references_305: id: 307 - referer_id: 327 - referee_key: local_style_folder_group+*type+by_name - referee_id: - ref_type: I + referer_id: 334 + referee_key: shark + referee_id: 192 + ref_type: L is_present: card_references_306: id: 308 - referer_id: 327 - referee_key: local_style_folder_group+*type - referee_id: - ref_type: P + referer_id: 335 + referee_key: shark + referee_id: 192 + ref_type: L is_present: card_references_307: id: 309 - referer_id: 327 - referee_key: "*type" - referee_id: 21 - ref_type: P + referer_id: 336 + referee_key: scss+description + referee_id: 337 + ref_type: I is_present: card_references_308: id: 310 - referer_id: 327 - referee_key: by_name - referee_id: 104 - ref_type: P + referer_id: 336 + referee_key: scss+*type+by_name + referee_id: + ref_type: I is_present: card_references_309: id: 311 - referer_id: 328 - referee_key: local_style_manifest_group+description - referee_id: - ref_type: I + referer_id: 336 + referee_key: scss+*type + referee_id: 338 + ref_type: P is_present: card_references_310: id: 312 - referer_id: 328 - referee_key: description - referee_id: 12 + referer_id: 336 + referee_key: by_name + referee_id: 105 ref_type: P is_present: card_references_311: id: 313 - referer_id: 328 - referee_key: local_style_manifest_group+*type+by_name - referee_id: - ref_type: I + referer_id: 337 + referee_key: skin + referee_id: 342 + ref_type: L is_present: card_references_312: id: 314 - referer_id: 328 - referee_key: local_style_manifest_group+*type - referee_id: - ref_type: P + referer_id: 339 + referee_key: shark + referee_id: 192 + ref_type: L is_present: card_references_313: id: 315 - referer_id: 328 - referee_key: "*type" - referee_id: 21 - ref_type: P + referer_id: 340 + referee_key: shark + referee_id: 192 + ref_type: L is_present: card_references_314: id: 316 - referer_id: 328 - referee_key: by_name - referee_id: 104 - ref_type: P + referer_id: 341 + referee_key: shark + referee_id: 192 + ref_type: L is_present: card_references_315: id: 317 - referer_id: 329 - referee_key: css+description - referee_id: 330 + referer_id: 342 + referee_key: skin+description + referee_id: 343 ref_type: I is_present: card_references_316: id: 318 - referer_id: 329 - referee_key: css+*type+by_name + referer_id: 342 + referee_key: skin+*type+by_name referee_id: ref_type: I is_present: card_references_317: id: 319 - referer_id: 329 - referee_key: css+*type - referee_id: 331 + referer_id: 342 + referee_key: skin+*type + referee_id: 344 ref_type: P is_present: card_references_318: id: 320 - referer_id: 329 + referer_id: 342 referee_key: by_name - referee_id: 104 + referee_id: 105 ref_type: P is_present: card_references_319: id: 321 - referer_id: 330 + referer_id: 343 referee_key: skin - referee_id: 341 + referee_id: 342 ref_type: L is_present: card_references_320: id: 322 - referer_id: 332 + referer_id: 345 referee_key: shark - referee_id: 191 + referee_id: 192 ref_type: L is_present: card_references_321: id: 323 - referer_id: 333 + referer_id: 346 referee_key: shark - referee_id: 191 + referee_id: 192 ref_type: L is_present: card_references_322: id: 324 - referer_id: 334 + referer_id: 347 referee_key: shark - referee_id: 191 + referee_id: 192 ref_type: L is_present: card_references_323: id: 325 - referer_id: 335 - referee_key: scss+description - referee_id: 336 - ref_type: I + referer_id: 350 + referee_key: radio + referee_id: + ref_type: L is_present: card_references_324: id: 326 - referer_id: 335 - referee_key: scss+*type+by_name - referee_id: - ref_type: I + referer_id: 351 + referee_key: bootswatch_skin + referee_id: 358 + ref_type: Q is_present: card_references_325: id: 327 - referer_id: 335 - referee_key: scss+*type - referee_id: 337 - ref_type: P + referer_id: 358 + referee_key: bootswatch_skin+description + referee_id: + ref_type: I is_present: card_references_326: id: 328 - referer_id: 335 - referee_key: by_name - referee_id: 104 + referer_id: 358 + referee_key: description + referee_id: 12 ref_type: P is_present: card_references_327: id: 329 - referer_id: 336 - referee_key: skin - referee_id: 341 - ref_type: L + referer_id: 358 + referee_key: bootswatch_skin+*type+by_name + referee_id: + ref_type: I is_present: card_references_328: id: 330 - referer_id: 338 - referee_key: shark - referee_id: 191 - ref_type: L + referer_id: 358 + referee_key: bootswatch_skin+*type + referee_id: + ref_type: P is_present: card_references_329: id: 331 - referer_id: 339 - referee_key: shark - referee_id: 191 - ref_type: L + referer_id: 358 + referee_key: "*type" + referee_id: 21 + ref_type: P is_present: card_references_330: id: 332 - referer_id: 340 - referee_key: shark - referee_id: 191 - ref_type: L + referer_id: 358 + referee_key: by_name + referee_id: 105 + ref_type: P is_present: card_references_331: id: 333 - referer_id: 341 - referee_key: skin+description - referee_id: 342 - ref_type: I + referer_id: 445 + referee_key: yeti_skin + referee_id: 413 + ref_type: L is_present: card_references_332: id: 334 - referer_id: 341 - referee_key: skin+*type+by_name - referee_id: + referer_id: 448 + referee_key: date+description + referee_id: 449 ref_type: I is_present: card_references_333: id: 335 - referer_id: 341 - referee_key: skin+*type - referee_id: 343 - ref_type: P + referer_id: 448 + referee_key: date+*type+by_name + referee_id: + ref_type: I is_present: card_references_334: id: 336 - referer_id: 341 - referee_key: by_name - referee_id: 104 + referer_id: 448 + referee_key: date+*type + referee_id: ref_type: P is_present: card_references_335: id: 337 - referer_id: 342 - referee_key: skin - referee_id: 341 - ref_type: L + referer_id: 448 + referee_key: "*type" + referee_id: 21 + ref_type: P is_present: card_references_336: id: 338 - referer_id: 344 - referee_key: shark - referee_id: 191 - ref_type: L + referer_id: 448 + referee_key: by_name + referee_id: 105 + ref_type: P is_present: card_references_337: id: 339 - referer_id: 345 - referee_key: shark - referee_id: 191 - ref_type: L + referer_id: 453 + referee_key: notification_template+description + referee_id: + ref_type: I is_present: card_references_338: id: 340 - referer_id: 346 - referee_key: shark - referee_id: 191 - ref_type: L + referer_id: 453 + referee_key: description + referee_id: 12 + ref_type: P is_present: card_references_339: id: 341 - referer_id: 349 - referee_key: radio + referer_id: 453 + referee_key: notification_template+*type+by_name referee_id: - ref_type: L + ref_type: I is_present: card_references_340: id: 342 - referer_id: 350 - referee_key: bootswatch_skin - referee_id: 357 - ref_type: Q + referer_id: 453 + referee_key: notification_template+*type + referee_id: + ref_type: P is_present: card_references_341: id: 343 - referer_id: 357 - referee_key: bootswatch_skin+description - referee_id: - ref_type: I + referer_id: 453 + referee_key: "*type" + referee_id: 21 + ref_type: P is_present: card_references_342: id: 344 - referer_id: 357 - referee_key: description - referee_id: 12 + referer_id: 453 + referee_key: by_name + referee_id: 105 ref_type: P is_present: card_references_343: id: 345 - referer_id: 357 - referee_key: bootswatch_skin+*type+by_name + referer_id: 456 + referee_key: radio referee_id: - ref_type: I + ref_type: L is_present: card_references_344: id: 346 - referer_id: 357 - referee_key: bootswatch_skin+*type - referee_id: - ref_type: P + referer_id: 460 + referee_key: "*following+*right" + referee_id: 459 + ref_type: L is_present: card_references_345: id: 347 - referer_id: 357 - referee_key: "*type" - referee_id: 21 - ref_type: P + referer_id: 461 + referee_key: "*following+*right" + referee_id: 459 + ref_type: L is_present: card_references_346: id: 348 - referer_id: 357 - referee_key: by_name - referee_id: 104 - ref_type: P + referer_id: 468 + referee_key: "*nest" + referee_id: 131 + ref_type: L is_present: card_references_347: id: 349 - referer_id: 444 - referee_key: yeti_skin - referee_id: 412 + referer_id: 471 + referee_key: radio + referee_id: ref_type: L is_present: card_references_348: id: 350 - referer_id: 447 - referee_key: date+description - referee_id: 448 - ref_type: I + referer_id: 472 + referee_key: success + referee_id: + ref_type: L is_present: card_references_349: id: 351 - referer_id: 447 - referee_key: date+*type+by_name + referer_id: 472 + referee_key: info referee_id: - ref_type: I + ref_type: L is_present: card_references_350: id: 352 - referer_id: 447 - referee_key: date+*type + referer_id: 472 + referee_key: warning referee_id: - ref_type: P + ref_type: L is_present: card_references_351: id: 353 - referer_id: 447 - referee_key: "*type" - referee_id: 21 - ref_type: P + referer_id: 472 + referee_key: danger + referee_id: + ref_type: L is_present: card_references_352: id: 354 - referer_id: 447 - referee_key: by_name - referee_id: 104 - ref_type: P + referer_id: 475 + referee_key: follower_notification_email+*from + referee_id: 476 + ref_type: I is_present: card_references_353: id: 355 - referer_id: 452 - referee_key: notification_template+description + referer_id: 475 + referee_key: follower_notification_email+*to referee_id: ref_type: I is_present: card_references_354: id: 356 - referer_id: 452 - referee_key: description - referee_id: 12 + referer_id: 475 + referee_key: "*to" + referee_id: 157 ref_type: P is_present: card_references_355: id: 357 - referer_id: 452 - referee_key: notification_template+*type+by_name + referer_id: 475 + referee_key: follower_notification_email+*cc referee_id: ref_type: I is_present: card_references_356: id: 358 - referer_id: 452 - referee_key: notification_template+*type - referee_id: + referer_id: 475 + referee_key: "*cc" + referee_id: 163 ref_type: P is_present: card_references_357: id: 359 - referer_id: 452 - referee_key: "*type" - referee_id: 21 - ref_type: P + referer_id: 475 + referee_key: follower_notification_email+*bcc + referee_id: + ref_type: I is_present: card_references_358: id: 360 - referer_id: 452 - referee_key: by_name - referee_id: 104 + referer_id: 475 + referee_key: "*bcc" + referee_id: 166 ref_type: P is_present: card_references_359: id: 361 - referer_id: 455 - referee_key: radio - referee_id: - ref_type: L + referer_id: 475 + referee_key: follower_notification_email+*subject + referee_id: 477 + ref_type: I is_present: card_references_360: id: 362 - referer_id: 459 - referee_key: "*following+*right" - referee_id: 458 - ref_type: L + referer_id: 475 + referee_key: follower_notification_email+*html_message + referee_id: 478 + ref_type: I is_present: card_references_361: id: 363 - referer_id: 460 - referee_key: "*following+*right" - referee_id: 458 - ref_type: L + referer_id: 475 + referee_key: follower_notification_email+*text_message + referee_id: 479 + ref_type: I is_present: card_references_362: id: 364 - referer_id: 467 - referee_key: "*nest" - referee_id: 130 - ref_type: L + referer_id: 475 + referee_key: follower_notification_email+*attach + referee_id: + ref_type: I is_present: card_references_363: id: 365 - referer_id: 470 - referee_key: radio - referee_id: - ref_type: L + referer_id: 475 + referee_key: "*attach" + referee_id: 170 + ref_type: P is_present: card_references_364: id: 366 - referer_id: 471 - referee_key: success - referee_id: + referer_id: 476 + referee_key: decko_bot + referee_id: 1 ref_type: L is_present: card_references_365: id: 367 - referer_id: 471 - referee_key: info - referee_id: - ref_type: L + referer_id: 477 + referee_key: decko_bot + referee_id: 1 + ref_type: I is_present: card_references_366: id: 368 - referer_id: 471 - referee_key: warning - referee_id: - ref_type: L + referer_id: 478 + referee_key: decko_bot + referee_id: 1 + ref_type: I is_present: card_references_367: id: 369 - referer_id: 471 - referee_key: danger - referee_id: - ref_type: L + referer_id: 479 + referee_key: decko_bot + referee_id: 1 + ref_type: I is_present: card_references_368: id: 370 - referer_id: 474 - referee_key: follower_notification_email+*from - referee_id: 475 + referer_id: 480 + referee_key: session+description + referee_id: 481 ref_type: I is_present: card_references_369: id: 371 - referer_id: 474 - referee_key: follower_notification_email+*to + referer_id: 480 + referee_key: session+*type+by_name referee_id: ref_type: I is_present: card_references_370: id: 372 - referer_id: 474 - referee_key: "*to" - referee_id: 156 + referer_id: 480 + referee_key: session+*type + referee_id: ref_type: P is_present: card_references_371: id: 373 - referer_id: 474 - referee_key: follower_notification_email+*cc - referee_id: - ref_type: I + referer_id: 480 + referee_key: "*type" + referee_id: 21 + ref_type: P is_present: card_references_372: id: 374 - referer_id: 474 - referee_key: "*cc" - referee_id: 162 + referer_id: 480 + referee_key: by_name + referee_id: 105 ref_type: P is_present: card_references_373: id: 375 - referer_id: 474 - referee_key: follower_notification_email+*bcc - referee_id: - ref_type: I + referer_id: 484 + referee_key: anyone + referee_id: 181 + ref_type: L is_present: card_references_374: id: 376 - referer_id: 474 - referee_key: "*bcc" - referee_id: 165 - ref_type: P + referer_id: 485 + referee_key: anyone + referee_id: 181 + ref_type: L is_present: card_references_375: id: 377 - referer_id: 474 - referee_key: follower_notification_email+*subject - referee_id: 476 - ref_type: I + referer_id: 486 + referee_key: setting + referee_id: 6 + ref_type: Q is_present: card_references_376: id: 378 - referer_id: 474 - referee_key: follower_notification_email+*html_message - referee_id: 477 + referer_id: 487 + referee_key: layout+description + referee_id: 488 ref_type: I is_present: card_references_377: id: 379 - referer_id: 474 - referee_key: follower_notification_email+*text_message - referee_id: 478 + referer_id: 487 + referee_key: layout+*type+by_name + referee_id: ref_type: I is_present: card_references_378: id: 380 - referer_id: 474 - referee_key: follower_notification_email+*attach - referee_id: - ref_type: I + referer_id: 487 + referee_key: layout+*type + referee_id: 489 + ref_type: P is_present: card_references_379: id: 381 - referer_id: 474 - referee_key: "*attach" - referee_id: 169 + referer_id: 487 + referee_key: by_name + referee_id: 105 ref_type: P is_present: card_references_380: id: 382 - referer_id: 475 - referee_key: decko_bot - referee_id: 1 + referer_id: 490 + referee_key: shark + referee_id: 192 ref_type: L is_present: card_references_381: id: 383 - referer_id: 476 - referee_key: decko_bot - referee_id: 1 - ref_type: I + referer_id: 491 + referee_key: shark + referee_id: 192 + ref_type: L is_present: card_references_382: id: 384 - referer_id: 477 - referee_key: decko_bot - referee_id: 1 - ref_type: I + referer_id: 492 + referee_key: shark + referee_id: 192 + ref_type: L is_present: card_references_383: - id: 385 - referer_id: 478 - referee_key: decko_bot - referee_id: 1 - ref_type: I + id: 386 + referer_id: 495 + referee_key: select + referee_id: + ref_type: L is_present: card_references_384: - id: 386 - referer_id: 479 - referee_key: session+description - referee_id: 480 - ref_type: I + id: 389 + referer_id: 496 + referee_key: default_layout + referee_id: 508 + ref_type: L is_present: card_references_385: - id: 387 - referer_id: 479 - referee_key: session+*type+by_name - referee_id: + id: 394 + referer_id: 498 + referee_key: "*logo" + referee_id: 289 ref_type: I is_present: card_references_386: - id: 388 - referer_id: 479 - referee_key: session+*type - referee_id: - ref_type: P + id: 395 + referer_id: 498 + referee_key: "*title" + referee_id: 50 + ref_type: I is_present: card_references_387: - id: 389 - referer_id: 479 - referee_key: "*type" - referee_id: 21 - ref_type: P + id: 396 + referer_id: 498 + referee_key: "*main_menu" + referee_id: 497 + ref_type: I is_present: card_references_388: - id: 390 - referer_id: 479 - referee_key: by_name - referee_id: 104 - ref_type: P + id: 397 + referer_id: 498 + referee_key: "*search" + referee_id: 100 + ref_type: I is_present: card_references_389: - id: 391 - referer_id: 483 - referee_key: anyone - referee_id: 180 - ref_type: L + id: 398 + referer_id: 498 + referee_key: "*account_link" + referee_id: 278 + ref_type: I is_present: card_references_390: - id: 392 - referer_id: 484 + id: 399 + referer_id: 500 referee_key: anyone - referee_id: 180 + referee_id: 181 ref_type: L is_present: card_references_391: - id: 393 - referer_id: 485 - referee_key: setting - referee_id: 6 - ref_type: Q + id: 404 + referer_id: 502 + referee_key: anyone + referee_id: 181 + ref_type: L is_present: card_references_392: - id: 394 - referer_id: 486 - referee_key: layout+description - referee_id: 487 + id: 405 + referer_id: 503 + referee_key: "*credit" + referee_id: 51 ref_type: I is_present: card_references_393: - id: 395 - referer_id: 486 - referee_key: layout+*type+by_name - referee_id: + id: 406 + referer_id: 505 + referee_key: menu + referee_id: 504 ref_type: I is_present: card_references_394: - id: 396 - referer_id: 486 - referee_key: layout+*type - referee_id: 488 - ref_type: P + id: 407 + referer_id: 507 + referee_key: anyone + referee_id: 181 + ref_type: L is_present: card_references_395: - id: 397 - referer_id: 486 - referee_key: by_name - referee_id: 104 - ref_type: P + id: 408 + referer_id: 508 + referee_key: "*header" + referee_id: 498 + ref_type: I is_present: card_references_396: - id: 398 - referer_id: 489 - referee_key: shark - referee_id: 191 - ref_type: L + id: 409 + referer_id: 508 + referee_key: "*footer" + referee_id: 503 + ref_type: I is_present: card_references_397: - id: 399 - referer_id: 490 - referee_key: shark - referee_id: 191 - ref_type: L + id: 410 + referer_id: 509 + referee_key: "*header" + referee_id: 498 + ref_type: I is_present: card_references_398: - id: 400 - referer_id: 491 - referee_key: shark - referee_id: 191 - ref_type: L + id: 411 + referer_id: 509 + referee_key: "*footer" + referee_id: 503 + ref_type: I is_present: card_references_399: - id: 402 - referer_id: 494 - referee_key: select - referee_id: - ref_type: L + id: 412 + referer_id: 510 + referee_key: "*header" + referee_id: 498 + ref_type: I is_present: card_references_400: - id: 405 - referer_id: 495 - referee_key: default_layout - referee_id: 507 - ref_type: L + id: 413 + referer_id: 510 + referee_key: "*footer" + referee_id: 503 + ref_type: I is_present: card_references_401: - id: 410 - referer_id: 497 - referee_key: "*logo" - referee_id: 288 + id: 414 + referer_id: 511 + referee_key: "*header" + referee_id: 498 ref_type: I is_present: card_references_402: - id: 411 - referer_id: 497 - referee_key: "*title" - referee_id: 50 + id: 415 + referer_id: 511 + referee_key: "*sidebar" + referee_id: 505 ref_type: I is_present: card_references_403: - id: 412 - referer_id: 497 - referee_key: "*main_menu" - referee_id: 496 + id: 416 + referer_id: 511 + referee_key: "*footer" + referee_id: 503 ref_type: I is_present: card_references_404: - id: 413 - referer_id: 497 - referee_key: "*search" - referee_id: 99 + id: 417 + referer_id: 512 + referee_key: "*header" + referee_id: 498 ref_type: I is_present: card_references_405: - id: 414 - referer_id: 497 - referee_key: "*account_link" - referee_id: 277 + id: 418 + referer_id: 512 + referee_key: "*sidebar" + referee_id: 505 ref_type: I is_present: card_references_406: - id: 415 - referer_id: 499 - referee_key: anyone - referee_id: 180 - ref_type: L + id: 419 + referer_id: 512 + referee_key: "*footer" + referee_id: 503 + ref_type: I is_present: card_references_407: - id: 420 - referer_id: 501 - referee_key: anyone - referee_id: 180 + id: 425 + referer_id: 522 + referee_key: home_layout + referee_id: 510 ref_type: L is_present: card_references_408: - id: 421 - referer_id: 502 - referee_key: "*credit" - referee_id: 51 - ref_type: I + id: 431 + referer_id: 523 + referee_key: home + referee_id: 520 + ref_type: L is_present: card_references_409: - id: 422 - referer_id: 504 - referee_key: menu - referee_id: 503 + id: 432 + referer_id: 526 + referee_key: role+*type+*structure+description + referee_id: ref_type: I is_present: card_references_410: - id: 423 - referer_id: 506 - referee_key: anyone - referee_id: 180 - ref_type: L + id: 433 + referer_id: 526 + referee_key: description + referee_id: 12 + ref_type: P is_present: card_references_411: - id: 424 - referer_id: 507 - referee_key: "*header" - referee_id: 497 + id: 434 + referer_id: 526 + referee_key: role+*type+*structure+dashboard + referee_id: ref_type: I is_present: card_references_412: - id: 425 - referer_id: 507 - referee_key: "*footer" - referee_id: 502 - ref_type: I + id: 435 + referer_id: 526 + referee_key: dashboard + referee_id: 524 + ref_type: P is_present: card_references_413: - id: 426 - referer_id: 508 - referee_key: "*header" - referee_id: 497 + id: 436 + referer_id: 526 + referee_key: role+*type+*structure+*member + referee_id: ref_type: I is_present: card_references_414: - id: 427 - referer_id: 508 - referee_key: "*footer" - referee_id: 502 - ref_type: I + id: 437 + referer_id: 526 + referee_key: "*member" + referee_id: 180 + ref_type: P is_present: card_references_415: - id: 428 - referer_id: 509 - referee_key: "*header" - referee_id: 497 + id: 438 + referer_id: 181 + referee_key: anyone+description + referee_id: 182 ref_type: I is_present: card_references_416: - id: 429 - referer_id: 509 - referee_key: "*footer" - referee_id: 502 + id: 439 + referer_id: 181 + referee_key: anyone+dashboard + referee_id: ref_type: I is_present: card_references_417: - id: 430 - referer_id: 510 - referee_key: "*header" - referee_id: 497 - ref_type: I + id: 440 + referer_id: 181 + referee_key: dashboard + referee_id: 524 + ref_type: P is_present: card_references_418: - id: 431 - referer_id: 510 - referee_key: "*sidebar" - referee_id: 504 + id: 441 + referer_id: 181 + referee_key: anyone+*member + referee_id: ref_type: I is_present: card_references_419: - id: 432 - referer_id: 510 - referee_key: "*footer" - referee_id: 502 - ref_type: I + id: 442 + referer_id: 181 + referee_key: "*member" + referee_id: 180 + ref_type: P is_present: card_references_420: - id: 433 - referer_id: 511 - referee_key: "*header" - referee_id: 497 + id: 443 + referer_id: 183 + referee_key: anyone_signed_in+description + referee_id: 184 ref_type: I is_present: card_references_421: - id: 434 - referer_id: 511 - referee_key: "*sidebar" - referee_id: 504 + id: 444 + referer_id: 183 + referee_key: anyone_signed_in+dashboard + referee_id: 532 ref_type: I is_present: card_references_422: - id: 435 - referer_id: 511 - referee_key: "*footer" - referee_id: 502 - ref_type: I + id: 445 + referer_id: 183 + referee_key: dashboard + referee_id: 524 + ref_type: P is_present: card_references_423: - id: 441 - referer_id: 521 - referee_key: home_layout - referee_id: 509 - ref_type: L + id: 446 + referer_id: 183 + referee_key: anyone_signed_in+*member + referee_id: + ref_type: I is_present: card_references_424: id: 447 - referer_id: 522 - referee_key: home - referee_id: 519 - ref_type: L + referer_id: 183 + referee_key: "*member" + referee_id: 180 + ref_type: P is_present: card_references_425: id: 448 - referer_id: 525 - referee_key: role+*type+*structure+description - referee_id: + referer_id: 185 + referee_key: administrator+description + referee_id: 186 ref_type: I is_present: card_references_426: id: 449 - referer_id: 525 - referee_key: description - referee_id: 12 - ref_type: P + referer_id: 185 + referee_key: administrator+dashboard + referee_id: 528 + ref_type: I is_present: card_references_427: id: 450 - referer_id: 525 - referee_key: role+*type+*structure+dashboard - referee_id: - ref_type: I + referer_id: 185 + referee_key: dashboard + referee_id: 524 + ref_type: P is_present: card_references_428: id: 451 - referer_id: 525 - referee_key: dashboard - referee_id: 523 - ref_type: P + referer_id: 185 + referee_key: administrator+*member + referee_id: 187 + ref_type: I is_present: card_references_429: id: 452 - referer_id: 525 - referee_key: role+*type+*structure+*member - referee_id: + referer_id: 190 + referee_key: eagle+description + referee_id: 191 ref_type: I is_present: card_references_430: id: 453 - referer_id: 525 - referee_key: "*member" - referee_id: 179 - ref_type: P + referer_id: 190 + referee_key: eagle+dashboard + referee_id: 531 + ref_type: I is_present: card_references_431: id: 454 - referer_id: 180 - referee_key: anyone+description - referee_id: 181 - ref_type: I + referer_id: 190 + referee_key: dashboard + referee_id: 524 + ref_type: P is_present: card_references_432: id: 455 - referer_id: 180 - referee_key: anyone+dashboard + referer_id: 190 + referee_key: eagle+*member referee_id: ref_type: I is_present: card_references_433: id: 456 - referer_id: 180 - referee_key: dashboard - referee_id: 523 + referer_id: 190 + referee_key: "*member" + referee_id: 180 ref_type: P is_present: card_references_434: id: 457 - referer_id: 180 - referee_key: anyone+*member - referee_id: + referer_id: 192 + referee_key: shark+description + referee_id: 193 ref_type: I is_present: card_references_435: id: 458 - referer_id: 180 - referee_key: "*member" - referee_id: 179 - ref_type: P + referer_id: 192 + referee_key: shark+dashboard + referee_id: 529 + ref_type: I is_present: card_references_436: id: 459 - referer_id: 182 - referee_key: anyone_signed_in+description - referee_id: 183 - ref_type: I + referer_id: 192 + referee_key: dashboard + referee_id: 524 + ref_type: P is_present: card_references_437: id: 460 - referer_id: 182 - referee_key: anyone_signed_in+dashboard - referee_id: 531 + referer_id: 192 + referee_key: shark+*member + referee_id: 194 ref_type: I is_present: card_references_438: id: 461 - referer_id: 182 - referee_key: dashboard - referee_id: 523 - ref_type: P + referer_id: 197 + referee_key: help_desk+description + referee_id: 198 + ref_type: I is_present: card_references_439: id: 462 - referer_id: 182 - referee_key: anyone_signed_in+*member - referee_id: + referer_id: 197 + referee_key: help_desk+dashboard + referee_id: 530 ref_type: I is_present: card_references_440: id: 463 - referer_id: 182 - referee_key: "*member" - referee_id: 179 + referer_id: 197 + referee_key: dashboard + referee_id: 524 ref_type: P is_present: card_references_441: id: 464 - referer_id: 184 - referee_key: administrator+description - referee_id: 185 + referer_id: 197 + referee_key: help_desk+*member + referee_id: 199 ref_type: I is_present: card_references_442: - id: 465 - referer_id: 184 - referee_key: administrator+dashboard - referee_id: 527 - ref_type: I + id: 471 + referer_id: 497 + referee_key: "*recent" + referee_id: 101 + ref_type: L is_present: card_references_443: - id: 466 - referer_id: 184 - referee_key: dashboard - referee_id: 523 - ref_type: P + id: 472 + referer_id: 527 + referee_key: "*all+*style" + referee_id: 445 + ref_type: L is_present: card_references_444: - id: 467 - referer_id: 184 - referee_key: administrator+*member - referee_id: 186 - ref_type: I + id: 473 + referer_id: 527 + referee_key: administrator + referee_id: 185 + ref_type: L is_present: card_references_445: - id: 468 - referer_id: 189 - referee_key: eagle+description - referee_id: 190 + id: 474 + referer_id: 528 + referee_key: administrator + referee_id: 185 ref_type: I is_present: card_references_446: - id: 469 - referer_id: 189 - referee_key: eagle+dashboard - referee_id: 530 + id: 475 + referer_id: 529 + referee_key: shark + referee_id: 192 ref_type: I is_present: card_references_447: - id: 470 - referer_id: 189 - referee_key: dashboard - referee_id: 523 - ref_type: P + id: 476 + referer_id: 529 + referee_key: "*all" + referee_id: 7 + ref_type: I is_present: card_references_448: - id: 471 - referer_id: 189 - referee_key: eagle+*member - referee_id: + id: 477 + referer_id: 530 + referee_key: help_desk + referee_id: 197 ref_type: I is_present: card_references_449: - id: 472 - referer_id: 189 - referee_key: "*member" - referee_id: 179 - ref_type: P + id: 478 + referer_id: 530 + referee_key: "*account" + referee_id: 206 + ref_type: I is_present: card_references_450: - id: 473 - referer_id: 191 - referee_key: shark+description - referee_id: 192 + id: 479 + referer_id: 530 + referee_key: "*help" + referee_id: 90 ref_type: I is_present: card_references_451: - id: 474 - referer_id: 191 - referee_key: shark+dashboard - referee_id: 528 - ref_type: I + id: 480 + referer_id: 530 + referee_key: email_template + referee_id: 153 + ref_type: L is_present: card_references_452: - id: 475 - referer_id: 191 - referee_key: dashboard - referee_id: 523 - ref_type: P + id: 481 + referer_id: 530 + referee_key: email_template+*type+by_update + referee_id: + ref_type: I is_present: card_references_453: - id: 476 - referer_id: 191 - referee_key: shark+*member - referee_id: 193 - ref_type: I + id: 482 + referer_id: 530 + referee_key: email_template+*type + referee_id: 155 + ref_type: P is_present: card_references_454: - id: 477 - referer_id: 196 - referee_key: help_desk+description - referee_id: 197 - ref_type: I + id: 483 + referer_id: 530 + referee_key: by_update + referee_id: 107 + ref_type: P is_present: card_references_455: - id: 478 - referer_id: 196 - referee_key: help_desk+dashboard - referee_id: 529 + id: 484 + referer_id: 531 + referee_key: decko_bot+*created + referee_id: ref_type: I is_present: card_references_456: - id: 479 - referer_id: 196 - referee_key: dashboard - referee_id: 523 + id: 485 + referer_id: 531 + referee_key: decko_bot + referee_id: 1 ref_type: P is_present: card_references_457: - id: 480 - referer_id: 196 - referee_key: help_desk+*member - referee_id: 198 - ref_type: I + id: 486 + referer_id: 531 + referee_key: "*created" + referee_id: 110 + ref_type: P is_present: card_references_458: id: 487 - referer_id: 496 - referee_key: "*recent" - referee_id: 100 - ref_type: L + referer_id: 531 + referee_key: decko_bot+*edited + referee_id: + ref_type: I is_present: card_references_459: id: 488 - referer_id: 526 - referee_key: "*all+*style" - referee_id: 444 - ref_type: L + referer_id: 531 + referee_key: "*edited" + referee_id: 113 + ref_type: P is_present: card_references_460: id: 489 - referer_id: 526 - referee_key: administrator - referee_id: 184 - ref_type: L + referer_id: 532 + referee_key: decko_bot+*created + referee_id: + ref_type: I is_present: card_references_461: id: 490 - referer_id: 527 - referee_key: administrator - referee_id: 184 - ref_type: I + referer_id: 532 + referee_key: decko_bot + referee_id: 1 + ref_type: P is_present: card_references_462: id: 491 - referer_id: 528 - referee_key: shark - referee_id: 191 - ref_type: I + referer_id: 532 + referee_key: "*created" + referee_id: 110 + ref_type: P is_present: card_references_463: id: 492 - referer_id: 528 - referee_key: "*all" - referee_id: 7 + referer_id: 532 + referee_key: decko_bot+*edited + referee_id: ref_type: I is_present: card_references_464: id: 493 - referer_id: 529 - referee_key: help_desk - referee_id: 196 - ref_type: I + referer_id: 532 + referee_key: "*edited" + referee_id: 113 + ref_type: P is_present: card_references_465: id: 494 - referer_id: 529 - referee_key: "*account" - referee_id: 205 + referer_id: 533 + referee_key: "*getting_started+shark" + referee_id: 534 ref_type: I is_present: card_references_466: id: 495 - referer_id: 529 - referee_key: "*help" - referee_id: 89 - ref_type: I + referer_id: 539 + referee_key: mod_format+*script+group_jquery + referee_id: + ref_type: L is_present: card_references_467: id: 496 - referer_id: 529 - referee_key: email_template - referee_id: 152 - ref_type: L + referer_id: 539 + referee_key: group_jquery + referee_id: + ref_type: P is_present: card_references_468: id: 497 - referer_id: 529 - referee_key: email_template+*type+by_update + referer_id: 539 + referee_key: mod_format+*script+group_decko referee_id: - ref_type: I + ref_type: L is_present: card_references_469: id: 498 - referer_id: 529 - referee_key: email_template+*type - referee_id: 154 + referer_id: 539 + referee_key: group_decko + referee_id: ref_type: P is_present: card_references_470: id: 499 - referer_id: 529 - referee_key: by_update - referee_id: 106 - ref_type: P + referer_id: 541 + referee_key: mod_format+*style+group_local + referee_id: + ref_type: L is_present: card_references_471: id: 500 - referer_id: 530 - referee_key: decko_bot+*created + referer_id: 541 + referee_key: group_local referee_id: - ref_type: I + ref_type: P is_present: card_references_472: id: 501 - referer_id: 530 - referee_key: decko_bot - referee_id: 1 - ref_type: P + referer_id: 543 + referee_key: mod_list+*script+group_local + referee_id: + ref_type: L is_present: card_references_473: id: 502 - referer_id: 530 - referee_key: "*created" - referee_id: 109 + referer_id: 543 + referee_key: group_local + referee_id: ref_type: P is_present: card_references_474: id: 503 - referer_id: 530 - referee_key: decko_bot+*edited + referer_id: 545 + referee_key: mod_list+*style+group_local referee_id: - ref_type: I + ref_type: L is_present: card_references_475: id: 504 - referer_id: 530 - referee_key: "*edited" - referee_id: 112 + referer_id: 545 + referee_key: group_local + referee_id: ref_type: P is_present: card_references_476: id: 505 - referer_id: 531 - referee_key: decko_bot+*created + referer_id: 548 + referee_key: mod_permission+*style+group_local referee_id: - ref_type: I + ref_type: L is_present: card_references_477: id: 506 - referer_id: 531 - referee_key: decko_bot - referee_id: 1 + referer_id: 548 + referee_key: group_local + referee_id: ref_type: P is_present: card_references_478: id: 507 - referer_id: 531 - referee_key: "*created" - referee_id: 109 - ref_type: P + referer_id: 550 + referee_key: mod_help+*style+group_local + referee_id: + ref_type: L is_present: card_references_479: id: 508 - referer_id: 531 - referee_key: decko_bot+*edited + referer_id: 550 + referee_key: group_local referee_id: - ref_type: I + ref_type: P is_present: card_references_480: id: 509 - referer_id: 531 - referee_key: "*edited" - referee_id: 112 - ref_type: P + referer_id: 552 + referee_key: mod_search+*script+group_local + referee_id: + ref_type: L is_present: card_references_481: id: 510 - referer_id: 532 - referee_key: "*getting_started+shark" - referee_id: 533 - ref_type: I + referer_id: 552 + referee_key: group_local + referee_id: + ref_type: P is_present: card_references_482: id: 511 - referer_id: 538 - referee_key: mod_format+*script+group_jquery + referer_id: 554 + referee_key: mod_search+*style+group_local referee_id: ref_type: L is_present: card_references_483: id: 512 - referer_id: 538 - referee_key: group_jquery + referer_id: 554 + referee_key: group_local referee_id: ref_type: P is_present: card_references_484: id: 513 - referer_id: 538 - referee_key: mod_format+*script+group_decko + referer_id: 556 + referee_key: mod_rule+*script+group_local referee_id: ref_type: L is_present: card_references_485: id: 514 - referer_id: 538 - referee_key: group_decko + referer_id: 556 + referee_key: group_local referee_id: ref_type: P is_present: card_references_486: id: 515 - referer_id: 540 - referee_key: mod_format+*style+group_local + referer_id: 558 + referee_key: mod_rule+*style+group_local referee_id: ref_type: L is_present: card_references_487: id: 516 - referer_id: 540 + referer_id: 558 referee_key: group_local referee_id: ref_type: P is_present: card_references_488: id: 517 - referer_id: 542 - referee_key: mod_list+*script+group_local + referer_id: 560 + referee_key: mod_edit+*script+group_local referee_id: ref_type: L is_present: card_references_489: id: 518 - referer_id: 542 + referer_id: 560 referee_key: group_local referee_id: ref_type: P is_present: card_references_490: id: 519 - referer_id: 544 - referee_key: mod_list+*style+group_local + referer_id: 562 + referee_key: mod_edit+*style+group_local referee_id: ref_type: L is_present: card_references_491: id: 520 - referer_id: 544 + referer_id: 562 referee_key: group_local referee_id: ref_type: P is_present: card_references_492: id: 521 - referer_id: 547 - referee_key: mod_permission+*style+group_local + referer_id: 566 + referee_key: mod_account+*script+group_local referee_id: ref_type: L is_present: card_references_493: id: 522 - referer_id: 547 + referer_id: 566 referee_key: group_local referee_id: ref_type: P is_present: card_references_494: id: 523 - referer_id: 549 - referee_key: mod_help+*style+group_local + referer_id: 568 + referee_key: mod_account+*style+group_local referee_id: ref_type: L is_present: card_references_495: id: 524 - referer_id: 549 + referer_id: 568 referee_key: group_local referee_id: ref_type: P is_present: card_references_496: id: 525 - referer_id: 551 - referee_key: mod_search+*script+group_local + referer_id: 570 + referee_key: mod_history+*style+group_local referee_id: ref_type: L is_present: card_references_497: id: 526 - referer_id: 551 + referer_id: 570 referee_key: group_local referee_id: ref_type: P is_present: card_references_498: id: 527 - referer_id: 553 - referee_key: mod_search+*style+group_local + referer_id: 572 + referee_key: mod_carrierwave+*script+group_local referee_id: ref_type: L is_present: card_references_499: id: 528 - referer_id: 553 + referer_id: 572 referee_key: group_local referee_id: ref_type: P is_present: card_references_500: id: 529 - referer_id: 555 - referee_key: mod_rule+*script+group_local + referer_id: 574 + referee_key: mod_carrierwave+*style+group_local referee_id: ref_type: L is_present: card_references_501: id: 530 - referer_id: 555 + referer_id: 574 referee_key: group_local referee_id: ref_type: P is_present: card_references_502: id: 531 - referer_id: 557 - referee_key: mod_rule+*style+group_local + referer_id: 579 + referee_key: mod_ace_editor+*script+group_ace_config referee_id: ref_type: L is_present: card_references_503: id: 532 - referer_id: 557 - referee_key: group_local + referer_id: 579 + referee_key: group_ace_config referee_id: ref_type: P is_present: card_references_504: id: 533 - referer_id: 559 - referee_key: mod_edit+*script+group_local + referer_id: 582 + referee_key: mod_api_key+*style+group_local referee_id: ref_type: L is_present: card_references_505: id: 534 - referer_id: 559 + referer_id: 582 referee_key: group_local referee_id: ref_type: P is_present: card_references_506: id: 535 - referer_id: 561 - referee_key: mod_edit+*style+group_local + referer_id: 584 + referee_key: mod_style+*style+group_local referee_id: ref_type: L is_present: card_references_507: id: 536 - referer_id: 561 + referer_id: 584 referee_key: group_local referee_id: ref_type: P is_present: card_references_508: id: 537 - referer_id: 565 - referee_key: mod_account+*script+group_local + referer_id: 586 + referee_key: mod_bar_and_box+*script+group_local referee_id: ref_type: L is_present: card_references_509: id: 538 - referer_id: 565 + referer_id: 586 referee_key: group_local referee_id: ref_type: P is_present: card_references_510: id: 539 - referer_id: 567 - referee_key: mod_account+*style+group_local + referer_id: 588 + referee_key: mod_bar_and_box+*style+group_local referee_id: ref_type: L is_present: card_references_511: id: 540 - referer_id: 567 + referer_id: 588 referee_key: group_local referee_id: ref_type: P is_present: card_references_512: id: 541 - referer_id: 569 - referee_key: mod_history+*style+group_local + referer_id: 590 + referee_key: mod_bootstrap+*script+group_bootstrap referee_id: ref_type: L is_present: card_references_513: id: 542 - referer_id: 569 - referee_key: group_local + referer_id: 590 + referee_key: group_bootstrap referee_id: ref_type: P is_present: card_references_514: id: 543 - referer_id: 571 - referee_key: mod_carrierwave+*script+group_local + referer_id: 592 + referee_key: mod_bootstrap+*style+group_bootstrap_decko referee_id: ref_type: L is_present: card_references_515: id: 544 - referer_id: 571 - referee_key: group_local + referer_id: 592 + referee_key: group_bootstrap_decko referee_id: ref_type: P is_present: card_references_516: id: 545 - referer_id: 573 - referee_key: mod_carrierwave+*style+group_local + referer_id: 592 + referee_key: mod_bootstrap+*style+group_library referee_id: ref_type: L is_present: card_references_517: id: 546 - referer_id: 573 - referee_key: group_local + referer_id: 592 + referee_key: group_library referee_id: ref_type: P is_present: card_references_518: id: 547 - referer_id: 578 - referee_key: mod_ace_editor+*script+group_ace_config + referer_id: 592 + referee_key: mod_bootstrap+*style+group_select2 referee_id: ref_type: L is_present: card_references_519: id: 548 - referer_id: 578 - referee_key: group_ace_config + referer_id: 592 + referee_key: group_select2 referee_id: ref_type: P is_present: card_references_520: id: 549 - referer_id: 581 - referee_key: mod_api_key+*style+group_local + referer_id: 594 + referee_key: mod_comment+*style+group_local referee_id: ref_type: L is_present: card_references_521: id: 550 - referer_id: 581 + referer_id: 594 referee_key: group_local referee_id: ref_type: P is_present: card_references_522: id: 551 - referer_id: 583 - referee_key: mod_style+*style+group_local + referer_id: 598 + referee_key: mod_follow+*script+group_local referee_id: ref_type: L is_present: card_references_523: id: 552 - referer_id: 583 + referer_id: 598 referee_key: group_local referee_id: ref_type: P is_present: card_references_524: id: 553 - referer_id: 585 - referee_key: mod_bar_and_box+*script+group_local + referer_id: 600 + referee_key: mod_follow+*style+group_local referee_id: ref_type: L is_present: card_references_525: id: 554 - referer_id: 585 + referer_id: 600 referee_key: group_local referee_id: ref_type: P is_present: card_references_526: id: 555 - referer_id: 587 - referee_key: mod_bar_and_box+*style+group_local + referer_id: 603 + referee_key: mod_tab+*script+group_local referee_id: ref_type: L is_present: card_references_527: id: 556 - referer_id: 587 + referer_id: 603 referee_key: group_local referee_id: ref_type: P is_present: card_references_528: id: 557 - referer_id: 589 - referee_key: mod_bootstrap+*script+group_bootstrap + referer_id: 606 + referee_key: mod_layout+*script+group_local referee_id: ref_type: L is_present: card_references_529: id: 558 - referer_id: 589 - referee_key: group_bootstrap + referer_id: 606 + referee_key: group_local referee_id: ref_type: P is_present: card_references_530: id: 559 - referer_id: 591 - referee_key: mod_bootstrap+*style+group_bootstrap_decko + referer_id: 608 + referee_key: mod_layout+*style+group_local referee_id: ref_type: L is_present: card_references_531: id: 560 - referer_id: 591 - referee_key: group_bootstrap_decko + referer_id: 608 + referee_key: group_local referee_id: ref_type: P is_present: card_references_532: id: 561 - referer_id: 591 - referee_key: mod_bootstrap+*style+group_library + referer_id: 610 + referee_key: mod_recaptcha+*script+group_local referee_id: ref_type: L is_present: card_references_533: id: 562 - referer_id: 591 - referee_key: group_library + referer_id: 610 + referee_key: group_local referee_id: ref_type: P is_present: card_references_534: id: 563 - referer_id: 591 - referee_key: mod_bootstrap+*style+group_select2 + referer_id: 613 + referee_key: mod_tinymce_editor+*script+group_local referee_id: ref_type: L is_present: card_references_535: id: 564 - referer_id: 591 - referee_key: group_select2 + referer_id: 613 + referee_key: group_local referee_id: ref_type: P is_present: card_references_536: id: 565 - referer_id: 593 - referee_key: mod_comment+*style+group_local + referer_id: 615 + referee_key: mod_tinymce_editor+*style+group_local referee_id: ref_type: L is_present: card_references_537: id: 566 - referer_id: 593 + referer_id: 615 referee_key: group_local referee_id: ref_type: P is_present: card_references_538: id: 567 - referer_id: 597 - referee_key: mod_follow+*script+group_local - referee_id: + referer_id: 306 + referee_key: mod_format+*script + referee_id: 539 ref_type: L is_present: card_references_539: id: 568 - referer_id: 597 - referee_key: group_local - referee_id: - ref_type: P + referer_id: 306 + referee_key: mod_list+*script + referee_id: 543 + ref_type: L is_present: card_references_540: id: 569 - referer_id: 599 - referee_key: mod_follow+*style+group_local - referee_id: + referer_id: 306 + referee_key: mod_search+*script + referee_id: 552 ref_type: L is_present: card_references_541: id: 570 - referer_id: 599 - referee_key: group_local - referee_id: - ref_type: P + referer_id: 306 + referee_key: mod_rule+*script + referee_id: 556 + ref_type: L is_present: card_references_542: id: 571 - referer_id: 602 - referee_key: mod_tab+*script+group_local - referee_id: + referer_id: 306 + referee_key: mod_edit+*script + referee_id: 560 ref_type: L is_present: card_references_543: id: 572 - referer_id: 602 - referee_key: group_local - referee_id: - ref_type: P + referer_id: 306 + referee_key: mod_account+*script + referee_id: 566 + ref_type: L is_present: card_references_544: id: 573 - referer_id: 605 - referee_key: mod_layout+*script+group_local - referee_id: + referer_id: 306 + referee_key: mod_carrierwave+*script + referee_id: 572 ref_type: L is_present: card_references_545: id: 574 - referer_id: 605 - referee_key: group_local - referee_id: - ref_type: P + referer_id: 306 + referee_key: mod_ace_editor+*script + referee_id: 579 + ref_type: L is_present: card_references_546: id: 575 - referer_id: 607 - referee_key: mod_layout+*style+group_local - referee_id: + referer_id: 306 + referee_key: mod_bar_and_box+*script + referee_id: 586 ref_type: L is_present: card_references_547: id: 576 - referer_id: 607 - referee_key: group_local - referee_id: - ref_type: P + referer_id: 306 + referee_key: mod_bootstrap+*script + referee_id: 590 + ref_type: L is_present: card_references_548: id: 577 - referer_id: 609 - referee_key: mod_recaptcha+*script+group_local - referee_id: + referer_id: 306 + referee_key: mod_follow+*script + referee_id: 598 ref_type: L is_present: card_references_549: id: 578 - referer_id: 609 - referee_key: group_local - referee_id: - ref_type: P + referer_id: 306 + referee_key: mod_tab+*script + referee_id: 603 + ref_type: L is_present: card_references_550: id: 579 - referer_id: 612 - referee_key: mod_tinymce_editor+*script+group_local - referee_id: + referer_id: 306 + referee_key: mod_layout+*script + referee_id: 606 ref_type: L is_present: card_references_551: id: 580 - referer_id: 612 - referee_key: group_local - referee_id: - ref_type: P + referer_id: 306 + referee_key: mod_recaptcha+*script + referee_id: 610 + ref_type: L is_present: card_references_552: id: 581 - referer_id: 614 - referee_key: mod_tinymce_editor+*style+group_local - referee_id: + referer_id: 306 + referee_key: mod_tinymce_editor+*script + referee_id: 613 ref_type: L is_present: card_references_553: id: 582 - referer_id: 614 - referee_key: group_local - referee_id: - ref_type: P + referer_id: 482 + referee_key: "*script" + referee_id: 302 + ref_type: L is_present: card_references_554: id: 583 - referer_id: 305 - referee_key: mod_format+*script - referee_id: 538 + referer_id: 482 + referee_key: "*structure" + referee_id: 28 ref_type: L is_present: card_references_555: id: 584 - referer_id: 305 - referee_key: mod_list+*script - referee_id: 542 + referer_id: 482 + referee_key: "*layout" + referee_id: 493 ref_type: L is_present: card_references_556: id: 585 - referer_id: 305 - referee_key: mod_search+*script - referee_id: 551 + referer_id: 482 + referee_key: "*captcha" + referee_id: 513 ref_type: L is_present: card_references_557: id: 586 - referer_id: 305 - referee_key: mod_rule+*script - referee_id: 555 + referer_id: 482 + referee_key: "*read" + referee_id: 9 ref_type: L is_present: card_references_558: id: 587 - referer_id: 305 - referee_key: mod_edit+*script - referee_id: 559 + referer_id: 482 + referee_key: "*input_type" + referee_id: 149 ref_type: L is_present: card_references_559: id: 588 - referer_id: 305 - referee_key: mod_account+*script - referee_id: 565 + referer_id: 482 + referee_key: "*create" + referee_id: 66 ref_type: L is_present: card_references_560: id: 589 - referer_id: 305 - referee_key: mod_carrierwave+*script - referee_id: 571 + referer_id: 327 + referee_key: mod_format+*style + referee_id: 541 ref_type: L is_present: card_references_561: id: 590 - referer_id: 305 - referee_key: mod_ace_editor+*script - referee_id: 578 + referer_id: 327 + referee_key: mod_list+*style + referee_id: 545 ref_type: L is_present: card_references_562: id: 591 - referer_id: 305 - referee_key: mod_bar_and_box+*script - referee_id: 585 + referer_id: 327 + referee_key: mod_permission+*style + referee_id: 548 ref_type: L is_present: card_references_563: id: 592 - referer_id: 305 - referee_key: mod_bootstrap+*script - referee_id: 589 + referer_id: 327 + referee_key: mod_help+*style + referee_id: 550 ref_type: L is_present: card_references_564: id: 593 - referer_id: 305 - referee_key: mod_follow+*script - referee_id: 597 + referer_id: 327 + referee_key: mod_search+*style + referee_id: 554 ref_type: L is_present: card_references_565: id: 594 - referer_id: 305 - referee_key: mod_tab+*script - referee_id: 602 + referer_id: 327 + referee_key: mod_rule+*style + referee_id: 558 ref_type: L is_present: card_references_566: id: 595 - referer_id: 305 - referee_key: mod_layout+*script - referee_id: 605 + referer_id: 327 + referee_key: mod_edit+*style + referee_id: 562 ref_type: L is_present: card_references_567: id: 596 - referer_id: 305 - referee_key: mod_recaptcha+*script - referee_id: 609 + referer_id: 327 + referee_key: mod_account+*style + referee_id: 568 ref_type: L is_present: card_references_568: id: 597 - referer_id: 305 - referee_key: mod_tinymce_editor+*script - referee_id: 612 + referer_id: 327 + referee_key: mod_history+*style + referee_id: 570 ref_type: L is_present: card_references_569: id: 598 - referer_id: 481 - referee_key: "*script" - referee_id: 301 + referer_id: 327 + referee_key: mod_carrierwave+*style + referee_id: 574 ref_type: L is_present: card_references_570: id: 599 - referer_id: 481 - referee_key: "*structure" - referee_id: 28 + referer_id: 327 + referee_key: mod_api_key+*style + referee_id: 582 ref_type: L is_present: card_references_571: id: 600 - referer_id: 481 - referee_key: "*layout" - referee_id: 492 + referer_id: 327 + referee_key: mod_style+*style + referee_id: 584 ref_type: L is_present: card_references_572: id: 601 - referer_id: 481 - referee_key: "*captcha" - referee_id: 512 + referer_id: 327 + referee_key: mod_bar_and_box+*style + referee_id: 588 ref_type: L is_present: card_references_573: id: 602 - referer_id: 481 - referee_key: "*read" - referee_id: 9 + referer_id: 327 + referee_key: mod_bootstrap+*style + referee_id: 592 ref_type: L is_present: card_references_574: id: 603 - referer_id: 481 - referee_key: "*input_type" - referee_id: 148 + referer_id: 327 + referee_key: mod_comment+*style + referee_id: 594 ref_type: L is_present: card_references_575: id: 604 - referer_id: 481 - referee_key: "*create" - referee_id: 65 + referer_id: 327 + referee_key: mod_follow+*style + referee_id: 600 ref_type: L is_present: card_references_576: id: 605 - referer_id: 326 - referee_key: mod_format+*style - referee_id: 540 + referer_id: 327 + referee_key: mod_layout+*style + referee_id: 608 ref_type: L is_present: card_references_577: id: 606 - referer_id: 326 - referee_key: mod_list+*style - referee_id: 544 - ref_type: L - is_present: -card_references_578: - id: 607 - referer_id: 326 - referee_key: mod_permission+*style - referee_id: 547 - ref_type: L - is_present: -card_references_579: - id: 608 - referer_id: 326 - referee_key: mod_help+*style - referee_id: 549 - ref_type: L - is_present: -card_references_580: - id: 609 - referer_id: 326 - referee_key: mod_search+*style - referee_id: 553 - ref_type: L - is_present: -card_references_581: - id: 610 - referer_id: 326 - referee_key: mod_rule+*style - referee_id: 557 - ref_type: L - is_present: -card_references_582: - id: 611 - referer_id: 326 - referee_key: mod_edit+*style - referee_id: 561 - ref_type: L - is_present: -card_references_583: - id: 612 - referer_id: 326 - referee_key: mod_account+*style - referee_id: 567 - ref_type: L - is_present: -card_references_584: - id: 613 - referer_id: 326 - referee_key: mod_history+*style - referee_id: 569 - ref_type: L - is_present: -card_references_585: - id: 614 - referer_id: 326 - referee_key: mod_carrierwave+*style - referee_id: 573 - ref_type: L - is_present: -card_references_586: - id: 615 - referer_id: 326 - referee_key: mod_api_key+*style - referee_id: 581 - ref_type: L - is_present: -card_references_587: - id: 616 - referer_id: 326 - referee_key: mod_style+*style - referee_id: 583 - ref_type: L - is_present: -card_references_588: - id: 617 - referer_id: 326 - referee_key: mod_bar_and_box+*style - referee_id: 587 - ref_type: L - is_present: -card_references_589: - id: 618 - referer_id: 326 - referee_key: mod_bootstrap+*style - referee_id: 591 - ref_type: L - is_present: -card_references_590: - id: 619 - referer_id: 326 - referee_key: mod_comment+*style - referee_id: 593 - ref_type: L - is_present: -card_references_591: - id: 620 - referer_id: 326 - referee_key: mod_follow+*style - referee_id: 599 - ref_type: L - is_present: -card_references_592: - id: 621 - referer_id: 326 - referee_key: mod_layout+*style - referee_id: 607 - ref_type: L - is_present: -card_references_593: - id: 622 - referer_id: 326 + referer_id: 327 referee_key: mod_tinymce_editor+*style - referee_id: 614 + referee_id: 615 ref_type: L is_present: diff --git a/mod/defaults/data/fixtures/real/cards.yml b/mod/defaults/data/fixtures/real/cards.yml index 4e66235851..5da0f29a5d 100644 --- a/mod/defaults/data/fixtures/real/cards.yml +++ b/mod/defaults/data/fixtures/real/cards.yml @@ -7,8 +7,8 @@ cards_001: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:32.000000000 Z - updated_at: 2024-10-09 13:48:35.000000000 Z + created_at: 2025-02-04 20:47:38.522542000 Z + updated_at: 2025-02-04 20:47:39.455935000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -29,8 +29,8 @@ cards_002: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:32.000000000 Z - updated_at: 2024-10-09 13:48:37.000000000 Z + created_at: 2025-02-04 20:47:38.522542000 Z + updated_at: 2025-02-04 20:47:40.632517000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -47,8 +47,8 @@ cards_003: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:32.000000000 Z - updated_at: 2024-10-09 13:48:32.000000000 Z + created_at: 2025-02-04 20:47:38.522542000 Z + updated_at: 2025-02-04 20:47:38.522542000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -65,8 +65,8 @@ cards_004: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:32.000000000 Z - updated_at: 2024-10-09 13:48:39.000000000 Z + created_at: 2025-02-04 20:47:38.522542000 Z + updated_at: 2025-02-04 20:47:42.999248000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -83,8 +83,8 @@ cards_005: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:32.000000000 Z - updated_at: 2024-10-09 13:48:44.000000000 Z + created_at: 2025-02-04 20:47:38.522542000 Z + updated_at: 2025-02-04 20:47:52.879171000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -101,8 +101,8 @@ cards_006: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:32.000000000 Z - updated_at: 2024-10-09 13:48:43.000000000 Z + created_at: 2025-02-04 20:47:38.522542000 Z + updated_at: 2025-02-04 20:47:52.850171000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -119,8 +119,8 @@ cards_007: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:32.000000000 Z - updated_at: 2024-10-09 13:48:32.000000000 Z + created_at: 2025-02-04 20:47:38.522542000 Z + updated_at: 2025-02-04 20:47:38.522542000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -137,8 +137,8 @@ cards_008: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:32.000000000 Z - updated_at: 2024-10-09 13:48:32.000000000 Z + created_at: 2025-02-04 20:47:38.522542000 Z + updated_at: 2025-02-04 20:47:38.522542000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -155,8 +155,8 @@ cards_009: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:32.000000000 Z - updated_at: 2024-10-09 13:48:32.000000000 Z + created_at: 2025-02-04 20:47:38.522542000 Z + updated_at: 2025-02-04 20:47:38.522542000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -173,8 +173,8 @@ cards_010: left_id: 7 right_id: 9 current_revision_id: - created_at: 2024-10-09 13:48:32.000000000 Z - updated_at: 2024-10-09 13:48:40.000000000 Z + created_at: 2025-02-04 20:47:38.522542000 Z + updated_at: 2025-02-04 20:47:45.075575000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -191,8 +191,8 @@ cards_011: left_id: 7 right_id: 8 current_revision_id: - created_at: 2024-10-09 13:48:32.000000000 Z - updated_at: 2024-10-09 13:48:32.000000000 Z + created_at: 2025-02-04 20:47:38.522542000 Z + updated_at: 2025-02-04 20:47:38.522542000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -209,8 +209,8 @@ cards_012: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:35.000000000 Z - updated_at: 2024-10-09 13:48:35.000000000 Z + created_at: 2025-02-04 20:47:39.323519000 Z + updated_at: 2025-02-04 20:47:39.323519000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -227,8 +227,8 @@ cards_013: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:35.000000000 Z - updated_at: 2024-10-09 13:48:35.000000000 Z + created_at: 2025-02-04 20:47:39.388556000 Z + updated_at: 2025-02-04 20:47:39.388556000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -245,8 +245,8 @@ cards_014: left_id: 3 right_id: 12 current_revision_id: - created_at: 2024-10-09 13:48:35.000000000 Z - updated_at: 2024-10-09 13:48:35.000000000 Z + created_at: 2025-02-04 20:47:39.438386000 Z + updated_at: 2025-02-04 20:47:39.438386000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -267,8 +267,8 @@ cards_015: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:35.000000000 Z - updated_at: 2024-10-09 13:48:35.000000000 Z + created_at: 2025-02-04 20:47:39.490178000 Z + updated_at: 2025-02-04 20:47:39.490178000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -285,8 +285,8 @@ cards_016: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:36.000000000 Z - updated_at: 2024-10-09 13:48:36.000000000 Z + created_at: 2025-02-04 20:47:39.564493000 Z + updated_at: 2025-02-04 20:47:39.564493000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -303,8 +303,8 @@ cards_017: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:36.000000000 Z - updated_at: 2024-10-09 13:48:36.000000000 Z + created_at: 2025-02-04 20:47:39.611224000 Z + updated_at: 2025-02-04 20:47:39.611224000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -321,8 +321,8 @@ cards_018: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:36.000000000 Z - updated_at: 2024-10-09 13:48:36.000000000 Z + created_at: 2025-02-04 20:47:39.691537000 Z + updated_at: 2025-02-04 20:47:39.691537000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -339,8 +339,8 @@ cards_019: left_id: 18 right_id: 12 current_revision_id: - created_at: 2024-10-09 13:48:36.000000000 Z - updated_at: 2024-10-09 13:48:36.000000000 Z + created_at: 2025-02-04 20:47:39.694337000 Z + updated_at: 2025-02-04 20:47:39.726166000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -359,8 +359,8 @@ cards_020: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:36.000000000 Z - updated_at: 2024-10-09 13:48:36.000000000 Z + created_at: 2025-02-04 20:47:39.750969000 Z + updated_at: 2025-02-04 20:47:39.750969000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -377,8 +377,8 @@ cards_021: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:36.000000000 Z - updated_at: 2024-10-09 13:48:36.000000000 Z + created_at: 2025-02-04 20:47:39.777110000 Z + updated_at: 2025-02-04 20:47:39.777110000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -395,8 +395,8 @@ cards_022: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:36.000000000 Z - updated_at: 2024-10-09 13:48:36.000000000 Z + created_at: 2025-02-04 20:47:39.813789000 Z + updated_at: 2025-02-04 20:47:39.813789000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -413,8 +413,8 @@ cards_023: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:36.000000000 Z - updated_at: 2024-10-09 13:48:36.000000000 Z + created_at: 2025-02-04 20:47:39.874752000 Z + updated_at: 2025-02-04 20:47:39.874752000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -431,8 +431,8 @@ cards_024: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:36.000000000 Z - updated_at: 2024-10-09 13:48:36.000000000 Z + created_at: 2025-02-04 20:47:39.902981000 Z + updated_at: 2025-02-04 20:47:39.902981000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -449,8 +449,8 @@ cards_025: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:36.000000000 Z - updated_at: 2024-10-09 13:48:36.000000000 Z + created_at: 2025-02-04 20:47:39.930180000 Z + updated_at: 2025-02-04 20:47:39.930180000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -467,8 +467,8 @@ cards_026: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:36.000000000 Z - updated_at: 2024-10-09 13:48:36.000000000 Z + created_at: 2025-02-04 20:47:39.956751000 Z + updated_at: 2025-02-04 20:47:39.956751000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -485,8 +485,8 @@ cards_027: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:36.000000000 Z - updated_at: 2024-10-09 13:48:36.000000000 Z + created_at: 2025-02-04 20:47:40.001273000 Z + updated_at: 2025-02-04 20:47:40.001273000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -503,8 +503,8 @@ cards_028: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:37.000000000 Z - updated_at: 2024-10-09 13:48:37.000000000 Z + created_at: 2025-02-04 20:47:40.032544000 Z + updated_at: 2025-02-04 20:47:40.032544000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -521,8 +521,8 @@ cards_029: left_id: 3 right_id: 21 current_revision_id: - created_at: 2024-10-09 13:48:37.000000000 Z - updated_at: 2024-10-09 13:48:41.000000000 Z + created_at: 2025-02-04 20:47:40.168228000 Z + updated_at: 2025-02-04 20:47:46.952175000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -539,8 +539,8 @@ cards_030: left_id: 29 right_id: 28 current_revision_id: - created_at: 2024-10-09 13:48:37.000000000 Z - updated_at: 2024-10-09 13:48:37.000000000 Z + created_at: 2025-02-04 20:47:40.170797000 Z + updated_at: 2025-02-04 20:47:40.170797000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -560,8 +560,8 @@ cards_031: left_id: 3 right_id: 27 current_revision_id: - created_at: 2024-10-09 13:48:37.000000000 Z - updated_at: 2024-10-09 13:48:37.000000000 Z + created_at: 2025-02-04 20:47:40.373531000 Z + updated_at: 2025-02-04 20:47:40.373531000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -578,8 +578,8 @@ cards_032: left_id: 31 right_id: 28 current_revision_id: - created_at: 2024-10-09 13:48:37.000000000 Z - updated_at: 2024-10-09 13:48:37.000000000 Z + created_at: 2025-02-04 20:47:40.376368000 Z + updated_at: 2025-02-04 20:47:40.376368000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -599,8 +599,8 @@ cards_033: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:37.000000000 Z - updated_at: 2024-10-09 13:48:37.000000000 Z + created_at: 2025-02-04 20:47:40.518557000 Z + updated_at: 2025-02-04 20:47:40.518557000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -620,8 +620,8 @@ cards_034: left_id: 2 right_id: 12 current_revision_id: - created_at: 2024-10-09 13:48:37.000000000 Z - updated_at: 2024-10-09 13:48:37.000000000 Z + created_at: 2025-02-04 20:47:40.597333000 Z + updated_at: 2025-02-04 20:47:40.597333000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -639,8 +639,8 @@ cards_035: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:38.000000000 Z - updated_at: 2024-10-09 13:48:38.000000000 Z + created_at: 2025-02-04 20:47:40.663228000 Z + updated_at: 2025-02-04 20:47:40.739366000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -660,8 +660,8 @@ cards_036: left_id: 35 right_id: 12 current_revision_id: - created_at: 2024-10-09 13:48:38.000000000 Z - updated_at: 2024-10-09 13:48:38.000000000 Z + created_at: 2025-02-04 20:47:40.666559000 Z + updated_at: 2025-02-04 20:47:40.666559000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -678,8 +678,8 @@ cards_037: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:38.000000000 Z - updated_at: 2024-10-09 13:48:38.000000000 Z + created_at: 2025-02-04 20:47:40.767479000 Z + updated_at: 2025-02-04 20:47:40.803121000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -699,8 +699,8 @@ cards_038: left_id: 37 right_id: 12 current_revision_id: - created_at: 2024-10-09 13:48:38.000000000 Z - updated_at: 2024-10-09 13:48:38.000000000 Z + created_at: 2025-02-04 20:47:40.769627000 Z + updated_at: 2025-02-04 20:47:40.769627000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -717,8 +717,8 @@ cards_039: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:38.000000000 Z - updated_at: 2024-10-09 13:48:38.000000000 Z + created_at: 2025-02-04 20:47:40.815539000 Z + updated_at: 2025-02-04 20:47:40.847048000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -738,8 +738,8 @@ cards_040: left_id: 39 right_id: 12 current_revision_id: - created_at: 2024-10-09 13:48:38.000000000 Z - updated_at: 2024-10-09 13:48:38.000000000 Z + created_at: 2025-02-04 20:47:40.817602000 Z + updated_at: 2025-02-04 20:47:40.817602000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -756,8 +756,8 @@ cards_041: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:38.000000000 Z - updated_at: 2024-10-09 13:48:38.000000000 Z + created_at: 2025-02-04 20:47:40.861822000 Z + updated_at: 2025-02-04 20:47:40.895619000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -777,8 +777,8 @@ cards_042: left_id: 41 right_id: 12 current_revision_id: - created_at: 2024-10-09 13:48:38.000000000 Z - updated_at: 2024-10-09 13:48:38.000000000 Z + created_at: 2025-02-04 20:47:40.864254000 Z + updated_at: 2025-02-04 20:47:40.864254000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -795,8 +795,8 @@ cards_043: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:38.000000000 Z - updated_at: 2024-10-09 13:48:38.000000000 Z + created_at: 2025-02-04 20:47:40.906920000 Z + updated_at: 2025-02-04 20:47:40.947698000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -816,8 +816,8 @@ cards_044: left_id: 43 right_id: 12 current_revision_id: - created_at: 2024-10-09 13:48:38.000000000 Z - updated_at: 2024-10-09 13:48:38.000000000 Z + created_at: 2025-02-04 20:47:40.909071000 Z + updated_at: 2025-02-04 20:47:40.909071000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -834,8 +834,8 @@ cards_045: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:38.000000000 Z - updated_at: 2024-10-09 13:48:38.000000000 Z + created_at: 2025-02-04 20:47:41.010915000 Z + updated_at: 2025-02-04 20:47:41.010915000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -855,8 +855,8 @@ cards_046: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:38.000000000 Z - updated_at: 2024-10-09 13:48:38.000000000 Z + created_at: 2025-02-04 20:47:41.140851000 Z + updated_at: 2025-02-04 20:47:41.140851000 Z creator_id: 1 updater_id: 1 read_rule_class: "*self" @@ -873,8 +873,8 @@ cards_047: left_id: 46 right_id: 27 current_revision_id: - created_at: 2024-10-09 13:48:38.000000000 Z - updated_at: 2024-10-09 13:48:38.000000000 Z + created_at: 2025-02-04 20:47:41.163326000 Z + updated_at: 2025-02-04 20:47:41.163326000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -891,8 +891,8 @@ cards_048: left_id: 47 right_id: 9 current_revision_id: - created_at: 2024-10-09 13:48:38.000000000 Z - updated_at: 2024-10-09 13:48:38.000000000 Z + created_at: 2025-02-04 20:47:41.181824000 Z + updated_at: 2025-02-04 20:47:41.181824000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -909,8 +909,8 @@ cards_049: left_id: 7 right_id: 46 current_revision_id: - created_at: 2024-10-09 13:48:38.000000000 Z - updated_at: 2024-10-09 13:48:38.000000000 Z + created_at: 2025-02-04 20:47:41.928030000 Z + updated_at: 2025-02-04 20:47:41.928030000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -927,8 +927,8 @@ cards_050: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:38.000000000 Z - updated_at: 2024-10-09 13:48:38.000000000 Z + created_at: 2025-02-04 20:47:41.985443000 Z + updated_at: 2025-02-04 20:47:41.985443000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -945,8 +945,8 @@ cards_051: left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:38.000000000 Z - updated_at: 2024-10-09 13:48:38.000000000 Z + created_at: 2025-02-04 20:47:42.150112000 Z + updated_at: 2025-02-04 20:47:42.150112000 Z creator_id: 1 updater_id: 1 read_rule_class: "*self" @@ -965,8 +965,8 @@ cards_052: left_id: 51 right_id: 27 current_revision_id: - created_at: 2024-10-09 13:48:38.000000000 Z - updated_at: 2024-10-09 13:48:38.000000000 Z + created_at: 2025-02-04 20:47:42.160438000 Z + updated_at: 2025-02-04 20:47:42.160438000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -983,8 +983,8 @@ cards_053: left_id: 52 right_id: 9 current_revision_id: - created_at: 2024-10-09 13:48:38.000000000 Z - updated_at: 2024-10-09 13:48:38.000000000 Z + created_at: 2025-02-04 20:47:42.172115000 Z + updated_at: 2025-02-04 20:47:42.172115000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -995,14 +995,32 @@ cards_053: db_content: Anyone cards_054: id: 54 + name: "*noindex" + key: "*noindex" + codename: noindex + left_id: + right_id: + current_revision_id: + created_at: 2025-02-04 20:47:42.662871000 Z + updated_at: 2025-02-04 20:47:42.662871000 Z + creator_id: 1 + updater_id: 1 + read_rule_class: "*all" + read_rule_id: 10 + references_expired: + trash: 0 + type_id: 4 + db_content: '' +cards_055: + id: 55 name: key: codename: left_id: 4 right_id: 12 current_revision_id: - created_at: 2024-10-09 13:48:39.000000000 Z - updated_at: 2024-10-09 13:48:39.000000000 Z + created_at: 2025-02-04 20:47:42.943010000 Z + updated_at: 2025-02-04 20:47:42.943010000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -1011,16 +1029,16 @@ cards_054: trash: 0 type_id: 2 db_content: "

Lists list one or more other cards. [[http://decko.org/:list|more]]

" -cards_055: - id: 55 +cards_056: + id: 56 name: Pointer key: pointer codename: pointer left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:39.000000000 Z - updated_at: 2024-10-09 13:48:39.000000000 Z + created_at: 2025-02-04 20:47:43.049677000 Z + updated_at: 2025-02-04 20:47:43.233563000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -1032,16 +1050,16 @@ cards_055: {{+:description|content}} {{_|add_button}}{{_|configure_button}} {{+:type+:by_name|content}} -cards_056: - id: 56 +cards_057: + id: 57 name: key: codename: - left_id: 55 + left_id: 56 right_id: 12 current_revision_id: - created_at: 2024-10-09 13:48:39.000000000 Z - updated_at: 2024-10-09 13:48:39.000000000 Z + created_at: 2025-02-04 20:47:43.101792000 Z + updated_at: 2025-02-04 20:47:43.101792000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -1050,16 +1068,16 @@ cards_056: trash: 0 type_id: 2 db_content: "

Pointers point another card. [[http://decko.org/:pointer|more]]

" -cards_057: - id: 57 +cards_058: + id: 58 name: Nest list key: nest_list codename: nest_list left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:39.000000000 Z - updated_at: 2024-10-09 13:48:39.000000000 Z + created_at: 2025-02-04 20:47:43.253121000 Z + updated_at: 2025-02-04 20:47:43.253121000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -1071,16 +1089,16 @@ cards_057: {{+:description|content}} {{_|add_button}}{{_|configure_button}} {{+:type+:by_name|content}} -cards_058: - id: 58 +cards_059: + id: 59 name: Link list key: link_list codename: link_list left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:39.000000000 Z - updated_at: 2024-10-09 13:48:39.000000000 Z + created_at: 2025-02-04 20:47:43.358701000 Z + updated_at: 2025-02-04 20:47:43.358701000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -1092,16 +1110,16 @@ cards_058: {{+:description|content}} {{_|add_button}}{{_|configure_button}} {{+:type+:by_name|content}} -cards_059: - id: 59 +cards_060: + id: 60 name: "*content options" key: "*content_option" codename: content_options left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:39.000000000 Z - updated_at: 2024-10-09 13:48:39.000000000 Z + created_at: 2025-02-04 20:47:43.501481000 Z + updated_at: 2025-02-04 20:47:43.501481000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -1110,16 +1128,16 @@ cards_059: trash: 0 type_id: 6 db_content: '' -cards_060: - id: 60 +cards_061: + id: 61 name: "*content option view" key: "*content_option_view" codename: content_option_view left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:39.000000000 Z - updated_at: 2024-10-09 13:48:39.000000000 Z + created_at: 2025-02-04 20:47:43.780604000 Z + updated_at: 2025-02-04 20:47:43.780604000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -1128,16 +1146,16 @@ cards_060: trash: 0 type_id: 6 db_content: '' -cards_061: - id: 61 +cards_062: + id: 62 name: key: codename: left_id: 28 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:48:39.000000000 Z - updated_at: 2024-10-09 13:48:39.000000000 Z + created_at: 2025-02-04 20:47:44.245022000 Z + updated_at: 2025-02-04 20:47:44.245022000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -1146,34 +1164,34 @@ cards_061: trash: 0 type_id: 5 db_content: '' -cards_062: - id: 62 +cards_063: + id: 63 name: key: codename: - left_id: 61 + left_id: 62 right_id: 8 current_revision_id: - created_at: 2024-10-09 13:48:39.000000000 Z - updated_at: 2024-10-09 13:48:39.000000000 Z + created_at: 2025-02-04 20:47:44.253018000 Z + updated_at: 2025-02-04 20:47:44.253018000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 57 + type_id: 58 db_content: '' -cards_063: - id: 63 +cards_064: + id: 64 name: key: codename: left_id: 7 - right_id: 60 + right_id: 61 current_revision_id: - created_at: 2024-10-09 13:48:39.000000000 Z - updated_at: 2024-10-09 13:48:39.000000000 Z + created_at: 2025-02-04 20:47:44.337835000 Z + updated_at: 2025-02-04 20:47:44.337835000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -1182,16 +1200,16 @@ cards_063: trash: 0 type_id: 43 db_content: smart_label -cards_064: - id: 64 +cards_065: + id: 65 name: Markdown key: markdown codename: markdown left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:39.000000000 Z - updated_at: 2024-10-09 13:48:39.000000000 Z + created_at: 2025-02-04 20:47:44.380081000 Z + updated_at: 2025-02-04 20:47:44.380081000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -1203,16 +1221,16 @@ cards_064: {{+:description|content}} {{_|add_button}}{{_|configure_button}} {{+:type+:by_name|content}} -cards_065: - id: 65 +cards_066: + id: 66 name: "*create" key: "*create" codename: create left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:39.000000000 Z - updated_at: 2024-10-09 13:48:39.000000000 Z + created_at: 2025-02-04 20:47:44.496443000 Z + updated_at: 2025-02-04 20:47:44.496443000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -1221,16 +1239,16 @@ cards_065: trash: 0 type_id: 6 db_content: '' -cards_066: - id: 66 +cards_067: + id: 67 name: "*update" key: "*update" codename: update left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:39.000000000 Z - updated_at: 2024-10-09 13:48:39.000000000 Z + created_at: 2025-02-04 20:47:44.624404000 Z + updated_at: 2025-02-04 20:47:44.624404000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -1239,16 +1257,16 @@ cards_066: trash: 0 type_id: 6 db_content: '' -cards_067: - id: 67 +cards_068: + id: 68 name: "*delete" key: "*delete" codename: delete left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:39.000000000 Z - updated_at: 2024-10-09 13:48:39.000000000 Z + created_at: 2025-02-04 20:47:44.717839000 Z + updated_at: 2025-02-04 20:47:44.717839000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -1257,24 +1275,6 @@ cards_067: trash: 0 type_id: 6 db_content: '' -cards_068: - id: 68 - name: - key: - codename: - left_id: 7 - right_id: 65 - current_revision_id: - created_at: 2024-10-09 13:48:40.000000000 Z - updated_at: 2024-10-09 13:48:40.000000000 Z - creator_id: 1 - updater_id: 1 - read_rule_class: "*all plus" - read_rule_id: 10 - references_expired: - trash: 0 - type_id: 4 - db_content: Anyone Signed In cards_069: id: 69 name: @@ -1283,8 +1283,8 @@ cards_069: left_id: 7 right_id: 66 current_revision_id: - created_at: 2024-10-09 13:48:40.000000000 Z - updated_at: 2024-10-09 13:48:40.000000000 Z + created_at: 2025-02-04 20:47:45.099037000 Z + updated_at: 2025-02-04 20:47:45.099037000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -1301,8 +1301,8 @@ cards_070: left_id: 7 right_id: 67 current_revision_id: - created_at: 2024-10-09 13:48:40.000000000 Z - updated_at: 2024-10-09 13:48:40.000000000 Z + created_at: 2025-02-04 20:47:45.309823000 Z + updated_at: 2025-02-04 20:47:45.309823000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -1316,11 +1316,11 @@ cards_071: name: key: codename: - left_id: 20 - right_id: 9 + left_id: 7 + right_id: 68 current_revision_id: - created_at: 2024-10-09 13:48:40.000000000 Z - updated_at: 2024-10-09 13:48:40.000000000 Z + created_at: 2025-02-04 20:47:45.316648000 Z + updated_at: 2025-02-04 20:47:45.316648000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -1328,17 +1328,17 @@ cards_071: references_expired: trash: 0 type_id: 4 - db_content: _left + db_content: Anyone Signed In cards_072: id: 72 name: key: codename: left_id: 20 - right_id: 65 + right_id: 9 current_revision_id: - created_at: 2024-10-09 13:48:40.000000000 Z - updated_at: 2024-10-09 13:48:40.000000000 Z + created_at: 2025-02-04 20:47:45.455314000 Z + updated_at: 2025-02-04 20:47:45.455314000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -1355,8 +1355,8 @@ cards_073: left_id: 20 right_id: 66 current_revision_id: - created_at: 2024-10-09 13:48:40.000000000 Z - updated_at: 2024-10-09 13:48:40.000000000 Z + created_at: 2025-02-04 20:47:45.474278000 Z + updated_at: 2025-02-04 20:47:45.474278000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -1373,8 +1373,8 @@ cards_074: left_id: 20 right_id: 67 current_revision_id: - created_at: 2024-10-09 13:48:40.000000000 Z - updated_at: 2024-10-09 13:48:40.000000000 Z + created_at: 2025-02-04 20:47:45.478156000 Z + updated_at: 2025-02-04 20:47:45.478156000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -1388,11 +1388,11 @@ cards_075: name: key: codename: - left_id: 22 - right_id: 65 + left_id: 20 + right_id: 68 current_revision_id: - created_at: 2024-10-09 13:48:40.000000000 Z - updated_at: 2024-10-09 13:48:40.000000000 Z + created_at: 2025-02-04 20:47:45.481817000 Z + updated_at: 2025-02-04 20:47:45.481817000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -1400,7 +1400,7 @@ cards_075: references_expired: trash: 0 type_id: 4 - db_content: Administrator + db_content: _left cards_076: id: 76 name: @@ -1409,8 +1409,8 @@ cards_076: left_id: 22 right_id: 66 current_revision_id: - created_at: 2024-10-09 13:48:40.000000000 Z - updated_at: 2024-10-09 13:48:40.000000000 Z + created_at: 2025-02-04 20:47:46.449145000 Z + updated_at: 2025-02-04 20:47:46.449145000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -1427,8 +1427,8 @@ cards_077: left_id: 22 right_id: 67 current_revision_id: - created_at: 2024-10-09 13:48:40.000000000 Z - updated_at: 2024-10-09 13:48:40.000000000 Z + created_at: 2025-02-04 20:47:46.480819000 Z + updated_at: 2025-02-04 20:47:46.480819000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -1442,11 +1442,11 @@ cards_078: name: key: codename: - left_id: 23 - right_id: 65 + left_id: 22 + right_id: 68 current_revision_id: - created_at: 2024-10-09 13:48:40.000000000 Z - updated_at: 2024-10-09 13:48:40.000000000 Z + created_at: 2025-02-04 20:47:46.485515000 Z + updated_at: 2025-02-04 20:47:46.485515000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -1454,7 +1454,7 @@ cards_078: references_expired: trash: 0 type_id: 4 - db_content: Shark + db_content: Administrator cards_079: id: 79 name: @@ -1463,8 +1463,8 @@ cards_079: left_id: 23 right_id: 66 current_revision_id: - created_at: 2024-10-09 13:48:40.000000000 Z - updated_at: 2024-10-09 13:48:40.000000000 Z + created_at: 2025-02-04 20:47:46.564069000 Z + updated_at: 2025-02-04 20:47:46.564069000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -1481,8 +1481,8 @@ cards_080: left_id: 23 right_id: 67 current_revision_id: - created_at: 2024-10-09 13:48:40.000000000 Z - updated_at: 2024-10-09 13:48:40.000000000 Z + created_at: 2025-02-04 20:47:46.569225000 Z + updated_at: 2025-02-04 20:47:46.569225000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -1496,47 +1496,47 @@ cards_081: name: key: codename: - left_id: 39 - right_id: 21 + left_id: 23 + right_id: 68 current_revision_id: - created_at: 2024-10-09 13:48:41.000000000 Z - updated_at: 2024-10-09 13:48:41.000000000 Z + created_at: 2025-02-04 20:47:46.571842000 Z + updated_at: 2025-02-04 20:47:46.571842000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 5 - db_content: '' + type_id: 4 + db_content: Shark cards_082: id: 82 name: key: codename: - left_id: 81 - right_id: 65 + left_id: 39 + right_id: 21 current_revision_id: - created_at: 2024-10-09 13:48:41.000000000 Z - updated_at: 2024-10-09 13:48:41.000000000 Z + created_at: 2025-02-04 20:47:46.661806000 Z + updated_at: 2025-02-04 20:47:46.661806000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 4 - db_content: Shark + type_id: 5 + db_content: '' cards_083: id: 83 name: key: codename: - left_id: 81 + left_id: 82 right_id: 66 current_revision_id: - created_at: 2024-10-09 13:48:41.000000000 Z - updated_at: 2024-10-09 13:48:41.000000000 Z + created_at: 2025-02-04 20:47:46.725361000 Z + updated_at: 2025-02-04 20:47:46.725361000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -1550,11 +1550,11 @@ cards_084: name: key: codename: - left_id: 81 + left_id: 82 right_id: 67 current_revision_id: - created_at: 2024-10-09 13:48:41.000000000 Z - updated_at: 2024-10-09 13:48:41.000000000 Z + created_at: 2025-02-04 20:47:46.732682000 Z + updated_at: 2025-02-04 20:47:46.732682000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -1568,11 +1568,11 @@ cards_085: name: key: codename: - left_id: 29 - right_id: 65 + left_id: 82 + right_id: 68 current_revision_id: - created_at: 2024-10-09 13:48:41.000000000 Z - updated_at: 2024-10-09 13:48:41.000000000 Z + created_at: 2025-02-04 20:47:46.738071000 Z + updated_at: 2025-02-04 20:47:46.738071000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -1589,8 +1589,8 @@ cards_086: left_id: 29 right_id: 66 current_revision_id: - created_at: 2024-10-09 13:48:41.000000000 Z - updated_at: 2024-10-09 13:48:41.000000000 Z + created_at: 2025-02-04 20:47:47.010994000 Z + updated_at: 2025-02-04 20:47:47.010994000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -1607,8 +1607,8 @@ cards_087: left_id: 29 right_id: 67 current_revision_id: - created_at: 2024-10-09 13:48:41.000000000 Z - updated_at: 2024-10-09 13:48:41.000000000 Z + created_at: 2025-02-04 20:47:47.021793000 Z + updated_at: 2025-02-04 20:47:47.021793000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -1619,14 +1619,32 @@ cards_087: db_content: Shark cards_088: id: 88 + name: + key: + codename: + left_id: 29 + right_id: 68 + current_revision_id: + created_at: 2025-02-04 20:47:47.029924000 Z + updated_at: 2025-02-04 20:47:47.029924000 Z + creator_id: 1 + updater_id: 1 + read_rule_class: "*all plus" + read_rule_id: 10 + references_expired: + trash: 0 + type_id: 4 + db_content: Shark +cards_089: + id: 89 name: "*guide" key: "*guide" codename: guide left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:41.000000000 Z - updated_at: 2024-10-09 13:48:41.000000000 Z + created_at: 2025-02-04 20:47:47.185069000 Z + updated_at: 2025-02-04 20:47:47.185069000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -1635,16 +1653,16 @@ cards_088: trash: 0 type_id: 6 db_content: '' -cards_089: - id: 89 +cards_090: + id: 90 name: "*help" key: "*help" codename: help left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:41.000000000 Z - updated_at: 2024-10-09 13:48:41.000000000 Z + created_at: 2025-02-04 20:47:47.386664000 Z + updated_at: 2025-02-04 20:47:47.386664000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -1653,16 +1671,16 @@ cards_089: trash: 0 type_id: 6 db_content: '' -cards_090: - id: 90 +cards_091: + id: 91 name: key: codename: - left_id: 89 + left_id: 90 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:48:41.000000000 Z - updated_at: 2024-10-09 13:48:41.000000000 Z + created_at: 2025-02-04 20:47:47.392012000 Z + updated_at: 2025-02-04 20:47:47.392012000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -1671,16 +1689,16 @@ cards_090: trash: 0 type_id: 5 db_content: '' -cards_091: - id: 91 +cards_092: + id: 92 name: key: codename: - left_id: 90 - right_id: 65 + left_id: 91 + right_id: 66 current_revision_id: - created_at: 2024-10-09 13:48:41.000000000 Z - updated_at: 2024-10-09 13:48:41.000000000 Z + created_at: 2025-02-04 20:47:47.395663000 Z + updated_at: 2025-02-04 20:47:47.395663000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -1689,16 +1707,16 @@ cards_091: trash: 0 type_id: 4 db_content: help_desk -cards_092: - id: 92 +cards_093: + id: 93 name: key: codename: - left_id: 90 - right_id: 66 + left_id: 91 + right_id: 67 current_revision_id: - created_at: 2024-10-09 13:48:41.000000000 Z - updated_at: 2024-10-09 13:48:41.000000000 Z + created_at: 2025-02-04 20:47:47.399139000 Z + updated_at: 2025-02-04 20:47:47.399139000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -1707,16 +1725,16 @@ cards_092: trash: 0 type_id: 4 db_content: help_desk -cards_093: - id: 93 +cards_094: + id: 94 name: key: codename: - left_id: 90 - right_id: 67 + left_id: 91 + right_id: 68 current_revision_id: - created_at: 2024-10-09 13:48:41.000000000 Z - updated_at: 2024-10-09 13:48:41.000000000 Z + created_at: 2025-02-04 20:47:47.403618000 Z + updated_at: 2025-02-04 20:47:47.403618000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -1725,45 +1743,45 @@ cards_093: trash: 0 type_id: 4 db_content: help_desk -cards_094: - id: 94 +cards_095: + id: 95 name: key: codename: left_id: 7 - right_id: 88 + right_id: 89 current_revision_id: - created_at: 2024-10-09 13:48:41.000000000 Z - updated_at: 2024-10-09 13:48:41.000000000 Z + created_at: 2025-02-04 20:47:47.693342000 Z + updated_at: 2025-02-04 20:47:47.693342000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 64 + type_id: 65 db_content: "#### Editing Guide\n\nThis default guide will appear in the full editor view of any card \nwithout more specific guidance. You can use it to put forward principles of style, \nrules of conduct, or any other help text you think may be of use to persons editing \ncontent.\n\nGuide content can be edited in [[*guide|*guide rules]].\n" -cards_095: - id: 95 +cards_096: + id: 96 name: key: codename: left_id: 29 - right_id: 88 + right_id: 89 current_revision_id: - created_at: 2024-10-09 13:48:41.000000000 Z - updated_at: 2024-10-09 13:48:41.000000000 Z + created_at: 2025-02-04 20:47:47.840529000 Z + updated_at: 2025-02-04 20:47:47.840529000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 64 + type_id: 65 db_content: "Every Decko card has one and only one __type__.\n\n[[RichText]], [[List]], [[Image]], [[Search]], [[JavaScript]], [[User]]... All of these are types. \nTo see a given card's type, click its ellipses icon ({{\\_|board_link}})\nto go to @@ -1780,23 +1798,23 @@ cards_095: or edit\nthe type's structure rule in the cardboard of _either_ the Cardtype card _or_ of any of the cards of that type.\n\nA Cardtype card cannot be deleted as long as there are instances of that type." -cards_096: - id: 96 +cards_097: + id: 97 name: key: codename: - left_id: 61 - right_id: 88 + left_id: 62 + right_id: 89 current_revision_id: - created_at: 2024-10-09 13:48:41.000000000 Z - updated_at: 2024-10-09 13:48:41.000000000 Z + created_at: 2025-02-04 20:47:47.988267000 Z + updated_at: 2025-02-04 20:47:47.988267000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 64 + type_id: 65 db_content: "[[*structure]] rules govern the type and content of cards in a given set. The content of\nevery card in the set is a copy of the structure rule's content.\n\nYou can create powerful card structures using [[http://decko.org/contextual_names|contextual @@ -1808,16 +1826,16 @@ cards_096: the curly bracket\nicon (\\{{}}). This tool will help you create and configure nested fields, both through nest syntax \noptions (which only apply to the fields when presented within the structure) and through rules \n(which apply in any context)." -cards_097: - id: 97 +cards_098: + id: 98 name: Search key: search codename: search_type left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:41.000000000 Z - updated_at: 2024-10-09 13:48:41.000000000 Z + created_at: 2025-02-04 20:47:48.143996000 Z + updated_at: 2025-02-04 20:47:48.340925000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -1829,16 +1847,16 @@ cards_097: {{+:description|content}} {{_|add_button}}{{_|configure_button}} {{+:type+:by_name|content}} -cards_098: - id: 98 +cards_099: + id: 99 name: key: codename: - left_id: 97 + left_id: 98 right_id: 12 current_revision_id: - created_at: 2024-10-09 13:48:41.000000000 Z - updated_at: 2024-10-09 13:48:41.000000000 Z + created_at: 2025-02-04 20:47:48.179396000 Z + updated_at: 2025-02-04 20:47:48.179396000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -1848,88 +1866,88 @@ cards_098: type_id: 2 db_content: "

\n Searches return a list of cards using \n [[http://decko.org/CQL|CQL, the Card Query Language]]. \n See the [[http://decko.org/CQL_syntax|syntax documentation]].\n

" -cards_099: - id: 99 +cards_100: + id: 100 name: "*search" key: "*search" codename: search left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:42.000000000 Z - updated_at: 2024-10-09 13:48:42.000000000 Z + created_at: 2025-02-04 20:47:48.400619000 Z + updated_at: 2025-02-04 20:47:48.400619000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 97 + type_id: 98 db_content: '{"match":"$keyword", "sort":"relevance"}' -cards_100: - id: 100 +cards_101: + id: 101 name: "*recent" key: "*recent" codename: recent left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:42.000000000 Z - updated_at: 2024-10-09 13:48:42.000000000 Z + created_at: 2025-02-04 20:47:49.341375000 Z + updated_at: 2025-02-04 20:47:49.341375000 Z creator_id: 1 updater_id: 1 read_rule_class: "*self" - read_rule_id: 102 + read_rule_id: 103 references_expired: trash: 0 - type_id: 97 + type_id: 98 db_content: '' -cards_101: - id: 101 +cards_102: + id: 102 name: key: codename: - left_id: 100 + left_id: 101 right_id: 27 current_revision_id: - created_at: 2024-10-09 13:48:42.000000000 Z - updated_at: 2024-10-09 13:48:42.000000000 Z + created_at: 2025-02-04 20:47:49.372218000 Z + updated_at: 2025-02-04 20:47:49.372218000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" - read_rule_id: 102 + read_rule_id: 103 references_expired: trash: 0 type_id: 5 db_content: '' -cards_102: - id: 102 +cards_103: + id: 103 name: key: codename: - left_id: 101 + left_id: 102 right_id: 9 current_revision_id: - created_at: 2024-10-09 13:48:42.000000000 Z - updated_at: 2024-10-09 13:48:42.000000000 Z + created_at: 2025-02-04 20:47:49.377572000 Z + updated_at: 2025-02-04 20:47:49.377572000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" - read_rule_id: 102 + read_rule_id: 103 references_expired: trash: 0 type_id: 4 db_content: Anyone -cards_103: - id: 103 +cards_104: + id: 104 name: "*count" key: "*count" codename: count left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:42.000000000 Z - updated_at: 2024-10-09 13:48:42.000000000 Z + created_at: 2025-02-04 20:47:49.664419000 Z + updated_at: 2025-02-04 20:47:49.664419000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -1938,16 +1956,16 @@ cards_103: trash: 0 type_id: 2 db_content: '' -cards_104: - id: 104 +cards_105: + id: 105 name: by name key: by_name codename: by_name left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:42.000000000 Z - updated_at: 2024-10-09 13:48:42.000000000 Z + created_at: 2025-02-04 20:47:49.886869000 Z + updated_at: 2025-02-04 20:47:49.886869000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -1956,16 +1974,16 @@ cards_104: trash: 0 type_id: 2 db_content: '' -cards_105: - id: 105 +cards_106: + id: 106 name: by create key: by_create codename: by_create left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:42.000000000 Z - updated_at: 2024-10-09 13:48:42.000000000 Z + created_at: 2025-02-04 20:47:50.085416000 Z + updated_at: 2025-02-04 20:47:50.085416000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -1974,16 +1992,16 @@ cards_105: trash: 0 type_id: 2 db_content: '' -cards_106: - id: 106 +cards_107: + id: 107 name: by update key: by_update codename: by_update left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:42.000000000 Z - updated_at: 2024-10-09 13:48:42.000000000 Z + created_at: 2025-02-04 20:47:50.213328000 Z + updated_at: 2025-02-04 20:47:50.213328000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -1992,16 +2010,16 @@ cards_106: trash: 0 type_id: 2 db_content: '' -cards_107: - id: 107 +cards_108: + id: 108 name: "*last edited" key: "*last_edited" codename: last_edited left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:42.000000000 Z - updated_at: 2024-10-09 13:48:42.000000000 Z + created_at: 2025-02-04 20:47:50.305261000 Z + updated_at: 2025-02-04 20:47:50.305261000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -2010,16 +2028,16 @@ cards_107: trash: 0 type_id: 2 db_content: '' -cards_108: - id: 108 +cards_109: + id: 109 name: "*creator" key: "*creator" codename: creator left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:42.000000000 Z - updated_at: 2024-10-09 13:48:42.000000000 Z + created_at: 2025-02-04 20:47:50.372911000 Z + updated_at: 2025-02-04 20:47:50.372911000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -2028,16 +2046,16 @@ cards_108: trash: 0 type_id: 2 db_content: '' -cards_109: - id: 109 +cards_110: + id: 110 name: "*created" key: "*created" codename: created left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:42.000000000 Z - updated_at: 2024-10-09 13:48:42.000000000 Z + created_at: 2025-02-04 20:47:50.535824000 Z + updated_at: 2025-02-04 20:47:50.535824000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -2046,16 +2064,16 @@ cards_109: trash: 0 type_id: 2 db_content: '' -cards_110: - id: 110 +cards_111: + id: 111 name: key: codename: - left_id: 109 + left_id: 110 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:48:42.000000000 Z - updated_at: 2024-10-09 13:48:42.000000000 Z + created_at: 2025-02-04 20:47:50.541327000 Z + updated_at: 2025-02-04 20:47:50.541327000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2064,16 +2082,16 @@ cards_110: trash: 0 type_id: 5 db_content: '' -cards_111: - id: 111 +cards_112: + id: 112 name: key: codename: - left_id: 110 - right_id: 89 + left_id: 111 + right_id: 90 current_revision_id: - created_at: 2024-10-09 13:48:42.000000000 Z - updated_at: 2024-10-09 13:48:42.000000000 Z + created_at: 2025-02-04 20:47:50.545020000 Z + updated_at: 2025-02-04 20:47:50.614393000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2082,16 +2100,16 @@ cards_111: trash: 0 type_id: 2 db_content: Cards created by {{_left|name}}. -cards_112: - id: 112 +cards_113: + id: 113 name: "*edited" key: "*edited" codename: edited left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:42.000000000 Z - updated_at: 2024-10-09 13:48:42.000000000 Z + created_at: 2025-02-04 20:47:50.817038000 Z + updated_at: 2025-02-04 20:47:50.817038000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -2100,16 +2118,16 @@ cards_112: trash: 0 type_id: 2 db_content: '' -cards_113: - id: 113 +cards_114: + id: 114 name: key: codename: - left_id: 112 + left_id: 113 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:48:42.000000000 Z - updated_at: 2024-10-09 13:48:42.000000000 Z + created_at: 2025-02-04 20:47:50.821266000 Z + updated_at: 2025-02-04 20:47:50.821266000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2118,16 +2136,16 @@ cards_113: trash: 0 type_id: 5 db_content: '' -cards_114: - id: 114 +cards_115: + id: 115 name: key: codename: - left_id: 113 - right_id: 89 + left_id: 114 + right_id: 90 current_revision_id: - created_at: 2024-10-09 13:48:42.000000000 Z - updated_at: 2024-10-09 13:48:42.000000000 Z + created_at: 2025-02-04 20:47:50.825190000 Z + updated_at: 2025-02-04 20:47:50.885351000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2136,16 +2154,16 @@ cards_114: trash: 0 type_id: 2 db_content: Cards edited by {{_left|name}}. -cards_115: - id: 115 +cards_116: + id: 116 name: "*editors" key: "*editor" codename: editors left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:42.000000000 Z - updated_at: 2024-10-09 13:48:42.000000000 Z + created_at: 2025-02-04 20:47:50.918786000 Z + updated_at: 2025-02-04 20:47:50.918786000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -2154,16 +2172,16 @@ cards_115: trash: 0 type_id: 2 db_content: '' -cards_116: - id: 116 +cards_117: + id: 117 name: key: codename: - left_id: 115 + left_id: 116 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:48:42.000000000 Z - updated_at: 2024-10-09 13:48:42.000000000 Z + created_at: 2025-02-04 20:47:50.923579000 Z + updated_at: 2025-02-04 20:47:50.923579000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2172,16 +2190,16 @@ cards_116: trash: 0 type_id: 5 db_content: '' -cards_117: - id: 117 +cards_118: + id: 118 name: key: codename: - left_id: 116 - right_id: 89 + left_id: 117 + right_id: 90 current_revision_id: - created_at: 2024-10-09 13:48:42.000000000 Z - updated_at: 2024-10-09 13:48:42.000000000 Z + created_at: 2025-02-04 20:47:50.927701000 Z + updated_at: 2025-02-04 20:47:50.990434000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2190,16 +2208,16 @@ cards_117: trash: 0 type_id: 2 db_content: Users who have edited {{_left|name}}. -cards_118: - id: 118 +cards_119: + id: 119 name: "*children" key: "*child" codename: children left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:43.000000000 Z - updated_at: 2024-10-09 13:48:43.000000000 Z + created_at: 2025-02-04 20:47:51.016776000 Z + updated_at: 2025-02-04 20:47:51.016776000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -2208,16 +2226,16 @@ cards_118: trash: 0 type_id: 2 db_content: '' -cards_119: - id: 119 +cards_120: + id: 120 name: key: codename: - left_id: 118 + left_id: 119 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:48:43.000000000 Z - updated_at: 2024-10-09 13:48:43.000000000 Z + created_at: 2025-02-04 20:47:51.021525000 Z + updated_at: 2025-02-04 20:47:51.021525000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2226,16 +2244,16 @@ cards_119: trash: 0 type_id: 5 db_content: '' -cards_120: - id: 120 +cards_121: + id: 121 name: key: codename: - left_id: 119 - right_id: 89 + left_id: 120 + right_id: 90 current_revision_id: - created_at: 2024-10-09 13:48:43.000000000 Z - updated_at: 2024-10-09 13:48:43.000000000 Z + created_at: 2025-02-04 20:47:51.025729000 Z + updated_at: 2025-02-04 20:47:51.215808000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2245,16 +2263,16 @@ cards_120: type_id: 2 db_content: "

\n Cards formed by \"mating\" {{_left|name}} with another card. \n eg\\: \"{{_left|name}}+mate\".\n

" -cards_121: - id: 121 +cards_122: + id: 122 name: "*mates" key: "*mate" codename: mates left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:43.000000000 Z - updated_at: 2024-10-09 13:48:43.000000000 Z + created_at: 2025-02-04 20:47:51.241591000 Z + updated_at: 2025-02-04 20:47:51.241591000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -2263,16 +2281,16 @@ cards_121: trash: 0 type_id: 2 db_content: '' -cards_122: - id: 122 +cards_123: + id: 123 name: key: codename: - left_id: 121 + left_id: 122 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:48:43.000000000 Z - updated_at: 2024-10-09 13:48:43.000000000 Z + created_at: 2025-02-04 20:47:51.250090000 Z + updated_at: 2025-02-04 20:47:51.250090000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2281,16 +2299,16 @@ cards_122: trash: 0 type_id: 5 db_content: '' -cards_123: - id: 123 +cards_124: + id: 124 name: key: codename: - left_id: 122 - right_id: 89 + left_id: 123 + right_id: 90 current_revision_id: - created_at: 2024-10-09 13:48:43.000000000 Z - updated_at: 2024-10-09 13:48:43.000000000 Z + created_at: 2025-02-04 20:47:51.253637000 Z + updated_at: 2025-02-04 20:47:51.374864000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2300,16 +2318,16 @@ cards_123: type_id: 2 db_content: "

\n If there is a card named \"X+{{_left|name}}\", \n then X is a mate of {{_left|name}}.\n

" -cards_124: - id: 124 +cards_125: + id: 125 name: "*nested by" key: "*nested_by" codename: nested_by left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:43.000000000 Z - updated_at: 2024-10-09 13:48:43.000000000 Z + created_at: 2025-02-04 20:47:51.412537000 Z + updated_at: 2025-02-04 20:47:51.412537000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -2318,16 +2336,16 @@ cards_124: trash: 0 type_id: 2 db_content: '' -cards_125: - id: 125 +cards_126: + id: 126 name: key: codename: - left_id: 124 + left_id: 125 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:48:43.000000000 Z - updated_at: 2024-10-09 13:48:43.000000000 Z + created_at: 2025-02-04 20:47:51.422212000 Z + updated_at: 2025-02-04 20:47:51.422212000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2336,16 +2354,16 @@ cards_125: trash: 0 type_id: 5 db_content: '' -cards_126: - id: 126 +cards_127: + id: 127 name: key: codename: - left_id: 125 - right_id: 89 + left_id: 126 + right_id: 90 current_revision_id: - created_at: 2024-10-09 13:48:43.000000000 Z - updated_at: 2024-10-09 13:48:43.000000000 Z + created_at: 2025-02-04 20:47:51.426695000 Z + updated_at: 2025-02-04 20:47:51.624599000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2354,16 +2372,16 @@ cards_126: trash: 0 type_id: 2 db_content: "

Cards that refer to {{_left|name}}.

" -cards_127: - id: 127 +cards_128: + id: 128 name: "*linked to by" key: "*linked_to_by" codename: linked_to_by left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:43.000000000 Z - updated_at: 2024-10-09 13:48:43.000000000 Z + created_at: 2025-02-04 20:47:51.652355000 Z + updated_at: 2025-02-04 20:47:51.652355000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -2372,16 +2390,16 @@ cards_127: trash: 0 type_id: 2 db_content: '' -cards_128: - id: 128 +cards_129: + id: 129 name: key: codename: - left_id: 127 + left_id: 128 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:48:43.000000000 Z - updated_at: 2024-10-09 13:48:43.000000000 Z + created_at: 2025-02-04 20:47:51.656208000 Z + updated_at: 2025-02-04 20:47:51.656208000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2390,16 +2408,16 @@ cards_128: trash: 0 type_id: 5 db_content: '' -cards_129: - id: 129 +cards_130: + id: 130 name: key: codename: - left_id: 128 - right_id: 89 + left_id: 129 + right_id: 90 current_revision_id: - created_at: 2024-10-09 13:48:43.000000000 Z - updated_at: 2024-10-09 13:48:43.000000000 Z + created_at: 2025-02-04 20:47:51.659222000 Z + updated_at: 2025-02-04 20:47:51.732277000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2408,16 +2426,16 @@ cards_129: trash: 0 type_id: 2 db_content: "

Cards that link to {{_left|name}}.

" -cards_130: - id: 130 +cards_131: + id: 131 name: "*nests" key: "*nest" codename: nests left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:43.000000000 Z - updated_at: 2024-10-09 13:48:43.000000000 Z + created_at: 2025-02-04 20:47:51.770235000 Z + updated_at: 2025-02-04 20:47:51.770235000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -2426,16 +2444,16 @@ cards_130: trash: 0 type_id: 2 db_content: '' -cards_131: - id: 131 +cards_132: + id: 132 name: key: codename: - left_id: 130 + left_id: 131 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:48:43.000000000 Z - updated_at: 2024-10-09 13:48:43.000000000 Z + created_at: 2025-02-04 20:47:51.777063000 Z + updated_at: 2025-02-04 20:47:51.777063000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2444,16 +2462,16 @@ cards_131: trash: 0 type_id: 5 db_content: '' -cards_132: - id: 132 +cards_133: + id: 133 name: key: codename: - left_id: 131 - right_id: 89 + left_id: 132 + right_id: 90 current_revision_id: - created_at: 2024-10-09 13:48:43.000000000 Z - updated_at: 2024-10-09 13:48:43.000000000 Z + created_at: 2025-02-04 20:47:51.803754000 Z + updated_at: 2025-02-04 20:47:52.115182000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2462,16 +2480,16 @@ cards_132: trash: 0 type_id: 2 db_content: "

Cards nested within {{_left|name}}

" -cards_133: - id: 133 +cards_134: + id: 134 name: "*links to" key: "*link_to" codename: links_to left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:43.000000000 Z - updated_at: 2024-10-09 13:48:43.000000000 Z + created_at: 2025-02-04 20:47:52.146480000 Z + updated_at: 2025-02-04 20:47:52.146480000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -2480,16 +2498,16 @@ cards_133: trash: 0 type_id: 2 db_content: '' -cards_134: - id: 134 +cards_135: + id: 135 name: key: codename: - left_id: 133 + left_id: 134 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:48:43.000000000 Z - updated_at: 2024-10-09 13:48:43.000000000 Z + created_at: 2025-02-04 20:47:52.149941000 Z + updated_at: 2025-02-04 20:47:52.149941000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2498,16 +2516,16 @@ cards_134: trash: 0 type_id: 5 db_content: '' -cards_135: - id: 135 +cards_136: + id: 136 name: key: codename: - left_id: 134 - right_id: 89 + left_id: 135 + right_id: 90 current_revision_id: - created_at: 2024-10-09 13:48:43.000000000 Z - updated_at: 2024-10-09 13:48:43.000000000 Z + created_at: 2025-02-04 20:47:52.152707000 Z + updated_at: 2025-02-04 20:47:52.214126000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2516,16 +2534,16 @@ cards_135: trash: 0 type_id: 2 db_content: "

Cards that {{_left|name}} links to.

" -cards_136: - id: 136 +cards_137: + id: 137 name: "*referred to by" key: "*referred_to_by" codename: referred_to_by left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:43.000000000 Z - updated_at: 2024-10-09 13:48:43.000000000 Z + created_at: 2025-02-04 20:47:52.235577000 Z + updated_at: 2025-02-04 20:47:52.235577000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -2534,16 +2552,16 @@ cards_136: trash: 0 type_id: 2 db_content: '' -cards_137: - id: 137 +cards_138: + id: 138 name: key: codename: - left_id: 136 + left_id: 137 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:48:43.000000000 Z - updated_at: 2024-10-09 13:48:43.000000000 Z + created_at: 2025-02-04 20:47:52.238563000 Z + updated_at: 2025-02-04 20:47:52.238563000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2552,16 +2570,16 @@ cards_137: trash: 0 type_id: 5 db_content: '' -cards_138: - id: 138 +cards_139: + id: 139 name: key: codename: - left_id: 137 - right_id: 89 + left_id: 138 + right_id: 90 current_revision_id: - created_at: 2024-10-09 13:48:43.000000000 Z - updated_at: 2024-10-09 13:48:43.000000000 Z + created_at: 2025-02-04 20:47:52.240751000 Z + updated_at: 2025-02-04 20:47:52.321905000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2570,16 +2588,16 @@ cards_138: trash: 0 type_id: 2 db_content: "

Cards referred to by {{_left|name}}.

" -cards_139: - id: 139 +cards_140: + id: 140 name: "*refers to" key: "*refer_to" codename: refers_to left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:43.000000000 Z - updated_at: 2024-10-09 13:48:43.000000000 Z + created_at: 2025-02-04 20:47:52.369644000 Z + updated_at: 2025-02-04 20:47:52.369644000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -2588,16 +2606,16 @@ cards_139: trash: 0 type_id: 2 db_content: '' -cards_140: - id: 140 +cards_141: + id: 141 name: key: codename: - left_id: 139 + left_id: 140 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:48:43.000000000 Z - updated_at: 2024-10-09 13:48:43.000000000 Z + created_at: 2025-02-04 20:47:52.374528000 Z + updated_at: 2025-02-04 20:47:52.374528000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2606,16 +2624,16 @@ cards_140: trash: 0 type_id: 5 db_content: '' -cards_141: - id: 141 +cards_142: + id: 142 name: key: codename: - left_id: 140 - right_id: 89 + left_id: 141 + right_id: 90 current_revision_id: - created_at: 2024-10-09 13:48:43.000000000 Z - updated_at: 2024-10-09 13:48:43.000000000 Z + created_at: 2025-02-04 20:47:52.384972000 Z + updated_at: 2025-02-04 20:47:52.758753000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2624,16 +2642,16 @@ cards_141: trash: 0 type_id: 2 db_content: "

Cards that {{_left|name}} refers to.

" -cards_142: - id: 142 +cards_143: + id: 143 name: key: codename: left_id: 6 right_id: 12 current_revision_id: - created_at: 2024-10-09 13:48:43.000000000 Z - updated_at: 2024-10-09 13:48:43.000000000 Z + created_at: 2025-02-04 20:47:52.809009000 Z + updated_at: 2025-02-04 20:47:52.809009000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2643,16 +2661,16 @@ cards_142: type_id: 2 db_content: "Settings affect how cards look and behave. \n[[http://www.decko.org/Setting|Learn more about settings.]]" -cards_143: - id: 143 +cards_144: + id: 144 name: key: codename: left_id: 6 right_id: 27 current_revision_id: - created_at: 2024-10-09 13:48:43.000000000 Z - updated_at: 2024-10-09 13:48:43.000000000 Z + created_at: 2025-02-04 20:47:52.812549000 Z + updated_at: 2025-02-04 20:47:52.812549000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2661,16 +2679,16 @@ cards_143: trash: 0 type_id: 5 db_content: '' -cards_144: - id: 144 +cards_145: + id: 145 name: key: codename: - left_id: 143 - right_id: 66 + left_id: 144 + right_id: 67 current_revision_id: - created_at: 2024-10-09 13:48:43.000000000 Z - updated_at: 2024-10-09 13:48:43.000000000 Z + created_at: 2025-02-04 20:47:52.816397000 Z + updated_at: 2025-02-04 20:47:52.816397000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2679,16 +2697,16 @@ cards_144: trash: 0 type_id: 4 db_content: Administrator -cards_145: - id: 145 +cards_146: + id: 146 name: key: codename: left_id: 5 right_id: 12 current_revision_id: - created_at: 2024-10-09 13:48:44.000000000 Z - updated_at: 2024-10-09 13:48:44.000000000 Z + created_at: 2025-02-04 20:47:52.880549000 Z + updated_at: 2025-02-04 20:47:52.880549000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2699,16 +2717,16 @@ cards_145: db_content: |- Sets define a group of cards to which settings can apply. [[http://www.decko.org/Set|Learn more about sets.]] -cards_146: - id: 146 +cards_147: + id: 147 name: key: codename: left_id: 5 right_id: 27 current_revision_id: - created_at: 2024-10-09 13:48:44.000000000 Z - updated_at: 2024-10-09 13:48:44.000000000 Z + created_at: 2025-02-04 20:47:52.886349000 Z + updated_at: 2025-02-04 20:47:52.886349000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2717,39 +2735,39 @@ cards_146: trash: 0 type_id: 5 db_content: '' -cards_147: - id: 147 +cards_148: + id: 148 name: key: codename: - left_id: 146 + left_id: 147 right_id: 28 current_revision_id: - created_at: 2024-10-09 13:48:44.000000000 Z - updated_at: 2024-10-09 13:48:44.000000000 Z + created_at: 2025-02-04 20:47:52.889498000 Z + updated_at: 2025-02-04 20:47:52.889498000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 57 + type_id: 58 db_content: |-

{{+description}}

{{_self|name}} Cards

{{+:type+:by_name}}

-cards_148: - id: 148 +cards_149: + id: 149 name: "*input type" key: "*input_type" codename: input_type left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:44.000000000 Z - updated_at: 2024-10-09 13:48:44.000000000 Z + created_at: 2025-02-04 20:47:52.924094000 Z + updated_at: 2025-02-04 20:47:52.924094000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -2758,16 +2776,16 @@ cards_148: trash: 0 type_id: 6 db_content: '' -cards_149: - id: 149 +cards_150: + id: 150 name: key: codename: - left_id: 148 + left_id: 149 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:48:44.000000000 Z - updated_at: 2024-10-09 13:48:44.000000000 Z + created_at: 2025-02-04 20:47:53.071418000 Z + updated_at: 2025-02-04 20:47:53.071418000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2776,52 +2794,52 @@ cards_149: trash: 0 type_id: 5 db_content: '' -cards_150: - id: 150 +cards_151: + id: 151 name: key: codename: input_options - left_id: 149 - right_id: 59 + left_id: 150 + right_id: 60 current_revision_id: - created_at: 2024-10-09 13:48:44.000000000 Z - updated_at: 2024-10-09 13:48:44.000000000 Z + created_at: 2025-02-04 20:47:53.074175000 Z + updated_at: 2025-02-04 20:47:53.074175000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 55 + type_id: 56 db_content: overridden -cards_151: - id: 151 +cards_152: + id: 152 name: key: codename: - left_id: 149 - right_id: 148 + left_id: 150 + right_id: 149 current_revision_id: - created_at: 2024-10-09 13:48:44.000000000 Z - updated_at: 2024-10-09 13:48:44.000000000 Z + created_at: 2025-02-04 20:47:53.076474000 Z + updated_at: 2025-02-04 20:47:53.076474000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 55 + type_id: 56 db_content: radio -cards_152: - id: 152 +cards_153: + id: 153 name: Email template key: email_template codename: email_template left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:44.000000000 Z - updated_at: 2024-10-09 13:48:44.000000000 Z + created_at: 2025-02-04 20:47:53.176046000 Z + updated_at: 2025-02-04 20:47:53.288900000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -2833,16 +2851,16 @@ cards_152: {{+:description|content}} {{_|add_button}}{{_|configure_button}} {{+:type+:by_name|content}} -cards_153: - id: 153 +cards_154: + id: 154 name: key: codename: - left_id: 152 + left_id: 153 right_id: 12 current_revision_id: - created_at: 2024-10-09 13:48:44.000000000 Z - updated_at: 2024-10-09 13:48:44.000000000 Z + created_at: 2025-02-04 20:47:53.178268000 Z + updated_at: 2025-02-04 20:47:53.178268000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2853,16 +2871,16 @@ cards_153: db_content: |- Design custom emails to be triggered by card actions. [[http://decko.org/actions|more]] -cards_154: - id: 154 +cards_155: + id: 155 name: key: codename: - left_id: 152 + left_id: 153 right_id: 21 current_revision_id: - created_at: 2024-10-09 13:48:44.000000000 Z - updated_at: 2024-10-09 13:48:44.000000000 Z + created_at: 2025-02-04 20:47:53.181192000 Z + updated_at: 2025-02-04 20:47:53.181192000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2871,37 +2889,36 @@ cards_154: trash: 0 type_id: 5 db_content: '' -cards_155: - id: 155 +cards_156: + id: 156 name: key: codename: - left_id: 154 + left_id: 155 right_id: 28 current_revision_id: - created_at: 2024-10-09 13:48:44.000000000 Z - updated_at: 2024-10-09 13:48:44.000000000 Z + created_at: 2025-02-04 20:47:53.183582000 Z + updated_at: 2025-02-04 20:47:53.183582000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 57 - db_content: "

\n {{+*from | labeled | link}} \n {{+*to | labeled | link}} \n - \ {{+*cc | labeled | link}}\n {{+*bcc | labeled | link}}\n {{+*subject | titled}}\n - \ {{+*html message | titled}} \n {{+*text message | titled}}\n {{+*attach | - titled}}\n

\"" -cards_156: - id: 156 + type_id: 58 + db_content: "{{+:from | labeled | link}} \n{{+:to | labeled | link}} \n{{+:cc | + labeled | link}}\n{{+:bcc | labeled | link}}\n{{+:subject | titled}}\n{{+:html_message + | titled}} \n{{+:text_message | titled}}\n{{+:attach | titled}}" +cards_157: + id: 157 name: "*to" key: "*to" codename: to left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:44.000000000 Z - updated_at: 2024-10-09 13:48:44.000000000 Z + created_at: 2025-02-04 20:47:53.407473000 Z + updated_at: 2025-02-04 20:47:53.407473000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -2910,16 +2927,16 @@ cards_156: trash: 0 type_id: 2 db_content: '' -cards_157: - id: 157 +cards_158: + id: 158 name: key: codename: - left_id: 156 + left_id: 157 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:48:44.000000000 Z - updated_at: 2024-10-09 13:48:44.000000000 Z + created_at: 2025-02-04 20:47:53.410339000 Z + updated_at: 2025-02-04 20:47:53.410339000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2928,34 +2945,34 @@ cards_157: trash: 0 type_id: 5 db_content: '' -cards_158: - id: 158 +cards_159: + id: 159 name: key: codename: - left_id: 157 - right_id: 59 + left_id: 158 + right_id: 60 current_revision_id: - created_at: 2024-10-09 13:48:44.000000000 Z - updated_at: 2024-10-09 13:48:44.000000000 Z + created_at: 2025-02-04 20:47:53.412606000 Z + updated_at: 2025-02-04 20:47:53.412606000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 97 + type_id: 98 db_content: ' { "right_plus":{"codename":"account"} } ' -cards_159: - id: 159 +cards_160: + id: 160 name: "*from" key: "*from" codename: from left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:44.000000000 Z - updated_at: 2024-10-09 13:48:44.000000000 Z + created_at: 2025-02-04 20:47:53.523171000 Z + updated_at: 2025-02-04 20:47:53.523171000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -2964,16 +2981,16 @@ cards_159: trash: 0 type_id: 2 db_content: '' -cards_160: - id: 160 +cards_161: + id: 161 name: key: codename: - left_id: 159 + left_id: 160 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:48:44.000000000 Z - updated_at: 2024-10-09 13:48:44.000000000 Z + created_at: 2025-02-04 20:47:53.526807000 Z + updated_at: 2025-02-04 20:47:53.526807000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2982,34 +2999,34 @@ cards_160: trash: 0 type_id: 5 db_content: '' -cards_161: - id: 161 +cards_162: + id: 162 name: key: codename: - left_id: 160 - right_id: 59 + left_id: 161 + right_id: 60 current_revision_id: - created_at: 2024-10-09 13:48:44.000000000 Z - updated_at: 2024-10-09 13:48:44.000000000 Z + created_at: 2025-02-04 20:47:53.529065000 Z + updated_at: 2025-02-04 20:47:53.529065000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 97 + type_id: 98 db_content: ' { "right_plus":{"codename":"account"} } ' -cards_162: - id: 162 +cards_163: + id: 163 name: "*cc" key: "*cc" codename: cc left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:44.000000000 Z - updated_at: 2024-10-09 13:48:44.000000000 Z + created_at: 2025-02-04 20:47:53.624076000 Z + updated_at: 2025-02-04 20:47:53.624076000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -3018,16 +3035,16 @@ cards_162: trash: 0 type_id: 2 db_content: '' -cards_163: - id: 163 +cards_164: + id: 164 name: key: codename: - left_id: 162 + left_id: 163 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:48:44.000000000 Z - updated_at: 2024-10-09 13:48:44.000000000 Z + created_at: 2025-02-04 20:47:53.627670000 Z + updated_at: 2025-02-04 20:47:53.627670000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -3036,34 +3053,34 @@ cards_163: trash: 0 type_id: 5 db_content: '' -cards_164: - id: 164 +cards_165: + id: 165 name: key: codename: - left_id: 163 - right_id: 59 + left_id: 164 + right_id: 60 current_revision_id: - created_at: 2024-10-09 13:48:44.000000000 Z - updated_at: 2024-10-09 13:48:44.000000000 Z + created_at: 2025-02-04 20:47:53.666214000 Z + updated_at: 2025-02-04 20:47:53.666214000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 97 + type_id: 98 db_content: ' { "right_plus":{"codename":"account"} } ' -cards_165: - id: 165 +cards_166: + id: 166 name: "*bcc" key: "*bcc" codename: bcc left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:44.000000000 Z - updated_at: 2024-10-09 13:48:44.000000000 Z + created_at: 2025-02-04 20:47:53.761586000 Z + updated_at: 2025-02-04 20:47:53.761586000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -3072,16 +3089,16 @@ cards_165: trash: 0 type_id: 2 db_content: '' -cards_166: - id: 166 +cards_167: + id: 167 name: key: codename: - left_id: 165 + left_id: 166 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:48:44.000000000 Z - updated_at: 2024-10-09 13:48:44.000000000 Z + created_at: 2025-02-04 20:47:53.765716000 Z + updated_at: 2025-02-04 20:47:53.765716000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -3090,34 +3107,34 @@ cards_166: trash: 0 type_id: 5 db_content: '' -cards_167: - id: 167 +cards_168: + id: 168 name: key: codename: - left_id: 166 - right_id: 59 + left_id: 167 + right_id: 60 current_revision_id: - created_at: 2024-10-09 13:48:44.000000000 Z - updated_at: 2024-10-09 13:48:44.000000000 Z + created_at: 2025-02-04 20:47:53.774924000 Z + updated_at: 2025-02-04 20:47:53.774924000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 97 + type_id: 98 db_content: ' { "right_plus":{"codename":"account"} } ' -cards_168: - id: 168 +cards_169: + id: 169 name: "*subject" key: "*subject" codename: subject left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:45.000000000 Z - updated_at: 2024-10-09 13:48:45.000000000 Z + created_at: 2025-02-04 20:47:53.873411000 Z + updated_at: 2025-02-04 20:47:53.873411000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -3126,16 +3143,16 @@ cards_168: trash: 0 type_id: 2 db_content: '' -cards_169: - id: 169 +cards_170: + id: 170 name: "*attach" key: "*attach" codename: attach left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:45.000000000 Z - updated_at: 2024-10-09 13:48:45.000000000 Z + created_at: 2025-02-04 20:47:54.002222000 Z + updated_at: 2025-02-04 20:47:54.002222000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -3144,16 +3161,16 @@ cards_169: trash: 0 type_id: 2 db_content: '' -cards_170: - id: 170 +cards_171: + id: 171 name: key: codename: - left_id: 169 + left_id: 170 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:48:45.000000000 Z - updated_at: 2024-10-09 13:48:45.000000000 Z + created_at: 2025-02-04 20:47:54.005395000 Z + updated_at: 2025-02-04 20:47:54.005395000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -3162,37 +3179,37 @@ cards_170: trash: 0 type_id: 5 db_content: '' -cards_171: - id: 171 +cards_172: + id: 172 name: key: codename: - left_id: 170 - right_id: 59 + left_id: 171 + right_id: 60 current_revision_id: - created_at: 2024-10-09 13:48:45.000000000 Z - updated_at: 2024-10-09 13:48:45.000000000 Z + created_at: 2025-02-04 20:47:54.008648000 Z + updated_at: 2025-02-04 20:47:54.008648000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 97 + type_id: 98 db_content: |- {"type": "File", "sort": "update" } -cards_172: - id: 172 +cards_173: + id: 173 name: "*html message" key: "*html_message" codename: html_message left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:45.000000000 Z - updated_at: 2024-10-09 13:48:45.000000000 Z + created_at: 2025-02-04 20:47:54.205171000 Z + updated_at: 2025-02-04 20:47:54.205171000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -3201,16 +3218,16 @@ cards_172: trash: 0 type_id: 2 db_content: '' -cards_173: - id: 173 +cards_174: + id: 174 name: "*text message" key: "*text_message" codename: text_message left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:45.000000000 Z - updated_at: 2024-10-09 13:48:45.000000000 Z + created_at: 2025-02-04 20:47:54.273237000 Z + updated_at: 2025-02-04 20:47:54.273237000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -3219,16 +3236,16 @@ cards_173: trash: 0 type_id: 2 db_content: '' -cards_174: - id: 174 +cards_175: + id: 175 name: "*on create" key: "*on_create" codename: on_create left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:45.000000000 Z - updated_at: 2024-10-09 13:48:45.000000000 Z + created_at: 2025-02-04 20:47:54.438240000 Z + updated_at: 2025-02-04 20:47:54.438240000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -3237,16 +3254,16 @@ cards_174: trash: 0 type_id: 6 db_content: '' -cards_175: - id: 175 +cards_176: + id: 176 name: "*on update" key: "*on_update" codename: on_update left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:45.000000000 Z - updated_at: 2024-10-09 13:48:45.000000000 Z + created_at: 2025-02-04 20:47:54.594986000 Z + updated_at: 2025-02-04 20:47:54.594986000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -3255,16 +3272,16 @@ cards_175: trash: 0 type_id: 6 db_content: '' -cards_176: - id: 176 +cards_177: + id: 177 name: "*on delete" key: "*on_delete" codename: on_delete left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:45.000000000 Z - updated_at: 2024-10-09 13:48:45.000000000 Z + created_at: 2025-02-04 20:47:54.655331000 Z + updated_at: 2025-02-04 20:47:54.655331000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -3273,16 +3290,16 @@ cards_176: trash: 0 type_id: 6 db_content: '' -cards_177: - id: 177 +cards_178: + id: 178 name: Role key: role codename: role left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:45.000000000 Z - updated_at: 2024-10-09 13:48:45.000000000 Z + created_at: 2025-02-04 20:47:54.800450000 Z + updated_at: 2025-02-04 20:47:54.882080000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -3294,16 +3311,16 @@ cards_177: {{+:description|content}} {{_|add_button}}{{_|configure_button}} {{+:type+:by_name|content}} -cards_178: - id: 178 +cards_179: + id: 179 name: key: codename: - left_id: 177 + left_id: 178 right_id: 12 current_revision_id: - created_at: 2024-10-09 13:48:45.000000000 Z - updated_at: 2024-10-09 13:48:45.000000000 Z + created_at: 2025-02-04 20:47:54.815039000 Z + updated_at: 2025-02-04 20:47:54.815039000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -3313,16 +3330,16 @@ cards_178: type_id: 2 db_content: "Each [[user]] can be given roles to organize site permissions. \n[[http://decko.org/Role|Learn more about roles]]." -cards_179: - id: 179 +cards_180: + id: 180 name: "*members" key: "*member" codename: members left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:45.000000000 Z - updated_at: 2024-10-09 13:48:45.000000000 Z + created_at: 2025-02-04 20:47:54.889349000 Z + updated_at: 2025-02-04 20:47:54.889349000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -3331,34 +3348,34 @@ cards_179: trash: 0 type_id: 2 db_content: '' -cards_180: - id: 180 +cards_181: + id: 181 name: Anyone key: anyone codename: anyone left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:45.000000000 Z - updated_at: 2024-10-09 13:48:45.000000000 Z + created_at: 2025-02-04 20:47:54.961239000 Z + updated_at: 2025-02-04 20:47:54.961239000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 177 + type_id: 178 db_content: '' -cards_181: - id: 181 +cards_182: + id: 182 name: key: codename: - left_id: 180 + left_id: 181 right_id: 12 current_revision_id: - created_at: 2024-10-09 13:48:45.000000000 Z - updated_at: 2024-10-09 13:48:45.000000000 Z + created_at: 2025-02-04 20:47:54.963160000 Z + updated_at: 2025-02-04 20:47:54.963160000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -3367,34 +3384,34 @@ cards_181: trash: 0 type_id: 2 db_content: Everyone has this role, whether signed in or not. [[http://decko.org/account|more]] -cards_182: - id: 182 +cards_183: + id: 183 name: Anyone Signed In key: anyone_signed_in codename: anyone_signed_in left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:45.000000000 Z - updated_at: 2024-10-09 13:50:34.000000000 Z + created_at: 2025-02-04 20:47:55.031024000 Z + updated_at: 2025-02-04 20:49:11.407368000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 177 + type_id: 178 db_content: '' -cards_183: - id: 183 +cards_184: + id: 184 name: key: codename: - left_id: 182 + left_id: 183 right_id: 12 current_revision_id: - created_at: 2024-10-09 13:48:45.000000000 Z - updated_at: 2024-10-09 13:48:45.000000000 Z + created_at: 2025-02-04 20:47:55.033658000 Z + updated_at: 2025-02-04 20:47:55.033658000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -3403,34 +3420,34 @@ cards_183: trash: 0 type_id: 2 db_content: Anyone who is signed in has this role. [[http://decko.org/account|more]] -cards_184: - id: 184 +cards_185: + id: 185 name: Administrator key: administrator codename: administrator left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:45.000000000 Z - updated_at: 2024-10-09 13:50:33.000000000 Z + created_at: 2025-02-04 20:47:55.257271000 Z + updated_at: 2025-02-04 20:49:11.301038000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 177 + type_id: 178 db_content: '' -cards_185: - id: 185 +cards_186: + id: 186 name: key: codename: - left_id: 184 + left_id: 185 right_id: 12 current_revision_id: - created_at: 2024-10-09 13:48:45.000000000 Z - updated_at: 2024-10-09 13:48:45.000000000 Z + created_at: 2025-02-04 20:47:55.272984000 Z + updated_at: 2025-02-04 20:47:55.272984000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -3441,16 +3458,16 @@ cards_185: db_content: |- [[_left+:members|Administrators]] can create, read, update and delete any card. [[http://decko.org/permissions|more]] -cards_186: - id: 186 +cards_187: + id: 187 name: key: codename: - left_id: 184 - right_id: 179 + left_id: 185 + right_id: 180 current_revision_id: - created_at: 2024-10-09 13:48:45.000000000 Z - updated_at: 2024-10-09 13:48:45.000000000 Z + created_at: 2025-02-04 20:47:55.275691000 Z + updated_at: 2025-02-04 20:47:55.275691000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -3459,16 +3476,16 @@ cards_186: trash: 0 type_id: 4 db_content: '' -cards_187: - id: 187 +cards_188: + id: 188 name: key: codename: - left_id: 186 + left_id: 187 right_id: 27 current_revision_id: - created_at: 2024-10-09 13:48:46.000000000 Z - updated_at: 2024-10-09 13:48:46.000000000 Z + created_at: 2025-02-04 20:47:55.278690000 Z + updated_at: 2025-02-04 20:47:55.278690000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -3477,16 +3494,16 @@ cards_187: trash: 0 type_id: 5 db_content: '' -cards_188: - id: 188 +cards_189: + id: 189 name: key: codename: - left_id: 187 - right_id: 66 + left_id: 188 + right_id: 67 current_revision_id: - created_at: 2024-10-09 13:48:46.000000000 Z - updated_at: 2024-10-09 13:48:46.000000000 Z + created_at: 2025-02-04 20:47:55.280642000 Z + updated_at: 2025-02-04 20:47:55.280642000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -3495,34 +3512,34 @@ cards_188: trash: 0 type_id: 4 db_content: Administrator -cards_189: - id: 189 +cards_190: + id: 190 name: Eagle key: eagle codename: eagle left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:46.000000000 Z - updated_at: 2024-10-09 13:50:34.000000000 Z + created_at: 2025-02-04 20:47:55.369898000 Z + updated_at: 2025-02-04 20:49:11.378030000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 177 + type_id: 178 db_content: '' -cards_190: - id: 190 +cards_191: + id: 191 name: key: codename: - left_id: 189 + left_id: 190 right_id: 12 current_revision_id: - created_at: 2024-10-09 13:48:46.000000000 Z - updated_at: 2024-10-09 13:48:46.000000000 Z + created_at: 2025-02-04 20:47:55.372007000 Z + updated_at: 2025-02-04 20:47:55.372007000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -3531,34 +3548,34 @@ cards_190: trash: 0 type_id: 2 db_content: "[[Eagle+:members|Eagle users]] can add and edit content." -cards_191: - id: 191 +cards_192: + id: 192 name: Shark key: shark codename: shark left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:46.000000000 Z - updated_at: 2024-10-09 13:50:33.000000000 Z + created_at: 2025-02-04 20:47:55.447673000 Z + updated_at: 2025-02-04 20:49:11.322712000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 177 + type_id: 178 db_content: '' -cards_192: - id: 192 +cards_193: + id: 193 name: key: codename: - left_id: 191 + left_id: 192 right_id: 12 current_revision_id: - created_at: 2024-10-09 13:48:46.000000000 Z - updated_at: 2024-10-09 13:48:46.000000000 Z + created_at: 2025-02-04 20:47:55.450210000 Z + updated_at: 2025-02-04 20:47:55.450210000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -3567,16 +3584,16 @@ cards_192: trash: 0 type_id: 2 db_content: "[[_left+:members|Shark users]] can configure the deck and create structures." -cards_193: - id: 193 +cards_194: + id: 194 name: key: codename: - left_id: 191 - right_id: 179 + left_id: 192 + right_id: 180 current_revision_id: - created_at: 2024-10-09 13:48:46.000000000 Z - updated_at: 2024-10-09 13:48:46.000000000 Z + created_at: 2025-02-04 20:47:55.452799000 Z + updated_at: 2025-02-04 20:47:55.452799000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -3585,16 +3602,16 @@ cards_193: trash: 0 type_id: 4 db_content: '' -cards_194: - id: 194 +cards_195: + id: 195 name: key: codename: - left_id: 193 + left_id: 194 right_id: 27 current_revision_id: - created_at: 2024-10-09 13:48:46.000000000 Z - updated_at: 2024-10-09 13:48:46.000000000 Z + created_at: 2025-02-04 20:47:55.456038000 Z + updated_at: 2025-02-04 20:47:55.456038000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -3603,16 +3620,16 @@ cards_194: trash: 0 type_id: 5 db_content: '' -cards_195: - id: 195 +cards_196: + id: 196 name: key: codename: - left_id: 194 - right_id: 66 + left_id: 195 + right_id: 67 current_revision_id: - created_at: 2024-10-09 13:48:46.000000000 Z - updated_at: 2024-10-09 13:48:46.000000000 Z + created_at: 2025-02-04 20:47:55.458835000 Z + updated_at: 2025-02-04 20:47:55.458835000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -3621,34 +3638,34 @@ cards_195: trash: 0 type_id: 4 db_content: Administrator -cards_196: - id: 196 +cards_197: + id: 197 name: Help Desk key: help_desk codename: help_desk left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:46.000000000 Z - updated_at: 2024-10-09 13:50:33.000000000 Z + created_at: 2025-02-04 20:47:55.646906000 Z + updated_at: 2025-02-04 20:49:11.348764000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 177 + type_id: 178 db_content: '' -cards_197: - id: 197 +cards_198: + id: 198 name: key: codename: - left_id: 196 + left_id: 197 right_id: 12 current_revision_id: - created_at: 2024-10-09 13:48:46.000000000 Z - updated_at: 2024-10-09 13:48:46.000000000 Z + created_at: 2025-02-04 20:47:55.648952000 Z + updated_at: 2025-02-04 20:47:55.648952000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -3658,16 +3675,16 @@ cards_197: type_id: 2 db_content: "[[_left+*members|Help Desk users]] can manage accounts and edit help text." -cards_198: - id: 198 +cards_199: + id: 199 name: key: codename: - left_id: 196 - right_id: 179 + left_id: 197 + right_id: 180 current_revision_id: - created_at: 2024-10-09 13:48:46.000000000 Z - updated_at: 2024-10-09 13:48:46.000000000 Z + created_at: 2025-02-04 20:47:55.651067000 Z + updated_at: 2025-02-04 20:47:55.651067000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -3676,16 +3693,16 @@ cards_198: trash: 0 type_id: 4 db_content: '' -cards_199: - id: 199 +cards_200: + id: 200 name: key: codename: - left_id: 198 + left_id: 199 right_id: 27 current_revision_id: - created_at: 2024-10-09 13:48:46.000000000 Z - updated_at: 2024-10-09 13:48:46.000000000 Z + created_at: 2025-02-04 20:47:55.654003000 Z + updated_at: 2025-02-04 20:47:55.654003000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -3694,16 +3711,16 @@ cards_199: trash: 0 type_id: 5 db_content: '' -cards_200: - id: 200 +cards_201: + id: 201 name: key: codename: - left_id: 199 - right_id: 66 + left_id: 200 + right_id: 67 current_revision_id: - created_at: 2024-10-09 13:48:46.000000000 Z - updated_at: 2024-10-09 13:48:46.000000000 Z + created_at: 2025-02-04 20:47:55.656138000 Z + updated_at: 2025-02-04 20:47:55.656138000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -3712,16 +3729,16 @@ cards_200: trash: 0 type_id: 4 db_content: Administrator -cards_201: - id: 201 +cards_202: + id: 202 name: Anonymous key: anonymous codename: anonymous left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:46.000000000 Z - updated_at: 2024-10-09 13:48:46.000000000 Z + created_at: 2025-02-04 20:47:55.744562000 Z + updated_at: 2025-02-04 20:47:55.744562000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -3731,16 +3748,16 @@ cards_201: type_id: 2 db_content: "

Edits made by people who are not signed in are credited to Anonymous. [[http://decko.org/account|Learn more about accounts]].

" -cards_202: - id: 202 +cards_203: + id: 203 name: key: codename: - left_id: 177 - right_id: 179 + left_id: 178 + right_id: 180 current_revision_id: - created_at: 2024-10-09 13:48:46.000000000 Z - updated_at: 2024-10-09 13:48:46.000000000 Z + created_at: 2025-02-04 20:47:56.006980000 Z + updated_at: 2025-02-04 20:47:56.006980000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -3749,16 +3766,16 @@ cards_202: trash: 0 type_id: 2 db_content: '' -cards_203: - id: 203 +cards_204: + id: 204 name: key: codename: - left_id: 202 + left_id: 203 right_id: 25 current_revision_id: - created_at: 2024-10-09 13:48:46.000000000 Z - updated_at: 2024-10-09 13:48:46.000000000 Z + created_at: 2025-02-04 20:47:56.010935000 Z + updated_at: 2025-02-04 20:47:56.010935000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -3767,16 +3784,16 @@ cards_203: trash: 0 type_id: 5 db_content: '' -cards_204: - id: 204 +cards_205: + id: 205 name: key: codename: - left_id: 203 - right_id: 66 + left_id: 204 + right_id: 67 current_revision_id: - created_at: 2024-10-09 13:48:46.000000000 Z - updated_at: 2024-10-09 13:48:46.000000000 Z + created_at: 2025-02-04 20:47:56.026722000 Z + updated_at: 2025-02-04 20:47:56.026722000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -3785,16 +3802,16 @@ cards_204: trash: 0 type_id: 4 db_content: Help Desk -cards_205: - id: 205 +cards_206: + id: 206 name: "*account" key: "*account" codename: account left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:46.000000000 Z - updated_at: 2024-10-09 13:48:48.000000000 Z + created_at: 2025-02-04 20:47:56.118454000 Z + updated_at: 2025-02-04 20:47:58.631768000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -3825,16 +3842,16 @@ cards_205:
  • [[Cards with accounts]]
  • [[:account+:right+:by_name|Account cards]]
  • -cards_206: - id: 206 +cards_207: + id: 207 name: key: codename: - left_id: 205 + left_id: 206 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:48:46.000000000 Z - updated_at: 2024-10-09 13:48:46.000000000 Z + created_at: 2025-02-04 20:47:56.126456000 Z + updated_at: 2025-02-04 20:47:56.126456000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -3843,16 +3860,16 @@ cards_206: trash: 0 type_id: 5 db_content: '' -cards_207: - id: 207 +cards_208: + id: 208 name: key: codename: - left_id: 206 - right_id: 65 + left_id: 207 + right_id: 66 current_revision_id: - created_at: 2024-10-09 13:48:46.000000000 Z - updated_at: 2024-10-09 13:48:46.000000000 Z + created_at: 2025-02-04 20:47:56.130052000 Z + updated_at: 2025-02-04 20:47:56.130052000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -3861,16 +3878,16 @@ cards_207: trash: 0 type_id: 4 db_content: Administrator -cards_208: - id: 208 +cards_209: + id: 209 name: key: codename: - left_id: 206 + left_id: 207 right_id: 9 current_revision_id: - created_at: 2024-10-09 13:48:46.000000000 Z - updated_at: 2024-10-09 13:48:46.000000000 Z + created_at: 2025-02-04 20:47:56.133382000 Z + updated_at: 2025-02-04 20:47:56.133382000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -3879,16 +3896,16 @@ cards_208: trash: 0 type_id: 4 db_content: Help Desk -cards_209: - id: 209 +cards_210: + id: 210 name: key: codename: - left_id: 206 - right_id: 66 + left_id: 207 + right_id: 67 current_revision_id: - created_at: 2024-10-09 13:48:46.000000000 Z - updated_at: 2024-10-09 13:48:46.000000000 Z + created_at: 2025-02-04 20:47:56.136139000 Z + updated_at: 2025-02-04 20:47:56.136139000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -3897,16 +3914,16 @@ cards_209: trash: 0 type_id: 4 db_content: Help Desk -cards_210: - id: 210 +cards_211: + id: 211 name: key: codename: - left_id: 206 - right_id: 67 + left_id: 207 + right_id: 68 current_revision_id: - created_at: 2024-10-09 13:48:46.000000000 Z - updated_at: 2024-10-09 13:48:46.000000000 Z + created_at: 2025-02-04 20:47:56.138659000 Z + updated_at: 2025-02-04 20:47:56.138659000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -3915,16 +3932,16 @@ cards_210: trash: 0 type_id: 4 db_content: Help Desk -cards_211: - id: 211 +cards_212: + id: 212 name: "*email" key: "*email" codename: email left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:46.000000000 Z - updated_at: 2024-10-09 13:48:46.000000000 Z + created_at: 2025-02-04 20:47:56.320079000 Z + updated_at: 2025-02-04 20:47:56.320079000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -3933,16 +3950,16 @@ cards_211: trash: 0 type_id: 2 db_content: '' -cards_212: - id: 212 +cards_213: + id: 213 name: key: codename: - left_id: 211 + left_id: 212 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:48:47.000000000 Z - updated_at: 2024-10-09 13:48:47.000000000 Z + created_at: 2025-02-04 20:47:56.331593000 Z + updated_at: 2025-02-04 20:47:56.331593000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -3951,16 +3968,16 @@ cards_212: trash: 0 type_id: 5 db_content: '' -cards_213: - id: 213 +cards_214: + id: 214 name: key: codename: - left_id: 212 + left_id: 213 right_id: 9 current_revision_id: - created_at: 2024-10-09 13:48:47.000000000 Z - updated_at: 2024-10-09 13:48:47.000000000 Z + created_at: 2025-02-04 20:47:56.334696000 Z + updated_at: 2025-02-04 20:47:56.334696000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -3969,16 +3986,16 @@ cards_213: trash: 0 type_id: 4 db_content: Help Desk -cards_214: - id: 214 +cards_215: + id: 215 name: key: codename: - left_id: 212 - right_id: 66 + left_id: 213 + right_id: 67 current_revision_id: - created_at: 2024-10-09 13:48:47.000000000 Z - updated_at: 2024-10-09 13:48:47.000000000 Z + created_at: 2025-02-04 20:47:56.337549000 Z + updated_at: 2025-02-04 20:47:56.337549000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -3987,16 +4004,16 @@ cards_214: trash: 0 type_id: 4 db_content: Help Desk -cards_215: - id: 215 +cards_216: + id: 216 name: key: codename: - left_id: 212 - right_id: 67 + left_id: 213 + right_id: 68 current_revision_id: - created_at: 2024-10-09 13:48:47.000000000 Z - updated_at: 2024-10-09 13:48:47.000000000 Z + created_at: 2025-02-04 20:47:56.339917000 Z + updated_at: 2025-02-04 20:47:56.339917000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -4005,16 +4022,16 @@ cards_215: trash: 0 type_id: 4 db_content: Help Desk -cards_216: - id: 216 +cards_217: + id: 217 name: "*password" key: "*password" codename: password left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:47.000000000 Z - updated_at: 2024-10-09 13:48:47.000000000 Z + created_at: 2025-02-04 20:47:56.485365000 Z + updated_at: 2025-02-04 20:47:56.485365000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -4023,16 +4040,16 @@ cards_216: trash: 0 type_id: 2 db_content: '' -cards_217: - id: 217 +cards_218: + id: 218 name: key: codename: - left_id: 216 + left_id: 217 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:48:47.000000000 Z - updated_at: 2024-10-09 13:48:47.000000000 Z + created_at: 2025-02-04 20:47:56.621875000 Z + updated_at: 2025-02-04 20:47:56.621875000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -4041,16 +4058,16 @@ cards_217: trash: 0 type_id: 5 db_content: '' -cards_218: - id: 218 +cards_219: + id: 219 name: key: codename: - left_id: 217 + left_id: 218 right_id: 9 current_revision_id: - created_at: 2024-10-09 13:48:47.000000000 Z - updated_at: 2024-10-09 13:48:47.000000000 Z + created_at: 2025-02-04 20:47:56.625023000 Z + updated_at: 2025-02-04 20:47:56.625023000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -4059,16 +4076,16 @@ cards_218: trash: 0 type_id: 4 db_content: Help Desk -cards_219: - id: 219 +cards_220: + id: 220 name: key: codename: - left_id: 217 - right_id: 66 + left_id: 218 + right_id: 67 current_revision_id: - created_at: 2024-10-09 13:48:47.000000000 Z - updated_at: 2024-10-09 13:48:47.000000000 Z + created_at: 2025-02-04 20:47:56.627702000 Z + updated_at: 2025-02-04 20:47:56.627702000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -4077,16 +4094,16 @@ cards_219: trash: 0 type_id: 4 db_content: Help Desk -cards_220: - id: 220 +cards_221: + id: 221 name: key: codename: - left_id: 217 - right_id: 67 + left_id: 218 + right_id: 68 current_revision_id: - created_at: 2024-10-09 13:48:47.000000000 Z - updated_at: 2024-10-09 13:48:47.000000000 Z + created_at: 2025-02-04 20:47:56.630330000 Z + updated_at: 2025-02-04 20:47:56.630330000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -4095,16 +4112,16 @@ cards_220: trash: 0 type_id: 4 db_content: Help Desk -cards_221: - id: 221 +cards_222: + id: 222 name: "*salt" key: "*salt" codename: salt left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:47.000000000 Z - updated_at: 2024-10-09 13:48:47.000000000 Z + created_at: 2025-02-04 20:47:56.920980000 Z + updated_at: 2025-02-04 20:47:56.920980000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -4113,16 +4130,16 @@ cards_221: trash: 0 type_id: 2 db_content: '' -cards_222: - id: 222 - name: +cards_223: + id: 223 + name: key: codename: - left_id: 221 + left_id: 222 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:48:47.000000000 Z - updated_at: 2024-10-09 13:48:47.000000000 Z + created_at: 2025-02-04 20:47:56.940116000 Z + updated_at: 2025-02-04 20:47:56.940116000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -4131,16 +4148,16 @@ cards_222: trash: 0 type_id: 5 db_content: '' -cards_223: - id: 223 +cards_224: + id: 224 name: key: codename: - left_id: 222 + left_id: 223 right_id: 9 current_revision_id: - created_at: 2024-10-09 13:48:47.000000000 Z - updated_at: 2024-10-09 13:48:47.000000000 Z + created_at: 2025-02-04 20:47:56.949794000 Z + updated_at: 2025-02-04 20:47:56.949794000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -4149,16 +4166,16 @@ cards_223: trash: 0 type_id: 4 db_content: Help Desk -cards_224: - id: 224 +cards_225: + id: 225 name: "*status" key: "*status" codename: status left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:47.000000000 Z - updated_at: 2024-10-09 13:48:47.000000000 Z + created_at: 2025-02-04 20:47:57.262093000 Z + updated_at: 2025-02-04 20:47:57.262093000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -4167,16 +4184,16 @@ cards_224: trash: 0 type_id: 2 db_content: '' -cards_225: - id: 225 +cards_226: + id: 226 name: key: codename: - left_id: 224 + left_id: 225 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:48:47.000000000 Z - updated_at: 2024-10-09 13:48:47.000000000 Z + created_at: 2025-02-04 20:47:57.277774000 Z + updated_at: 2025-02-04 20:47:57.277774000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -4185,16 +4202,16 @@ cards_225: trash: 0 type_id: 5 db_content: '' -cards_226: - id: 226 +cards_227: + id: 227 name: key: codename: - left_id: 225 + left_id: 226 right_id: 9 current_revision_id: - created_at: 2024-10-09 13:48:47.000000000 Z - updated_at: 2024-10-09 13:48:47.000000000 Z + created_at: 2025-02-04 20:47:57.282871000 Z + updated_at: 2025-02-04 20:47:57.282871000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -4203,16 +4220,16 @@ cards_226: trash: 0 type_id: 4 db_content: Help Desk -cards_227: - id: 227 +cards_228: + id: 228 name: key: codename: - left_id: 225 - right_id: 66 + left_id: 226 + right_id: 67 current_revision_id: - created_at: 2024-10-09 13:48:47.000000000 Z - updated_at: 2024-10-09 13:48:47.000000000 Z + created_at: 2025-02-04 20:47:57.291629000 Z + updated_at: 2025-02-04 20:47:57.291629000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -4221,16 +4238,16 @@ cards_227: trash: 0 type_id: 4 db_content: Help Desk -cards_228: - id: 228 +cards_229: + id: 229 name: key: codename: - left_id: 225 - right_id: 67 + left_id: 226 + right_id: 68 current_revision_id: - created_at: 2024-10-09 13:48:47.000000000 Z - updated_at: 2024-10-09 13:48:47.000000000 Z + created_at: 2025-02-04 20:47:57.300812000 Z + updated_at: 2025-02-04 20:47:57.300812000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -4239,16 +4256,16 @@ cards_228: trash: 0 type_id: 4 db_content: Help Desk -cards_229: - id: 229 +cards_230: + id: 230 name: "*account settings" key: "*account_setting" codename: account_settings left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:47.000000000 Z - updated_at: 2024-10-09 13:48:47.000000000 Z + created_at: 2025-02-04 20:47:57.734655000 Z + updated_at: 2025-02-04 20:47:57.734655000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -4257,16 +4274,16 @@ cards_229: trash: 0 type_id: 2 db_content: '' -cards_230: - id: 230 +cards_231: + id: 231 name: key: codename: - left_id: 229 + left_id: 230 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:48:47.000000000 Z - updated_at: 2024-10-09 13:48:47.000000000 Z + created_at: 2025-02-04 20:47:57.807382000 Z + updated_at: 2025-02-04 20:47:57.807382000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -4275,37 +4292,37 @@ cards_230: trash: 0 type_id: 5 db_content: '' -cards_231: - id: 231 +cards_232: + id: 232 name: key: codename: - left_id: 230 + left_id: 231 right_id: 28 current_revision_id: - created_at: 2024-10-09 13:48:47.000000000 Z - updated_at: 2024-10-09 13:48:47.000000000 Z + created_at: 2025-02-04 20:47:57.900284000 Z + updated_at: 2025-02-04 20:47:57.900284000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 57 + type_id: 58 db_content: |- {{_left+:account|content}} {{_left+:roles|title: Roles}} {{_left+:follow|title: Notification choices}} -cards_232: - id: 232 +cards_233: + id: 233 name: Sign up key: sign_up codename: signup left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:48.000000000 Z - updated_at: 2024-10-09 13:48:48.000000000 Z + created_at: 2025-02-04 20:47:58.388643000 Z + updated_at: 2025-02-04 20:47:58.631768000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -4317,16 +4334,16 @@ cards_232: {{+:description|content}} {{_|add_button}}{{_|configure_button}} {{+:type+:by_name|content}} -cards_233: - id: 233 +cards_234: + id: 234 name: key: codename: - left_id: 232 + left_id: 233 right_id: 12 current_revision_id: - created_at: 2024-10-09 13:48:48.000000000 Z - updated_at: 2024-10-09 13:48:48.000000000 Z + created_at: 2025-02-04 20:47:58.391676000 Z + updated_at: 2025-02-04 20:47:58.391676000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -4336,16 +4353,16 @@ cards_233: type_id: 2 db_content: "[[Sign up]] cards represent not-yet-approved accounts. \nWhen approved, they become [[User]] cards. [[http://decko.org/account|more]]" -cards_234: - id: 234 +cards_235: + id: 235 name: key: codename: - left_id: 232 + left_id: 233 right_id: 27 current_revision_id: - created_at: 2024-10-09 13:48:48.000000000 Z - updated_at: 2024-10-09 13:48:48.000000000 Z + created_at: 2025-02-04 20:47:58.452478000 Z + updated_at: 2025-02-04 20:47:58.452478000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -4354,37 +4371,37 @@ cards_234: trash: 0 type_id: 5 db_content: '' -cards_235: - id: 235 +cards_236: + id: 236 name: key: codename: - left_id: 234 + left_id: 235 right_id: 28 current_revision_id: - created_at: 2024-10-09 13:48:48.000000000 Z - updated_at: 2024-10-09 13:48:48.000000000 Z + created_at: 2025-02-04 20:47:58.455302000 Z + updated_at: 2025-02-04 20:47:58.455302000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 57 + type_id: 58 db_content: |-

    {{+:description|content}}

    {{_self|name}} Cards

    {{+:type+:by_name|content}}

    -cards_236: - id: 236 +cards_237: + id: 237 name: key: codename: - left_id: 232 + left_id: 233 right_id: 21 current_revision_id: - created_at: 2024-10-09 13:48:48.000000000 Z - updated_at: 2024-10-09 13:48:48.000000000 Z + created_at: 2025-02-04 20:47:58.458720000 Z + updated_at: 2025-02-04 20:47:58.458720000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -4393,16 +4410,16 @@ cards_236: trash: 0 type_id: 5 db_content: '' -cards_237: - id: 237 +cards_238: + id: 238 name: key: codename: - left_id: 236 - right_id: 65 + left_id: 237 + right_id: 66 current_revision_id: - created_at: 2024-10-09 13:48:48.000000000 Z - updated_at: 2024-10-09 13:48:48.000000000 Z + created_at: 2025-02-04 20:47:58.461299000 Z + updated_at: 2025-02-04 20:47:58.461299000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -4411,16 +4428,16 @@ cards_237: trash: 0 type_id: 4 db_content: Anyone -cards_238: - id: 238 +cards_239: + id: 239 name: key: codename: - left_id: 236 - right_id: 174 + left_id: 237 + right_id: 175 current_revision_id: - created_at: 2024-10-09 13:48:48.000000000 Z - updated_at: 2024-10-09 13:48:48.000000000 Z + created_at: 2025-02-04 20:47:58.463895000 Z + updated_at: 2025-02-04 20:47:58.463895000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -4429,310 +4446,308 @@ cards_238: trash: 0 type_id: 4 db_content: signup alert email -cards_239: - id: 239 +cards_240: + id: 240 name: key: codename: - left_id: 232 - right_id: 205 + left_id: 233 + right_id: 206 current_revision_id: - created_at: 2024-10-09 13:48:48.000000000 Z - updated_at: 2024-10-09 13:48:48.000000000 Z + created_at: 2025-02-04 20:47:58.469757000 Z + updated_at: 2025-02-04 20:47:58.469757000 Z creator_id: 1 updater_id: 1 read_rule_class: "*right" - read_rule_id: 208 + read_rule_id: 209 references_expired: trash: 0 type_id: 2 db_content: '' -cards_240: - id: 240 +cards_241: + id: 241 name: key: codename: - left_id: 239 + left_id: 240 right_id: 25 current_revision_id: - created_at: 2024-10-09 13:48:48.000000000 Z - updated_at: 2024-10-09 13:48:48.000000000 Z + created_at: 2025-02-04 20:47:58.472996000 Z + updated_at: 2025-02-04 20:47:58.472996000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" - read_rule_id: 208 + read_rule_id: 209 references_expired: trash: 0 type_id: 5 db_content: '' -cards_241: - id: 241 +cards_242: + id: 242 name: key: codename: - left_id: 240 - right_id: 65 + left_id: 241 + right_id: 66 current_revision_id: - created_at: 2024-10-09 13:48:48.000000000 Z - updated_at: 2024-10-09 13:48:48.000000000 Z + created_at: 2025-02-04 20:47:58.475333000 Z + updated_at: 2025-02-04 20:47:58.475333000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" - read_rule_id: 208 + read_rule_id: 209 references_expired: trash: 0 type_id: 4 db_content: _left -cards_242: - id: 242 +cards_243: + id: 243 name: key: codename: - left_id: 239 - right_id: 221 + left_id: 240 + right_id: 222 current_revision_id: - created_at: 2024-10-09 13:48:48.000000000 Z - updated_at: 2024-10-09 13:48:48.000000000 Z + created_at: 2025-02-04 20:47:58.486315000 Z + updated_at: 2025-02-04 20:47:58.486315000 Z creator_id: 1 updater_id: 1 read_rule_class: "*right" - read_rule_id: 223 + read_rule_id: 224 references_expired: trash: 0 type_id: 43 - db_content: 8bb57975b2f61173db02d5d9ff0aeb2774ec9bd3 -cards_243: - id: 243 + db_content: a3907f60267acf00010cccf234068e6198a51623 +cards_244: + id: 244 name: key: codename: - left_id: 239 - right_id: 224 + left_id: 240 + right_id: 225 current_revision_id: - created_at: 2024-10-09 13:48:48.000000000 Z - updated_at: 2024-10-09 13:48:48.000000000 Z + created_at: 2025-02-04 20:47:58.493550000 Z + updated_at: 2025-02-04 20:47:58.493550000 Z creator_id: 1 updater_id: 1 read_rule_class: "*right" - read_rule_id: 226 + read_rule_id: 227 references_expired: trash: 0 type_id: 43 db_content: active -cards_244: - id: 244 +cards_245: + id: 245 name: key: codename: left_id: 18 - right_id: 205 + right_id: 206 current_revision_id: - created_at: 2024-10-09 13:48:48.000000000 Z - updated_at: 2024-10-09 13:48:48.000000000 Z + created_at: 2025-02-04 20:47:58.772356000 Z + updated_at: 2025-02-04 20:47:58.772356000 Z creator_id: 1 updater_id: 1 read_rule_class: "*right" - read_rule_id: 208 + read_rule_id: 209 references_expired: trash: 0 type_id: 2 db_content: '' -cards_245: - id: 245 +cards_246: + id: 246 name: key: codename: - left_id: 244 - right_id: 221 + left_id: 245 + right_id: 222 current_revision_id: - created_at: 2024-10-09 13:48:48.000000000 Z - updated_at: 2024-10-09 13:48:48.000000000 Z + created_at: 2025-02-04 20:47:58.774722000 Z + updated_at: 2025-02-04 20:47:58.774722000 Z creator_id: 1 updater_id: 1 read_rule_class: "*right" - read_rule_id: 223 + read_rule_id: 224 references_expired: trash: 0 type_id: 43 - db_content: 8bb57975b2f61173db02d5d9ff0aeb2774ec9bd3 -cards_246: - id: 246 + db_content: a3907f60267acf00010cccf234068e6198a51623 +cards_247: + id: 247 name: key: codename: - left_id: 244 - right_id: 224 + left_id: 245 + right_id: 225 current_revision_id: - created_at: 2024-10-09 13:48:48.000000000 Z - updated_at: 2024-10-09 13:48:48.000000000 Z + created_at: 2025-02-04 20:47:58.777155000 Z + updated_at: 2025-02-04 20:47:58.777155000 Z creator_id: 1 updater_id: 1 read_rule_class: "*right" - read_rule_id: 226 + read_rule_id: 227 references_expired: trash: 0 type_id: 43 db_content: active -cards_247: - id: 247 +cards_248: + id: 248 name: key: codename: - left_id: 244 + left_id: 245 right_id: 25 current_revision_id: - created_at: 2024-10-09 13:48:48.000000000 Z - updated_at: 2024-10-09 13:48:48.000000000 Z + created_at: 2025-02-04 20:47:58.782976000 Z + updated_at: 2025-02-04 20:47:58.782976000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" - read_rule_id: 208 + read_rule_id: 209 references_expired: trash: 0 type_id: 5 db_content: '' -cards_248: - id: 248 +cards_249: + id: 249 name: key: codename: - left_id: 247 - right_id: 65 + left_id: 248 + right_id: 66 current_revision_id: - created_at: 2024-10-09 13:48:48.000000000 Z - updated_at: 2024-10-09 13:48:48.000000000 Z + created_at: 2025-02-04 20:47:58.793543000 Z + updated_at: 2025-02-04 20:47:58.793543000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" - read_rule_id: 208 + read_rule_id: 209 references_expired: trash: 0 type_id: 4 db_content: _left -cards_249: - id: 249 +cards_250: + id: 250 name: key: codename: left_id: 1 - right_id: 205 + right_id: 206 current_revision_id: - created_at: 2024-10-09 13:48:49.000000000 Z - updated_at: 2024-10-09 13:48:49.000000000 Z + created_at: 2025-02-04 20:47:58.921910000 Z + updated_at: 2025-02-04 20:47:58.921910000 Z creator_id: 1 updater_id: 1 read_rule_class: "*right" - read_rule_id: 208 + read_rule_id: 209 references_expired: trash: 0 type_id: 2 db_content: '' -cards_250: - id: 250 +cards_251: + id: 251 name: key: codename: - left_id: 249 - right_id: 211 + left_id: 250 + right_id: 212 current_revision_id: - created_at: 2024-10-09 13:48:49.000000000 Z - updated_at: 2024-10-09 13:48:49.000000000 Z + created_at: 2025-02-04 20:47:58.938405000 Z + updated_at: 2025-02-04 20:47:58.938405000 Z creator_id: 1 updater_id: 1 read_rule_class: "*right" - read_rule_id: 213 + read_rule_id: 214 references_expired: trash: 0 type_id: 43 db_content: no-reply@decko.org -cards_251: - id: 251 +cards_252: + id: 252 name: key: codename: - left_id: 249 - right_id: 221 + left_id: 250 + right_id: 222 current_revision_id: - created_at: 2024-10-09 13:48:49.000000000 Z - updated_at: 2024-10-09 13:48:49.000000000 Z + created_at: 2025-02-04 20:47:58.941697000 Z + updated_at: 2025-02-04 20:47:58.941697000 Z creator_id: 1 updater_id: 1 read_rule_class: "*right" - read_rule_id: 223 + read_rule_id: 224 references_expired: trash: 0 type_id: 43 - db_content: 6167b451b19da27ac9e9163f90f55250a013cdb1 -cards_252: - id: 252 + db_content: a3907f60267acf00010cccf234068e6198a51623 +cards_253: + id: 253 name: key: codename: - left_id: 249 - right_id: 224 + left_id: 250 + right_id: 225 current_revision_id: - created_at: 2024-10-09 13:48:49.000000000 Z - updated_at: 2024-10-09 13:48:49.000000000 Z + created_at: 2025-02-04 20:47:58.950890000 Z + updated_at: 2025-02-04 20:47:58.950890000 Z creator_id: 1 updater_id: 1 read_rule_class: "*right" - read_rule_id: 226 + read_rule_id: 227 references_expired: trash: 0 type_id: 43 db_content: active -cards_253: - id: 253 +cards_254: + id: 254 name: welcome email key: welcome_email codename: welcome_email left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:49.000000000 Z - updated_at: 2024-10-09 13:48:49.000000000 Z + created_at: 2025-02-04 20:47:59.050889000 Z + updated_at: 2025-02-04 20:47:59.050889000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 152 - db_content: "

    \n {{+*from | labeled | link}} \n {{+*to | labeled | link}} \n - \ {{+*cc | labeled | link}}\n {{+*bcc | labeled | link}}\n {{+*subject | titled}}\n - \ {{+*html message | titled}} \n {{+*text message | titled}}\n {{+*attach | - titled}}\n

    \"" -cards_254: - id: 254 + type_id: 153 + db_content: "{{+:from | labeled | link}} \n{{+:to | labeled | link}} \n{{+:cc | + labeled | link}}\n{{+:bcc | labeled | link}}\n{{+:subject | titled}}\n{{+:html_message + | titled}} \n{{+:text_message | titled}}\n{{+:attach | titled}}" +cards_255: + id: 255 name: verification email key: verification_email codename: verification_email left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:49.000000000 Z - updated_at: 2024-10-09 13:48:50.000000000 Z + created_at: 2025-02-04 20:47:59.200032000 Z + updated_at: 2025-02-04 20:47:59.425944000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 152 - db_content: "

    \n {{+*from | labeled | link}} \n {{+*to | labeled | link}} \n - \ {{+*cc | labeled | link}}\n {{+*bcc | labeled | link}}\n {{+*subject | titled}}\n - \ {{+*html message | titled}} \n {{+*text message | titled}}\n {{+*attach | - titled}}\n

    \"" -cards_255: - id: 255 + type_id: 153 + db_content: "{{+:from | labeled | link}} \n{{+:to | labeled | link}} \n{{+:cc | + labeled | link}}\n{{+:bcc | labeled | link}}\n{{+:subject | titled}}\n{{+:html_message + | titled}} \n{{+:text_message | titled}}\n{{+:attach | titled}}" +cards_256: + id: 256 name: key: codename: - left_id: 254 - right_id: 159 + left_id: 255 + right_id: 160 current_revision_id: - created_at: 2024-10-09 13:48:49.000000000 Z - updated_at: 2024-10-09 13:48:49.000000000 Z + created_at: 2025-02-04 20:47:59.201873000 Z + updated_at: 2025-02-04 20:47:59.201873000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -4741,16 +4756,16 @@ cards_255: trash: 0 type_id: 4 db_content: Decko Bot -cards_256: - id: 256 +cards_257: + id: 257 name: key: codename: - left_id: 254 - right_id: 168 + left_id: 255 + right_id: 169 current_revision_id: - created_at: 2024-10-09 13:48:50.000000000 Z - updated_at: 2024-10-09 13:48:50.000000000 Z + created_at: 2025-02-04 20:47:59.203616000 Z + updated_at: 2025-02-04 20:47:59.203616000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -4759,16 +4774,16 @@ cards_256: trash: 0 type_id: 43 db_content: verification link for {{:title|core}} -cards_257: - id: 257 +cards_258: + id: 258 name: key: codename: - left_id: 254 - right_id: 172 + left_id: 255 + right_id: 173 current_revision_id: - created_at: 2024-10-09 13:48:50.000000000 Z - updated_at: 2024-10-09 13:48:50.000000000 Z + created_at: 2025-02-04 20:47:59.205363000 Z + updated_at: 2025-02-04 20:47:59.205363000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -4785,16 +4800,16 @@ cards_257:

    Link will remain valid for {{_|verify_days}} days.

    -cards_258: - id: 258 +cards_259: + id: 259 name: key: codename: - left_id: 254 - right_id: 173 + left_id: 255 + right_id: 174 current_revision_id: - created_at: 2024-10-09 13:48:50.000000000 Z - updated_at: 2024-10-09 13:48:50.000000000 Z + created_at: 2025-02-04 20:47:59.207186000 Z + updated_at: 2025-02-04 20:47:59.207186000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -4809,37 +4824,36 @@ cards_258: {{_|verify_url}} (Link will remain valid for {{_|verify_days}} days.) -cards_259: - id: 259 +cards_260: + id: 260 name: password reset email key: password_reset_email codename: password_reset_email left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:50.000000000 Z - updated_at: 2024-10-09 13:48:50.000000000 Z + created_at: 2025-02-04 20:47:59.510288000 Z + updated_at: 2025-02-04 20:47:59.672103000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 152 - db_content: "

    \n {{+*from | labeled | link}} \n {{+*to | labeled | link}} \n - \ {{+*cc | labeled | link}}\n {{+*bcc | labeled | link}}\n {{+*subject | titled}}\n - \ {{+*html message | titled}} \n {{+*text message | titled}}\n {{+*attach | - titled}}\n

    \"" -cards_260: - id: 260 + type_id: 153 + db_content: "{{+:from | labeled | link}} \n{{+:to | labeled | link}} \n{{+:cc | + labeled | link}}\n{{+:bcc | labeled | link}}\n{{+:subject | titled}}\n{{+:html_message + | titled}} \n{{+:text_message | titled}}\n{{+:attach | titled}}" +cards_261: + id: 261 name: key: codename: - left_id: 259 - right_id: 159 + left_id: 260 + right_id: 160 current_revision_id: - created_at: 2024-10-09 13:48:50.000000000 Z - updated_at: 2024-10-09 13:48:50.000000000 Z + created_at: 2025-02-04 20:47:59.512758000 Z + updated_at: 2025-02-04 20:47:59.512758000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -4848,16 +4862,16 @@ cards_260: trash: 0 type_id: 4 db_content: Decko Bot -cards_261: - id: 261 +cards_262: + id: 262 name: key: codename: - left_id: 259 - right_id: 168 + left_id: 260 + right_id: 169 current_revision_id: - created_at: 2024-10-09 13:48:50.000000000 Z - updated_at: 2024-10-09 13:48:50.000000000 Z + created_at: 2025-02-04 20:47:59.514997000 Z + updated_at: 2025-02-04 20:47:59.514997000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -4866,16 +4880,16 @@ cards_261: trash: 0 type_id: 43 db_content: reset password for {{:title|core}} -cards_262: - id: 262 +cards_263: + id: 263 name: key: codename: - left_id: 259 - right_id: 173 + left_id: 260 + right_id: 174 current_revision_id: - created_at: 2024-10-09 13:48:50.000000000 Z - updated_at: 2024-10-09 13:48:50.000000000 Z + created_at: 2025-02-04 20:47:59.528499000 Z + updated_at: 2025-02-04 20:47:59.528499000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -4887,16 +4901,16 @@ cards_262: – asked to reset your password. Please follow this link...\n\n {{_|reset_password_url}}\n \ \n...to update your account details.\n\n\n(Link will remain valid for {{_|reset_password_days}} days.)\n\n" -cards_263: - id: 263 +cards_264: + id: 264 name: key: codename: - left_id: 259 - right_id: 172 + left_id: 260 + right_id: 173 current_revision_id: - created_at: 2024-10-09 13:48:50.000000000 Z - updated_at: 2024-10-09 13:48:50.000000000 Z + created_at: 2025-02-04 20:47:59.531932000 Z + updated_at: 2025-02-04 20:47:59.531932000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -4909,37 +4923,36 @@ cards_263: follow this link to update your account details.

    \n \n

    Link will remain valid for {{_|reset_password_days}} days.

    \n\n\n" -cards_264: - id: 264 +cards_265: + id: 265 name: signup alert email key: signup_alert_email codename: signup_alert_email left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:50.000000000 Z - updated_at: 2024-10-09 13:48:50.000000000 Z + created_at: 2025-02-04 20:47:59.727815000 Z + updated_at: 2025-02-04 20:47:59.989208000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 152 - db_content: "

    \n {{+*from | labeled | link}} \n {{+*to | labeled | link}} \n - \ {{+*cc | labeled | link}}\n {{+*bcc | labeled | link}}\n {{+*subject | titled}}\n - \ {{+*html message | titled}} \n {{+*text message | titled}}\n {{+*attach | - titled}}\n

    \"" -cards_265: - id: 265 + type_id: 153 + db_content: "{{+:from | labeled | link}} \n{{+:to | labeled | link}} \n{{+:cc | + labeled | link}}\n{{+:bcc | labeled | link}}\n{{+:subject | titled}}\n{{+:html_message + | titled}} \n{{+:text_message | titled}}\n{{+:attach | titled}}" +cards_266: + id: 266 name: key: codename: - left_id: 264 - right_id: 159 + left_id: 265 + right_id: 160 current_revision_id: - created_at: 2024-10-09 13:48:50.000000000 Z - updated_at: 2024-10-09 13:48:50.000000000 Z + created_at: 2025-02-04 20:47:59.736102000 Z + updated_at: 2025-02-04 20:47:59.736102000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -4948,16 +4961,16 @@ cards_265: trash: 0 type_id: 4 db_content: _user -cards_266: - id: 266 +cards_267: + id: 267 name: key: codename: - left_id: 264 - right_id: 168 + left_id: 265 + right_id: 169 current_revision_id: - created_at: 2024-10-09 13:48:50.000000000 Z - updated_at: 2024-10-09 13:48:50.000000000 Z + created_at: 2025-02-04 20:47:59.738014000 Z + updated_at: 2025-02-04 20:47:59.738014000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -4966,16 +4979,16 @@ cards_266: trash: 0 type_id: 43 db_content: "{{_|name}} signed up for {{:title|core}}" -cards_267: - id: 267 +cards_268: + id: 268 name: key: codename: - left_id: 264 - right_id: 173 + left_id: 265 + right_id: 174 current_revision_id: - created_at: 2024-10-09 13:48:50.000000000 Z - updated_at: 2024-10-09 13:48:50.000000000 Z + created_at: 2025-02-04 20:47:59.739870000 Z + updated_at: 2025-02-04 20:47:59.739870000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -4989,16 +5002,16 @@ cards_267: See {{_|name}}'s card: {{_|url}} -- the machines running {{:title|core}} -cards_268: - id: 268 +cards_269: + id: 269 name: key: codename: - left_id: 264 - right_id: 172 + left_id: 265 + right_id: 173 current_revision_id: - created_at: 2024-10-09 13:48:50.000000000 Z - updated_at: 2024-10-09 13:48:50.000000000 Z + created_at: 2025-02-04 20:47:59.741677000 Z + updated_at: 2025-02-04 20:47:59.741677000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -5014,16 +5027,16 @@ cards_268:

    -- the machines running {{:title|core}}

    -cards_269: - id: 269 +cards_270: + id: 270 name: "*signin" key: "*signin" codename: signin left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:50.000000000 Z - updated_at: 2024-10-09 13:48:50.000000000 Z + created_at: 2025-02-04 20:48:00.044466000 Z + updated_at: 2025-02-04 20:48:00.044466000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -5032,16 +5045,16 @@ cards_269: trash: 0 type_id: 2 db_content: '' -cards_270: - id: 270 +cards_271: + id: 271 name: key: codename: - left_id: 269 + left_id: 270 right_id: 27 current_revision_id: - created_at: 2024-10-09 13:48:50.000000000 Z - updated_at: 2024-10-09 13:48:50.000000000 Z + created_at: 2025-02-04 20:48:00.048485000 Z + updated_at: 2025-02-04 20:48:00.048485000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -5050,16 +5063,16 @@ cards_270: trash: 0 type_id: 5 db_content: '' -cards_271: - id: 271 +cards_272: + id: 272 name: key: codename: - left_id: 270 - right_id: 66 + left_id: 271 + right_id: 67 current_revision_id: - created_at: 2024-10-09 13:48:50.000000000 Z - updated_at: 2024-10-09 13:48:50.000000000 Z + created_at: 2025-02-04 20:48:00.050859000 Z + updated_at: 2025-02-04 20:48:00.050859000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -5068,16 +5081,16 @@ cards_271: trash: 0 type_id: 4 db_content: Anyone -cards_272: - id: 272 +cards_273: + id: 273 name: "*roles" key: "*role" codename: roles left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:50.000000000 Z - updated_at: 2024-10-09 13:48:50.000000000 Z + created_at: 2025-02-04 20:48:00.287608000 Z + updated_at: 2025-02-04 20:48:00.287608000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -5086,16 +5099,16 @@ cards_272: trash: 0 type_id: 2 db_content: '' -cards_273: - id: 273 +cards_274: + id: 274 name: key: codename: - left_id: 272 + left_id: 273 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:48:50.000000000 Z - updated_at: 2024-10-09 13:48:50.000000000 Z + created_at: 2025-02-04 20:48:00.292735000 Z + updated_at: 2025-02-04 20:48:00.292735000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -5104,52 +5117,52 @@ cards_273: trash: 0 type_id: 5 db_content: '' -cards_274: - id: 274 +cards_275: + id: 275 name: key: codename: - left_id: 273 - right_id: 148 + left_id: 274 + right_id: 149 current_revision_id: - created_at: 2024-10-09 13:48:50.000000000 Z - updated_at: 2024-10-09 13:48:50.000000000 Z + created_at: 2025-02-04 20:48:00.299425000 Z + updated_at: 2025-02-04 20:48:00.299425000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 55 + type_id: 56 db_content: checkbox -cards_275: - id: 275 +cards_276: + id: 276 name: key: codename: - left_id: 273 - right_id: 59 + left_id: 274 + right_id: 60 current_revision_id: - created_at: 2024-10-09 13:48:50.000000000 Z - updated_at: 2024-10-09 13:48:50.000000000 Z + created_at: 2025-02-04 20:48:00.308786000 Z + updated_at: 2025-02-04 20:48:00.308786000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 97 + type_id: 98 db_content: '{"type":"role", "not":{"codename":["in","anyone","anyone_signed_in"]}}' -cards_276: - id: 276 - name: "*enabled roles" +cards_277: + id: 277 + name: "*enabled roles" key: "*enabled_role" codename: enabled_roles left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:50.000000000 Z - updated_at: 2024-10-09 13:48:50.000000000 Z + created_at: 2025-02-04 20:48:00.413878000 Z + updated_at: 2025-02-04 20:48:00.413878000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -5158,16 +5171,16 @@ cards_276: trash: 0 type_id: 2 db_content: '' -cards_277: - id: 277 +cards_278: + id: 278 name: "*account links" key: "*account_link" codename: account_links left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:50.000000000 Z - updated_at: 2024-10-09 13:48:50.000000000 Z + created_at: 2025-02-04 20:48:00.596298000 Z + updated_at: 2025-02-04 20:48:00.596298000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -5176,34 +5189,34 @@ cards_277: trash: 0 type_id: 2 db_content: '' -cards_278: - id: 278 +cards_279: + id: 279 name: Cards with accounts key: card_with_account codename: cards_with_account left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:50.000000000 Z - updated_at: 2024-10-09 13:48:50.000000000 Z + created_at: 2025-02-04 20:48:00.670667000 Z + updated_at: 2025-02-04 20:48:00.670667000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 97 + type_id: 98 db_content: '{"right_plus": ":account"}' -cards_279: - id: 279 +cards_280: + id: 280 name: "*thanks" key: "*thank" codename: thanks left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:51.000000000 Z - updated_at: 2024-10-09 13:48:51.000000000 Z + created_at: 2025-02-04 20:48:00.736652000 Z + updated_at: 2025-02-04 20:48:00.736652000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -5212,16 +5225,16 @@ cards_279: trash: 0 type_id: 6 db_content: '' -cards_280: - id: 280 +cards_281: + id: 281 name: key: codename: - left_id: 236 - right_id: 279 + left_id: 237 + right_id: 280 current_revision_id: - created_at: 2024-10-09 13:48:51.000000000 Z - updated_at: 2024-10-09 13:48:51.000000000 Z + created_at: 2025-02-04 20:48:00.934895000 Z + updated_at: 2025-02-04 20:48:00.934895000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -5230,16 +5243,16 @@ cards_280: trash: 0 type_id: 43 db_content: signup_success -cards_281: - id: 281 +cards_282: + id: 282 name: Signup Success key: signup_success codename: signup_success left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:51.000000000 Z - updated_at: 2024-10-09 13:48:51.000000000 Z + created_at: 2025-02-04 20:48:00.973896000 Z + updated_at: 2025-02-04 20:48:00.973896000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -5249,16 +5262,16 @@ cards_281: type_id: 2 db_content: "
    \n Thank you for signing up with {{:title|core}}. \n You should receive a response in your email.\n
    " -cards_282: - id: 282 +cards_283: + id: 283 name: File key: file codename: file left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:51.000000000 Z - updated_at: 2024-10-09 13:48:51.000000000 Z + created_at: 2025-02-04 20:48:01.203504000 Z + updated_at: 2025-02-04 20:48:01.313374000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -5270,16 +5283,16 @@ cards_282: {{+:description|content}} {{_|add_button}}{{_|configure_button}} {{+:type+:by_name|content}} -cards_283: - id: 283 +cards_284: + id: 284 name: key: codename: - left_id: 282 + left_id: 283 right_id: 12 current_revision_id: - created_at: 2024-10-09 13:48:51.000000000 Z - updated_at: 2024-10-09 13:48:51.000000000 Z + created_at: 2025-02-04 20:48:01.208199000 Z + updated_at: 2025-02-04 20:48:01.208199000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -5292,16 +5305,16 @@ cards_283: Upload images to these cards and include them anywhere. [[http://decko.org/Image|more]]

    -cards_284: - id: 284 +cards_285: + id: 285 name: Image key: image codename: image left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:51.000000000 Z - updated_at: 2024-10-09 13:48:51.000000000 Z + created_at: 2025-02-04 20:48:01.324694000 Z + updated_at: 2025-02-04 20:48:01.405524000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -5313,16 +5326,16 @@ cards_284: {{+:description|content}} {{_|add_button}}{{_|configure_button}} {{+:type+:by_name|content}} -cards_285: - id: 285 +cards_286: + id: 286 name: key: codename: - left_id: 284 + left_id: 285 right_id: 12 current_revision_id: - created_at: 2024-10-09 13:48:51.000000000 Z - updated_at: 2024-10-09 13:48:51.000000000 Z + created_at: 2025-02-04 20:48:01.327207000 Z + updated_at: 2025-02-04 20:48:01.327207000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -5335,16 +5348,16 @@ cards_285: File cards are for uploading and downloading files. [[http://decko.org/File|more]]

    -cards_286: - id: 286 +cards_287: + id: 287 name: key: codename: - left_id: 284 + left_id: 285 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:48:51.000000000 Z - updated_at: 2024-10-09 13:48:51.000000000 Z + created_at: 2025-02-04 20:48:01.422838000 Z + updated_at: 2025-02-04 20:48:01.422838000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -5353,196 +5366,196 @@ cards_286: trash: 0 type_id: 5 db_content: '' -cards_287: - id: 287 +cards_288: + id: 288 name: key: codename: - left_id: 286 + left_id: 287 right_id: 8 current_revision_id: - created_at: 2024-10-09 13:48:51.000000000 Z - updated_at: 2024-10-09 13:48:51.000000000 Z + created_at: 2025-02-04 20:48:01.424587000 Z + updated_at: 2025-02-04 20:48:01.424587000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 284 + type_id: 285 db_content: '' -cards_288: - id: 288 +cards_289: + id: 289 name: "*logo" key: "*logo" codename: logo left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:51.000000000 Z - updated_at: 2024-10-09 13:48:51.000000000 Z + created_at: 2025-02-04 20:48:01.461030000 Z + updated_at: 2025-02-04 20:48:01.461030000 Z creator_id: 1 updater_id: 1 read_rule_class: "*self" - read_rule_id: 290 + read_rule_id: 291 references_expired: trash: 0 - type_id: 284 + type_id: 285 db_content: ":logo/carrierwave.svg" -cards_289: - id: 289 +cards_290: + id: 290 name: key: codename: - left_id: 288 + left_id: 289 right_id: 27 current_revision_id: - created_at: 2024-10-09 13:48:51.000000000 Z - updated_at: 2024-10-09 13:48:51.000000000 Z + created_at: 2025-02-04 20:48:01.464328000 Z + updated_at: 2025-02-04 20:48:01.464328000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" - read_rule_id: 290 + read_rule_id: 291 references_expired: trash: 0 type_id: 5 db_content: '' -cards_290: - id: 290 +cards_291: + id: 291 name: key: codename: - left_id: 289 + left_id: 290 right_id: 9 current_revision_id: - created_at: 2024-10-09 13:48:51.000000000 Z - updated_at: 2024-10-09 13:48:51.000000000 Z + created_at: 2025-02-04 20:48:01.575712000 Z + updated_at: 2025-02-04 20:48:01.575712000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" - read_rule_id: 290 + read_rule_id: 291 references_expired: trash: 0 type_id: 4 db_content: Anyone -cards_291: - id: 291 +cards_292: + id: 292 name: Decko logo key: decko_logo codename: decko_logo left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:52.000000000 Z - updated_at: 2024-10-09 13:48:52.000000000 Z + created_at: 2025-02-04 20:48:01.778376000 Z + updated_at: 2025-02-04 20:48:01.778376000 Z creator_id: 1 updater_id: 1 read_rule_class: "*self" - read_rule_id: 293 + read_rule_id: 294 references_expired: trash: 0 - type_id: 284 + type_id: 285 db_content: ":decko_logo/carrierwave.svg" -cards_292: - id: 292 +cards_293: + id: 293 name: key: codename: - left_id: 291 + left_id: 292 right_id: 27 current_revision_id: - created_at: 2024-10-09 13:48:52.000000000 Z - updated_at: 2024-10-09 13:48:52.000000000 Z + created_at: 2025-02-04 20:48:01.784186000 Z + updated_at: 2025-02-04 20:48:01.784186000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" - read_rule_id: 293 + read_rule_id: 294 references_expired: trash: 0 type_id: 5 db_content: '' -cards_293: - id: 293 +cards_294: + id: 294 name: key: codename: - left_id: 292 + left_id: 293 right_id: 9 current_revision_id: - created_at: 2024-10-09 13:48:52.000000000 Z - updated_at: 2024-10-09 13:48:52.000000000 Z + created_at: 2025-02-04 20:48:01.787870000 Z + updated_at: 2025-02-04 20:48:01.787870000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" - read_rule_id: 293 + read_rule_id: 294 references_expired: trash: 0 type_id: 4 db_content: Anyone -cards_294: - id: 294 +cards_295: + id: 295 name: "*favicon" key: "*favicon" codename: favicon left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:53.000000000 Z - updated_at: 2024-10-09 13:48:53.000000000 Z + created_at: 2025-02-04 20:48:02.981841000 Z + updated_at: 2025-02-04 20:48:02.981841000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 284 + type_id: 285 db_content: ":favicon/carrierwave.png" -cards_295: - id: 295 +cards_296: + id: 296 name: "*new file" key: "*new_file" codename: new_file left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:53.000000000 Z - updated_at: 2024-10-09 13:48:53.000000000 Z + created_at: 2025-02-04 20:48:03.070522000 Z + updated_at: 2025-02-04 20:48:03.070522000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 282 + type_id: 283 db_content: '' -cards_296: - id: 296 +cards_297: + id: 297 name: "*new image" key: "*new_image" codename: new_image left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:53.000000000 Z - updated_at: 2024-10-09 13:48:53.000000000 Z + created_at: 2025-02-04 20:48:03.156666000 Z + updated_at: 2025-02-04 20:48:03.156666000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 284 + type_id: 285 db_content: '' -cards_297: - id: 297 +cards_298: + id: 298 name: key: codename: left_id: 51 - right_id: 284 + right_id: 285 current_revision_id: - created_at: 2024-10-09 13:48:53.000000000 Z - updated_at: 2024-10-09 13:48:53.000000000 Z + created_at: 2025-02-04 20:48:03.453957000 Z + updated_at: 2025-02-04 20:48:03.453957000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -5610,16 +5623,16 @@ cards_297: -cards_298: - id: 298 +cards_299: + id: 299 name: "*asset input" key: "*asset_input" codename: asset_input left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:53.000000000 Z - updated_at: 2024-10-09 13:48:53.000000000 Z + created_at: 2025-02-04 20:48:03.476916000 Z + updated_at: 2025-02-04 20:48:03.476916000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -5628,16 +5641,16 @@ cards_298: trash: 0 type_id: 2 db_content: '' -cards_299: - id: 299 +cards_300: + id: 300 name: "*asset output" key: "*asset_output" codename: asset_output left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:53.000000000 Z - updated_at: 2024-10-09 13:48:53.000000000 Z + created_at: 2025-02-04 20:48:03.557289000 Z + updated_at: 2025-02-04 20:48:03.557289000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -5646,16 +5659,16 @@ cards_299: trash: 0 type_id: 2 db_content: '' -cards_300: - id: 300 +cards_301: + id: 301 name: Remote manifest group key: remote_manifest_group codename: remote_manifest_group left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:53.000000000 Z - updated_at: 2024-10-09 13:48:53.000000000 Z + created_at: 2025-02-04 20:48:03.740533000 Z + updated_at: 2025-02-04 20:48:03.740533000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -5667,16 +5680,16 @@ cards_300: {{+:description|content}} {{_|add_button}}{{_|configure_button}} {{+:type+:by_name|content}} -cards_301: - id: 301 +cards_302: + id: 302 name: "*script" key: "*script" codename: script left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:54.000000000 Z - updated_at: 2024-10-09 13:48:54.000000000 Z + created_at: 2025-02-04 20:48:03.865204000 Z + updated_at: 2025-02-04 20:48:03.865204000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -5685,16 +5698,16 @@ cards_301: trash: 0 type_id: 6 db_content: '' -cards_302: - id: 302 +cards_303: + id: 303 name: key: codename: - left_id: 301 + left_id: 302 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:48:54.000000000 Z - updated_at: 2024-10-09 13:48:54.000000000 Z + created_at: 2025-02-04 20:48:03.869142000 Z + updated_at: 2025-02-04 20:48:03.869142000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -5703,52 +5716,52 @@ cards_302: trash: 0 type_id: 5 db_content: '' -cards_303: - id: 303 +cards_304: + id: 304 name: key: codename: - left_id: 302 - right_id: 59 + left_id: 303 + right_id: 60 current_revision_id: - created_at: 2024-10-09 13:48:54.000000000 Z - updated_at: 2024-10-09 13:48:54.000000000 Z + created_at: 2025-02-04 20:48:03.871410000 Z + updated_at: 2025-02-04 20:48:03.871410000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 97 + type_id: 98 db_content: ' {"type":["in", "JavaScript", "CoffeeScript"] }' -cards_304: - id: 304 +cards_305: + id: 305 name: key: codename: - left_id: 302 - right_id: 148 + left_id: 303 + right_id: 149 current_revision_id: - created_at: 2024-10-09 13:48:54.000000000 Z - updated_at: 2024-10-09 13:48:54.000000000 Z + created_at: 2025-02-04 20:48:03.875101000 Z + updated_at: 2025-02-04 20:48:03.875101000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 55 + type_id: 56 db_content: list -cards_305: - id: 305 +cards_306: + id: 306 name: key: codename: left_id: 7 - right_id: 301 + right_id: 302 current_revision_id: - created_at: 2024-10-09 13:48:54.000000000 Z - updated_at: 2024-10-09 13:50:49.000000000 Z + created_at: 2025-02-04 20:48:04.056337000 Z + updated_at: 2025-02-04 20:49:26.868023000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -5772,16 +5785,16 @@ cards_305: mod: layout+*script mod: recaptcha+*script mod: tinymce editor+*script -cards_306: - id: 306 +cards_307: + id: 307 name: JavaScript key: java_script codename: java_script left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:54.000000000 Z - updated_at: 2024-10-09 13:48:54.000000000 Z + created_at: 2025-02-04 20:48:04.099275000 Z + updated_at: 2025-02-04 20:48:04.267585000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -5793,16 +5806,16 @@ cards_306: {{+:description|content}} {{_|add_button}}{{_|configure_button}} {{+:type+:by_name|content}} -cards_307: - id: 307 +cards_308: + id: 308 name: key: codename: - left_id: 306 + left_id: 307 right_id: 12 current_revision_id: - created_at: 2024-10-09 13:48:54.000000000 Z - updated_at: 2024-10-09 13:48:54.000000000 Z + created_at: 2025-02-04 20:48:04.101827000 Z + updated_at: 2025-02-04 20:48:04.101827000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -5815,16 +5828,16 @@ cards_307: Create custom JavaScript for [[*script]] rules. [[http://decko.org/JavaScript|more]]

    -cards_308: - id: 308 +cards_309: + id: 309 name: key: codename: - left_id: 306 + left_id: 307 right_id: 21 current_revision_id: - created_at: 2024-10-09 13:48:54.000000000 Z - updated_at: 2024-10-09 13:48:54.000000000 Z + created_at: 2025-02-04 20:48:04.105047000 Z + updated_at: 2025-02-04 20:48:04.105047000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -5833,16 +5846,16 @@ cards_308: trash: 0 type_id: 5 db_content: '' -cards_309: - id: 309 +cards_310: + id: 310 name: key: codename: - left_id: 308 - right_id: 65 + left_id: 309 + right_id: 66 current_revision_id: - created_at: 2024-10-09 13:48:54.000000000 Z - updated_at: 2024-10-09 13:48:54.000000000 Z + created_at: 2025-02-04 20:48:04.107626000 Z + updated_at: 2025-02-04 20:48:04.107626000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -5851,16 +5864,16 @@ cards_309: trash: 0 type_id: 4 db_content: Shark -cards_310: - id: 310 +cards_311: + id: 311 name: key: codename: - left_id: 308 - right_id: 66 + left_id: 309 + right_id: 67 current_revision_id: - created_at: 2024-10-09 13:48:54.000000000 Z - updated_at: 2024-10-09 13:48:54.000000000 Z + created_at: 2025-02-04 20:48:04.110179000 Z + updated_at: 2025-02-04 20:48:04.110179000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -5869,16 +5882,16 @@ cards_310: trash: 0 type_id: 4 db_content: Shark -cards_311: - id: 311 +cards_312: + id: 312 name: key: codename: - left_id: 308 - right_id: 67 + left_id: 309 + right_id: 68 current_revision_id: - created_at: 2024-10-09 13:48:54.000000000 Z - updated_at: 2024-10-09 13:48:54.000000000 Z + created_at: 2025-02-04 20:48:04.180250000 Z + updated_at: 2025-02-04 20:48:04.180250000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -5887,16 +5900,16 @@ cards_311: trash: 0 type_id: 4 db_content: Shark -cards_312: - id: 312 +cards_313: + id: 313 name: CoffeeScript key: coffee_script codename: coffee_script left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:54.000000000 Z - updated_at: 2024-10-09 13:48:54.000000000 Z + created_at: 2025-02-04 20:48:04.289046000 Z + updated_at: 2025-02-04 20:48:04.451115000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -5908,16 +5921,16 @@ cards_312: {{+:description|content}} {{_|add_button}}{{_|configure_button}} {{+:type+:by_name|content}} -cards_313: - id: 313 +cards_314: + id: 314 name: key: codename: - left_id: 312 + left_id: 313 right_id: 12 current_revision_id: - created_at: 2024-10-09 13:48:54.000000000 Z - updated_at: 2024-10-09 13:48:54.000000000 Z + created_at: 2025-02-04 20:48:04.291136000 Z + updated_at: 2025-02-04 20:48:04.291136000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -5930,16 +5943,16 @@ cards_313: Generate JavaScript for [[*script]] rules. [[http://decko.org/CoffeeScript|more]]

    -cards_314: - id: 314 +cards_315: + id: 315 name: key: codename: - left_id: 312 + left_id: 313 right_id: 21 current_revision_id: - created_at: 2024-10-09 13:48:54.000000000 Z - updated_at: 2024-10-09 13:48:54.000000000 Z + created_at: 2025-02-04 20:48:04.293809000 Z + updated_at: 2025-02-04 20:48:04.293809000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -5948,16 +5961,16 @@ cards_314: trash: 0 type_id: 5 db_content: '' -cards_315: - id: 315 +cards_316: + id: 316 name: key: codename: - left_id: 314 - right_id: 65 + left_id: 315 + right_id: 66 current_revision_id: - created_at: 2024-10-09 13:48:54.000000000 Z - updated_at: 2024-10-09 13:48:54.000000000 Z + created_at: 2025-02-04 20:48:04.297614000 Z + updated_at: 2025-02-04 20:48:04.297614000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -5966,16 +5979,16 @@ cards_315: trash: 0 type_id: 4 db_content: Shark -cards_316: - id: 316 +cards_317: + id: 317 name: key: codename: - left_id: 314 - right_id: 66 + left_id: 315 + right_id: 67 current_revision_id: - created_at: 2024-10-09 13:48:54.000000000 Z - updated_at: 2024-10-09 13:48:54.000000000 Z + created_at: 2025-02-04 20:48:04.300282000 Z + updated_at: 2025-02-04 20:48:04.300282000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -5984,16 +5997,16 @@ cards_316: trash: 0 type_id: 4 db_content: Shark -cards_317: - id: 317 +cards_318: + id: 318 name: key: codename: - left_id: 314 - right_id: 67 + left_id: 315 + right_id: 68 current_revision_id: - created_at: 2024-10-09 13:48:54.000000000 Z - updated_at: 2024-10-09 13:48:54.000000000 Z + created_at: 2025-02-04 20:48:04.302576000 Z + updated_at: 2025-02-04 20:48:04.302576000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -6002,16 +6015,16 @@ cards_317: trash: 0 type_id: 4 db_content: Shark -cards_318: - id: 318 +cards_319: + id: 319 name: Local script folder group key: local_script_folder_group codename: local_script_folder_group left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:54.000000000 Z - updated_at: 2024-10-09 13:48:54.000000000 Z + created_at: 2025-02-04 20:48:04.460294000 Z + updated_at: 2025-02-04 20:48:04.460294000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -6023,16 +6036,16 @@ cards_318: {{+:description|content}} {{_|add_button}}{{_|configure_button}} {{+:type+:by_name|content}} -cards_319: - id: 319 +cards_320: + id: 320 name: Local script manifest group key: local_script_manifest_group codename: local_script_manifest_group left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:54.000000000 Z - updated_at: 2024-10-09 13:48:54.000000000 Z + created_at: 2025-02-04 20:48:04.547870000 Z + updated_at: 2025-02-04 20:48:04.547870000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -6044,16 +6057,16 @@ cards_319: {{+:description|content}} {{_|add_button}}{{_|configure_button}} {{+:type+:by_name|content}} -cards_320: - id: 320 +cards_321: + id: 321 name: "*Ace" key: "*ace" codename: ace left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:54.000000000 Z - updated_at: 2024-10-09 13:48:54.000000000 Z + created_at: 2025-02-04 20:48:04.752231000 Z + updated_at: 2025-02-04 20:48:04.752231000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -6072,16 +6085,16 @@ cards_320: "maxLines": 30 } } -cards_321: - id: 321 +cards_322: + id: 322 name: "*api key" key: "*api_key" codename: api_key left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:55.000000000 Z - updated_at: 2024-10-09 13:48:55.000000000 Z + created_at: 2025-02-04 20:48:04.890737000 Z + updated_at: 2025-02-04 20:48:04.890737000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -6090,16 +6103,16 @@ cards_321: trash: 0 type_id: 2 db_content: '' -cards_322: - id: 322 +cards_323: + id: 323 name: key: codename: - left_id: 321 + left_id: 322 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:48:55.000000000 Z - updated_at: 2024-10-09 13:48:55.000000000 Z + created_at: 2025-02-04 20:48:04.894351000 Z + updated_at: 2025-02-04 20:48:04.894351000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -6108,16 +6121,16 @@ cards_322: trash: 0 type_id: 5 db_content: '' -cards_323: - id: 323 +cards_324: + id: 324 name: key: codename: - left_id: 322 + left_id: 323 right_id: 9 current_revision_id: - created_at: 2024-10-09 13:48:55.000000000 Z - updated_at: 2024-10-09 13:48:55.000000000 Z + created_at: 2025-02-04 20:48:04.897178000 Z + updated_at: 2025-02-04 20:48:04.897178000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -6126,16 +6139,16 @@ cards_323: trash: 0 type_id: 4 db_content: Help Desk -cards_324: - id: 324 +cards_325: + id: 325 name: key: codename: - left_id: 322 - right_id: 66 + left_id: 323 + right_id: 67 current_revision_id: - created_at: 2024-10-09 13:48:55.000000000 Z - updated_at: 2024-10-09 13:48:55.000000000 Z + created_at: 2025-02-04 20:48:04.899520000 Z + updated_at: 2025-02-04 20:48:04.899520000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -6144,16 +6157,16 @@ cards_324: trash: 0 type_id: 4 db_content: Help Desk -cards_325: - id: 325 +cards_326: + id: 326 name: key: codename: - left_id: 322 - right_id: 67 + left_id: 323 + right_id: 68 current_revision_id: - created_at: 2024-10-09 13:48:55.000000000 Z - updated_at: 2024-10-09 13:48:55.000000000 Z + created_at: 2025-02-04 20:48:04.901386000 Z + updated_at: 2025-02-04 20:48:04.901386000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -6162,16 +6175,16 @@ cards_325: trash: 0 type_id: 4 db_content: Help Desk -cards_326: - id: 326 +cards_327: + id: 327 name: 'style: mods' key: style_mod codename: style_mods left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:55.000000000 Z - updated_at: 2024-10-09 13:50:49.000000000 Z + created_at: 2025-02-04 20:48:05.125212000 Z + updated_at: 2025-02-04 20:49:26.891668000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -6198,16 +6211,16 @@ cards_326: mod: follow+*style mod: layout+*style mod: tinymce editor+*style -cards_327: - id: 327 +cards_328: + id: 328 name: Local style folder group key: local_style_folder_group codename: local_style_folder_group left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:55.000000000 Z - updated_at: 2024-10-09 13:48:55.000000000 Z + created_at: 2025-02-04 20:48:05.259230000 Z + updated_at: 2025-02-04 20:48:05.259230000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -6219,16 +6232,16 @@ cards_327: {{+:description|content}} {{_|add_button}}{{_|configure_button}} {{+:type+:by_name|content}} -cards_328: - id: 328 +cards_329: + id: 329 name: Local style manifest group key: local_style_manifest_group codename: local_style_manifest_group left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:55.000000000 Z - updated_at: 2024-10-09 13:48:55.000000000 Z + created_at: 2025-02-04 20:48:05.424011000 Z + updated_at: 2025-02-04 20:48:05.424011000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -6240,16 +6253,16 @@ cards_328: {{+:description|content}} {{_|add_button}}{{_|configure_button}} {{+:type+:by_name|content}} -cards_329: - id: 329 +cards_330: + id: 330 name: CSS key: css codename: css left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:55.000000000 Z - updated_at: 2024-10-09 13:48:55.000000000 Z + created_at: 2025-02-04 20:48:05.601022000 Z + updated_at: 2025-02-04 20:48:05.717727000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -6261,16 +6274,16 @@ cards_329: {{+:description|content}} {{_|add_button}}{{_|configure_button}} {{+:type+:by_name|content}} -cards_330: - id: 330 +cards_331: + id: 331 name: key: codename: - left_id: 329 + left_id: 330 right_id: 12 current_revision_id: - created_at: 2024-10-09 13:48:55.000000000 Z - updated_at: 2024-10-09 13:48:55.000000000 Z + created_at: 2025-02-04 20:48:05.605740000 Z + updated_at: 2025-02-04 20:48:05.605740000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -6279,16 +6292,16 @@ cards_330: trash: 0 type_id: 2 db_content: "

    Customize styles for [[Skins]]. [[http://decko.org/CSS|more]]

    " -cards_331: - id: 331 +cards_332: + id: 332 name: key: codename: - left_id: 329 + left_id: 330 right_id: 21 current_revision_id: - created_at: 2024-10-09 13:48:55.000000000 Z - updated_at: 2024-10-09 13:48:55.000000000 Z + created_at: 2025-02-04 20:48:05.610259000 Z + updated_at: 2025-02-04 20:48:05.610259000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -6297,16 +6310,16 @@ cards_331: trash: 0 type_id: 5 db_content: '' -cards_332: - id: 332 +cards_333: + id: 333 name: key: codename: - left_id: 331 - right_id: 65 + left_id: 332 + right_id: 66 current_revision_id: - created_at: 2024-10-09 13:48:55.000000000 Z - updated_at: 2024-10-09 13:48:55.000000000 Z + created_at: 2025-02-04 20:48:05.612717000 Z + updated_at: 2025-02-04 20:48:05.612717000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -6315,16 +6328,16 @@ cards_332: trash: 0 type_id: 4 db_content: Shark -cards_333: - id: 333 +cards_334: + id: 334 name: key: codename: - left_id: 331 - right_id: 66 + left_id: 332 + right_id: 67 current_revision_id: - created_at: 2024-10-09 13:48:55.000000000 Z - updated_at: 2024-10-09 13:48:55.000000000 Z + created_at: 2025-02-04 20:48:05.614842000 Z + updated_at: 2025-02-04 20:48:05.614842000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -6333,16 +6346,16 @@ cards_333: trash: 0 type_id: 4 db_content: Shark -cards_334: - id: 334 +cards_335: + id: 335 name: key: codename: - left_id: 331 - right_id: 67 + left_id: 332 + right_id: 68 current_revision_id: - created_at: 2024-10-09 13:48:55.000000000 Z - updated_at: 2024-10-09 13:48:55.000000000 Z + created_at: 2025-02-04 20:48:05.616975000 Z + updated_at: 2025-02-04 20:48:05.616975000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -6351,16 +6364,16 @@ cards_334: trash: 0 type_id: 4 db_content: Shark -cards_335: - id: 335 +cards_336: + id: 336 name: SCSS key: scss codename: scss left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:55.000000000 Z - updated_at: 2024-10-09 13:48:55.000000000 Z + created_at: 2025-02-04 20:48:05.840156000 Z + updated_at: 2025-02-04 20:48:05.968486000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -6372,16 +6385,16 @@ cards_335: {{+:description|content}} {{_|add_button}}{{_|configure_button}} {{+:type+:by_name|content}} -cards_336: - id: 336 +cards_337: + id: 337 name: key: codename: - left_id: 335 + left_id: 336 right_id: 12 current_revision_id: - created_at: 2024-10-09 13:48:55.000000000 Z - updated_at: 2024-10-09 13:48:55.000000000 Z + created_at: 2025-02-04 20:48:05.843523000 Z + updated_at: 2025-02-04 20:48:05.843523000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -6390,16 +6403,16 @@ cards_336: trash: 0 type_id: 2 db_content: "

    Customize styles for [[Skins]]. [[http://decko.org/SCSS|more]]

    " -cards_337: - id: 337 +cards_338: + id: 338 name: key: codename: - left_id: 335 + left_id: 336 right_id: 21 current_revision_id: - created_at: 2024-10-09 13:48:55.000000000 Z - updated_at: 2024-10-09 13:48:55.000000000 Z + created_at: 2025-02-04 20:48:05.847051000 Z + updated_at: 2025-02-04 20:48:05.847051000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -6408,16 +6421,16 @@ cards_337: trash: 0 type_id: 5 db_content: '' -cards_338: - id: 338 +cards_339: + id: 339 name: key: codename: - left_id: 337 - right_id: 65 + left_id: 338 + right_id: 66 current_revision_id: - created_at: 2024-10-09 13:48:55.000000000 Z - updated_at: 2024-10-09 13:48:55.000000000 Z + created_at: 2025-02-04 20:48:05.849266000 Z + updated_at: 2025-02-04 20:48:05.849266000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -6426,16 +6439,16 @@ cards_338: trash: 0 type_id: 4 db_content: Shark -cards_339: - id: 339 +cards_340: + id: 340 name: key: codename: - left_id: 337 - right_id: 66 + left_id: 338 + right_id: 67 current_revision_id: - created_at: 2024-10-09 13:48:55.000000000 Z - updated_at: 2024-10-09 13:48:55.000000000 Z + created_at: 2025-02-04 20:48:05.851396000 Z + updated_at: 2025-02-04 20:48:05.851396000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -6444,16 +6457,16 @@ cards_339: trash: 0 type_id: 4 db_content: Shark -cards_340: - id: 340 +cards_341: + id: 341 name: key: codename: - left_id: 337 - right_id: 67 + left_id: 338 + right_id: 68 current_revision_id: - created_at: 2024-10-09 13:48:55.000000000 Z - updated_at: 2024-10-09 13:48:55.000000000 Z + created_at: 2025-02-04 20:48:05.853972000 Z + updated_at: 2025-02-04 20:48:05.853972000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -6462,16 +6475,16 @@ cards_340: trash: 0 type_id: 4 db_content: Shark -cards_341: - id: 341 +cards_342: + id: 342 name: Skin key: skin codename: skin left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:56.000000000 Z - updated_at: 2024-10-09 13:48:56.000000000 Z + created_at: 2025-02-04 20:48:05.993175000 Z + updated_at: 2025-02-04 20:48:06.242237000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -6483,16 +6496,16 @@ cards_341: {{+:description|content}} {{_|add_button}}{{_|configure_button}} {{+:type+:by_name|content}} -cards_342: - id: 342 +cards_343: + id: 343 name: key: codename: - left_id: 341 + left_id: 342 right_id: 12 current_revision_id: - created_at: 2024-10-09 13:48:56.000000000 Z - updated_at: 2024-10-09 13:48:56.000000000 Z + created_at: 2025-02-04 20:48:06.008244000 Z + updated_at: 2025-02-04 20:48:06.008244000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -6505,16 +6518,16 @@ cards_342: A [[skin]] determines a page's look and feel. [[http://decko.org/Skins|more]]

    -cards_343: - id: 343 +cards_344: + id: 344 name: key: codename: - left_id: 341 + left_id: 342 right_id: 21 current_revision_id: - created_at: 2024-10-09 13:48:56.000000000 Z - updated_at: 2024-10-09 13:48:56.000000000 Z + created_at: 2025-02-04 20:48:06.012680000 Z + updated_at: 2025-02-04 20:48:06.012680000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -6523,16 +6536,16 @@ cards_343: trash: 0 type_id: 5 db_content: '' -cards_344: - id: 344 +cards_345: + id: 345 name: key: codename: - left_id: 343 - right_id: 65 + left_id: 344 + right_id: 66 current_revision_id: - created_at: 2024-10-09 13:48:56.000000000 Z - updated_at: 2024-10-09 13:48:56.000000000 Z + created_at: 2025-02-04 20:48:06.016622000 Z + updated_at: 2025-02-04 20:48:06.016622000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -6541,16 +6554,16 @@ cards_344: trash: 0 type_id: 4 db_content: Shark -cards_345: - id: 345 +cards_346: + id: 346 name: key: codename: - left_id: 343 - right_id: 66 + left_id: 344 + right_id: 67 current_revision_id: - created_at: 2024-10-09 13:48:56.000000000 Z - updated_at: 2024-10-09 13:48:56.000000000 Z + created_at: 2025-02-04 20:48:06.020414000 Z + updated_at: 2025-02-04 20:48:06.020414000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -6559,16 +6572,16 @@ cards_345: trash: 0 type_id: 4 db_content: Shark -cards_346: - id: 346 +cards_347: + id: 347 name: key: codename: - left_id: 343 - right_id: 67 + left_id: 344 + right_id: 68 current_revision_id: - created_at: 2024-10-09 13:48:56.000000000 Z - updated_at: 2024-10-09 13:48:56.000000000 Z + created_at: 2025-02-04 20:48:06.024579000 Z + updated_at: 2025-02-04 20:48:06.024579000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -6577,16 +6590,16 @@ cards_346: trash: 0 type_id: 4 db_content: Shark -cards_347: - id: 347 +cards_348: + id: 348 name: "*style" key: "*style" codename: style left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:56.000000000 Z - updated_at: 2024-10-09 13:48:56.000000000 Z + created_at: 2025-02-04 20:48:06.284713000 Z + updated_at: 2025-02-04 20:48:06.284713000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -6595,16 +6608,16 @@ cards_347: trash: 0 type_id: 6 db_content: '' -cards_348: - id: 348 +cards_349: + id: 349 name: key: codename: - left_id: 347 + left_id: 348 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:48:56.000000000 Z - updated_at: 2024-10-09 13:48:56.000000000 Z + created_at: 2025-02-04 20:48:06.287837000 Z + updated_at: 2025-02-04 20:48:06.287837000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -6613,52 +6626,52 @@ cards_348: trash: 0 type_id: 5 db_content: '' -cards_349: - id: 349 +cards_350: + id: 350 name: key: codename: - left_id: 348 - right_id: 148 + left_id: 349 + right_id: 149 current_revision_id: - created_at: 2024-10-09 13:48:56.000000000 Z - updated_at: 2024-10-09 13:48:56.000000000 Z + created_at: 2025-02-04 20:48:06.290099000 Z + updated_at: 2025-02-04 20:48:06.290099000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 55 + type_id: 56 db_content: radio -cards_350: - id: 350 +cards_351: + id: 351 name: key: codename: - left_id: 348 - right_id: 59 + left_id: 349 + right_id: 60 current_revision_id: - created_at: 2024-10-09 13:48:56.000000000 Z - updated_at: 2024-10-09 13:48:56.000000000 Z + created_at: 2025-02-04 20:48:06.292633000 Z + updated_at: 2025-02-04 20:48:06.292633000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 97 + type_id: 98 db_content: '{"type": "bootswatch_skin", "sort": "name"}' -cards_351: - id: 351 +cards_352: + id: 352 name: key: codename: - left_id: 348 - right_id: 60 + left_id: 349 + right_id: 61 current_revision_id: - created_at: 2024-10-09 13:48:56.000000000 Z - updated_at: 2024-10-09 13:48:56.000000000 Z + created_at: 2025-02-04 20:48:06.295519000 Z + updated_at: 2025-02-04 20:48:06.295519000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -6667,16 +6680,16 @@ cards_351: trash: 0 type_id: 43 db_content: Image -cards_352: - id: 352 +cards_353: + id: 353 name: "*bootswatch" key: "*bootswatch" codename: bootswatch left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:56.000000000 Z - updated_at: 2024-10-09 13:48:56.000000000 Z + created_at: 2025-02-04 20:48:06.410079000 Z + updated_at: 2025-02-04 20:48:06.410079000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -6685,16 +6698,16 @@ cards_352: trash: 0 type_id: 2 db_content: '' -cards_353: - id: 353 +cards_354: + id: 354 name: "*variables" key: "*variable" codename: variables left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:56.000000000 Z - updated_at: 2024-10-09 13:48:56.000000000 Z + created_at: 2025-02-04 20:48:06.513395000 Z + updated_at: 2025-02-04 20:48:06.513395000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -6703,16 +6716,16 @@ cards_353: trash: 0 type_id: 2 db_content: '' -cards_354: - id: 354 +cards_355: + id: 355 name: "*stylesheets" key: "*stylesheet" codename: stylesheets left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:56.000000000 Z - updated_at: 2024-10-09 13:48:56.000000000 Z + created_at: 2025-02-04 20:48:06.717225000 Z + updated_at: 2025-02-04 20:48:06.717225000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -6721,16 +6734,16 @@ cards_354: trash: 0 type_id: 2 db_content: '' -cards_355: - id: 355 +cards_356: + id: 356 name: "*colors" key: "*color" codename: colors left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:56.000000000 Z - updated_at: 2024-10-09 13:48:56.000000000 Z + created_at: 2025-02-04 20:48:06.944721000 Z + updated_at: 2025-02-04 20:48:06.944721000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -6739,16 +6752,16 @@ cards_355: trash: 0 type_id: 2 db_content: '' -cards_356: - id: 356 +cards_357: + id: 357 name: parent key: parent codename: parent left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:56.000000000 Z - updated_at: 2024-10-09 13:48:56.000000000 Z + created_at: 2025-02-04 20:48:07.070415000 Z + updated_at: 2025-02-04 20:48:07.070415000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -6757,16 +6770,16 @@ cards_356: trash: 0 type_id: 2 db_content: '' -cards_357: - id: 357 +cards_358: + id: 358 name: Bootswatch skin key: bootswatch_skin codename: bootswatch_skin left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:56.000000000 Z - updated_at: 2024-10-09 13:48:56.000000000 Z + created_at: 2025-02-04 20:48:07.212302000 Z + updated_at: 2025-02-04 20:48:07.212302000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -6778,1564 +6791,1564 @@ cards_357: {{+:description|content}} {{_|add_button}}{{_|configure_button}} {{+:type+:by_name|content}} -cards_358: - id: 358 +cards_359: + id: 359 name: 'bootstrap: functions' key: bootstrap_function codename: bootstrap_functions left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:56.000000000 Z - updated_at: 2024-10-09 13:48:56.000000000 Z + created_at: 2025-02-04 20:48:07.412354000 Z + updated_at: 2025-02-04 20:48:07.412354000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_359: - id: 359 +cards_360: + id: 360 name: 'bootstrap: core' key: bootstrap_core codename: bootstrap_core left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:57.000000000 Z - updated_at: 2024-10-09 13:48:57.000000000 Z + created_at: 2025-02-04 20:48:07.538320000 Z + updated_at: 2025-02-04 20:48:07.538320000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_360: - id: 360 +cards_361: + id: 361 name: cerulean skin key: cerulean_skin codename: cerulean_skin left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:48:57.000000000 Z - updated_at: 2024-10-09 13:48:57.000000000 Z + created_at: 2025-02-04 20:48:07.826828000 Z + updated_at: 2025-02-04 20:48:07.826828000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 357 + type_id: 358 db_content: '' -cards_361: - id: 361 +cards_362: + id: 362 name: key: codename: - left_id: 360 - right_id: 355 + left_id: 361 + right_id: 356 current_revision_id: - created_at: 2024-10-09 13:48:57.000000000 Z - updated_at: 2024-10-09 13:48:57.000000000 Z + created_at: 2025-02-04 20:48:07.889704000 Z + updated_at: 2025-02-04 20:48:07.889704000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_362: - id: 362 +cards_363: + id: 363 name: key: codename: - left_id: 360 - right_id: 353 + left_id: 361 + right_id: 354 current_revision_id: - created_at: 2024-10-09 13:48:57.000000000 Z - updated_at: 2024-10-09 13:48:57.000000000 Z + created_at: 2025-02-04 20:48:07.894972000 Z + updated_at: 2025-02-04 20:48:07.894972000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_363: - id: 363 +cards_364: + id: 364 name: key: - codename: cerulean_skin_image - left_id: 360 - right_id: 284 + codename: + left_id: 361 + right_id: 285 current_revision_id: - created_at: 2024-10-09 13:49:01.000000000 Z - updated_at: 2024-10-09 13:49:01.000000000 Z + created_at: 2025-02-04 20:48:10.397395000 Z + updated_at: 2025-02-04 20:48:10.397395000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 284 - db_content: ":cerulean_skin_image/bootstrap.png" -cards_364: - id: 364 + type_id: 285 + db_content: ":cerulean_skin+:image/bootstrap.png" +cards_365: + id: 365 name: cosmo skin key: cosmo_skin codename: cosmo_skin left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:49:01.000000000 Z - updated_at: 2024-10-09 13:49:01.000000000 Z + created_at: 2025-02-04 20:48:10.466142000 Z + updated_at: 2025-02-04 20:48:10.466142000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 357 + type_id: 358 db_content: '' -cards_365: - id: 365 +cards_366: + id: 366 name: key: codename: - left_id: 364 - right_id: 355 + left_id: 365 + right_id: 356 current_revision_id: - created_at: 2024-10-09 13:49:01.000000000 Z - updated_at: 2024-10-09 13:49:01.000000000 Z + created_at: 2025-02-04 20:48:10.468754000 Z + updated_at: 2025-02-04 20:48:10.468754000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_366: - id: 366 +cards_367: + id: 367 name: key: codename: - left_id: 364 - right_id: 353 + left_id: 365 + right_id: 354 current_revision_id: - created_at: 2024-10-09 13:49:01.000000000 Z - updated_at: 2024-10-09 13:49:01.000000000 Z + created_at: 2025-02-04 20:48:10.470876000 Z + updated_at: 2025-02-04 20:48:10.470876000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_367: - id: 367 +cards_368: + id: 368 name: key: - codename: cosmo_skin_image - left_id: 364 - right_id: 284 + codename: + left_id: 365 + right_id: 285 current_revision_id: - created_at: 2024-10-09 13:49:05.000000000 Z - updated_at: 2024-10-09 13:49:05.000000000 Z + created_at: 2025-02-04 20:48:13.012298000 Z + updated_at: 2025-02-04 20:48:13.012298000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 284 - db_content: ":cosmo_skin_image/bootstrap.png" -cards_368: - id: 368 + type_id: 285 + db_content: ":cosmo_skin+:image/bootstrap.png" +cards_369: + id: 369 name: cyborg skin key: cyborg_skin codename: cyborg_skin left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:49:05.000000000 Z - updated_at: 2024-10-09 13:49:05.000000000 Z + created_at: 2025-02-04 20:48:13.045354000 Z + updated_at: 2025-02-04 20:48:13.045354000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 357 + type_id: 358 db_content: '' -cards_369: - id: 369 +cards_370: + id: 370 name: key: codename: - left_id: 368 - right_id: 355 + left_id: 369 + right_id: 356 current_revision_id: - created_at: 2024-10-09 13:49:05.000000000 Z - updated_at: 2024-10-09 13:49:05.000000000 Z + created_at: 2025-02-04 20:48:13.047803000 Z + updated_at: 2025-02-04 20:48:13.047803000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_370: - id: 370 +cards_371: + id: 371 name: key: codename: - left_id: 368 - right_id: 353 + left_id: 369 + right_id: 354 current_revision_id: - created_at: 2024-10-09 13:49:05.000000000 Z - updated_at: 2024-10-09 13:49:05.000000000 Z + created_at: 2025-02-04 20:48:13.053151000 Z + updated_at: 2025-02-04 20:48:13.053151000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_371: - id: 371 +cards_372: + id: 372 name: key: - codename: cyborg_skin_image - left_id: 368 - right_id: 284 + codename: + left_id: 369 + right_id: 285 current_revision_id: - created_at: 2024-10-09 13:49:09.000000000 Z - updated_at: 2024-10-09 13:49:09.000000000 Z + created_at: 2025-02-04 20:48:15.192362000 Z + updated_at: 2025-02-04 20:48:15.192362000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 284 - db_content: ":cyborg_skin_image/bootstrap.png" -cards_372: - id: 372 + type_id: 285 + db_content: ":cyborg_skin+:image/bootstrap.png" +cards_373: + id: 373 name: darkly skin key: darkly_skin codename: darkly_skin left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:49:09.000000000 Z - updated_at: 2024-10-09 13:49:09.000000000 Z + created_at: 2025-02-04 20:48:15.309059000 Z + updated_at: 2025-02-04 20:48:15.309059000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 357 + type_id: 358 db_content: '' -cards_373: - id: 373 +cards_374: + id: 374 name: key: codename: - left_id: 372 - right_id: 355 + left_id: 373 + right_id: 356 current_revision_id: - created_at: 2024-10-09 13:49:09.000000000 Z - updated_at: 2024-10-09 13:49:09.000000000 Z + created_at: 2025-02-04 20:48:15.328407000 Z + updated_at: 2025-02-04 20:48:15.328407000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_374: - id: 374 +cards_375: + id: 375 name: key: codename: - left_id: 372 - right_id: 353 + left_id: 373 + right_id: 354 current_revision_id: - created_at: 2024-10-09 13:49:09.000000000 Z - updated_at: 2024-10-09 13:49:09.000000000 Z + created_at: 2025-02-04 20:48:15.331705000 Z + updated_at: 2025-02-04 20:48:15.331705000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_375: - id: 375 +cards_376: + id: 376 name: key: - codename: darkly_skin_image - left_id: 372 - right_id: 284 + codename: + left_id: 373 + right_id: 285 current_revision_id: - created_at: 2024-10-09 13:49:12.000000000 Z - updated_at: 2024-10-09 13:49:12.000000000 Z + created_at: 2025-02-04 20:48:17.501448000 Z + updated_at: 2025-02-04 20:48:17.501448000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 284 - db_content: ":darkly_skin_image/bootstrap.png" -cards_376: - id: 376 + type_id: 285 + db_content: ":darkly_skin+:image/bootstrap.png" +cards_377: + id: 377 name: flatly skin key: flatly_skin codename: flatly_skin left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:49:12.000000000 Z - updated_at: 2024-10-09 13:49:12.000000000 Z + created_at: 2025-02-04 20:48:17.638390000 Z + updated_at: 2025-02-04 20:48:17.638390000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 357 + type_id: 358 db_content: '' -cards_377: - id: 377 +cards_378: + id: 378 name: key: codename: - left_id: 376 - right_id: 355 + left_id: 377 + right_id: 356 current_revision_id: - created_at: 2024-10-09 13:49:12.000000000 Z - updated_at: 2024-10-09 13:49:12.000000000 Z + created_at: 2025-02-04 20:48:17.640883000 Z + updated_at: 2025-02-04 20:48:17.640883000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_378: - id: 378 +cards_379: + id: 379 name: key: codename: - left_id: 376 - right_id: 353 + left_id: 377 + right_id: 354 current_revision_id: - created_at: 2024-10-09 13:49:12.000000000 Z - updated_at: 2024-10-09 13:49:12.000000000 Z + created_at: 2025-02-04 20:48:17.642948000 Z + updated_at: 2025-02-04 20:48:17.642948000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_379: - id: 379 +cards_380: + id: 380 name: key: - codename: flatly_skin_image - left_id: 376 - right_id: 284 + codename: + left_id: 377 + right_id: 285 current_revision_id: - created_at: 2024-10-09 13:49:16.000000000 Z - updated_at: 2024-10-09 13:49:16.000000000 Z + created_at: 2025-02-04 20:48:20.162592000 Z + updated_at: 2025-02-04 20:48:20.162592000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 284 - db_content: ":flatly_skin_image/bootstrap.png" -cards_380: - id: 380 + type_id: 285 + db_content: ":flatly_skin+:image/bootstrap.png" +cards_381: + id: 381 name: journal skin key: journal_skin codename: journal_skin left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:49:16.000000000 Z - updated_at: 2024-10-09 13:49:16.000000000 Z + created_at: 2025-02-04 20:48:20.274012000 Z + updated_at: 2025-02-04 20:48:20.274012000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 357 + type_id: 358 db_content: '' -cards_381: - id: 381 +cards_382: + id: 382 name: key: codename: - left_id: 380 - right_id: 355 + left_id: 381 + right_id: 356 current_revision_id: - created_at: 2024-10-09 13:49:16.000000000 Z - updated_at: 2024-10-09 13:49:16.000000000 Z + created_at: 2025-02-04 20:48:20.276626000 Z + updated_at: 2025-02-04 20:48:20.276626000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_382: - id: 382 +cards_383: + id: 383 name: key: codename: - left_id: 380 - right_id: 353 + left_id: 381 + right_id: 354 current_revision_id: - created_at: 2024-10-09 13:49:16.000000000 Z - updated_at: 2024-10-09 13:49:16.000000000 Z + created_at: 2025-02-04 20:48:20.278859000 Z + updated_at: 2025-02-04 20:48:20.278859000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_383: - id: 383 +cards_384: + id: 384 name: key: - codename: journal_skin_image - left_id: 380 - right_id: 284 + codename: + left_id: 381 + right_id: 285 current_revision_id: - created_at: 2024-10-09 13:49:21.000000000 Z - updated_at: 2024-10-09 13:49:21.000000000 Z + created_at: 2025-02-04 20:48:22.529081000 Z + updated_at: 2025-02-04 20:48:22.529081000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 284 - db_content: ":journal_skin_image/bootstrap.png" -cards_384: - id: 384 + type_id: 285 + db_content: ":journal_skin+:image/bootstrap.png" +cards_385: + id: 385 name: lumen skin key: luman_skin codename: lumen_skin left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:49:22.000000000 Z - updated_at: 2024-10-09 13:49:22.000000000 Z + created_at: 2025-02-04 20:48:22.617298000 Z + updated_at: 2025-02-04 20:48:22.617298000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 357 + type_id: 358 db_content: '' -cards_385: - id: 385 +cards_386: + id: 386 name: key: codename: - left_id: 384 - right_id: 355 + left_id: 385 + right_id: 356 current_revision_id: - created_at: 2024-10-09 13:49:22.000000000 Z - updated_at: 2024-10-09 13:49:22.000000000 Z + created_at: 2025-02-04 20:48:22.619838000 Z + updated_at: 2025-02-04 20:48:22.619838000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_386: - id: 386 +cards_387: + id: 387 name: key: codename: - left_id: 384 - right_id: 353 + left_id: 385 + right_id: 354 current_revision_id: - created_at: 2024-10-09 13:49:22.000000000 Z - updated_at: 2024-10-09 13:49:22.000000000 Z + created_at: 2025-02-04 20:48:22.621892000 Z + updated_at: 2025-02-04 20:48:22.621892000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_387: - id: 387 +cards_388: + id: 388 name: key: - codename: lumen_skin_image - left_id: 384 - right_id: 284 + codename: + left_id: 385 + right_id: 285 current_revision_id: - created_at: 2024-10-09 13:49:27.000000000 Z - updated_at: 2024-10-09 13:49:27.000000000 Z + created_at: 2025-02-04 20:48:25.184952000 Z + updated_at: 2025-02-04 20:48:25.184952000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 284 - db_content: ":lumen_skin_image/bootstrap.png" -cards_388: - id: 388 + type_id: 285 + db_content: ":lumen_skin+:image/bootstrap.png" +cards_389: + id: 389 name: sandstone skin key: sandstone_skin codename: sandstone_skin left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:49:28.000000000 Z - updated_at: 2024-10-09 13:49:28.000000000 Z + created_at: 2025-02-04 20:48:25.276005000 Z + updated_at: 2025-02-04 20:48:25.276005000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 357 + type_id: 358 db_content: '' -cards_389: - id: 389 +cards_390: + id: 390 name: key: codename: - left_id: 388 - right_id: 355 + left_id: 389 + right_id: 356 current_revision_id: - created_at: 2024-10-09 13:49:28.000000000 Z - updated_at: 2024-10-09 13:49:28.000000000 Z + created_at: 2025-02-04 20:48:25.279493000 Z + updated_at: 2025-02-04 20:48:25.279493000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_390: - id: 390 +cards_391: + id: 391 name: key: codename: - left_id: 388 - right_id: 353 + left_id: 389 + right_id: 354 current_revision_id: - created_at: 2024-10-09 13:49:28.000000000 Z - updated_at: 2024-10-09 13:49:28.000000000 Z + created_at: 2025-02-04 20:48:25.281470000 Z + updated_at: 2025-02-04 20:48:25.281470000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_391: - id: 391 +cards_392: + id: 392 name: key: - codename: sandstone_skin_image - left_id: 388 - right_id: 284 + codename: + left_id: 389 + right_id: 285 current_revision_id: - created_at: 2024-10-09 13:49:32.000000000 Z - updated_at: 2024-10-09 13:49:32.000000000 Z + created_at: 2025-02-04 20:48:28.743223000 Z + updated_at: 2025-02-04 20:48:28.743223000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 284 - db_content: ":sandstone_skin_image/bootstrap.png" -cards_392: - id: 392 + type_id: 285 + db_content: ":sandstone_skin+:image/bootstrap.png" +cards_393: + id: 393 name: simplex skin key: simplex_skin codename: simplex_skin left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:49:32.000000000 Z - updated_at: 2024-10-09 13:49:32.000000000 Z + created_at: 2025-02-04 20:48:29.184301000 Z + updated_at: 2025-02-04 20:48:29.184301000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 357 + type_id: 358 db_content: '' -cards_393: - id: 393 +cards_394: + id: 394 name: key: codename: - left_id: 392 - right_id: 355 + left_id: 393 + right_id: 356 current_revision_id: - created_at: 2024-10-09 13:49:32.000000000 Z - updated_at: 2024-10-09 13:49:32.000000000 Z + created_at: 2025-02-04 20:48:29.199986000 Z + updated_at: 2025-02-04 20:48:29.199986000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_394: - id: 394 +cards_395: + id: 395 name: key: codename: - left_id: 392 - right_id: 353 + left_id: 393 + right_id: 354 current_revision_id: - created_at: 2024-10-09 13:49:32.000000000 Z - updated_at: 2024-10-09 13:49:32.000000000 Z + created_at: 2025-02-04 20:48:29.210627000 Z + updated_at: 2025-02-04 20:48:29.210627000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_395: - id: 395 +cards_396: + id: 396 name: key: - codename: simplex_skin_image - left_id: 392 - right_id: 284 + codename: + left_id: 393 + right_id: 285 current_revision_id: - created_at: 2024-10-09 13:49:37.000000000 Z - updated_at: 2024-10-09 13:49:37.000000000 Z + created_at: 2025-02-04 20:48:33.315031000 Z + updated_at: 2025-02-04 20:48:33.315031000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 284 - db_content: ":simplex_skin_image/bootstrap.png" -cards_396: - id: 396 + type_id: 285 + db_content: ":simplex_skin+:image/bootstrap.png" +cards_397: + id: 397 name: slate skin key: slate_skin codename: slate_skin left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:49:37.000000000 Z - updated_at: 2024-10-09 13:49:37.000000000 Z + created_at: 2025-02-04 20:48:33.357739000 Z + updated_at: 2025-02-04 20:48:33.357739000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 357 + type_id: 358 db_content: '' -cards_397: - id: 397 +cards_398: + id: 398 name: key: codename: - left_id: 396 - right_id: 355 + left_id: 397 + right_id: 356 current_revision_id: - created_at: 2024-10-09 13:49:37.000000000 Z - updated_at: 2024-10-09 13:49:37.000000000 Z + created_at: 2025-02-04 20:48:33.359891000 Z + updated_at: 2025-02-04 20:48:33.359891000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_398: - id: 398 +cards_399: + id: 399 name: key: codename: - left_id: 396 - right_id: 353 + left_id: 397 + right_id: 354 current_revision_id: - created_at: 2024-10-09 13:49:37.000000000 Z - updated_at: 2024-10-09 13:49:37.000000000 Z + created_at: 2025-02-04 20:48:33.362593000 Z + updated_at: 2025-02-04 20:48:33.362593000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_399: - id: 399 +cards_400: + id: 400 name: key: - codename: slate_skin_image - left_id: 396 - right_id: 284 + codename: + left_id: 397 + right_id: 285 current_revision_id: - created_at: 2024-10-09 13:49:41.000000000 Z - updated_at: 2024-10-09 13:49:41.000000000 Z + created_at: 2025-02-04 20:48:35.577656000 Z + updated_at: 2025-02-04 20:48:35.577656000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 284 - db_content: ":slate_skin_image/bootstrap.png" -cards_400: - id: 400 + type_id: 285 + db_content: ":slate_skin+:image/bootstrap.png" +cards_401: + id: 401 name: spacelab skin key: spacelab_skin codename: spacelab_skin left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:49:41.000000000 Z - updated_at: 2024-10-09 13:49:41.000000000 Z + created_at: 2025-02-04 20:48:35.613798000 Z + updated_at: 2025-02-04 20:48:35.613798000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 357 + type_id: 358 db_content: '' -cards_401: - id: 401 +cards_402: + id: 402 name: key: codename: - left_id: 400 - right_id: 355 + left_id: 401 + right_id: 356 current_revision_id: - created_at: 2024-10-09 13:49:41.000000000 Z - updated_at: 2024-10-09 13:49:41.000000000 Z + created_at: 2025-02-04 20:48:35.615665000 Z + updated_at: 2025-02-04 20:48:35.615665000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_402: - id: 402 +cards_403: + id: 403 name: key: codename: - left_id: 400 - right_id: 353 + left_id: 401 + right_id: 354 current_revision_id: - created_at: 2024-10-09 13:49:41.000000000 Z - updated_at: 2024-10-09 13:49:41.000000000 Z + created_at: 2025-02-04 20:48:35.617562000 Z + updated_at: 2025-02-04 20:48:35.617562000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_403: - id: 403 +cards_404: + id: 404 name: key: - codename: spacelab_skin_image - left_id: 400 - right_id: 284 + codename: + left_id: 401 + right_id: 285 current_revision_id: - created_at: 2024-10-09 13:49:45.000000000 Z - updated_at: 2024-10-09 13:49:45.000000000 Z + created_at: 2025-02-04 20:48:38.144294000 Z + updated_at: 2025-02-04 20:48:38.144294000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 284 - db_content: ":spacelab_skin_image/bootstrap.png" -cards_404: - id: 404 + type_id: 285 + db_content: ":spacelab_skin+:image/bootstrap.png" +cards_405: + id: 405 name: superhero skin key: superhero_skin codename: superhero_skin left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:49:45.000000000 Z - updated_at: 2024-10-09 13:49:45.000000000 Z + created_at: 2025-02-04 20:48:38.184679000 Z + updated_at: 2025-02-04 20:48:38.184679000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 357 + type_id: 358 db_content: '' -cards_405: - id: 405 +cards_406: + id: 406 name: key: codename: - left_id: 404 - right_id: 355 + left_id: 405 + right_id: 356 current_revision_id: - created_at: 2024-10-09 13:49:45.000000000 Z - updated_at: 2024-10-09 13:49:45.000000000 Z + created_at: 2025-02-04 20:48:38.207774000 Z + updated_at: 2025-02-04 20:48:38.207774000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_406: - id: 406 +cards_407: + id: 407 name: key: codename: - left_id: 404 - right_id: 353 + left_id: 405 + right_id: 354 current_revision_id: - created_at: 2024-10-09 13:49:45.000000000 Z - updated_at: 2024-10-09 13:49:45.000000000 Z + created_at: 2025-02-04 20:48:38.210852000 Z + updated_at: 2025-02-04 20:48:38.210852000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_407: - id: 407 +cards_408: + id: 408 name: key: - codename: superhero_skin_image - left_id: 404 - right_id: 284 + codename: + left_id: 405 + right_id: 285 current_revision_id: - created_at: 2024-10-09 13:49:49.000000000 Z - updated_at: 2024-10-09 13:49:49.000000000 Z + created_at: 2025-02-04 20:48:40.418727000 Z + updated_at: 2025-02-04 20:48:40.418727000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 284 - db_content: ":superhero_skin_image/bootstrap.png" -cards_408: - id: 408 + type_id: 285 + db_content: ":superhero_skin+:image/bootstrap.png" +cards_409: + id: 409 name: united skin key: united_skin codename: united_skin left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:49:49.000000000 Z - updated_at: 2024-10-09 13:49:49.000000000 Z + created_at: 2025-02-04 20:48:40.500284000 Z + updated_at: 2025-02-04 20:48:40.500284000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 357 + type_id: 358 db_content: '' -cards_409: - id: 409 +cards_410: + id: 410 name: key: codename: - left_id: 408 - right_id: 355 + left_id: 409 + right_id: 356 current_revision_id: - created_at: 2024-10-09 13:49:49.000000000 Z - updated_at: 2024-10-09 13:49:49.000000000 Z + created_at: 2025-02-04 20:48:40.502291000 Z + updated_at: 2025-02-04 20:48:40.502291000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_410: - id: 410 +cards_411: + id: 411 name: key: codename: - left_id: 408 - right_id: 353 + left_id: 409 + right_id: 354 current_revision_id: - created_at: 2024-10-09 13:49:49.000000000 Z - updated_at: 2024-10-09 13:49:49.000000000 Z + created_at: 2025-02-04 20:48:40.504289000 Z + updated_at: 2025-02-04 20:48:40.504289000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_411: - id: 411 +cards_412: + id: 412 name: key: - codename: united_skin_image - left_id: 408 - right_id: 284 + codename: + left_id: 409 + right_id: 285 current_revision_id: - created_at: 2024-10-09 13:49:53.000000000 Z - updated_at: 2024-10-09 13:49:53.000000000 Z + created_at: 2025-02-04 20:48:42.798567000 Z + updated_at: 2025-02-04 20:48:42.798567000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 284 - db_content: ":united_skin_image/bootstrap.png" -cards_412: - id: 412 + type_id: 285 + db_content: ":united_skin+:image/bootstrap.png" +cards_413: + id: 413 name: yeti skin key: yeti_skin codename: yeti_skin left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:49:53.000000000 Z - updated_at: 2024-10-09 13:49:53.000000000 Z + created_at: 2025-02-04 20:48:43.036497000 Z + updated_at: 2025-02-04 20:48:43.036497000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 357 + type_id: 358 db_content: '' -cards_413: - id: 413 +cards_414: + id: 414 name: key: codename: - left_id: 412 - right_id: 355 + left_id: 413 + right_id: 356 current_revision_id: - created_at: 2024-10-09 13:49:53.000000000 Z - updated_at: 2024-10-09 13:49:53.000000000 Z + created_at: 2025-02-04 20:48:43.064874000 Z + updated_at: 2025-02-04 20:48:43.064874000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_414: - id: 414 +cards_415: + id: 415 name: key: codename: - left_id: 412 - right_id: 353 + left_id: 413 + right_id: 354 current_revision_id: - created_at: 2024-10-09 13:49:53.000000000 Z - updated_at: 2024-10-09 13:49:53.000000000 Z + created_at: 2025-02-04 20:48:43.072479000 Z + updated_at: 2025-02-04 20:48:43.072479000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_415: - id: 415 +cards_416: + id: 416 name: key: - codename: yeti_skin_image - left_id: 412 - right_id: 284 + codename: + left_id: 413 + right_id: 285 current_revision_id: - created_at: 2024-10-09 13:49:57.000000000 Z - updated_at: 2024-10-09 13:49:57.000000000 Z + created_at: 2025-02-04 20:48:45.739517000 Z + updated_at: 2025-02-04 20:48:45.739517000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 284 - db_content: ":yeti_skin_image/bootstrap.png" -cards_416: - id: 416 + type_id: 285 + db_content: ":yeti_skin+:image/bootstrap.png" +cards_417: + id: 417 name: litera skin key: litera_skin codename: litera_skin left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:49:57.000000000 Z - updated_at: 2024-10-09 13:49:57.000000000 Z + created_at: 2025-02-04 20:48:45.853981000 Z + updated_at: 2025-02-04 20:48:45.853981000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 357 + type_id: 358 db_content: '' -cards_417: - id: 417 +cards_418: + id: 418 name: key: codename: - left_id: 416 - right_id: 355 + left_id: 417 + right_id: 356 current_revision_id: - created_at: 2024-10-09 13:49:57.000000000 Z - updated_at: 2024-10-09 13:49:57.000000000 Z + created_at: 2025-02-04 20:48:45.856144000 Z + updated_at: 2025-02-04 20:48:45.856144000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_418: - id: 418 +cards_419: + id: 419 name: key: codename: - left_id: 416 - right_id: 353 + left_id: 417 + right_id: 354 current_revision_id: - created_at: 2024-10-09 13:49:57.000000000 Z - updated_at: 2024-10-09 13:49:57.000000000 Z + created_at: 2025-02-04 20:48:45.858419000 Z + updated_at: 2025-02-04 20:48:45.858419000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_419: - id: 419 +cards_420: + id: 420 name: key: - codename: litera_skin_image - left_id: 416 - right_id: 284 + codename: + left_id: 417 + right_id: 285 current_revision_id: - created_at: 2024-10-09 13:50:00.000000000 Z - updated_at: 2024-10-09 13:50:00.000000000 Z + created_at: 2025-02-04 20:48:48.044981000 Z + updated_at: 2025-02-04 20:48:48.044981000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 284 - db_content: ":litera_skin_image/bootstrap.png" -cards_420: - id: 420 + type_id: 285 + db_content: ":litera_skin+:image/bootstrap.png" +cards_421: + id: 421 name: lux skin key: lux_skin codename: lux_skin left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:01.000000000 Z - updated_at: 2024-10-09 13:50:01.000000000 Z + created_at: 2025-02-04 20:48:48.133853000 Z + updated_at: 2025-02-04 20:48:48.133853000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 357 + type_id: 358 db_content: '' -cards_421: - id: 421 +cards_422: + id: 422 name: key: codename: - left_id: 420 - right_id: 355 + left_id: 421 + right_id: 356 current_revision_id: - created_at: 2024-10-09 13:50:01.000000000 Z - updated_at: 2024-10-09 13:50:01.000000000 Z + created_at: 2025-02-04 20:48:48.135715000 Z + updated_at: 2025-02-04 20:48:48.135715000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_422: - id: 422 +cards_423: + id: 423 name: key: codename: - left_id: 420 - right_id: 353 + left_id: 421 + right_id: 354 current_revision_id: - created_at: 2024-10-09 13:50:01.000000000 Z - updated_at: 2024-10-09 13:50:01.000000000 Z + created_at: 2025-02-04 20:48:48.137563000 Z + updated_at: 2025-02-04 20:48:48.137563000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_423: - id: 423 +cards_424: + id: 424 name: key: - codename: lux_skin_image - left_id: 420 - right_id: 284 + codename: + left_id: 421 + right_id: 285 current_revision_id: - created_at: 2024-10-09 13:50:05.000000000 Z - updated_at: 2024-10-09 13:50:05.000000000 Z + created_at: 2025-02-04 20:48:50.454310000 Z + updated_at: 2025-02-04 20:48:50.454310000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 284 - db_content: ":lux_skin_image/bootstrap.png" -cards_424: - id: 424 + type_id: 285 + db_content: ":lux_skin+:image/bootstrap.png" +cards_425: + id: 425 name: materia skin key: materium_skin codename: materia_skin left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:05.000000000 Z - updated_at: 2024-10-09 13:50:05.000000000 Z + created_at: 2025-02-04 20:48:50.482351000 Z + updated_at: 2025-02-04 20:48:50.482351000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 357 + type_id: 358 db_content: '' -cards_425: - id: 425 +cards_426: + id: 426 name: key: codename: - left_id: 424 - right_id: 355 + left_id: 425 + right_id: 356 current_revision_id: - created_at: 2024-10-09 13:50:05.000000000 Z - updated_at: 2024-10-09 13:50:05.000000000 Z + created_at: 2025-02-04 20:48:50.488576000 Z + updated_at: 2025-02-04 20:48:50.488576000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_426: - id: 426 +cards_427: + id: 427 name: key: codename: - left_id: 424 - right_id: 353 + left_id: 425 + right_id: 354 current_revision_id: - created_at: 2024-10-09 13:50:05.000000000 Z - updated_at: 2024-10-09 13:50:05.000000000 Z + created_at: 2025-02-04 20:48:50.491266000 Z + updated_at: 2025-02-04 20:48:50.491266000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_427: - id: 427 +cards_428: + id: 428 name: key: - codename: materia_skin_image - left_id: 424 - right_id: 284 + codename: + left_id: 425 + right_id: 285 current_revision_id: - created_at: 2024-10-09 13:50:09.000000000 Z - updated_at: 2024-10-09 13:50:09.000000000 Z + created_at: 2025-02-04 20:48:52.782840000 Z + updated_at: 2025-02-04 20:48:52.782840000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 284 - db_content: ":materia_skin_image/bootstrap.png" -cards_428: - id: 428 + type_id: 285 + db_content: ":materia_skin+:image/bootstrap.png" +cards_429: + id: 429 name: minty skin key: minty_skin codename: minty_skin left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:09.000000000 Z - updated_at: 2024-10-09 13:50:09.000000000 Z + created_at: 2025-02-04 20:48:52.836572000 Z + updated_at: 2025-02-04 20:48:52.836572000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 357 + type_id: 358 db_content: '' -cards_429: - id: 429 +cards_430: + id: 430 name: key: codename: - left_id: 428 - right_id: 355 + left_id: 429 + right_id: 356 current_revision_id: - created_at: 2024-10-09 13:50:09.000000000 Z - updated_at: 2024-10-09 13:50:09.000000000 Z + created_at: 2025-02-04 20:48:52.839169000 Z + updated_at: 2025-02-04 20:48:52.839169000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_430: - id: 430 +cards_431: + id: 431 name: key: codename: - left_id: 428 - right_id: 353 + left_id: 429 + right_id: 354 current_revision_id: - created_at: 2024-10-09 13:50:09.000000000 Z - updated_at: 2024-10-09 13:50:09.000000000 Z + created_at: 2025-02-04 20:48:52.843110000 Z + updated_at: 2025-02-04 20:48:52.843110000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_431: - id: 431 +cards_432: + id: 432 name: key: - codename: minty_skin_image - left_id: 428 - right_id: 284 + codename: + left_id: 429 + right_id: 285 current_revision_id: - created_at: 2024-10-09 13:50:15.000000000 Z - updated_at: 2024-10-09 13:50:15.000000000 Z + created_at: 2025-02-04 20:48:54.932907000 Z + updated_at: 2025-02-04 20:48:54.932907000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 284 - db_content: ":minty_skin_image/bootstrap.png" -cards_432: - id: 432 + type_id: 285 + db_content: ":minty_skin+:image/bootstrap.png" +cards_433: + id: 433 name: pulse skin key: pulse_skin codename: pulse_skin left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:15.000000000 Z - updated_at: 2024-10-09 13:50:15.000000000 Z + created_at: 2025-02-04 20:48:54.991851000 Z + updated_at: 2025-02-04 20:48:54.991851000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 357 + type_id: 358 db_content: '' -cards_433: - id: 433 +cards_434: + id: 434 name: key: codename: - left_id: 432 - right_id: 355 + left_id: 433 + right_id: 356 current_revision_id: - created_at: 2024-10-09 13:50:15.000000000 Z - updated_at: 2024-10-09 13:50:15.000000000 Z + created_at: 2025-02-04 20:48:54.994165000 Z + updated_at: 2025-02-04 20:48:54.994165000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_434: - id: 434 +cards_435: + id: 435 name: key: codename: - left_id: 432 - right_id: 353 + left_id: 433 + right_id: 354 current_revision_id: - created_at: 2024-10-09 13:50:15.000000000 Z - updated_at: 2024-10-09 13:50:15.000000000 Z + created_at: 2025-02-04 20:48:54.996231000 Z + updated_at: 2025-02-04 20:48:54.996231000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_435: - id: 435 +cards_436: + id: 436 name: key: - codename: pulse_skin_image - left_id: 432 - right_id: 284 + codename: + left_id: 433 + right_id: 285 current_revision_id: - created_at: 2024-10-09 13:50:19.000000000 Z - updated_at: 2024-10-09 13:50:19.000000000 Z + created_at: 2025-02-04 20:48:57.230209000 Z + updated_at: 2025-02-04 20:48:57.230209000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 284 - db_content: ":pulse_skin_image/bootstrap.png" -cards_436: - id: 436 + type_id: 285 + db_content: ":pulse_skin+:image/bootstrap.png" +cards_437: + id: 437 name: solar skin key: solar_skin codename: solar_skin left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:19.000000000 Z - updated_at: 2024-10-09 13:50:19.000000000 Z + created_at: 2025-02-04 20:48:57.254950000 Z + updated_at: 2025-02-04 20:48:57.254950000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 357 + type_id: 358 db_content: '' -cards_437: - id: 437 +cards_438: + id: 438 name: key: codename: - left_id: 436 - right_id: 355 + left_id: 437 + right_id: 356 current_revision_id: - created_at: 2024-10-09 13:50:19.000000000 Z - updated_at: 2024-10-09 13:50:19.000000000 Z + created_at: 2025-02-04 20:48:57.256802000 Z + updated_at: 2025-02-04 20:48:57.256802000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_438: - id: 438 +cards_439: + id: 439 name: key: codename: - left_id: 436 - right_id: 353 + left_id: 437 + right_id: 354 current_revision_id: - created_at: 2024-10-09 13:50:19.000000000 Z - updated_at: 2024-10-09 13:50:19.000000000 Z + created_at: 2025-02-04 20:48:57.258657000 Z + updated_at: 2025-02-04 20:48:57.258657000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_439: - id: 439 +cards_440: + id: 440 name: key: - codename: solar_skin_image - left_id: 436 - right_id: 284 + codename: + left_id: 437 + right_id: 285 current_revision_id: - created_at: 2024-10-09 13:50:23.000000000 Z - updated_at: 2024-10-09 13:50:23.000000000 Z + created_at: 2025-02-04 20:48:59.527607000 Z + updated_at: 2025-02-04 20:48:59.527607000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 284 - db_content: ":solar_skin_image/bootstrap.png" -cards_440: - id: 440 + type_id: 285 + db_content: ":solar_skin+:image/bootstrap.png" +cards_441: + id: 441 name: sketchy skin key: sketchy_skin codename: sketchy_skin left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:23.000000000 Z - updated_at: 2024-10-09 13:50:23.000000000 Z + created_at: 2025-02-04 20:48:59.614396000 Z + updated_at: 2025-02-04 20:48:59.614396000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 357 + type_id: 358 db_content: '' -cards_441: - id: 441 +cards_442: + id: 442 name: key: codename: - left_id: 440 - right_id: 355 + left_id: 441 + right_id: 356 current_revision_id: - created_at: 2024-10-09 13:50:23.000000000 Z - updated_at: 2024-10-09 13:50:23.000000000 Z + created_at: 2025-02-04 20:48:59.616363000 Z + updated_at: 2025-02-04 20:48:59.616363000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_442: - id: 442 +cards_443: + id: 443 name: key: codename: - left_id: 440 - right_id: 353 + left_id: 441 + right_id: 354 current_revision_id: - created_at: 2024-10-09 13:50:23.000000000 Z - updated_at: 2024-10-09 13:50:23.000000000 Z + created_at: 2025-02-04 20:48:59.618551000 Z + updated_at: 2025-02-04 20:48:59.618551000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 335 + type_id: 336 db_content: '' -cards_443: - id: 443 +cards_444: + id: 444 name: key: - codename: sketchy_skin_image - left_id: 440 - right_id: 284 + codename: + left_id: 441 + right_id: 285 current_revision_id: - created_at: 2024-10-09 13:50:27.000000000 Z - updated_at: 2024-10-09 13:50:27.000000000 Z + created_at: 2025-02-04 20:49:01.792989000 Z + updated_at: 2025-02-04 20:49:01.792989000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 284 - db_content: ":sketchy_skin_image/bootstrap.png" -cards_444: - id: 444 + type_id: 285 + db_content: ":sketchy_skin+:image/bootstrap.png" +cards_445: + id: 445 name: key: codename: left_id: 7 - right_id: 347 + right_id: 348 current_revision_id: - created_at: 2024-10-09 13:50:27.000000000 Z - updated_at: 2024-10-09 13:50:27.000000000 Z + created_at: 2025-02-04 20:49:01.833758000 Z + updated_at: 2025-02-04 20:49:01.833758000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -8344,34 +8357,34 @@ cards_444: trash: 0 type_id: 4 db_content: yeti skin -cards_445: - id: 445 +cards_446: + id: 446 name: key: - codename: all_style_asset_output - left_id: 444 - right_id: 299 + codename: + left_id: 445 + right_id: 300 current_revision_id: - created_at: 2024-10-09 13:50:27.000000000 Z - updated_at: 2024-10-09 13:51:02.000000000 Z + created_at: 2025-02-04 20:49:01.859753000 Z + updated_at: 2025-02-04 20:49:35.777216000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 282 - db_content: ":all_style_asset_output/defaults.css" -cards_446: - id: 446 + type_id: 283 + db_content: ":all+:style+:asset_output/defaults.css" +cards_447: + id: 447 name: discussion key: discussion codename: discussion left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:27.000000000 Z - updated_at: 2024-10-09 13:50:27.000000000 Z + created_at: 2025-02-04 20:49:01.882255000 Z + updated_at: 2025-02-04 20:49:01.882255000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -8380,16 +8393,16 @@ cards_446: trash: 0 type_id: 2 db_content: '' -cards_447: - id: 447 +cards_448: + id: 448 name: Date key: date codename: date left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:27.000000000 Z - updated_at: 2024-10-09 13:50:27.000000000 Z + created_at: 2025-02-04 20:49:02.047700000 Z + updated_at: 2025-02-04 20:49:02.147919000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -8401,16 +8414,16 @@ cards_447: {{+:description|content}} {{_|add_button}}{{_|configure_button}} {{+:type+:by_name|content}} -cards_448: - id: 448 +cards_449: + id: 449 name: key: codename: - left_id: 447 + left_id: 448 right_id: 12 current_revision_id: - created_at: 2024-10-09 13:50:27.000000000 Z - updated_at: 2024-10-09 13:50:27.000000000 Z + created_at: 2025-02-04 20:49:02.049772000 Z + updated_at: 2025-02-04 20:49:02.049772000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -8419,16 +8432,16 @@ cards_448: trash: 0 type_id: 2 db_content: "

    Date cards contain a date.

    " -cards_449: - id: 449 +cards_450: + id: 450 name: "*when created" key: "*when_created" codename: when_created left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:27.000000000 Z - updated_at: 2024-10-09 13:50:27.000000000 Z + created_at: 2025-02-04 20:49:02.156853000 Z + updated_at: 2025-02-04 20:49:02.156853000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -8437,16 +8450,16 @@ cards_449: trash: 0 type_id: 2 db_content: '' -cards_450: - id: 450 +cards_451: + id: 451 name: "*when last edited" key: "*when_last_edited" codename: when_last_edited left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:27.000000000 Z - updated_at: 2024-10-09 13:50:27.000000000 Z + created_at: 2025-02-04 20:49:02.477646000 Z + updated_at: 2025-02-04 20:49:02.477646000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -8455,16 +8468,16 @@ cards_450: trash: 0 type_id: 2 db_content: '' -cards_451: - id: 451 +cards_452: + id: 452 name: "*now" key: "*now" codename: now left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:27.000000000 Z - updated_at: 2024-10-09 13:50:27.000000000 Z + created_at: 2025-02-04 20:49:02.623808000 Z + updated_at: 2025-02-04 20:49:02.623808000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -8473,16 +8486,16 @@ cards_451: trash: 0 type_id: 2 db_content: '' -cards_452: - id: 452 +cards_453: + id: 453 name: Notification template key: notification_template codename: notification_template left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:27.000000000 Z - updated_at: 2024-10-09 13:50:27.000000000 Z + created_at: 2025-02-04 20:49:02.976709000 Z + updated_at: 2025-02-04 20:49:02.976709000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -8494,16 +8507,16 @@ cards_452: {{+:description|content}} {{_|add_button}}{{_|configure_button}} {{+:type+:by_name|content}} -cards_453: - id: 453 +cards_454: + id: 454 name: "*follow" key: "*follow" codename: follow left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:27.000000000 Z - updated_at: 2024-10-09 13:50:27.000000000 Z + created_at: 2025-02-04 20:49:03.104172000 Z + updated_at: 2025-02-04 20:49:03.104172000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -8512,16 +8525,16 @@ cards_453: trash: 0 type_id: 6 db_content: '' -cards_454: - id: 454 +cards_455: + id: 455 name: key: codename: - left_id: 453 + left_id: 454 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:50:27.000000000 Z - updated_at: 2024-10-09 13:50:27.000000000 Z + created_at: 2025-02-04 20:49:03.108485000 Z + updated_at: 2025-02-04 20:49:03.108485000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -8530,34 +8543,34 @@ cards_454: trash: 0 type_id: 5 db_content: '' -cards_455: - id: 455 +cards_456: + id: 456 name: key: codename: - left_id: 454 - right_id: 148 + left_id: 455 + right_id: 149 current_revision_id: - created_at: 2024-10-09 13:50:27.000000000 Z - updated_at: 2024-10-09 13:50:27.000000000 Z + created_at: 2025-02-04 20:49:03.111021000 Z + updated_at: 2025-02-04 20:49:03.111021000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 55 + type_id: 56 db_content: radio -cards_456: - id: 456 +cards_457: + id: 457 name: key: codename: - left_id: 454 - right_id: 89 + left_id: 455 + right_id: 90 current_revision_id: - created_at: 2024-10-09 13:50:27.000000000 Z - updated_at: 2024-10-09 13:50:27.000000000 Z + created_at: 2025-02-04 20:49:03.113146000 Z + updated_at: 2025-02-04 20:49:03.113146000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -8566,16 +8579,16 @@ cards_456: trash: 0 type_id: 2 db_content: Get notified about changes. -cards_457: - id: 457 +cards_458: + id: 458 name: "*following" key: "*following" codename: following left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:28.000000000 Z - updated_at: 2024-10-09 13:50:28.000000000 Z + created_at: 2025-02-04 20:49:03.353062000 Z + updated_at: 2025-02-04 20:49:03.353062000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -8584,16 +8597,16 @@ cards_457: trash: 0 type_id: 4 db_content: '' -cards_458: - id: 458 +cards_459: + id: 459 name: key: codename: - left_id: 457 + left_id: 458 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:50:28.000000000 Z - updated_at: 2024-10-09 13:50:28.000000000 Z + created_at: 2025-02-04 20:49:03.356247000 Z + updated_at: 2025-02-04 20:49:03.356247000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -8602,16 +8615,16 @@ cards_458: trash: 0 type_id: 5 db_content: '' -cards_459: - id: 459 +cards_460: + id: 460 name: key: codename: - left_id: 458 - right_id: 65 + left_id: 459 + right_id: 66 current_revision_id: - created_at: 2024-10-09 13:50:28.000000000 Z - updated_at: 2024-10-09 13:50:28.000000000 Z + created_at: 2025-02-04 20:49:03.358054000 Z + updated_at: 2025-02-04 20:49:03.358054000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -8620,16 +8633,16 @@ cards_459: trash: 0 type_id: 4 db_content: _left -cards_460: - id: 460 +cards_461: + id: 461 name: key: codename: - left_id: 458 - right_id: 66 + left_id: 459 + right_id: 67 current_revision_id: - created_at: 2024-10-09 13:50:28.000000000 Z - updated_at: 2024-10-09 13:50:28.000000000 Z + created_at: 2025-02-04 20:49:03.360108000 Z + updated_at: 2025-02-04 20:49:03.360108000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -8638,16 +8651,16 @@ cards_460: trash: 0 type_id: 4 db_content: _left -cards_461: - id: 461 +cards_462: + id: 462 name: "*followers" key: "*follower" codename: followers left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:28.000000000 Z - updated_at: 2024-10-09 13:50:28.000000000 Z + created_at: 2025-02-04 20:49:03.586575000 Z + updated_at: 2025-02-04 20:49:03.586575000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -8656,16 +8669,16 @@ cards_461: trash: 0 type_id: 2 db_content: '' -cards_462: - id: 462 +cards_463: + id: 463 name: "*follow fields" key: "*follow_field" codename: follow_fields left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:28.000000000 Z - updated_at: 2024-10-09 13:50:28.000000000 Z + created_at: 2025-02-04 20:49:03.689598000 Z + updated_at: 2025-02-04 20:49:03.689598000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -8674,16 +8687,16 @@ cards_462: trash: 0 type_id: 6 db_content: '' -cards_463: - id: 463 +cards_464: + id: 464 name: "*always" key: "*alway" codename: always left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:28.000000000 Z - updated_at: 2024-10-09 13:50:28.000000000 Z + created_at: 2025-02-04 20:49:03.960830000 Z + updated_at: 2025-02-04 20:49:03.960830000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -8692,16 +8705,16 @@ cards_463: trash: 0 type_id: 2 db_content: '' -cards_464: - id: 464 +cards_465: + id: 465 name: "*never" key: "*never" codename: never left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:28.000000000 Z - updated_at: 2024-10-09 13:50:28.000000000 Z + created_at: 2025-02-04 20:49:04.068846000 Z + updated_at: 2025-02-04 20:49:04.068846000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -8710,16 +8723,16 @@ cards_464: trash: 0 type_id: 2 db_content: '' -cards_465: - id: 465 +cards_466: + id: 466 name: "*follow defaults" key: "*follow_default" codename: follow_defaults left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:28.000000000 Z - updated_at: 2024-10-09 13:50:28.000000000 Z + created_at: 2025-02-04 20:49:04.254063000 Z + updated_at: 2025-02-04 20:49:04.254063000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -8728,16 +8741,16 @@ cards_465: trash: 0 type_id: 4 db_content: '' -cards_466: - id: 466 +cards_467: + id: 467 name: follow suggestions key: follow_suggestion codename: follow_suggestions left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:28.000000000 Z - updated_at: 2024-10-09 13:50:28.000000000 Z + created_at: 2025-02-04 20:49:04.431318000 Z + updated_at: 2025-02-04 20:49:04.431318000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -8746,16 +8759,16 @@ cards_466: trash: 0 type_id: 4 db_content: '' -cards_467: - id: 467 +cards_468: + id: 468 name: key: codename: left_id: 7 - right_id: 462 + right_id: 463 current_revision_id: - created_at: 2024-10-09 13:50:28.000000000 Z - updated_at: 2024-10-09 13:50:28.000000000 Z + created_at: 2025-02-04 20:49:04.534556000 Z + updated_at: 2025-02-04 20:49:04.534556000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -8764,16 +8777,16 @@ cards_467: trash: 0 type_id: 4 db_content: "*nests" -cards_468: - id: 468 +cards_469: + id: 469 name: "*contextual class" key: "*contextual_class" codename: contextual_class left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:28.000000000 Z - updated_at: 2024-10-09 13:50:28.000000000 Z + created_at: 2025-02-04 20:49:04.685749000 Z + updated_at: 2025-02-04 20:49:04.685749000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -8782,16 +8795,16 @@ cards_468: trash: 0 type_id: 2 db_content: '' -cards_469: - id: 469 +cards_470: + id: 470 name: key: codename: - left_id: 468 + left_id: 469 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:50:28.000000000 Z - updated_at: 2024-10-09 13:50:28.000000000 Z + created_at: 2025-02-04 20:49:04.691000000 Z + updated_at: 2025-02-04 20:49:04.691000000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -8800,34 +8813,34 @@ cards_469: trash: 0 type_id: 5 db_content: '' -cards_470: - id: 470 +cards_471: + id: 471 name: key: codename: - left_id: 469 - right_id: 148 + left_id: 470 + right_id: 149 current_revision_id: - created_at: 2024-10-09 13:50:28.000000000 Z - updated_at: 2024-10-09 13:50:28.000000000 Z + created_at: 2025-02-04 20:49:04.695659000 Z + updated_at: 2025-02-04 20:49:04.695659000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 55 + type_id: 56 db_content: radio -cards_471: - id: 471 +cards_472: + id: 472 name: key: codename: - left_id: 469 - right_id: 59 + left_id: 470 + right_id: 60 current_revision_id: - created_at: 2024-10-09 13:50:28.000000000 Z - updated_at: 2024-10-09 13:50:28.000000000 Z + created_at: 2025-02-04 20:49:04.699500000 Z + updated_at: 2025-02-04 20:49:04.699500000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -8840,16 +8853,16 @@ cards_471: info warning danger -cards_472: - id: 472 +cards_473: + id: 473 name: "*message" key: "*message" codename: message left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:28.000000000 Z - updated_at: 2024-10-09 13:50:28.000000000 Z + created_at: 2025-02-04 20:49:04.881576000 Z + updated_at: 2025-02-04 20:49:04.881576000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -8858,16 +8871,16 @@ cards_472: trash: 0 type_id: 2 db_content: '' -cards_473: - id: 473 +cards_474: + id: 474 name: "*disappear" key: "*disappear" codename: disappear left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:28.000000000 Z - updated_at: 2024-10-09 13:50:28.000000000 Z + created_at: 2025-02-04 20:49:04.985292000 Z + updated_at: 2025-02-04 20:49:04.985292000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -8876,37 +8889,36 @@ cards_473: trash: 0 type_id: 2 db_content: '' -cards_474: - id: 474 +cards_475: + id: 475 name: follower notification email key: follower_notification_email codename: follower_notification_email left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:29.000000000 Z - updated_at: 2024-10-09 13:50:29.000000000 Z + created_at: 2025-02-04 20:49:05.238609000 Z + updated_at: 2025-02-04 20:49:05.519187000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 152 - db_content: "

    \n {{+*from | labeled | link}} \n {{+*to | labeled | link}} \n - \ {{+*cc | labeled | link}}\n {{+*bcc | labeled | link}}\n {{+*subject | titled}}\n - \ {{+*html message | titled}} \n {{+*text message | titled}}\n {{+*attach | - titled}}\n

    \"" -cards_475: - id: 475 + type_id: 153 + db_content: "{{+:from | labeled | link}} \n{{+:to | labeled | link}} \n{{+:cc | + labeled | link}}\n{{+:bcc | labeled | link}}\n{{+:subject | titled}}\n{{+:html_message + | titled}} \n{{+:text_message | titled}}\n{{+:attach | titled}}" +cards_476: + id: 476 name: key: codename: - left_id: 474 - right_id: 159 + left_id: 475 + right_id: 160 current_revision_id: - created_at: 2024-10-09 13:50:29.000000000 Z - updated_at: 2024-10-09 13:50:29.000000000 Z + created_at: 2025-02-04 20:49:05.240589000 Z + updated_at: 2025-02-04 20:49:05.240589000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -8915,16 +8927,16 @@ cards_475: trash: 0 type_id: 4 db_content: Decko Bot -cards_476: - id: 476 +cards_477: + id: 477 name: key: codename: - left_id: 474 - right_id: 168 + left_id: 475 + right_id: 169 current_revision_id: - created_at: 2024-10-09 13:50:29.000000000 Z - updated_at: 2024-10-09 13:50:29.000000000 Z + created_at: 2025-02-04 20:49:05.242712000 Z + updated_at: 2025-02-04 20:49:05.242712000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -8933,16 +8945,16 @@ cards_476: trash: 0 type_id: 43 db_content: '{{_user|name}} {{_|last_action_verb}} "{{_|name}}"' -cards_477: - id: 477 +cards_478: + id: 478 name: key: codename: - left_id: 474 - right_id: 172 + left_id: 475 + right_id: 173 current_revision_id: - created_at: 2024-10-09 13:50:29.000000000 Z - updated_at: 2024-10-09 13:50:29.000000000 Z + created_at: 2025-02-04 20:49:05.244783000 Z + updated_at: 2025-02-04 20:49:05.244783000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -8955,16 +8967,16 @@ cards_477: \ You received this email because you're following {{_|followed}}.\n

    \n\n

    \n \ \n Unfollow to stop receiving these emails.\n \n

    " -cards_478: - id: 478 +cards_479: + id: 479 name: key: codename: - left_id: 474 - right_id: 173 + left_id: 475 + right_id: 174 current_revision_id: - created_at: 2024-10-09 13:50:29.000000000 Z - updated_at: 2024-10-09 13:50:29.000000000 Z + created_at: 2025-02-04 20:49:05.246757000 Z + updated_at: 2025-02-04 20:49:05.246757000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -8984,16 +8996,16 @@ cards_478: You received this email because you're following "{{_|followed}}". Use this link to unfollow {{_|unfollow_url}} -cards_479: - id: 479 +cards_480: + id: 480 name: Session key: session codename: session left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:29.000000000 Z - updated_at: 2024-10-09 13:50:29.000000000 Z + created_at: 2025-02-04 20:49:05.529989000 Z + updated_at: 2025-02-04 20:49:05.655745000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -9005,16 +9017,16 @@ cards_479: {{+:description|content}} {{_|add_button}}{{_|configure_button}} {{+:type+:by_name|content}} -cards_480: - id: 480 +cards_481: + id: 481 name: key: codename: - left_id: 479 + left_id: 480 right_id: 12 current_revision_id: - created_at: 2024-10-09 13:50:29.000000000 Z - updated_at: 2024-10-09 13:50:29.000000000 Z + created_at: 2025-02-04 20:49:05.532017000 Z + updated_at: 2025-02-04 20:49:05.532017000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -9024,20 +9036,20 @@ cards_480: type_id: 2 db_content: "Session cards are for non-permanent content. They are not stored in the database \nand can have different values for different users." -cards_481: - id: 481 +cards_482: + id: 482 name: "*recent settings" key: "*recent_setting" codename: recent_settings left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:29.000000000 Z - updated_at: 2024-10-09 13:50:49.000000000 Z + created_at: 2025-02-04 20:49:05.675277000 Z + updated_at: 2025-02-04 20:49:26.881265000 Z creator_id: 1 updater_id: 1 read_rule_class: "*self" - read_rule_id: 484 + read_rule_id: 485 references_expired: trash: 0 type_id: 2 @@ -9049,88 +9061,88 @@ cards_481: *read *input type *create -cards_482: - id: 482 +cards_483: + id: 483 name: key: codename: - left_id: 481 + left_id: 482 right_id: 27 current_revision_id: - created_at: 2024-10-09 13:50:29.000000000 Z - updated_at: 2024-10-09 13:50:29.000000000 Z + created_at: 2025-02-04 20:49:05.678083000 Z + updated_at: 2025-02-04 20:49:05.678083000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" - read_rule_id: 484 + read_rule_id: 485 references_expired: trash: 0 type_id: 5 db_content: '' -cards_483: - id: 483 +cards_484: + id: 484 name: key: codename: - left_id: 482 - right_id: 66 + left_id: 483 + right_id: 67 current_revision_id: - created_at: 2024-10-09 13:50:29.000000000 Z - updated_at: 2024-10-09 13:50:29.000000000 Z + created_at: 2025-02-04 20:49:05.680184000 Z + updated_at: 2025-02-04 20:49:05.680184000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" - read_rule_id: 484 + read_rule_id: 485 references_expired: trash: 0 type_id: 4 db_content: Anyone -cards_484: - id: 484 +cards_485: + id: 485 name: key: codename: - left_id: 482 + left_id: 483 right_id: 9 current_revision_id: - created_at: 2024-10-09 13:50:29.000000000 Z - updated_at: 2024-10-09 13:50:29.000000000 Z + created_at: 2025-02-04 20:49:05.683169000 Z + updated_at: 2025-02-04 20:49:05.683169000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" - read_rule_id: 484 + read_rule_id: 485 references_expired: trash: 0 type_id: 4 db_content: Anyone -cards_485: - id: 485 +cards_486: + id: 486 name: key: codename: - left_id: 482 - right_id: 59 + left_id: 483 + right_id: 60 current_revision_id: - created_at: 2024-10-09 13:50:29.000000000 Z - updated_at: 2024-10-09 13:50:29.000000000 Z + created_at: 2025-02-04 20:49:05.685343000 Z + updated_at: 2025-02-04 20:49:05.685343000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" - read_rule_id: 484 + read_rule_id: 485 references_expired: trash: 0 - type_id: 97 + type_id: 98 db_content: '{"type":"setting"}' -cards_486: - id: 486 +cards_487: + id: 487 name: Layout key: layout codename: layout_type left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:29.000000000 Z - updated_at: 2024-10-09 13:50:29.000000000 Z + created_at: 2025-02-04 20:49:06.029030000 Z + updated_at: 2025-02-04 20:49:06.243799000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -9142,16 +9154,16 @@ cards_486: {{+:description|content}} {{_|add_button}}{{_|configure_button}} {{+:type+:by_name|content}} -cards_487: - id: 487 +cards_488: + id: 488 name: key: codename: - left_id: 486 + left_id: 487 right_id: 12 current_revision_id: - created_at: 2024-10-09 13:50:29.000000000 Z - updated_at: 2024-10-09 13:50:29.000000000 Z + created_at: 2025-02-04 20:49:06.031076000 Z + updated_at: 2025-02-04 20:49:06.031076000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -9160,16 +9172,16 @@ cards_487: trash: 0 type_id: 2 db_content: Organize webpages. [[http://decko.org/Layout|more]] -cards_488: - id: 488 +cards_489: + id: 489 name: key: codename: - left_id: 486 + left_id: 487 right_id: 21 current_revision_id: - created_at: 2024-10-09 13:50:29.000000000 Z - updated_at: 2024-10-09 13:50:29.000000000 Z + created_at: 2025-02-04 20:49:06.034817000 Z + updated_at: 2025-02-04 20:49:06.034817000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -9178,16 +9190,16 @@ cards_488: trash: 0 type_id: 5 db_content: '' -cards_489: - id: 489 +cards_490: + id: 490 name: key: codename: - left_id: 488 - right_id: 65 + left_id: 489 + right_id: 66 current_revision_id: - created_at: 2024-10-09 13:50:29.000000000 Z - updated_at: 2024-10-09 13:50:29.000000000 Z + created_at: 2025-02-04 20:49:06.036883000 Z + updated_at: 2025-02-04 20:49:06.036883000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -9196,16 +9208,16 @@ cards_489: trash: 0 type_id: 4 db_content: Shark -cards_490: - id: 490 +cards_491: + id: 491 name: key: codename: - left_id: 488 - right_id: 66 + left_id: 489 + right_id: 67 current_revision_id: - created_at: 2024-10-09 13:50:29.000000000 Z - updated_at: 2024-10-09 13:50:29.000000000 Z + created_at: 2025-02-04 20:49:06.039119000 Z + updated_at: 2025-02-04 20:49:06.039119000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -9214,16 +9226,16 @@ cards_490: trash: 0 type_id: 4 db_content: Shark -cards_491: - id: 491 +cards_492: + id: 492 name: key: codename: - left_id: 488 - right_id: 67 + left_id: 489 + right_id: 68 current_revision_id: - created_at: 2024-10-09 13:50:29.000000000 Z - updated_at: 2024-10-09 13:50:29.000000000 Z + created_at: 2025-02-04 20:49:06.043807000 Z + updated_at: 2025-02-04 20:49:06.043807000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -9232,16 +9244,16 @@ cards_491: trash: 0 type_id: 4 db_content: Shark -cards_492: - id: 492 +cards_493: + id: 493 name: "*layout" key: "*layout" codename: layout left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:29.000000000 Z - updated_at: 2024-10-09 13:50:29.000000000 Z + created_at: 2025-02-04 20:49:06.330237000 Z + updated_at: 2025-02-04 20:49:06.330237000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -9250,16 +9262,16 @@ cards_492: trash: 0 type_id: 6 db_content: '' -cards_493: - id: 493 +cards_494: + id: 494 name: key: codename: - left_id: 492 + left_id: 493 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:50:29.000000000 Z - updated_at: 2024-10-09 13:50:29.000000000 Z + created_at: 2025-02-04 20:49:06.333519000 Z + updated_at: 2025-02-04 20:49:06.333519000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -9268,76 +9280,76 @@ cards_493: trash: 0 type_id: 5 db_content: '' -cards_494: - id: 494 +cards_495: + id: 495 name: key: codename: - left_id: 493 - right_id: 148 + left_id: 494 + right_id: 149 current_revision_id: - created_at: 2024-10-09 13:50:29.000000000 Z - updated_at: 2024-10-09 13:50:29.000000000 Z + created_at: 2025-02-04 20:49:06.335910000 Z + updated_at: 2025-02-04 20:49:06.335910000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 55 + type_id: 56 db_content: select -cards_495: - id: 495 +cards_496: + id: 496 name: key: codename: left_id: 7 - right_id: 492 + right_id: 493 current_revision_id: - created_at: 2024-10-09 13:50:30.000000000 Z - updated_at: 2024-10-09 13:50:30.000000000 Z + created_at: 2025-02-04 20:49:06.532124000 Z + updated_at: 2025-02-04 20:49:06.532124000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 55 + type_id: 56 db_content: Default Layout -cards_496: - id: 496 +cards_497: + id: 497 name: "*main menu" key: "*main_menu" codename: main_menu left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:30.000000000 Z - updated_at: 2024-10-09 13:50:33.000000000 Z + created_at: 2025-02-04 20:49:06.557693000 Z + updated_at: 2025-02-04 20:49:10.829744000 Z creator_id: 1 updater_id: 1 read_rule_class: "*self" - read_rule_id: 501 + read_rule_id: 502 references_expired: trash: 0 - type_id: 58 + type_id: 59 db_content: |- [[:getting_started_links|Getting started]] [[:recent|Recent Changes]] -cards_497: - id: 497 +cards_498: + id: 498 name: "*header" key: "*header" codename: header left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:30.000000000 Z - updated_at: 2024-10-09 13:50:33.000000000 Z + created_at: 2025-02-04 20:49:06.670467000 Z + updated_at: 2025-02-04 20:49:10.883043000 Z creator_id: 1 updater_id: 1 read_rule_class: "*self" - read_rule_id: 499 + read_rule_id: 500 references_expired: trash: 0 type_id: 39 @@ -9364,88 +9376,88 @@ cards_497: -cards_498: - id: 498 +cards_499: + id: 499 name: key: codename: - left_id: 497 + left_id: 498 right_id: 27 current_revision_id: - created_at: 2024-10-09 13:50:30.000000000 Z - updated_at: 2024-10-09 13:50:30.000000000 Z + created_at: 2025-02-04 20:49:06.971301000 Z + updated_at: 2025-02-04 20:49:06.971301000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" - read_rule_id: 499 + read_rule_id: 500 references_expired: trash: 0 type_id: 5 db_content: '' -cards_499: - id: 499 +cards_500: + id: 500 name: key: codename: - left_id: 498 + left_id: 499 right_id: 9 current_revision_id: - created_at: 2024-10-09 13:50:30.000000000 Z - updated_at: 2024-10-09 13:50:30.000000000 Z + created_at: 2025-02-04 20:49:06.973531000 Z + updated_at: 2025-02-04 20:49:06.973531000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" - read_rule_id: 499 + read_rule_id: 500 references_expired: trash: 0 type_id: 4 db_content: Anyone -cards_500: - id: 500 +cards_501: + id: 501 name: key: codename: - left_id: 496 + left_id: 497 right_id: 27 current_revision_id: - created_at: 2024-10-09 13:50:30.000000000 Z - updated_at: 2024-10-09 13:50:30.000000000 Z + created_at: 2025-02-04 20:49:07.045435000 Z + updated_at: 2025-02-04 20:49:07.045435000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" - read_rule_id: 501 + read_rule_id: 502 references_expired: trash: 0 type_id: 5 db_content: '' -cards_501: - id: 501 +cards_502: + id: 502 name: key: codename: - left_id: 500 + left_id: 501 right_id: 9 current_revision_id: - created_at: 2024-10-09 13:50:30.000000000 Z - updated_at: 2024-10-09 13:50:30.000000000 Z + created_at: 2025-02-04 20:49:07.047443000 Z + updated_at: 2025-02-04 20:49:07.047443000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" - read_rule_id: 501 + read_rule_id: 502 references_expired: trash: 0 type_id: 4 db_content: Anyone -cards_502: - id: 502 +cards_503: + id: 503 name: "*footer" key: "*footer" codename: footer left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:30.000000000 Z - updated_at: 2024-10-09 13:50:30.000000000 Z + created_at: 2025-02-04 20:49:07.130004000 Z + updated_at: 2025-02-04 20:49:07.130004000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -9457,16 +9469,16 @@ cards_502:
    {{:credit|core}}
    -cards_503: - id: 503 +cards_504: + id: 504 name: Menu key: menu codename: sidebar_menu left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:30.000000000 Z - updated_at: 2024-10-09 13:50:30.000000000 Z + created_at: 2025-02-04 20:49:07.311043000 Z + updated_at: 2025-02-04 20:49:07.311043000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -9475,16 +9487,16 @@ cards_503: trash: 0 type_id: 2 db_content: "

    [[/?view=new|Add a card]]

    " -cards_504: - id: 504 +cards_505: + id: 505 name: "*sidebar" key: "*sidebar" codename: sidebar left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:30.000000000 Z - updated_at: 2024-10-09 13:50:30.000000000 Z + created_at: 2025-02-04 20:49:07.470341000 Z + updated_at: 2025-02-04 20:49:07.470341000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -9495,16 +9507,16 @@ cards_504: db_content: |-
    [[/ | {{:logo|content_panel}}]]
    {{:sidebar_menu|titled}}
    -cards_505: - id: 505 +cards_506: + id: 506 name: key: codename: - left_id: 504 + left_id: 505 right_id: 26 current_revision_id: - created_at: 2024-10-09 13:50:30.000000000 Z - updated_at: 2024-10-09 13:50:30.000000000 Z + created_at: 2025-02-04 20:49:07.475801000 Z + updated_at: 2025-02-04 20:49:07.475801000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -9513,16 +9525,16 @@ cards_505: trash: 0 type_id: 5 db_content: '' -cards_506: - id: 506 +cards_507: + id: 507 name: key: codename: - left_id: 505 + left_id: 506 right_id: 9 current_revision_id: - created_at: 2024-10-09 13:50:30.000000000 Z - updated_at: 2024-10-09 13:50:30.000000000 Z + created_at: 2025-02-04 20:49:07.478352000 Z + updated_at: 2025-02-04 20:49:07.478352000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -9531,92 +9543,92 @@ cards_506: trash: 0 type_id: 4 db_content: Anyone -cards_507: - id: 507 +cards_508: + id: 508 name: Default Layout key: default_layout codename: default_layout left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:31.000000000 Z - updated_at: 2024-10-09 13:50:33.000000000 Z + created_at: 2025-02-04 20:49:07.807998000 Z + updated_at: 2025-02-04 20:49:10.883043000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 486 + type_id: 487 db_content: |-
    {{:header|core}}
    {{_main|titled}}
    {{:footer|content}}
    -cards_508: - id: 508 +cards_509: + id: 509 name: Full Width Layout key: full_width_layout codename: full_layout left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:31.000000000 Z - updated_at: 2024-10-09 13:50:33.000000000 Z + created_at: 2025-02-04 20:49:07.929997000 Z + updated_at: 2025-02-04 20:49:10.883043000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 486 + type_id: 487 db_content: |-
    {{:header|core}}
    {{_main|titled}}
    {{:footer|core}}
    -cards_509: - id: 509 +cards_510: + id: 510 name: Home Layout key: home_layout codename: home_layout left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:31.000000000 Z - updated_at: 2024-10-09 13:50:33.000000000 Z + created_at: 2025-02-04 20:49:08.222819000 Z + updated_at: 2025-02-04 20:49:10.883043000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 486 + type_id: 487 db_content: |-
    {{:header|core}}
    {{_main|content}}
    {{:footer|content}}
    -cards_510: - id: 510 +cards_511: + id: 511 name: Right Thin Sidebar Layout key: right_thin_sidebar_layout codename: right_thin_sidebar_layout left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:31.000000000 Z - updated_at: 2024-10-09 13:50:33.000000000 Z + created_at: 2025-02-04 20:49:08.405135000 Z + updated_at: 2025-02-04 20:49:10.883043000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 486 + type_id: 487 db_content: |-
    {{:header|core}}
    @@ -9624,23 +9636,23 @@ cards_510:
    {{:footer|core}}
    -cards_511: - id: 511 +cards_512: + id: 512 name: Left Sidebar Layout key: left_sidebar_layout codename: left_sidebar_layout left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:31.000000000 Z - updated_at: 2024-10-09 13:50:33.000000000 Z + created_at: 2025-02-04 20:49:08.582040000 Z + updated_at: 2025-02-04 20:49:10.883043000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 486 + type_id: 487 db_content: |-
    {{:header|core}}
    @@ -9648,16 +9660,16 @@ cards_511:
    {{:footer|core}}
    -cards_512: - id: 512 +cards_513: + id: 513 name: "*captcha" key: "*captcha" codename: captcha left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:31.000000000 Z - updated_at: 2024-10-09 13:50:31.000000000 Z + created_at: 2025-02-04 20:49:08.789412000 Z + updated_at: 2025-02-04 20:49:08.789412000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -9666,16 +9678,16 @@ cards_512: trash: 0 type_id: 6 db_content: '' -cards_513: - id: 513 +cards_514: + id: 514 name: key: codename: left_id: 7 - right_id: 512 + right_id: 513 current_revision_id: - created_at: 2024-10-09 13:50:31.000000000 Z - updated_at: 2024-10-09 13:50:31.000000000 Z + created_at: 2025-02-04 20:49:08.995908000 Z + updated_at: 2025-02-04 20:49:08.995908000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -9684,16 +9696,16 @@ cards_513: trash: 0 type_id: 41 db_content: '1' -cards_514: - id: 514 +cards_515: + id: 515 name: key: codename: - left_id: 236 - right_id: 512 + left_id: 237 + right_id: 513 current_revision_id: - created_at: 2024-10-09 13:50:31.000000000 Z - updated_at: 2024-10-09 13:50:31.000000000 Z + created_at: 2025-02-04 20:49:09.068464000 Z + updated_at: 2025-02-04 20:49:09.068464000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -9702,16 +9714,16 @@ cards_514: trash: 0 type_id: 41 db_content: '1' -cards_515: - id: 515 +cards_516: + id: 516 name: "*recaptcha settings" key: "*recaptcha_setting" codename: recaptcha_settings left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:32.000000000 Z - updated_at: 2024-10-09 13:50:32.000000000 Z + created_at: 2025-02-04 20:49:09.108796000 Z + updated_at: 2025-02-04 20:49:09.108796000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -9720,16 +9732,16 @@ cards_515: trash: 0 type_id: 2 db_content: '' -cards_516: - id: 516 +cards_517: + id: 517 name: site key key: site_key codename: site_key left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:32.000000000 Z - updated_at: 2024-10-09 13:50:32.000000000 Z + created_at: 2025-02-04 20:49:09.267482000 Z + updated_at: 2025-02-04 20:49:09.267482000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -9738,16 +9750,16 @@ cards_516: trash: 0 type_id: 2 db_content: '' -cards_517: - id: 517 +cards_518: + id: 518 name: secret key key: secret_key codename: secret_key left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:32.000000000 Z - updated_at: 2024-10-09 13:50:32.000000000 Z + created_at: 2025-02-04 20:49:09.590210000 Z + updated_at: 2025-02-04 20:49:09.590210000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -9756,16 +9768,16 @@ cards_517: trash: 0 type_id: 2 db_content: '' -cards_518: - id: 518 +cards_519: + id: 519 name: "*tinyMCE" key: "*tiny_mce" codename: tiny_mce left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:32.000000000 Z - updated_at: 2024-10-09 13:50:32.000000000 Z + created_at: 2025-02-04 20:49:09.727878000 Z + updated_at: 2025-02-04 20:49:09.727878000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -9785,16 +9797,16 @@ cards_518: "relative_urls":false, "extended_valid_elements":"a[name|href|target|title|onclick],img[class|src|border=0|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name],hr[class|width|size|noshade],font[face|size|color|style],span[class|align|style]" } -cards_519: - id: 519 +cards_520: + id: 520 name: Home key: home codename: default_home left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:32.000000000 Z - updated_at: 2024-10-09 13:50:32.000000000 Z + created_at: 2025-02-04 20:49:10.002068000 Z + updated_at: 2025-02-04 20:49:10.002068000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -9805,16 +9817,16 @@ cards_519: db_content: |
    {{:getting_started|core}}
    {{## Feel free to get rid of this and start fresh! }}
    -cards_520: - id: 520 +cards_521: + id: 521 name: key: codename: - left_id: 519 + left_id: 520 right_id: 27 current_revision_id: - created_at: 2024-10-09 13:50:32.000000000 Z - updated_at: 2024-10-09 13:50:32.000000000 Z + created_at: 2025-02-04 20:49:10.006956000 Z + updated_at: 2025-02-04 20:49:10.006956000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -9823,52 +9835,52 @@ cards_520: trash: 0 type_id: 5 db_content: '' -cards_521: - id: 521 +cards_522: + id: 522 name: key: codename: - left_id: 520 - right_id: 492 + left_id: 521 + right_id: 493 current_revision_id: - created_at: 2024-10-09 13:50:32.000000000 Z - updated_at: 2024-10-09 13:50:32.000000000 Z + created_at: 2025-02-04 20:49:10.010256000 Z + updated_at: 2025-02-04 20:49:10.010256000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 55 + type_id: 56 db_content: Home Layout -cards_522: - id: 522 +cards_523: + id: 523 name: "*home" key: "*home" codename: home left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:32.000000000 Z - updated_at: 2024-10-09 13:50:32.000000000 Z + created_at: 2025-02-04 20:49:10.141795000 Z + updated_at: 2025-02-04 20:49:10.141795000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 55 + type_id: 56 db_content: Home -cards_523: - id: 523 +cards_524: + id: 524 name: Dashboard key: dashboard codename: dashboard left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:32.000000000 Z - updated_at: 2024-10-09 13:50:32.000000000 Z + created_at: 2025-02-04 20:49:10.413948000 Z + updated_at: 2025-02-04 20:49:10.413948000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -9877,16 +9889,16 @@ cards_523: trash: 0 type_id: 2 db_content: '' -cards_524: - id: 524 +cards_525: + id: 525 name: key: codename: - left_id: 177 + left_id: 178 right_id: 21 current_revision_id: - created_at: 2024-10-09 13:50:32.000000000 Z - updated_at: 2024-10-09 13:50:32.000000000 Z + created_at: 2025-02-04 20:49:10.622179000 Z + updated_at: 2025-02-04 20:49:10.622179000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -9895,78 +9907,78 @@ cards_524: trash: 0 type_id: 5 db_content: '' -cards_525: - id: 525 +cards_526: + id: 526 name: key: codename: - left_id: 524 + left_id: 525 right_id: 28 current_revision_id: - created_at: 2024-10-09 13:50:32.000000000 Z - updated_at: 2024-10-09 13:50:32.000000000 Z + created_at: 2025-02-04 20:49:10.623830000 Z + updated_at: 2025-02-04 20:49:10.623830000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 57 + type_id: 58 db_content: |- {{+:description|lead}} {{+:dashboard|content}} {{+:members|titled;title: Members}} -cards_526: - id: 526 +cards_527: + id: 527 name: "*getting started links" key: "*getting_started_link" codename: getting_started_links left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:33.000000000 Z - updated_at: 2024-10-09 13:50:33.000000000 Z + created_at: 2025-02-04 20:49:10.918848000 Z + updated_at: 2025-02-04 20:49:10.918848000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" read_rule_id: 10 references_expired: trash: 0 - type_id: 58 + type_id: 59 db_content: |- [[/new/Cardtype | Add type]] [[:all+:style | Configure skin]] [[Administrator| Basic configuration]] [[/:main_menu/edit | Change this menu]] [[https://decko.org/Features | Learn more]] -cards_527: - id: 527 +cards_528: + id: 528 name: key: codename: - left_id: 184 - right_id: 523 + left_id: 185 + right_id: 524 current_revision_id: - created_at: 2024-10-09 13:50:33.000000000 Z - updated_at: 2024-10-09 13:50:33.000000000 Z + created_at: 2025-02-04 20:49:11.292835000 Z + updated_at: 2025-02-04 20:49:11.301038000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 64 + type_id: 65 db_content: "{{_L|configs}}\n" -cards_528: - id: 528 +cards_529: + id: 529 name: key: codename: - left_id: 191 - right_id: 523 + left_id: 192 + right_id: 524 current_revision_id: - created_at: 2024-10-09 13:50:33.000000000 Z - updated_at: 2024-10-09 13:50:33.000000000 Z + created_at: 2025-02-04 20:49:11.313234000 Z + updated_at: 2025-02-04 20:49:11.322712000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -9993,16 +10005,16 @@ cards_528:

    You can try out different views below

    {{:getting_started|demo}}

    -cards_529: - id: 529 +cards_530: + id: 530 name: key: codename: - left_id: 196 - right_id: 523 + left_id: 197 + right_id: 524 current_revision_id: - created_at: 2024-10-09 13:50:33.000000000 Z - updated_at: 2024-10-09 13:50:33.000000000 Z + created_at: 2025-02-04 20:49:11.335291000 Z + updated_at: 2025-02-04 20:49:11.348764000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -10017,18 +10029,18 @@ cards_529:

    Help Texts

    {{:help|bar}}

    Emails

    -

    Here are the current [[Email Templates|Email templates]] for your site.

    -

    {{Email Templates+*type+by update|content}}

    -cards_530: - id: 530 +

    Here are the current [[:email_template|Email templates]] for your site.

    +

    {{:email_template+:type+:by_update|content}}

    +cards_531: + id: 531 name: key: codename: - left_id: 189 - right_id: 523 + left_id: 190 + right_id: 524 current_revision_id: - created_at: 2024-10-09 13:50:34.000000000 Z - updated_at: 2024-10-09 13:50:34.000000000 Z + created_at: 2025-02-04 20:49:11.362401000 Z + updated_at: 2025-02-04 20:49:11.362401000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -10038,16 +10050,16 @@ cards_530: type_id: 2 db_content: "

    Your contributions

    \r\n

    {{_user+*created|bar; title: created cards}} {{_user+*edited|bar; title: edited cards}}

    " -cards_531: - id: 531 +cards_532: + id: 532 name: key: codename: - left_id: 182 - right_id: 523 + left_id: 183 + right_id: 524 current_revision_id: - created_at: 2024-10-09 13:50:34.000000000 Z - updated_at: 2024-10-09 13:50:34.000000000 Z + created_at: 2025-02-04 20:49:11.397953000 Z + updated_at: 2025-02-04 20:49:11.397953000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -10061,16 +10073,16 @@ cards_531: {{_user+:created|bar; title: created cards}} {{_user+:edited|bar; title: edited cards}}

    -cards_532: - id: 532 +cards_533: + id: 533 name: "*getting started" key: "*getting_started" codename: getting_started left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:34.000000000 Z - updated_at: 2024-10-09 13:50:34.000000000 Z + created_at: 2025-02-04 20:49:11.425034000 Z + updated_at: 2025-02-04 20:49:11.669564000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -10101,16 +10113,16 @@ cards_532:

    and more...

    -cards_533: - id: 533 +cards_534: + id: 534 name: key: codename: - left_id: 532 - right_id: 191 + left_id: 533 + right_id: 192 current_revision_id: - created_at: 2024-10-09 13:50:34.000000000 Z - updated_at: 2024-10-09 13:50:34.000000000 Z + created_at: 2025-02-04 20:49:11.427183000 Z + updated_at: 2025-02-04 20:49:11.427183000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -10185,16 +10197,16 @@ cards_533: -cards_534: - id: 534 +cards_535: + id: 535 name: 'mod: core' key: mod_core codename: mod_core left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:34.000000000 Z - updated_at: 2024-10-09 13:50:34.000000000 Z + created_at: 2025-02-04 20:49:12.404003000 Z + updated_at: 2025-02-04 20:49:12.404003000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -10203,16 +10215,16 @@ cards_534: trash: 0 type_id: 15 db_content: '' -cards_535: - id: 535 +cards_536: + id: 536 name: 'mod: collection' key: mod_collection codename: mod_collection left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:34.000000000 Z - updated_at: 2024-10-09 13:50:34.000000000 Z + created_at: 2025-02-04 20:49:12.643176000 Z + updated_at: 2025-02-04 20:49:12.643176000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -10221,16 +10233,16 @@ cards_535: trash: 0 type_id: 15 db_content: '' -cards_536: - id: 536 +cards_537: + id: 537 name: 'mod: content' key: mod_content codename: mod_content left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:34.000000000 Z - updated_at: 2024-10-09 13:50:34.000000000 Z + created_at: 2025-02-04 20:49:12.783775000 Z + updated_at: 2025-02-04 20:49:12.783775000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -10239,16 +10251,16 @@ cards_536: trash: 0 type_id: 15 db_content: '' -cards_537: - id: 537 +cards_538: + id: 538 name: 'mod: format' key: mod_format codename: mod_format left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:34.000000000 Z - updated_at: 2024-10-09 13:50:34.000000000 Z + created_at: 2025-02-04 20:49:13.120334000 Z + updated_at: 2025-02-04 20:49:13.120334000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -10257,16 +10269,16 @@ cards_537: trash: 0 type_id: 15 db_content: '' -cards_538: - id: 538 +cards_539: + id: 539 name: key: codename: - left_id: 537 - right_id: 301 + left_id: 538 + right_id: 302 current_revision_id: - created_at: 2024-10-09 13:50:35.000000000 Z - updated_at: 2024-10-09 13:50:35.000000000 Z + created_at: 2025-02-04 20:49:13.331634000 Z + updated_at: 2025-02-04 20:49:13.331634000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -10275,34 +10287,34 @@ cards_538: trash: 0 type_id: 4 db_content: '' -cards_539: - id: 539 +cards_540: + id: 540 name: key: - codename: mod_format_script_asset_output - left_id: 538 - right_id: 299 + codename: + left_id: 539 + right_id: 300 current_revision_id: - created_at: 2024-10-09 13:50:37.000000000 Z - updated_at: 2024-10-09 13:51:01.000000000 Z + created_at: 2025-02-04 20:49:14.667899000 Z + updated_at: 2025-02-04 20:49:35.337284000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 282 - db_content: ":mod_format_script_asset_output/format.js" -cards_540: - id: 540 + type_id: 283 + db_content: ":mod_format+:script+:asset_output/format.js" +cards_541: + id: 541 name: key: codename: - left_id: 537 - right_id: 347 + left_id: 538 + right_id: 348 current_revision_id: - created_at: 2024-10-09 13:50:37.000000000 Z - updated_at: 2024-10-09 13:50:37.000000000 Z + created_at: 2025-02-04 20:49:14.818382000 Z + updated_at: 2025-02-04 20:49:14.818382000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -10311,16 +10323,16 @@ cards_540: trash: 0 type_id: 4 db_content: '' -cards_541: - id: 541 +cards_542: + id: 542 name: 'mod: list' key: mod_list codename: mod_list left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:38.000000000 Z - updated_at: 2024-10-09 13:50:38.000000000 Z + created_at: 2025-02-04 20:49:14.965373000 Z + updated_at: 2025-02-04 20:49:14.965373000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -10329,16 +10341,16 @@ cards_541: trash: 0 type_id: 15 db_content: '' -cards_542: - id: 542 +cards_543: + id: 543 name: key: codename: - left_id: 541 - right_id: 301 + left_id: 542 + right_id: 302 current_revision_id: - created_at: 2024-10-09 13:50:38.000000000 Z - updated_at: 2024-10-09 13:50:38.000000000 Z + created_at: 2025-02-04 20:49:15.186918000 Z + updated_at: 2025-02-04 20:49:15.186918000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -10347,34 +10359,34 @@ cards_542: trash: 0 type_id: 4 db_content: '' -cards_543: - id: 543 +cards_544: + id: 544 name: key: - codename: mod_list_script_asset_output - left_id: 542 - right_id: 299 + codename: + left_id: 543 + right_id: 300 current_revision_id: - created_at: 2024-10-09 13:50:38.000000000 Z - updated_at: 2024-10-09 13:51:01.000000000 Z + created_at: 2025-02-04 20:49:15.404177000 Z + updated_at: 2025-02-04 20:49:35.363751000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 282 - db_content: ":mod_list_script_asset_output/list.js" -cards_544: - id: 544 + type_id: 283 + db_content: ":mod_list+:script+:asset_output/list.js" +cards_545: + id: 545 name: key: codename: - left_id: 541 - right_id: 347 + left_id: 542 + right_id: 348 current_revision_id: - created_at: 2024-10-09 13:50:38.000000000 Z - updated_at: 2024-10-09 13:50:38.000000000 Z + created_at: 2025-02-04 20:49:15.437985000 Z + updated_at: 2025-02-04 20:49:15.437985000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -10383,16 +10395,16 @@ cards_544: trash: 0 type_id: 4 db_content: '' -cards_545: - id: 545 +cards_546: + id: 546 name: 'mod: markdown' key: mod_markdown codename: mod_markdown left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:38.000000000 Z - updated_at: 2024-10-09 13:50:38.000000000 Z + created_at: 2025-02-04 20:49:15.467896000 Z + updated_at: 2025-02-04 20:49:15.467896000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -10401,16 +10413,16 @@ cards_545: trash: 0 type_id: 15 db_content: '' -cards_546: - id: 546 +cards_547: + id: 547 name: 'mod: permissions' key: mod_permission codename: mod_permissions left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:38.000000000 Z - updated_at: 2024-10-09 13:50:38.000000000 Z + created_at: 2025-02-04 20:49:15.602222000 Z + updated_at: 2025-02-04 20:49:15.602222000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -10419,16 +10431,16 @@ cards_546: trash: 0 type_id: 15 db_content: '' -cards_547: - id: 547 +cards_548: + id: 548 name: key: codename: - left_id: 546 - right_id: 347 + left_id: 547 + right_id: 348 current_revision_id: - created_at: 2024-10-09 13:50:39.000000000 Z - updated_at: 2024-10-09 13:50:39.000000000 Z + created_at: 2025-02-04 20:49:15.915970000 Z + updated_at: 2025-02-04 20:49:15.915970000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -10437,16 +10449,16 @@ cards_547: trash: 0 type_id: 4 db_content: '' -cards_548: - id: 548 +cards_549: + id: 549 name: 'mod: help' key: mod_help codename: mod_help left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:39.000000000 Z - updated_at: 2024-10-09 13:50:39.000000000 Z + created_at: 2025-02-04 20:49:16.096528000 Z + updated_at: 2025-02-04 20:49:16.096528000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -10455,16 +10467,16 @@ cards_548: trash: 0 type_id: 15 db_content: '' -cards_549: - id: 549 +cards_550: + id: 550 name: key: codename: - left_id: 548 - right_id: 347 + left_id: 549 + right_id: 348 current_revision_id: - created_at: 2024-10-09 13:50:39.000000000 Z - updated_at: 2024-10-09 13:50:39.000000000 Z + created_at: 2025-02-04 20:49:16.332882000 Z + updated_at: 2025-02-04 20:49:16.332882000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -10473,16 +10485,16 @@ cards_549: trash: 0 type_id: 4 db_content: '' -cards_550: - id: 550 +cards_551: + id: 551 name: 'mod: search' key: mod_search codename: mod_search left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:39.000000000 Z - updated_at: 2024-10-09 13:50:39.000000000 Z + created_at: 2025-02-04 20:49:16.505190000 Z + updated_at: 2025-02-04 20:49:16.505190000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -10491,16 +10503,16 @@ cards_550: trash: 0 type_id: 15 db_content: '' -cards_551: - id: 551 +cards_552: + id: 552 name: key: codename: - left_id: 550 - right_id: 301 + left_id: 551 + right_id: 302 current_revision_id: - created_at: 2024-10-09 13:50:39.000000000 Z - updated_at: 2024-10-09 13:50:39.000000000 Z + created_at: 2025-02-04 20:49:16.749228000 Z + updated_at: 2025-02-04 20:49:16.749228000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -10509,34 +10521,34 @@ cards_551: trash: 0 type_id: 4 db_content: '' -cards_552: - id: 552 +cards_553: + id: 553 name: key: - codename: mod_search_script_asset_output - left_id: 551 - right_id: 299 + codename: + left_id: 552 + right_id: 300 current_revision_id: - created_at: 2024-10-09 13:50:39.000000000 Z - updated_at: 2024-10-09 13:51:01.000000000 Z + created_at: 2025-02-04 20:49:16.905268000 Z + updated_at: 2025-02-04 20:49:35.390491000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 282 - db_content: ":mod_search_script_asset_output/search.js" -cards_553: - id: 553 + type_id: 283 + db_content: ":mod_search+:script+:asset_output/search.js" +cards_554: + id: 554 name: key: codename: - left_id: 550 - right_id: 347 + left_id: 551 + right_id: 348 current_revision_id: - created_at: 2024-10-09 13:50:39.000000000 Z - updated_at: 2024-10-09 13:50:39.000000000 Z + created_at: 2025-02-04 20:49:16.927549000 Z + updated_at: 2025-02-04 20:49:16.927549000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -10545,16 +10557,16 @@ cards_553: trash: 0 type_id: 4 db_content: '' -cards_554: - id: 554 +cards_555: + id: 555 name: 'mod: rules' key: mod_rule codename: mod_rules left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:39.000000000 Z - updated_at: 2024-10-09 13:50:39.000000000 Z + created_at: 2025-02-04 20:49:16.951732000 Z + updated_at: 2025-02-04 20:49:16.951732000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -10563,16 +10575,16 @@ cards_554: trash: 0 type_id: 15 db_content: '' -cards_555: - id: 555 +cards_556: + id: 556 name: key: codename: - left_id: 554 - right_id: 301 + left_id: 555 + right_id: 302 current_revision_id: - created_at: 2024-10-09 13:50:39.000000000 Z - updated_at: 2024-10-09 13:50:39.000000000 Z + created_at: 2025-02-04 20:49:17.212266000 Z + updated_at: 2025-02-04 20:49:17.212266000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -10581,34 +10593,34 @@ cards_555: trash: 0 type_id: 4 db_content: '' -cards_556: - id: 556 +cards_557: + id: 557 name: key: - codename: mod_rules_script_asset_output - left_id: 555 - right_id: 299 + codename: + left_id: 556 + right_id: 300 current_revision_id: - created_at: 2024-10-09 13:50:40.000000000 Z - updated_at: 2024-10-09 13:51:01.000000000 Z + created_at: 2025-02-04 20:49:17.309809000 Z + updated_at: 2025-02-04 20:49:35.409702000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 282 - db_content: ":mod_rules_script_asset_output/rules.js" -cards_557: - id: 557 + type_id: 283 + db_content: ":mod_rules+:script+:asset_output/rules.js" +cards_558: + id: 558 name: key: codename: - left_id: 554 - right_id: 347 + left_id: 555 + right_id: 348 current_revision_id: - created_at: 2024-10-09 13:50:40.000000000 Z - updated_at: 2024-10-09 13:50:40.000000000 Z + created_at: 2025-02-04 20:49:17.333940000 Z + updated_at: 2025-02-04 20:49:17.333940000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -10617,16 +10629,16 @@ cards_557: trash: 0 type_id: 4 db_content: '' -cards_558: - id: 558 +cards_559: + id: 559 name: 'mod: edit' key: mod_edit codename: mod_edit left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:40.000000000 Z - updated_at: 2024-10-09 13:50:40.000000000 Z + created_at: 2025-02-04 20:49:17.370093000 Z + updated_at: 2025-02-04 20:49:17.370093000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -10635,16 +10647,16 @@ cards_558: trash: 0 type_id: 15 db_content: '' -cards_559: - id: 559 +cards_560: + id: 560 name: key: codename: - left_id: 558 - right_id: 301 + left_id: 559 + right_id: 302 current_revision_id: - created_at: 2024-10-09 13:50:40.000000000 Z - updated_at: 2024-10-09 13:50:40.000000000 Z + created_at: 2025-02-04 20:49:17.591939000 Z + updated_at: 2025-02-04 20:49:17.591939000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -10653,34 +10665,34 @@ cards_559: trash: 0 type_id: 4 db_content: '' -cards_560: - id: 560 +cards_561: + id: 561 name: key: - codename: mod_edit_script_asset_output - left_id: 559 - right_id: 299 + codename: + left_id: 560 + right_id: 300 current_revision_id: - created_at: 2024-10-09 13:50:41.000000000 Z - updated_at: 2024-10-09 13:51:02.000000000 Z + created_at: 2025-02-04 20:49:18.201025000 Z + updated_at: 2025-02-04 20:49:35.427027000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 282 - db_content: ":mod_edit_script_asset_output/edit.js" -cards_561: - id: 561 + type_id: 283 + db_content: ":mod_edit+:script+:asset_output/edit.js" +cards_562: + id: 562 name: key: codename: - left_id: 558 - right_id: 347 + left_id: 559 + right_id: 348 current_revision_id: - created_at: 2024-10-09 13:50:41.000000000 Z - updated_at: 2024-10-09 13:50:41.000000000 Z + created_at: 2025-02-04 20:49:18.222857000 Z + updated_at: 2025-02-04 20:49:18.222857000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -10689,16 +10701,16 @@ cards_561: trash: 0 type_id: 4 db_content: '' -cards_562: - id: 562 +cards_563: + id: 563 name: 'mod: email' key: mod_email codename: mod_email left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:42.000000000 Z - updated_at: 2024-10-09 13:50:42.000000000 Z + created_at: 2025-02-04 20:49:18.249358000 Z + updated_at: 2025-02-04 20:49:18.249358000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -10707,16 +10719,16 @@ cards_562: trash: 0 type_id: 15 db_content: '' -cards_563: - id: 563 +cards_564: + id: 564 name: 'mod: integrate' key: mod_integrate codename: mod_integrate left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:42.000000000 Z - updated_at: 2024-10-09 13:50:42.000000000 Z + created_at: 2025-02-04 20:49:18.489481000 Z + updated_at: 2025-02-04 20:49:18.489481000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -10725,16 +10737,16 @@ cards_563: trash: 0 type_id: 15 db_content: '' -cards_564: - id: 564 +cards_565: + id: 565 name: 'mod: account' key: mod_account codename: mod_account left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:42.000000000 Z - updated_at: 2024-10-09 13:50:42.000000000 Z + created_at: 2025-02-04 20:49:18.635559000 Z + updated_at: 2025-02-04 20:49:18.635559000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -10743,16 +10755,16 @@ cards_564: trash: 0 type_id: 15 db_content: '' -cards_565: - id: 565 +cards_566: + id: 566 name: key: codename: - left_id: 564 - right_id: 301 + left_id: 565 + right_id: 302 current_revision_id: - created_at: 2024-10-09 13:50:42.000000000 Z - updated_at: 2024-10-09 13:50:42.000000000 Z + created_at: 2025-02-04 20:49:19.076078000 Z + updated_at: 2025-02-04 20:49:19.076078000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -10761,34 +10773,34 @@ cards_565: trash: 0 type_id: 4 db_content: '' -cards_566: - id: 566 +cards_567: + id: 567 name: key: - codename: mod_account_script_asset_output - left_id: 565 - right_id: 299 + codename: + left_id: 566 + right_id: 300 current_revision_id: - created_at: 2024-10-09 13:50:42.000000000 Z - updated_at: 2024-10-09 13:51:02.000000000 Z + created_at: 2025-02-04 20:49:19.166204000 Z + updated_at: 2025-02-04 20:49:35.445047000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 282 - db_content: ":mod_account_script_asset_output/account.js" -cards_567: - id: 567 + type_id: 283 + db_content: ":mod_account+:script+:asset_output/account.js" +cards_568: + id: 568 name: key: codename: - left_id: 564 - right_id: 347 + left_id: 565 + right_id: 348 current_revision_id: - created_at: 2024-10-09 13:50:42.000000000 Z - updated_at: 2024-10-09 13:50:42.000000000 Z + created_at: 2025-02-04 20:49:19.189835000 Z + updated_at: 2025-02-04 20:49:19.189835000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -10797,16 +10809,16 @@ cards_567: trash: 0 type_id: 4 db_content: '' -cards_568: - id: 568 +cards_569: + id: 569 name: 'mod: history' key: mod_history codename: mod_history left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:42.000000000 Z - updated_at: 2024-10-09 13:50:42.000000000 Z + created_at: 2025-02-04 20:49:19.214096000 Z + updated_at: 2025-02-04 20:49:19.214096000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -10815,16 +10827,16 @@ cards_568: trash: 0 type_id: 15 db_content: '' -cards_569: - id: 569 +cards_570: + id: 570 name: key: codename: - left_id: 568 - right_id: 347 + left_id: 569 + right_id: 348 current_revision_id: - created_at: 2024-10-09 13:50:42.000000000 Z - updated_at: 2024-10-09 13:50:42.000000000 Z + created_at: 2025-02-04 20:49:19.453289000 Z + updated_at: 2025-02-04 20:49:19.453289000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -10833,16 +10845,16 @@ cards_569: trash: 0 type_id: 4 db_content: '' -cards_570: - id: 570 +cards_571: + id: 571 name: 'mod: carrierwave' key: mod_carrierwave codename: mod_carrierwave left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:42.000000000 Z - updated_at: 2024-10-09 13:50:42.000000000 Z + created_at: 2025-02-04 20:49:19.473633000 Z + updated_at: 2025-02-04 20:49:19.473633000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -10851,16 +10863,16 @@ cards_570: trash: 0 type_id: 15 db_content: '' -cards_571: - id: 571 +cards_572: + id: 572 name: key: codename: - left_id: 570 - right_id: 301 + left_id: 571 + right_id: 302 current_revision_id: - created_at: 2024-10-09 13:50:42.000000000 Z - updated_at: 2024-10-09 13:50:42.000000000 Z + created_at: 2025-02-04 20:49:19.760179000 Z + updated_at: 2025-02-04 20:49:19.760179000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -10869,34 +10881,34 @@ cards_571: trash: 0 type_id: 4 db_content: '' -cards_572: - id: 572 +cards_573: + id: 573 name: key: - codename: mod_carrierwave_script_asset_output - left_id: 571 - right_id: 299 + codename: + left_id: 572 + right_id: 300 current_revision_id: - created_at: 2024-10-09 13:50:42.000000000 Z - updated_at: 2024-10-09 13:51:02.000000000 Z + created_at: 2025-02-04 20:49:19.861114000 Z + updated_at: 2025-02-04 20:49:35.466191000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 282 - db_content: ":mod_carrierwave_script_asset_output/carrierwave.js" -cards_573: - id: 573 + type_id: 283 + db_content: ":mod_carrierwave+:script+:asset_output/carrierwave.js" +cards_574: + id: 574 name: key: codename: - left_id: 570 - right_id: 347 + left_id: 571 + right_id: 348 current_revision_id: - created_at: 2024-10-09 13:50:43.000000000 Z - updated_at: 2024-10-09 13:50:43.000000000 Z + created_at: 2025-02-04 20:49:19.883143000 Z + updated_at: 2025-02-04 20:49:19.883143000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -10905,16 +10917,16 @@ cards_573: trash: 0 type_id: 4 db_content: '' -cards_574: - id: 574 +cards_575: + id: 575 name: 'mod: virtual' key: mod_virtual codename: mod_virtual left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:43.000000000 Z - updated_at: 2024-10-09 13:50:43.000000000 Z + created_at: 2025-02-04 20:49:19.904269000 Z + updated_at: 2025-02-04 20:49:19.904269000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -10923,16 +10935,16 @@ cards_574: trash: 0 type_id: 15 db_content: '' -cards_575: - id: 575 +cards_576: + id: 576 name: 'mod: assets' key: mod_asset codename: mod_assets left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:43.000000000 Z - updated_at: 2024-10-09 13:50:43.000000000 Z + created_at: 2025-02-04 20:49:20.115489000 Z + updated_at: 2025-02-04 20:49:20.115489000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -10941,16 +10953,16 @@ cards_575: trash: 0 type_id: 15 db_content: '' -cards_576: - id: 576 +cards_577: + id: 577 name: 'mod: script' key: mod_script codename: mod_script left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:43.000000000 Z - updated_at: 2024-10-09 13:50:43.000000000 Z + created_at: 2025-02-04 20:49:20.235921000 Z + updated_at: 2025-02-04 20:49:20.235921000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -10959,16 +10971,16 @@ cards_576: trash: 0 type_id: 15 db_content: '' -cards_577: - id: 577 +cards_578: + id: 578 name: 'mod: ace editor' key: mod_ace_editor codename: mod_ace_editor left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:43.000000000 Z - updated_at: 2024-10-09 13:50:43.000000000 Z + created_at: 2025-02-04 20:49:20.515440000 Z + updated_at: 2025-02-04 20:49:20.515440000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -10977,16 +10989,16 @@ cards_577: trash: 0 type_id: 15 db_content: '' -cards_578: - id: 578 +cards_579: + id: 579 name: key: codename: - left_id: 577 - right_id: 301 + left_id: 578 + right_id: 302 current_revision_id: - created_at: 2024-10-09 13:50:43.000000000 Z - updated_at: 2024-10-09 13:50:43.000000000 Z + created_at: 2025-02-04 20:49:20.757606000 Z + updated_at: 2025-02-04 20:49:20.757606000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -10995,34 +11007,34 @@ cards_578: trash: 0 type_id: 4 db_content: '' -cards_579: - id: 579 +cards_580: + id: 580 name: key: - codename: mod_ace_editor_script_asset_output - left_id: 578 - right_id: 299 + codename: + left_id: 579 + right_id: 300 current_revision_id: - created_at: 2024-10-09 13:50:43.000000000 Z - updated_at: 2024-10-09 13:51:02.000000000 Z + created_at: 2025-02-04 20:49:20.880099000 Z + updated_at: 2025-02-04 20:49:35.486175000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 282 - db_content: ":mod_ace_editor_script_asset_output/ace_editor.js" -cards_580: - id: 580 + type_id: 283 + db_content: ":mod_ace_editor+:script+:asset_output/ace_editor.js" +cards_581: + id: 581 name: 'mod: api key' key: mod_api_key codename: mod_api_key left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:43.000000000 Z - updated_at: 2024-10-09 13:50:43.000000000 Z + created_at: 2025-02-04 20:49:20.901320000 Z + updated_at: 2025-02-04 20:49:20.901320000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -11031,16 +11043,16 @@ cards_580: trash: 0 type_id: 15 db_content: '' -cards_581: - id: 581 +cards_582: + id: 582 name: key: codename: - left_id: 580 - right_id: 347 + left_id: 581 + right_id: 348 current_revision_id: - created_at: 2024-10-09 13:50:43.000000000 Z - updated_at: 2024-10-09 13:50:43.000000000 Z + created_at: 2025-02-04 20:49:21.113136000 Z + updated_at: 2025-02-04 20:49:21.113136000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -11049,16 +11061,16 @@ cards_581: trash: 0 type_id: 4 db_content: '' -cards_582: - id: 582 +cards_583: + id: 583 name: 'mod: style' key: mod_style codename: mod_style left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:43.000000000 Z - updated_at: 2024-10-09 13:50:43.000000000 Z + created_at: 2025-02-04 20:49:21.136802000 Z + updated_at: 2025-02-04 20:49:21.136802000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -11067,16 +11079,16 @@ cards_582: trash: 0 type_id: 15 db_content: '' -cards_583: - id: 583 +cards_584: + id: 584 name: key: codename: - left_id: 582 - right_id: 347 + left_id: 583 + right_id: 348 current_revision_id: - created_at: 2024-10-09 13:50:43.000000000 Z - updated_at: 2024-10-09 13:50:43.000000000 Z + created_at: 2025-02-04 20:49:21.409139000 Z + updated_at: 2025-02-04 20:49:21.409139000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -11085,16 +11097,16 @@ cards_583: trash: 0 type_id: 4 db_content: '' -cards_584: - id: 584 +cards_585: + id: 585 name: 'mod: bar and box' key: mod_bar_and_box codename: mod_bar_and_box left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:44.000000000 Z - updated_at: 2024-10-09 13:50:44.000000000 Z + created_at: 2025-02-04 20:49:21.442144000 Z + updated_at: 2025-02-04 20:49:21.442144000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -11103,16 +11115,16 @@ cards_584: trash: 0 type_id: 15 db_content: '' -cards_585: - id: 585 +cards_586: + id: 586 name: key: codename: - left_id: 584 - right_id: 301 + left_id: 585 + right_id: 302 current_revision_id: - created_at: 2024-10-09 13:50:44.000000000 Z - updated_at: 2024-10-09 13:50:44.000000000 Z + created_at: 2025-02-04 20:49:21.584556000 Z + updated_at: 2025-02-04 20:49:21.584556000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -11121,34 +11133,34 @@ cards_585: trash: 0 type_id: 4 db_content: '' -cards_586: - id: 586 +cards_587: + id: 587 name: key: - codename: mod_bar_and_box_script_asset_output - left_id: 585 - right_id: 299 + codename: + left_id: 586 + right_id: 300 current_revision_id: - created_at: 2024-10-09 13:50:44.000000000 Z - updated_at: 2024-10-09 13:51:02.000000000 Z + created_at: 2025-02-04 20:49:21.735009000 Z + updated_at: 2025-02-04 20:49:35.504987000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 282 - db_content: ":mod_bar_and_box_script_asset_output/bar_and_box.js" -cards_587: - id: 587 + type_id: 283 + db_content: ":mod_bar_and_box+:script+:asset_output/bar_and_box.js" +cards_588: + id: 588 name: key: codename: - left_id: 584 - right_id: 347 + left_id: 585 + right_id: 348 current_revision_id: - created_at: 2024-10-09 13:50:44.000000000 Z - updated_at: 2024-10-09 13:50:44.000000000 Z + created_at: 2025-02-04 20:49:21.761617000 Z + updated_at: 2025-02-04 20:49:21.761617000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -11157,16 +11169,16 @@ cards_587: trash: 0 type_id: 4 db_content: '' -cards_588: - id: 588 +cards_589: + id: 589 name: 'mod: bootstrap' key: mod_bootstrap codename: mod_bootstrap left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:44.000000000 Z - updated_at: 2024-10-09 13:50:44.000000000 Z + created_at: 2025-02-04 20:49:21.894098000 Z + updated_at: 2025-02-04 20:49:21.894098000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -11175,16 +11187,16 @@ cards_588: trash: 0 type_id: 15 db_content: '' -cards_589: - id: 589 +cards_590: + id: 590 name: key: codename: - left_id: 588 - right_id: 301 + left_id: 589 + right_id: 302 current_revision_id: - created_at: 2024-10-09 13:50:44.000000000 Z - updated_at: 2024-10-09 13:50:44.000000000 Z + created_at: 2025-02-04 20:49:22.034136000 Z + updated_at: 2025-02-04 20:49:22.034136000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -11193,34 +11205,34 @@ cards_589: trash: 0 type_id: 4 db_content: '' -cards_590: - id: 590 +cards_591: + id: 591 name: key: - codename: mod_bootstrap_script_asset_output - left_id: 589 - right_id: 299 + codename: + left_id: 590 + right_id: 300 current_revision_id: - created_at: 2024-10-09 13:50:45.000000000 Z - updated_at: 2024-10-09 13:51:02.000000000 Z + created_at: 2025-02-04 20:49:22.440925000 Z + updated_at: 2025-02-04 20:49:35.521990000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 282 - db_content: ":mod_bootstrap_script_asset_output/bootstrap.js" -cards_591: - id: 591 + type_id: 283 + db_content: ":mod_bootstrap+:script+:asset_output/bootstrap.js" +cards_592: + id: 592 name: key: codename: - left_id: 588 - right_id: 347 + left_id: 589 + right_id: 348 current_revision_id: - created_at: 2024-10-09 13:50:45.000000000 Z - updated_at: 2024-10-09 13:50:45.000000000 Z + created_at: 2025-02-04 20:49:22.466622000 Z + updated_at: 2025-02-04 20:49:22.466622000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -11229,16 +11241,16 @@ cards_591: trash: 0 type_id: 4 db_content: '' -cards_592: - id: 592 +cards_593: + id: 593 name: 'mod: comment' key: mod_comment codename: mod_comment left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:45.000000000 Z - updated_at: 2024-10-09 13:50:45.000000000 Z + created_at: 2025-02-04 20:49:22.584452000 Z + updated_at: 2025-02-04 20:49:22.584452000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -11247,16 +11259,16 @@ cards_592: trash: 0 type_id: 15 db_content: '' -cards_593: - id: 593 +cards_594: + id: 594 name: key: codename: - left_id: 592 - right_id: 347 + left_id: 593 + right_id: 348 current_revision_id: - created_at: 2024-10-09 13:50:45.000000000 Z - updated_at: 2024-10-09 13:50:45.000000000 Z + created_at: 2025-02-04 20:49:22.740088000 Z + updated_at: 2025-02-04 20:49:22.740088000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -11265,16 +11277,16 @@ cards_593: trash: 0 type_id: 4 db_content: '' -cards_594: - id: 594 +cards_595: + id: 595 name: 'mod: date' key: mod_date codename: mod_date left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:45.000000000 Z - updated_at: 2024-10-09 13:50:45.000000000 Z + created_at: 2025-02-04 20:49:22.762926000 Z + updated_at: 2025-02-04 20:49:22.762926000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -11283,16 +11295,16 @@ cards_594: trash: 0 type_id: 15 db_content: '' -cards_595: - id: 595 +cards_596: + id: 596 name: 'mod: delayed job' key: mod_delayed_job codename: mod_delayed_job left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:45.000000000 Z - updated_at: 2024-10-09 13:50:45.000000000 Z + created_at: 2025-02-04 20:49:23.006867000 Z + updated_at: 2025-02-04 20:49:23.006867000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -11301,16 +11313,16 @@ cards_595: trash: 0 type_id: 15 db_content: '' -cards_596: - id: 596 +cards_597: + id: 597 name: 'mod: follow' key: mod_follow codename: mod_follow left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:45.000000000 Z - updated_at: 2024-10-09 13:50:45.000000000 Z + created_at: 2025-02-04 20:49:23.314784000 Z + updated_at: 2025-02-04 20:49:23.314784000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -11319,16 +11331,16 @@ cards_596: trash: 0 type_id: 15 db_content: '' -cards_597: - id: 597 +cards_598: + id: 598 name: key: codename: - left_id: 596 - right_id: 301 + left_id: 597 + right_id: 302 current_revision_id: - created_at: 2024-10-09 13:50:45.000000000 Z - updated_at: 2024-10-09 13:50:45.000000000 Z + created_at: 2025-02-04 20:49:23.524652000 Z + updated_at: 2025-02-04 20:49:23.524652000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -11337,34 +11349,34 @@ cards_597: trash: 0 type_id: 4 db_content: '' -cards_598: - id: 598 +cards_599: + id: 599 name: key: - codename: mod_follow_script_asset_output - left_id: 597 - right_id: 299 + codename: + left_id: 598 + right_id: 300 current_revision_id: - created_at: 2024-10-09 13:50:45.000000000 Z - updated_at: 2024-10-09 13:51:02.000000000 Z + created_at: 2025-02-04 20:49:23.683729000 Z + updated_at: 2025-02-04 20:49:35.539391000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 282 - db_content: ":mod_follow_script_asset_output/follow.js" -cards_599: - id: 599 + type_id: 283 + db_content: ":mod_follow+:script+:asset_output/follow.js" +cards_600: + id: 600 name: key: codename: - left_id: 596 - right_id: 347 + left_id: 597 + right_id: 348 current_revision_id: - created_at: 2024-10-09 13:50:46.000000000 Z - updated_at: 2024-10-09 13:50:46.000000000 Z + created_at: 2025-02-04 20:49:23.705627000 Z + updated_at: 2025-02-04 20:49:23.705627000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -11373,16 +11385,16 @@ cards_599: trash: 0 type_id: 4 db_content: '' -cards_600: - id: 600 +cards_601: + id: 601 name: 'mod: session' key: mod_session codename: mod_session left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:46.000000000 Z - updated_at: 2024-10-09 13:50:46.000000000 Z + created_at: 2025-02-04 20:49:23.728378000 Z + updated_at: 2025-02-04 20:49:23.728378000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -11391,16 +11403,16 @@ cards_600: trash: 0 type_id: 15 db_content: '' -cards_601: - id: 601 +cards_602: + id: 602 name: 'mod: tabs' key: mod_tab codename: mod_tabs left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:46.000000000 Z - updated_at: 2024-10-09 13:50:46.000000000 Z + created_at: 2025-02-04 20:49:23.936591000 Z + updated_at: 2025-02-04 20:49:23.936591000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -11409,16 +11421,16 @@ cards_601: trash: 0 type_id: 15 db_content: '' -cards_602: - id: 602 +cards_603: + id: 603 name: key: codename: - left_id: 601 - right_id: 301 + left_id: 602 + right_id: 302 current_revision_id: - created_at: 2024-10-09 13:50:46.000000000 Z - updated_at: 2024-10-09 13:50:46.000000000 Z + created_at: 2025-02-04 20:49:24.188934000 Z + updated_at: 2025-02-04 20:49:24.188934000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -11427,34 +11439,34 @@ cards_602: trash: 0 type_id: 4 db_content: '' -cards_603: - id: 603 +cards_604: + id: 604 name: key: - codename: mod_tabs_script_asset_output - left_id: 602 - right_id: 299 + codename: + left_id: 603 + right_id: 300 current_revision_id: - created_at: 2024-10-09 13:50:46.000000000 Z - updated_at: 2024-10-09 13:51:02.000000000 Z + created_at: 2025-02-04 20:49:24.290653000 Z + updated_at: 2025-02-04 20:49:35.556388000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 282 - db_content: ":mod_tabs_script_asset_output/tabs.js" -cards_604: - id: 604 + type_id: 283 + db_content: ":mod_tabs+:script+:asset_output/tabs.js" +cards_605: + id: 605 name: 'mod: layout' key: mod_layout codename: mod_layout left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:46.000000000 Z - updated_at: 2024-10-09 13:50:46.000000000 Z + created_at: 2025-02-04 20:49:24.319152000 Z + updated_at: 2025-02-04 20:49:24.319152000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -11463,16 +11475,16 @@ cards_604: trash: 0 type_id: 15 db_content: '' -cards_605: - id: 605 +cards_606: + id: 606 name: key: codename: - left_id: 604 - right_id: 301 + left_id: 605 + right_id: 302 current_revision_id: - created_at: 2024-10-09 13:50:46.000000000 Z - updated_at: 2024-10-09 13:50:46.000000000 Z + created_at: 2025-02-04 20:49:24.458790000 Z + updated_at: 2025-02-04 20:49:24.458790000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -11481,34 +11493,34 @@ cards_605: trash: 0 type_id: 4 db_content: '' -cards_606: - id: 606 +cards_607: + id: 607 name: key: - codename: mod_layout_script_asset_output - left_id: 605 - right_id: 299 + codename: + left_id: 606 + right_id: 300 current_revision_id: - created_at: 2024-10-09 13:50:46.000000000 Z - updated_at: 2024-10-09 13:51:02.000000000 Z + created_at: 2025-02-04 20:49:24.813225000 Z + updated_at: 2025-02-04 20:49:35.678504000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 282 - db_content: ":mod_layout_script_asset_output/layout.js" -cards_607: - id: 607 + type_id: 283 + db_content: ":mod_layout+:script+:asset_output/layout.js" +cards_608: + id: 608 name: key: codename: - left_id: 604 - right_id: 347 + left_id: 605 + right_id: 348 current_revision_id: - created_at: 2024-10-09 13:50:47.000000000 Z - updated_at: 2024-10-09 13:50:47.000000000 Z + created_at: 2025-02-04 20:49:24.838710000 Z + updated_at: 2025-02-04 20:49:24.838710000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -11517,16 +11529,16 @@ cards_607: trash: 0 type_id: 4 db_content: '' -cards_608: - id: 608 +cards_609: + id: 609 name: 'mod: recaptcha' key: mod_recaptcha codename: mod_recaptcha left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:47.000000000 Z - updated_at: 2024-10-09 13:50:47.000000000 Z + created_at: 2025-02-04 20:49:24.864513000 Z + updated_at: 2025-02-04 20:49:24.864513000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -11535,16 +11547,16 @@ cards_608: trash: 0 type_id: 15 db_content: '' -cards_609: - id: 609 +cards_610: + id: 610 name: key: codename: - left_id: 608 - right_id: 301 + left_id: 609 + right_id: 302 current_revision_id: - created_at: 2024-10-09 13:50:47.000000000 Z - updated_at: 2024-10-09 13:50:47.000000000 Z + created_at: 2025-02-04 20:49:25.148284000 Z + updated_at: 2025-02-04 20:49:25.148284000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -11553,34 +11565,34 @@ cards_609: trash: 0 type_id: 4 db_content: '' -cards_610: - id: 610 +cards_611: + id: 611 name: key: - codename: mod_recaptcha_script_asset_output - left_id: 609 - right_id: 299 + codename: + left_id: 610 + right_id: 300 current_revision_id: - created_at: 2024-10-09 13:50:47.000000000 Z - updated_at: 2024-10-09 13:51:02.000000000 Z + created_at: 2025-02-04 20:49:25.238585000 Z + updated_at: 2025-02-04 20:49:35.708192000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 282 - db_content: ":mod_recaptcha_script_asset_output/recaptcha.js" -cards_611: - id: 611 + type_id: 283 + db_content: ":mod_recaptcha+:script+:asset_output/recaptcha.js" +cards_612: + id: 612 name: 'mod: tinymce editor' key: mod_tinymce_editor codename: mod_tinymce_editor left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:47.000000000 Z - updated_at: 2024-10-09 13:50:47.000000000 Z + created_at: 2025-02-04 20:49:25.268816000 Z + updated_at: 2025-02-04 20:49:25.268816000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -11589,16 +11601,16 @@ cards_611: trash: 0 type_id: 15 db_content: '' -cards_612: - id: 612 +cards_613: + id: 613 name: key: codename: - left_id: 611 - right_id: 301 + left_id: 612 + right_id: 302 current_revision_id: - created_at: 2024-10-09 13:50:47.000000000 Z - updated_at: 2024-10-09 13:50:47.000000000 Z + created_at: 2025-02-04 20:49:25.544412000 Z + updated_at: 2025-02-04 20:49:25.544412000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -11607,34 +11619,34 @@ cards_612: trash: 0 type_id: 4 db_content: '' -cards_613: - id: 613 +cards_614: + id: 614 name: key: - codename: mod_tinymce_editor_script_asset_output - left_id: 612 - right_id: 299 + codename: + left_id: 613 + right_id: 300 current_revision_id: - created_at: 2024-10-09 13:50:48.000000000 Z - updated_at: 2024-10-09 13:51:02.000000000 Z + created_at: 2025-02-04 20:49:26.106394000 Z + updated_at: 2025-02-04 20:49:35.751924000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" read_rule_id: 10 references_expired: trash: 0 - type_id: 282 - db_content: ":mod_tinymce_editor_script_asset_output/tinymce_editor.js" -cards_614: - id: 614 + type_id: 283 + db_content: ":mod_tinymce_editor+:script+:asset_output/tinymce_editor.js" +cards_615: + id: 615 name: key: codename: - left_id: 611 - right_id: 347 + left_id: 612 + right_id: 348 current_revision_id: - created_at: 2024-10-09 13:50:49.000000000 Z - updated_at: 2024-10-09 13:50:49.000000000 Z + created_at: 2025-02-04 20:49:26.138776000 Z + updated_at: 2025-02-04 20:49:26.138776000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -11643,16 +11655,16 @@ cards_614: trash: 0 type_id: 4 db_content: '' -cards_615: - id: 615 +cards_616: + id: 616 name: 'mod: defaults' key: mod_default codename: mod_defaults left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:49.000000000 Z - updated_at: 2024-10-09 13:50:49.000000000 Z + created_at: 2025-02-04 20:49:26.161888000 Z + updated_at: 2025-02-04 20:49:26.161888000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -11661,16 +11673,16 @@ cards_615: trash: 0 type_id: 15 db_content: '' -cards_616: - id: 616 +cards_617: + id: 617 name: 'mod: monkey' key: mod_monkey codename: mod_monkey left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:49.000000000 Z - updated_at: 2024-10-09 13:50:49.000000000 Z + created_at: 2025-02-04 20:49:26.363312000 Z + updated_at: 2025-02-04 20:49:26.363312000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -11679,16 +11691,16 @@ cards_616: trash: 0 type_id: 15 db_content: '' -cards_617: - id: 617 +cards_618: + id: 618 name: 'mod: platypus' key: mod_platypu codename: mod_platypus left_id: right_id: current_revision_id: - created_at: 2024-10-09 13:50:49.000000000 Z - updated_at: 2024-10-09 13:50:49.000000000 Z + created_at: 2025-02-04 20:49:26.569099000 Z + updated_at: 2025-02-04 20:49:26.569099000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" diff --git a/mod/defaults/data/fixtures/real/schema_migrations.yml b/mod/defaults/data/fixtures/real/schema_migrations.yml index 32a16b4e26..5355969f23 100644 --- a/mod/defaults/data/fixtures/real/schema_migrations.yml +++ b/mod/defaults/data/fixtures/real/schema_migrations.yml @@ -69,3 +69,5 @@ schema_migrations_034: version: '20221031182227' schema_migrations_035: version: '20240628212556' +schema_migrations_036: + version: '20241017160402' diff --git a/mod/defaults/data/fixtures/real/transform_migrations.yml b/mod/defaults/data/fixtures/real/transform_migrations.yml index 82e50d52e9..ffe44d68fe 100644 --- a/mod/defaults/data/fixtures/real/transform_migrations.yml +++ b/mod/defaults/data/fixtures/real/transform_migrations.yml @@ -361,3 +361,5 @@ transform_migrations_180: version: '20230502094848' transform_migrations_181: version: '20240510141851' +transform_migrations_182: + version: '20250204175412' diff --git a/mod/defaults/data/fixtures/test/card_actions.yml b/mod/defaults/data/fixtures/test/card_actions.yml index b43c37c4aa..58697e1cbb 100644 --- a/mod/defaults/data/fixtures/test/card_actions.yml +++ b/mod/defaults/data/fixtures/test/card_actions.yml @@ -12215,3 +12215,59 @@ card_actions_1527: action_type: 1 draft: 0 comment: +card_actions_1528: + id: 3708 + card_id: 918 + card_act_id: 106807 + super_action_id: + action_type: 0 + draft: 0 + comment: +card_actions_1529: + id: 3709 + card_id: 155 + card_act_id: 106808 + super_action_id: + action_type: 1 + draft: 0 + comment: +card_actions_1530: + id: 3710 + card_id: 496 + card_act_id: 106809 + super_action_id: + action_type: 1 + draft: 0 + comment: +card_actions_1531: + id: 3711 + card_id: 496 + card_act_id: 106810 + super_action_id: + action_type: 1 + draft: 0 + comment: +card_actions_1532: + id: 3712 + card_id: 529 + card_act_id: 106811 + super_action_id: + action_type: 1 + draft: 0 + comment: +card_actions_1533: + id: 3713 + card_id: 496 + card_act_id: 106815 + super_action_id: + action_type: 1 + draft: 0 + comment: +card_actions_1534: + id: 3714 + card_id: 496 + card_act_id: 106816 + super_action_id: + action_type: 1 + draft: 0 + comment: diff --git a/mod/defaults/data/fixtures/test/card_acts.yml b/mod/defaults/data/fixtures/test/card_acts.yml index 2f6752a1b7..7e7962c9b1 100644 --- a/mod/defaults/data/fixtures/test/card_acts.yml +++ b/mod/defaults/data/fixtures/test/card_acts.yml @@ -2621,3 +2621,75 @@ card_acts_437: actor_id: 1 acted_at: 2024-12-13 17:35:18.663804000 Z ip_address: +card_acts_438: + id: 106807 + card_id: 918 + actor_id: 1 + acted_at: 2025-02-04 20:17:57.841714000 Z + ip_address: +card_acts_439: + id: 106808 + card_id: 152 + actor_id: 1 + acted_at: 2025-02-04 20:17:58.443624000 Z + ip_address: +card_acts_440: + id: 106809 + card_id: 496 + actor_id: 1 + acted_at: 2025-02-04 20:18:00.160289000 Z + ip_address: +card_acts_441: + id: 106810 + card_id: 496 + actor_id: 1 + acted_at: 2025-02-04 20:18:00.288469000 Z + ip_address: +card_acts_442: + id: 106811 + card_id: 529 + actor_id: 1 + acted_at: 2025-02-04 20:18:00.326412000 Z + ip_address: +card_acts_443: + id: 106812 + card_id: 305 + actor_id: 1 + acted_at: 2025-02-04 20:18:01.166108000 Z + ip_address: +card_acts_444: + id: 106813 + card_id: 326 + actor_id: 1 + acted_at: 2025-02-04 20:18:01.200188000 Z + ip_address: +card_acts_445: + id: 106814 + card_id: 149 + actor_id: 1 + acted_at: 2025-02-04 21:04:30.204154000 Z + ip_address: +card_acts_446: + id: 106815 + card_id: 496 + actor_id: 1 + acted_at: 2025-02-04 21:04:32.153804000 Z + ip_address: +card_acts_447: + id: 106816 + card_id: 496 + actor_id: 1 + acted_at: 2025-02-04 21:04:32.306089000 Z + ip_address: +card_acts_448: + id: 106817 + card_id: 305 + actor_id: 1 + acted_at: 2025-02-04 21:04:32.691866000 Z + ip_address: +card_acts_449: + id: 106818 + card_id: 326 + actor_id: 1 + acted_at: 2025-02-04 21:04:32.704102000 Z + ip_address: diff --git a/mod/defaults/data/fixtures/test/card_changes.yml b/mod/defaults/data/fixtures/test/card_changes.yml index 99f527f537..3c759aaded 100644 --- a/mod/defaults/data/fixtures/test/card_changes.yml +++ b/mod/defaults/data/fixtures/test/card_changes.yml @@ -264,3 +264,117 @@ card_changes_050: value: |- [[:getting_started_links|Getting started]] [[:recent|Recent Changes]] +card_changes_051: + id: 51 + card_action_id: 250 + field: 0 + value: +card_changes_052: + id: 52 + card_action_id: 250 + field: 1 + value: '57' +card_changes_053: + id: 53 + card_action_id: 250 + field: 2 + value: "

    \n {{+*from | labeled | link}} \n {{+*to | labeled | link}} \n {{+*cc + | labeled | link}}\n {{+*bcc | labeled | link}}\n {{+*subject | titled}}\n {{+*html + message | titled}} \n {{+*text message | titled}}\n {{+*attach | titled}}\n

    \"" +card_changes_054: + id: 54 + card_action_id: 250 + field: 3 + value: f +card_changes_055: + id: 55 + card_action_id: 250 + field: 4 + value: '154' +card_changes_056: + id: 56 + card_action_id: 250 + field: 5 + value: '28' +card_changes_057: + id: 57 + card_action_id: 3709 + field: 2 + value: "{{+:from | labeled | link}} \n{{+:to | labeled | link}} \n{{+:cc | labeled + | link}}\n{{+:bcc | labeled | link}}\n{{+:subject | titled}}\n{{+:html_message + | titled}} \n{{+:text_message | titled}}\n{{+:attach | titled}}" +card_changes_058: + id: 58 + card_action_id: 3710 + field: 2 + value: "[[:recent|Recent Changes]]" +card_changes_059: + id: 59 + card_action_id: 3711 + field: 2 + value: |- + [[:getting_started_links|Getting started]] + [[:recent|Recent Changes]] +card_changes_060: + id: 60 + card_action_id: 797 + field: 0 + value: +card_changes_061: + id: 61 + card_action_id: 797 + field: 1 + value: '2' +card_changes_062: + id: 62 + card_action_id: 797 + field: 2 + value: | + {{_L|configs}} +

    Accounts

    +

    {{:account|content}}

    +

    Help Texts

    +

    {{:help|bar}}

    +

    Emails

    +

    Here are the current [[Email Templates|Email templates]] for your site.

    +

    {{Email Templates+*type+by update|content}}

    +card_changes_063: + id: 63 + card_action_id: 797 + field: 3 + value: f +card_changes_064: + id: 64 + card_action_id: 797 + field: 4 + value: '196' +card_changes_065: + id: 65 + card_action_id: 797 + field: 5 + value: '523' +card_changes_066: + id: 66 + card_action_id: 3712 + field: 2 + value: | + {{_L|configs}} +

    Accounts

    +

    {{:account|content}}

    +

    Help Texts

    +

    {{:help|bar}}

    +

    Emails

    +

    Here are the current [[:email_template|Email templates]] for your site.

    +

    {{:email_template+:type+:by_update|content}}

    +card_changes_067: + id: 67 + card_action_id: 3713 + field: 2 + value: "[[:recent|Recent Changes]]" +card_changes_068: + id: 68 + card_action_id: 3714 + field: 2 + value: |- + [[:getting_started_links|Getting started]] + [[:recent|Recent Changes]] diff --git a/mod/defaults/data/fixtures/test/card_references.yml b/mod/defaults/data/fixtures/test/card_references.yml index 1f42295e60..edd0d61fa3 100644 --- a/mod/defaults/data/fixtures/test/card_references.yml +++ b/mod/defaults/data/fixtures/test/card_references.yml @@ -665,5264 +665,5264 @@ card_references_095: ref_type: P is_present: card_references_096: - id: 101 - referer_id: 155 - referee_key: email_template+*type+*structure+*from - referee_id: - ref_type: I - is_present: -card_references_097: - id: 102 - referer_id: 155 - referee_key: "*from" - referee_id: 159 - ref_type: P - is_present: -card_references_098: - id: 103 - referer_id: 155 - referee_key: email_template+*type+*structure+*to - referee_id: - ref_type: I - is_present: -card_references_099: - id: 104 - referer_id: 155 - referee_key: "*to" - referee_id: 156 - ref_type: P - is_present: -card_references_100: - id: 105 - referer_id: 155 - referee_key: email_template+*type+*structure+*cc - referee_id: - ref_type: I - is_present: -card_references_101: - id: 106 - referer_id: 155 - referee_key: "*cc" - referee_id: 162 - ref_type: P - is_present: -card_references_102: - id: 107 - referer_id: 155 - referee_key: email_template+*type+*structure+*bcc - referee_id: - ref_type: I - is_present: -card_references_103: - id: 108 - referer_id: 155 - referee_key: "*bcc" - referee_id: 165 - ref_type: P - is_present: -card_references_104: - id: 109 - referer_id: 155 - referee_key: email_template+*type+*structure+*subject - referee_id: - ref_type: I - is_present: -card_references_105: - id: 110 - referer_id: 155 - referee_key: "*subject" - referee_id: 168 - ref_type: P - is_present: -card_references_106: - id: 111 - referer_id: 155 - referee_key: email_template+*type+*structure+*html_message - referee_id: - ref_type: I - is_present: -card_references_107: - id: 112 - referer_id: 155 - referee_key: "*html_message" - referee_id: 172 - ref_type: P - is_present: -card_references_108: - id: 113 - referer_id: 155 - referee_key: email_template+*type+*structure+*text_message - referee_id: - ref_type: I - is_present: -card_references_109: - id: 114 - referer_id: 155 - referee_key: "*text_message" - referee_id: 173 - ref_type: P - is_present: -card_references_110: - id: 115 - referer_id: 155 - referee_key: email_template+*type+*structure+*attach - referee_id: - ref_type: I - is_present: -card_references_111: - id: 116 - referer_id: 155 - referee_key: "*attach" - referee_id: 169 - ref_type: P - is_present: -card_references_112: id: 117 referer_id: 158 referee_key: account referee_id: ref_type: Q is_present: -card_references_113: +card_references_097: id: 118 referer_id: 161 referee_key: account referee_id: ref_type: Q is_present: -card_references_114: +card_references_098: id: 119 referer_id: 164 referee_key: account referee_id: ref_type: Q is_present: -card_references_115: +card_references_099: id: 120 referer_id: 167 referee_key: account referee_id: ref_type: Q is_present: -card_references_116: +card_references_100: id: 121 referer_id: 171 referee_key: file referee_id: 282 ref_type: Q is_present: -card_references_117: +card_references_101: id: 122 referer_id: 171 referee_key: update referee_id: ref_type: Q is_present: -card_references_118: +card_references_102: id: 123 referer_id: 177 referee_key: role+description referee_id: 178 ref_type: I is_present: -card_references_119: +card_references_103: id: 124 referer_id: 177 referee_key: role+*type+by_name referee_id: ref_type: I is_present: -card_references_120: +card_references_104: id: 125 referer_id: 177 referee_key: role+*type referee_id: 524 ref_type: P is_present: -card_references_121: +card_references_105: id: 126 referer_id: 177 referee_key: "*type" referee_id: 21 ref_type: P is_present: -card_references_122: +card_references_106: id: 127 referer_id: 177 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_123: +card_references_107: id: 128 referer_id: 178 referee_key: user referee_id: 18 ref_type: L is_present: -card_references_124: +card_references_108: id: 129 referer_id: 185 referee_key: administrator+*member referee_id: 186 ref_type: L is_present: -card_references_125: +card_references_109: id: 130 referer_id: 188 referee_key: administrator referee_id: 184 ref_type: L is_present: -card_references_126: +card_references_110: id: 131 referer_id: 190 referee_key: eagle+*member referee_id: ref_type: L is_present: -card_references_127: +card_references_111: id: 132 referer_id: 190 referee_key: eagle referee_id: 189 ref_type: P is_present: -card_references_128: +card_references_112: id: 133 referer_id: 190 referee_key: "*member" referee_id: 179 ref_type: P is_present: -card_references_129: +card_references_113: id: 134 referer_id: 192 referee_key: shark+*member referee_id: 193 ref_type: L is_present: -card_references_130: +card_references_114: id: 135 referer_id: 195 referee_key: administrator referee_id: 184 ref_type: L is_present: -card_references_131: +card_references_115: id: 136 referer_id: 197 referee_key: help_desk+*member referee_id: 198 ref_type: L is_present: -card_references_132: +card_references_116: id: 137 referer_id: 200 referee_key: administrator referee_id: 184 ref_type: L is_present: -card_references_133: +card_references_117: id: 138 referer_id: 204 referee_key: help_desk referee_id: 196 ref_type: L is_present: -card_references_134: +card_references_118: id: 139 referer_id: 205 referee_key: sign_up referee_id: 232 ref_type: L is_present: -card_references_135: +card_references_119: id: 140 referer_id: 205 referee_key: sign_up referee_id: 232 ref_type: I is_present: -card_references_136: +card_references_120: id: 141 referer_id: 205 referee_key: user referee_id: 18 ref_type: L is_present: -card_references_137: +card_references_121: id: 142 referer_id: 205 referee_key: user referee_id: 18 ref_type: I is_present: -card_references_138: +card_references_122: id: 143 referer_id: 205 referee_key: anyone referee_id: 180 ref_type: L is_present: -card_references_139: +card_references_123: id: 144 referer_id: 205 referee_key: "*create" referee_id: 65 ref_type: L is_present: -card_references_140: +card_references_124: id: 145 referer_id: 205 referee_key: card_with_account referee_id: 278 ref_type: L is_present: -card_references_141: +card_references_125: id: 146 referer_id: 207 referee_key: administrator referee_id: 184 ref_type: L is_present: -card_references_142: +card_references_126: id: 147 referer_id: 208 referee_key: help_desk referee_id: 196 ref_type: L is_present: -card_references_143: +card_references_127: id: 148 referer_id: 209 referee_key: help_desk referee_id: 196 ref_type: L is_present: -card_references_144: +card_references_128: id: 149 referer_id: 210 referee_key: help_desk referee_id: 196 ref_type: L is_present: -card_references_145: +card_references_129: id: 150 referer_id: 213 referee_key: help_desk referee_id: 196 ref_type: L is_present: -card_references_146: +card_references_130: id: 151 referer_id: 214 referee_key: help_desk referee_id: 196 ref_type: L is_present: -card_references_147: +card_references_131: id: 152 referer_id: 215 referee_key: help_desk referee_id: 196 ref_type: L is_present: -card_references_148: +card_references_132: id: 153 referer_id: 218 referee_key: help_desk referee_id: 196 ref_type: L is_present: -card_references_149: +card_references_133: id: 154 referer_id: 219 referee_key: help_desk referee_id: 196 ref_type: L is_present: -card_references_150: +card_references_134: id: 155 referer_id: 220 referee_key: help_desk referee_id: 196 ref_type: L is_present: -card_references_151: +card_references_135: id: 156 referer_id: 223 referee_key: help_desk referee_id: 196 ref_type: L is_present: -card_references_152: +card_references_136: id: 157 referer_id: 226 referee_key: help_desk referee_id: 196 ref_type: L is_present: -card_references_153: +card_references_137: id: 158 referer_id: 227 referee_key: help_desk referee_id: 196 ref_type: L is_present: -card_references_154: +card_references_138: id: 159 referer_id: 228 referee_key: help_desk referee_id: 196 ref_type: L is_present: -card_references_155: +card_references_139: id: 160 referer_id: 231 referee_key: "*account_setting+*right+*account" referee_id: ref_type: I is_present: -card_references_156: +card_references_140: id: 161 referer_id: 231 referee_key: "*account_setting+*right" referee_id: 230 ref_type: P is_present: -card_references_157: +card_references_141: id: 162 referer_id: 231 referee_key: "*account" referee_id: 205 ref_type: P is_present: -card_references_158: +card_references_142: id: 163 referer_id: 232 referee_key: sign_up+description referee_id: 233 ref_type: I is_present: -card_references_159: +card_references_143: id: 164 referer_id: 232 referee_key: sign_up+*type+by_name referee_id: ref_type: I is_present: -card_references_160: +card_references_144: id: 165 referer_id: 232 referee_key: sign_up+*type referee_id: 236 ref_type: P is_present: -card_references_161: +card_references_145: id: 166 referer_id: 232 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_162: +card_references_146: id: 167 referer_id: 233 referee_key: sign_up referee_id: 232 ref_type: L is_present: -card_references_163: +card_references_147: id: 168 referer_id: 233 referee_key: user referee_id: 18 ref_type: L is_present: -card_references_164: +card_references_148: id: 169 referer_id: 235 referee_key: sign_up+*self+*structure+description referee_id: ref_type: I is_present: -card_references_165: +card_references_149: id: 170 referer_id: 235 referee_key: description referee_id: 12 ref_type: P is_present: -card_references_166: +card_references_150: id: 171 referer_id: 235 referee_key: sign_up+*self+*structure+*type+by_name referee_id: ref_type: I is_present: -card_references_167: +card_references_151: id: 172 referer_id: 235 referee_key: sign_up+*self+*structure+*type referee_id: ref_type: P is_present: -card_references_168: +card_references_152: id: 173 referer_id: 235 referee_key: "*type" referee_id: 21 ref_type: P is_present: -card_references_169: +card_references_153: id: 174 referer_id: 235 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_170: +card_references_154: id: 175 referer_id: 237 referee_key: anyone referee_id: 180 ref_type: L is_present: -card_references_171: +card_references_155: id: 176 referer_id: 238 referee_key: signup_alert_email referee_id: 264 ref_type: L is_present: -card_references_172: +card_references_156: id: 177 referer_id: 241 referee_key: sign_up+*account+*type_plu_right referee_id: 240 ref_type: L is_present: -card_references_173: +card_references_157: id: 178 referer_id: 243 referee_key: active referee_id: ref_type: L is_present: -card_references_174: +card_references_158: id: 179 referer_id: 248 referee_key: user+*account+*type_plu_right referee_id: 247 ref_type: L is_present: -card_references_175: +card_references_159: id: 180 referer_id: 248 referee_key: user+*account referee_id: 244 ref_type: P is_present: -card_references_176: +card_references_160: id: 181 referer_id: 248 referee_key: user referee_id: 18 ref_type: P is_present: -card_references_177: +card_references_161: id: 182 referer_id: 248 referee_key: "*account" referee_id: 205 ref_type: P is_present: -card_references_178: +card_references_162: id: 183 referer_id: 248 referee_key: "*type_plu_right" referee_id: 25 ref_type: P is_present: -card_references_179: +card_references_163: id: 184 referer_id: 246 referee_key: active referee_id: ref_type: L is_present: -card_references_180: +card_references_164: id: 185 referer_id: 252 referee_key: active referee_id: ref_type: L is_present: -card_references_181: +card_references_165: id: 186 referer_id: 253 referee_key: welcome_email+*from referee_id: ref_type: I is_present: -card_references_182: +card_references_166: id: 187 referer_id: 253 referee_key: "*from" referee_id: 159 ref_type: P is_present: -card_references_183: +card_references_167: id: 188 referer_id: 253 referee_key: welcome_email+*to referee_id: ref_type: I is_present: -card_references_184: +card_references_168: id: 189 referer_id: 253 referee_key: "*to" referee_id: 156 ref_type: P is_present: -card_references_185: +card_references_169: id: 190 referer_id: 253 referee_key: welcome_email+*cc referee_id: ref_type: I is_present: -card_references_186: +card_references_170: id: 191 referer_id: 253 referee_key: "*cc" referee_id: 162 ref_type: P is_present: -card_references_187: +card_references_171: id: 192 referer_id: 253 referee_key: welcome_email+*bcc referee_id: ref_type: I is_present: -card_references_188: +card_references_172: id: 193 referer_id: 253 referee_key: "*bcc" referee_id: 165 ref_type: P is_present: -card_references_189: +card_references_173: id: 194 referer_id: 253 referee_key: welcome_email+*subject referee_id: ref_type: I is_present: -card_references_190: +card_references_174: id: 195 referer_id: 253 referee_key: "*subject" referee_id: 168 ref_type: P is_present: -card_references_191: +card_references_175: id: 196 referer_id: 253 referee_key: welcome_email+*html_message referee_id: ref_type: I is_present: -card_references_192: +card_references_176: id: 197 referer_id: 253 referee_key: "*html_message" referee_id: 172 ref_type: P is_present: -card_references_193: +card_references_177: id: 198 referer_id: 253 referee_key: welcome_email+*text_message referee_id: ref_type: I is_present: -card_references_194: +card_references_178: id: 199 referer_id: 253 referee_key: "*text_message" referee_id: 173 ref_type: P is_present: -card_references_195: +card_references_179: id: 200 referer_id: 253 referee_key: welcome_email+*attach referee_id: ref_type: I is_present: -card_references_196: +card_references_180: id: 201 referer_id: 253 referee_key: "*attach" referee_id: 169 ref_type: P is_present: -card_references_197: +card_references_181: id: 202 referer_id: 254 referee_key: verification_email+*from referee_id: 255 ref_type: I is_present: -card_references_198: +card_references_182: id: 203 referer_id: 254 referee_key: verification_email+*to referee_id: ref_type: I is_present: -card_references_199: +card_references_183: id: 204 referer_id: 254 referee_key: "*to" referee_id: 156 ref_type: P is_present: -card_references_200: +card_references_184: id: 205 referer_id: 254 referee_key: verification_email+*cc referee_id: ref_type: I is_present: -card_references_201: +card_references_185: id: 206 referer_id: 254 referee_key: "*cc" referee_id: 162 ref_type: P is_present: -card_references_202: +card_references_186: id: 207 referer_id: 254 referee_key: verification_email+*bcc referee_id: ref_type: I is_present: -card_references_203: +card_references_187: id: 208 referer_id: 254 referee_key: "*bcc" referee_id: 165 ref_type: P is_present: -card_references_204: +card_references_188: id: 209 referer_id: 254 referee_key: verification_email+*subject referee_id: 256 ref_type: I is_present: -card_references_205: +card_references_189: id: 210 referer_id: 254 referee_key: verification_email+*html_message referee_id: 257 ref_type: I is_present: -card_references_206: +card_references_190: id: 211 referer_id: 254 referee_key: verification_email+*text_message referee_id: 258 ref_type: I is_present: -card_references_207: +card_references_191: id: 212 referer_id: 254 referee_key: verification_email+*attach referee_id: ref_type: I is_present: -card_references_208: +card_references_192: id: 213 referer_id: 254 referee_key: "*attach" referee_id: 169 ref_type: P is_present: -card_references_209: +card_references_193: id: 214 referer_id: 255 referee_key: decko_bot referee_id: 1 ref_type: L is_present: -card_references_210: +card_references_194: id: 215 referer_id: 256 referee_key: "*title" referee_id: 50 ref_type: I is_present: -card_references_211: +card_references_195: id: 216 referer_id: 257 referee_key: "*title" referee_id: 50 ref_type: I is_present: -card_references_212: +card_references_196: id: 217 referer_id: 258 referee_key: "*title" referee_id: 50 ref_type: I is_present: -card_references_213: +card_references_197: id: 218 referer_id: 259 referee_key: password_reset_email+*from referee_id: 260 ref_type: I is_present: -card_references_214: +card_references_198: id: 219 referer_id: 259 referee_key: password_reset_email+*to referee_id: ref_type: I is_present: -card_references_215: +card_references_199: id: 220 referer_id: 259 referee_key: "*to" referee_id: 156 ref_type: P is_present: -card_references_216: +card_references_200: id: 221 referer_id: 259 referee_key: password_reset_email+*cc referee_id: ref_type: I is_present: -card_references_217: +card_references_201: id: 222 referer_id: 259 referee_key: "*cc" referee_id: 162 ref_type: P is_present: -card_references_218: +card_references_202: id: 223 referer_id: 259 referee_key: password_reset_email+*bcc referee_id: ref_type: I is_present: -card_references_219: +card_references_203: id: 224 referer_id: 259 referee_key: "*bcc" referee_id: 165 ref_type: P is_present: -card_references_220: +card_references_204: id: 225 referer_id: 259 referee_key: password_reset_email+*subject referee_id: 261 ref_type: I is_present: -card_references_221: +card_references_205: id: 226 referer_id: 259 referee_key: password_reset_email+*html_message referee_id: 263 ref_type: I is_present: -card_references_222: +card_references_206: id: 227 referer_id: 259 referee_key: password_reset_email+*text_message referee_id: 262 ref_type: I is_present: -card_references_223: +card_references_207: id: 228 referer_id: 259 referee_key: password_reset_email+*attach referee_id: ref_type: I is_present: -card_references_224: +card_references_208: id: 229 referer_id: 259 referee_key: "*attach" referee_id: 169 ref_type: P is_present: -card_references_225: +card_references_209: id: 230 referer_id: 260 referee_key: decko_bot referee_id: 1 ref_type: L is_present: -card_references_226: +card_references_210: id: 231 referer_id: 261 referee_key: "*title" referee_id: 50 ref_type: I is_present: -card_references_227: +card_references_211: id: 232 referer_id: 262 referee_key: "*title" referee_id: 50 ref_type: I is_present: -card_references_228: +card_references_212: id: 233 referer_id: 263 referee_key: "*title" referee_id: 50 ref_type: I is_present: -card_references_229: +card_references_213: id: 234 referer_id: 264 referee_key: signup_alert_email+*from referee_id: 265 ref_type: I is_present: -card_references_230: +card_references_214: id: 235 referer_id: 264 referee_key: signup_alert_email+*to referee_id: 772 ref_type: I is_present: -card_references_231: +card_references_215: id: 236 referer_id: 264 referee_key: "*to" referee_id: 156 ref_type: P is_present: -card_references_232: +card_references_216: id: 237 referer_id: 264 referee_key: signup_alert_email+*cc referee_id: ref_type: I is_present: -card_references_233: +card_references_217: id: 238 referer_id: 264 referee_key: "*cc" referee_id: 162 ref_type: P is_present: -card_references_234: +card_references_218: id: 239 referer_id: 264 referee_key: signup_alert_email+*bcc referee_id: ref_type: I is_present: -card_references_235: +card_references_219: id: 240 referer_id: 264 referee_key: "*bcc" referee_id: 165 ref_type: P is_present: -card_references_236: +card_references_220: id: 241 referer_id: 264 referee_key: signup_alert_email+*subject referee_id: 266 ref_type: I is_present: -card_references_237: +card_references_221: id: 242 referer_id: 264 referee_key: signup_alert_email+*html_message referee_id: 268 ref_type: I is_present: -card_references_238: +card_references_222: id: 243 referer_id: 264 referee_key: signup_alert_email+*text_message referee_id: 267 ref_type: I is_present: -card_references_239: +card_references_223: id: 244 referer_id: 264 referee_key: signup_alert_email+*attach referee_id: ref_type: I is_present: -card_references_240: +card_references_224: id: 245 referer_id: 264 referee_key: "*attach" referee_id: 169 ref_type: P is_present: -card_references_241: +card_references_225: id: 246 referer_id: 265 referee_key: decko_bot referee_id: 1 ref_type: L is_present: -card_references_242: +card_references_226: id: 247 referer_id: 266 referee_key: "*title" referee_id: 50 ref_type: I is_present: -card_references_243: +card_references_227: id: 248 referer_id: 267 referee_key: "*title" referee_id: 50 ref_type: I is_present: -card_references_244: +card_references_228: id: 249 referer_id: 268 referee_key: "*title" referee_id: 50 ref_type: I is_present: -card_references_245: +card_references_229: id: 250 referer_id: 271 referee_key: anyone referee_id: 180 ref_type: L is_present: -card_references_246: +card_references_230: id: 251 referer_id: 274 referee_key: checkbox referee_id: ref_type: L is_present: -card_references_247: +card_references_231: id: 252 referer_id: 275 referee_key: role referee_id: 177 ref_type: Q is_present: -card_references_248: +card_references_232: id: 253 referer_id: 275 referee_key: anyone referee_id: 180 ref_type: Q is_present: -card_references_249: +card_references_233: id: 254 referer_id: 275 referee_key: anyone_signed_in referee_id: 182 ref_type: Q is_present: -card_references_250: +card_references_234: id: 255 referer_id: 278 referee_key: "*account" referee_id: 205 ref_type: Q is_present: -card_references_251: +card_references_235: id: 256 referer_id: 281 referee_key: "*title" referee_id: 50 ref_type: I is_present: -card_references_252: +card_references_236: id: 257 referer_id: 282 referee_key: file+description referee_id: 283 ref_type: I is_present: -card_references_253: +card_references_237: id: 258 referer_id: 282 referee_key: file+*type+by_name referee_id: ref_type: I is_present: -card_references_254: +card_references_238: id: 259 referer_id: 282 referee_key: file+*type referee_id: ref_type: P is_present: -card_references_255: +card_references_239: id: 260 referer_id: 282 referee_key: "*type" referee_id: 21 ref_type: P is_present: -card_references_256: +card_references_240: id: 261 referer_id: 282 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_257: +card_references_241: id: 262 referer_id: 284 referee_key: image+description referee_id: 285 ref_type: I is_present: -card_references_258: +card_references_242: id: 263 referer_id: 284 referee_key: image+*type+by_name referee_id: ref_type: I is_present: -card_references_259: +card_references_243: id: 264 referer_id: 284 referee_key: image+*type referee_id: ref_type: P is_present: -card_references_260: +card_references_244: id: 265 referer_id: 284 referee_key: "*type" referee_id: 21 ref_type: P is_present: -card_references_261: +card_references_245: id: 266 referer_id: 284 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_262: +card_references_246: id: 267 referer_id: 290 referee_key: anyone referee_id: 180 ref_type: L is_present: -card_references_263: +card_references_247: id: 268 referer_id: 293 referee_key: anyone referee_id: 180 ref_type: L is_present: -card_references_264: +card_references_248: id: 269 referer_id: 300 referee_key: remote_manifest_group+description referee_id: ref_type: I is_present: -card_references_265: +card_references_249: id: 270 referer_id: 300 referee_key: description referee_id: 12 ref_type: P is_present: -card_references_266: +card_references_250: id: 271 referer_id: 300 referee_key: remote_manifest_group+*type+by_name referee_id: ref_type: I is_present: -card_references_267: +card_references_251: id: 272 referer_id: 300 referee_key: remote_manifest_group+*type referee_id: ref_type: P is_present: -card_references_268: +card_references_252: id: 273 referer_id: 300 referee_key: "*type" referee_id: 21 ref_type: P is_present: -card_references_269: +card_references_253: id: 274 referer_id: 300 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_270: +card_references_254: id: 275 referer_id: 303 referee_key: java_script referee_id: 306 ref_type: Q is_present: -card_references_271: +card_references_255: id: 276 referer_id: 303 referee_key: coffee_script referee_id: 312 ref_type: Q is_present: -card_references_272: +card_references_256: id: 277 referer_id: 304 referee_key: list referee_id: 4 ref_type: L is_present: -card_references_273: +card_references_257: id: 278 referer_id: 306 referee_key: java_script+description referee_id: 307 ref_type: I is_present: -card_references_274: +card_references_258: id: 279 referer_id: 306 referee_key: java_script+*type+by_name referee_id: ref_type: I is_present: -card_references_275: +card_references_259: id: 280 referer_id: 306 referee_key: java_script+*type referee_id: 308 ref_type: P is_present: -card_references_276: +card_references_260: id: 281 referer_id: 306 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_277: +card_references_261: id: 282 referer_id: 307 referee_key: "*script" referee_id: 301 ref_type: L is_present: -card_references_278: +card_references_262: id: 283 referer_id: 309 referee_key: shark referee_id: 191 ref_type: L is_present: -card_references_279: +card_references_263: id: 284 referer_id: 310 referee_key: shark referee_id: 191 ref_type: L is_present: -card_references_280: +card_references_264: id: 285 referer_id: 311 referee_key: shark referee_id: 191 ref_type: L is_present: -card_references_281: +card_references_265: id: 286 referer_id: 312 referee_key: coffee_script+description referee_id: 313 ref_type: I is_present: -card_references_282: +card_references_266: id: 287 referer_id: 312 referee_key: coffee_script+*type+by_name referee_id: ref_type: I is_present: -card_references_283: +card_references_267: id: 288 referer_id: 312 referee_key: coffee_script+*type referee_id: 314 ref_type: P is_present: -card_references_284: +card_references_268: id: 289 referer_id: 312 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_285: +card_references_269: id: 290 referer_id: 313 referee_key: "*script" referee_id: 301 ref_type: L is_present: -card_references_286: +card_references_270: id: 291 referer_id: 315 referee_key: shark referee_id: 191 ref_type: L is_present: -card_references_287: +card_references_271: id: 292 referer_id: 316 referee_key: shark referee_id: 191 ref_type: L is_present: -card_references_288: +card_references_272: id: 293 referer_id: 317 referee_key: shark referee_id: 191 ref_type: L is_present: -card_references_289: +card_references_273: id: 294 referer_id: 318 referee_key: local_script_folder_group+description referee_id: ref_type: I is_present: -card_references_290: +card_references_274: id: 295 referer_id: 318 referee_key: description referee_id: 12 ref_type: P is_present: -card_references_291: +card_references_275: id: 296 referer_id: 318 referee_key: local_script_folder_group+*type+by_name referee_id: ref_type: I is_present: -card_references_292: +card_references_276: id: 297 referer_id: 318 referee_key: local_script_folder_group+*type referee_id: ref_type: P is_present: -card_references_293: +card_references_277: id: 298 referer_id: 318 referee_key: "*type" referee_id: 21 ref_type: P is_present: -card_references_294: +card_references_278: id: 299 referer_id: 318 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_295: +card_references_279: id: 300 referer_id: 319 referee_key: local_script_manifest_group+description referee_id: ref_type: I is_present: -card_references_296: +card_references_280: id: 301 referer_id: 319 referee_key: description referee_id: 12 ref_type: P is_present: -card_references_297: +card_references_281: id: 302 referer_id: 319 referee_key: local_script_manifest_group+*type+by_name referee_id: ref_type: I is_present: -card_references_298: +card_references_282: id: 303 referer_id: 319 referee_key: local_script_manifest_group+*type referee_id: ref_type: P is_present: -card_references_299: +card_references_283: id: 304 referer_id: 319 referee_key: "*type" referee_id: 21 ref_type: P is_present: -card_references_300: +card_references_284: id: 305 referer_id: 319 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_301: +card_references_285: id: 306 referer_id: 323 referee_key: help_desk referee_id: 196 ref_type: L is_present: -card_references_302: +card_references_286: id: 307 referer_id: 324 referee_key: help_desk referee_id: 196 ref_type: L is_present: -card_references_303: +card_references_287: id: 308 referer_id: 325 referee_key: help_desk referee_id: 196 ref_type: L is_present: -card_references_304: +card_references_288: id: 309 referer_id: 327 referee_key: local_style_folder_group+description referee_id: ref_type: I is_present: -card_references_305: +card_references_289: id: 310 referer_id: 327 referee_key: description referee_id: 12 ref_type: P is_present: -card_references_306: +card_references_290: id: 311 referer_id: 327 referee_key: local_style_folder_group+*type+by_name referee_id: ref_type: I is_present: -card_references_307: +card_references_291: id: 312 referer_id: 327 referee_key: local_style_folder_group+*type referee_id: ref_type: P is_present: -card_references_308: +card_references_292: id: 313 referer_id: 327 referee_key: "*type" referee_id: 21 ref_type: P is_present: -card_references_309: +card_references_293: id: 314 referer_id: 327 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_310: +card_references_294: id: 315 referer_id: 328 referee_key: local_style_manifest_group+description referee_id: ref_type: I is_present: -card_references_311: +card_references_295: id: 316 referer_id: 328 referee_key: description referee_id: 12 ref_type: P is_present: -card_references_312: +card_references_296: id: 317 referer_id: 328 referee_key: local_style_manifest_group+*type+by_name referee_id: ref_type: I is_present: -card_references_313: +card_references_297: id: 318 referer_id: 328 referee_key: local_style_manifest_group+*type referee_id: ref_type: P is_present: -card_references_314: +card_references_298: id: 319 referer_id: 328 referee_key: "*type" referee_id: 21 ref_type: P is_present: -card_references_315: +card_references_299: id: 320 referer_id: 328 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_316: +card_references_300: id: 321 referer_id: 329 referee_key: css+description referee_id: 330 ref_type: I is_present: -card_references_317: +card_references_301: id: 322 referer_id: 329 referee_key: css+*type+by_name referee_id: ref_type: I is_present: -card_references_318: +card_references_302: id: 323 referer_id: 329 referee_key: css+*type referee_id: 331 ref_type: P is_present: -card_references_319: +card_references_303: id: 324 referer_id: 329 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_320: +card_references_304: id: 325 referer_id: 330 referee_key: skin referee_id: 341 ref_type: L is_present: -card_references_321: +card_references_305: id: 326 referer_id: 332 referee_key: shark referee_id: 191 ref_type: L is_present: -card_references_322: +card_references_306: id: 327 referer_id: 333 referee_key: shark referee_id: 191 ref_type: L is_present: -card_references_323: +card_references_307: id: 328 referer_id: 334 referee_key: shark referee_id: 191 ref_type: L is_present: -card_references_324: +card_references_308: id: 329 referer_id: 335 referee_key: scss+description referee_id: 336 ref_type: I is_present: -card_references_325: +card_references_309: id: 330 referer_id: 335 referee_key: scss+*type+by_name referee_id: ref_type: I is_present: -card_references_326: +card_references_310: id: 331 referer_id: 335 referee_key: scss+*type referee_id: 337 ref_type: P is_present: -card_references_327: +card_references_311: id: 332 referer_id: 335 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_328: +card_references_312: id: 333 referer_id: 336 referee_key: skin referee_id: 341 ref_type: L is_present: -card_references_329: +card_references_313: id: 334 referer_id: 338 referee_key: shark referee_id: 191 ref_type: L is_present: -card_references_330: +card_references_314: id: 335 referer_id: 339 referee_key: shark referee_id: 191 ref_type: L is_present: -card_references_331: +card_references_315: id: 336 referer_id: 340 referee_key: shark referee_id: 191 ref_type: L is_present: -card_references_332: +card_references_316: id: 337 referer_id: 341 referee_key: skin+description referee_id: 342 ref_type: I is_present: -card_references_333: +card_references_317: id: 338 referer_id: 341 referee_key: skin+*type+by_name referee_id: ref_type: I is_present: -card_references_334: +card_references_318: id: 339 referer_id: 341 referee_key: skin+*type referee_id: 343 ref_type: P is_present: -card_references_335: +card_references_319: id: 340 referer_id: 341 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_336: +card_references_320: id: 341 referer_id: 342 referee_key: skin referee_id: 341 ref_type: L is_present: -card_references_337: +card_references_321: id: 342 referer_id: 344 referee_key: shark referee_id: 191 ref_type: L is_present: -card_references_338: +card_references_322: id: 343 referer_id: 345 referee_key: shark referee_id: 191 ref_type: L is_present: -card_references_339: +card_references_323: id: 344 referer_id: 346 referee_key: shark referee_id: 191 ref_type: L is_present: -card_references_340: +card_references_324: id: 345 referer_id: 349 referee_key: radio referee_id: ref_type: L is_present: -card_references_341: +card_references_325: id: 346 referer_id: 350 referee_key: bootswatch_skin referee_id: 357 ref_type: Q is_present: -card_references_342: +card_references_326: id: 347 referer_id: 357 referee_key: bootswatch_skin+description referee_id: ref_type: I is_present: -card_references_343: +card_references_327: id: 348 referer_id: 357 referee_key: description referee_id: 12 ref_type: P is_present: -card_references_344: +card_references_328: id: 349 referer_id: 357 referee_key: bootswatch_skin+*type+by_name referee_id: ref_type: I is_present: -card_references_345: +card_references_329: id: 350 referer_id: 357 referee_key: bootswatch_skin+*type referee_id: ref_type: P is_present: -card_references_346: +card_references_330: id: 351 referer_id: 357 referee_key: "*type" referee_id: 21 ref_type: P is_present: -card_references_347: +card_references_331: id: 352 referer_id: 357 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_348: +card_references_332: id: 353 referer_id: 444 referee_key: yeti_skin referee_id: 412 ref_type: L is_present: -card_references_349: +card_references_333: id: 354 referer_id: 447 referee_key: date+description referee_id: 448 ref_type: I is_present: -card_references_350: +card_references_334: id: 355 referer_id: 447 referee_key: date+*type+by_name referee_id: ref_type: I is_present: -card_references_351: +card_references_335: id: 356 referer_id: 447 referee_key: date+*type referee_id: ref_type: P is_present: -card_references_352: +card_references_336: id: 357 referer_id: 447 referee_key: "*type" referee_id: 21 ref_type: P is_present: -card_references_353: +card_references_337: id: 358 referer_id: 447 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_354: +card_references_338: id: 359 referer_id: 452 referee_key: notification_template+description referee_id: ref_type: I is_present: -card_references_355: +card_references_339: id: 360 referer_id: 452 referee_key: description referee_id: 12 ref_type: P is_present: -card_references_356: +card_references_340: id: 361 referer_id: 452 referee_key: notification_template+*type+by_name referee_id: ref_type: I is_present: -card_references_357: +card_references_341: id: 362 referer_id: 452 referee_key: notification_template+*type referee_id: ref_type: P is_present: -card_references_358: +card_references_342: id: 363 referer_id: 452 referee_key: "*type" referee_id: 21 ref_type: P is_present: -card_references_359: +card_references_343: id: 364 referer_id: 452 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_360: +card_references_344: id: 365 referer_id: 455 referee_key: radio referee_id: ref_type: L is_present: -card_references_361: +card_references_345: id: 366 referer_id: 459 referee_key: "*following+*right" referee_id: 458 ref_type: L is_present: -card_references_362: +card_references_346: id: 367 referer_id: 460 referee_key: "*following+*right" referee_id: 458 ref_type: L is_present: -card_references_363: +card_references_347: id: 368 referer_id: 467 referee_key: "*nest" referee_id: 130 ref_type: L is_present: -card_references_364: +card_references_348: id: 369 referer_id: 470 referee_key: radio referee_id: ref_type: L is_present: -card_references_365: +card_references_349: id: 370 referer_id: 471 referee_key: success referee_id: ref_type: L is_present: -card_references_366: +card_references_350: id: 371 referer_id: 471 referee_key: info referee_id: ref_type: L is_present: -card_references_367: +card_references_351: id: 372 referer_id: 471 referee_key: warning referee_id: ref_type: L is_present: -card_references_368: +card_references_352: id: 373 referer_id: 471 referee_key: danger referee_id: ref_type: L is_present: -card_references_369: +card_references_353: id: 374 referer_id: 474 referee_key: follower_notification_email+*from referee_id: 475 ref_type: I is_present: -card_references_370: +card_references_354: id: 375 referer_id: 474 referee_key: follower_notification_email+*to referee_id: ref_type: I is_present: -card_references_371: +card_references_355: id: 376 referer_id: 474 referee_key: "*to" referee_id: 156 ref_type: P is_present: -card_references_372: +card_references_356: id: 377 referer_id: 474 referee_key: follower_notification_email+*cc referee_id: ref_type: I is_present: -card_references_373: +card_references_357: id: 378 referer_id: 474 referee_key: "*cc" referee_id: 162 ref_type: P is_present: -card_references_374: +card_references_358: id: 379 referer_id: 474 referee_key: follower_notification_email+*bcc referee_id: ref_type: I is_present: -card_references_375: +card_references_359: id: 380 referer_id: 474 referee_key: "*bcc" referee_id: 165 ref_type: P is_present: -card_references_376: +card_references_360: id: 381 referer_id: 474 referee_key: follower_notification_email+*subject referee_id: 476 ref_type: I is_present: -card_references_377: +card_references_361: id: 382 referer_id: 474 referee_key: follower_notification_email+*html_message referee_id: 477 ref_type: I is_present: -card_references_378: +card_references_362: id: 383 referer_id: 474 referee_key: follower_notification_email+*text_message referee_id: 478 ref_type: I is_present: -card_references_379: +card_references_363: id: 384 referer_id: 474 referee_key: follower_notification_email+*attach referee_id: ref_type: I is_present: -card_references_380: +card_references_364: id: 385 referer_id: 474 referee_key: "*attach" referee_id: 169 ref_type: P is_present: -card_references_381: +card_references_365: id: 386 referer_id: 475 referee_key: decko_bot referee_id: 1 ref_type: L is_present: -card_references_382: +card_references_366: id: 387 referer_id: 476 referee_key: decko_bot referee_id: 1 ref_type: I is_present: -card_references_383: +card_references_367: id: 388 referer_id: 477 referee_key: decko_bot referee_id: 1 ref_type: I is_present: -card_references_384: +card_references_368: id: 389 referer_id: 478 referee_key: decko_bot referee_id: 1 ref_type: I is_present: -card_references_385: +card_references_369: id: 390 referer_id: 479 referee_key: session+description referee_id: 480 ref_type: I is_present: -card_references_386: +card_references_370: id: 391 referer_id: 479 referee_key: session+*type+by_name referee_id: ref_type: I is_present: -card_references_387: +card_references_371: id: 392 referer_id: 479 referee_key: session+*type referee_id: ref_type: P is_present: -card_references_388: +card_references_372: id: 393 referer_id: 479 referee_key: "*type" referee_id: 21 ref_type: P is_present: -card_references_389: +card_references_373: id: 394 referer_id: 479 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_390: +card_references_374: id: 395 referer_id: 483 referee_key: anyone referee_id: 180 ref_type: L is_present: -card_references_391: +card_references_375: id: 396 referer_id: 484 referee_key: anyone referee_id: 180 ref_type: L is_present: -card_references_392: +card_references_376: id: 397 referer_id: 485 referee_key: setting referee_id: 6 ref_type: Q is_present: -card_references_393: +card_references_377: id: 398 referer_id: 486 referee_key: layout+description referee_id: 487 ref_type: I is_present: -card_references_394: +card_references_378: id: 399 referer_id: 486 referee_key: layout+*type+by_name referee_id: ref_type: I is_present: -card_references_395: +card_references_379: id: 400 referer_id: 486 referee_key: layout+*type referee_id: 488 ref_type: P is_present: -card_references_396: +card_references_380: id: 401 referer_id: 486 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_397: +card_references_381: id: 402 referer_id: 489 referee_key: shark referee_id: 191 ref_type: L is_present: -card_references_398: +card_references_382: id: 403 referer_id: 490 referee_key: shark referee_id: 191 ref_type: L is_present: -card_references_399: +card_references_383: id: 404 referer_id: 491 referee_key: shark referee_id: 191 ref_type: L is_present: -card_references_400: +card_references_384: id: 406 referer_id: 494 referee_key: select referee_id: ref_type: L is_present: -card_references_401: +card_references_385: id: 409 referer_id: 495 referee_key: default_layout referee_id: 507 ref_type: L is_present: -card_references_402: +card_references_386: id: 414 referer_id: 497 referee_key: "*logo" referee_id: 288 ref_type: I is_present: -card_references_403: +card_references_387: id: 415 referer_id: 497 referee_key: "*title" referee_id: 50 ref_type: I is_present: -card_references_404: +card_references_388: id: 416 referer_id: 497 referee_key: "*main_menu" referee_id: 496 ref_type: I is_present: -card_references_405: +card_references_389: id: 417 referer_id: 497 referee_key: "*search" referee_id: 99 ref_type: I is_present: -card_references_406: +card_references_390: id: 418 referer_id: 497 referee_key: "*account_link" referee_id: 277 ref_type: I is_present: -card_references_407: +card_references_391: id: 419 referer_id: 499 referee_key: anyone referee_id: 180 ref_type: L is_present: -card_references_408: +card_references_392: id: 424 referer_id: 501 referee_key: anyone referee_id: 180 ref_type: L is_present: -card_references_409: +card_references_393: id: 425 referer_id: 502 referee_key: "*credit" referee_id: 51 ref_type: I is_present: -card_references_410: +card_references_394: id: 426 referer_id: 504 referee_key: menu referee_id: 503 ref_type: I is_present: -card_references_411: +card_references_395: id: 427 referer_id: 506 referee_key: anyone referee_id: 180 ref_type: L is_present: -card_references_412: +card_references_396: id: 428 referer_id: 507 referee_key: "*header" referee_id: 497 ref_type: I is_present: -card_references_413: +card_references_397: id: 429 referer_id: 507 referee_key: "*footer" referee_id: 502 ref_type: I is_present: -card_references_414: +card_references_398: id: 430 referer_id: 508 referee_key: "*header" referee_id: 497 ref_type: I is_present: -card_references_415: +card_references_399: id: 431 referer_id: 508 referee_key: "*footer" referee_id: 502 ref_type: I is_present: -card_references_416: +card_references_400: id: 432 referer_id: 509 referee_key: "*header" referee_id: 497 ref_type: I is_present: -card_references_417: +card_references_401: id: 433 referer_id: 509 referee_key: "*footer" referee_id: 502 ref_type: I is_present: -card_references_418: +card_references_402: id: 434 referer_id: 510 referee_key: "*header" referee_id: 497 ref_type: I is_present: -card_references_419: +card_references_403: id: 435 referer_id: 510 referee_key: "*sidebar" referee_id: 504 ref_type: I is_present: -card_references_420: +card_references_404: id: 436 referer_id: 510 referee_key: "*footer" referee_id: 502 ref_type: I is_present: -card_references_421: +card_references_405: id: 437 referer_id: 511 referee_key: "*header" referee_id: 497 ref_type: I is_present: -card_references_422: +card_references_406: id: 438 referer_id: 511 referee_key: "*sidebar" referee_id: 504 ref_type: I is_present: -card_references_423: +card_references_407: id: 439 referer_id: 511 referee_key: "*footer" referee_id: 502 ref_type: I is_present: -card_references_424: +card_references_408: id: 445 referer_id: 521 referee_key: home_layout referee_id: 509 ref_type: L is_present: -card_references_425: +card_references_409: id: 451 referer_id: 522 referee_key: home referee_id: 519 ref_type: L is_present: -card_references_426: +card_references_410: id: 452 referer_id: 525 referee_key: role+*type+*structure+description referee_id: ref_type: I is_present: -card_references_427: +card_references_411: id: 453 referer_id: 525 referee_key: description referee_id: 12 ref_type: P is_present: -card_references_428: +card_references_412: id: 454 referer_id: 525 referee_key: role+*type+*structure+dashboard referee_id: ref_type: I is_present: -card_references_429: +card_references_413: id: 455 referer_id: 525 referee_key: dashboard referee_id: 523 ref_type: P is_present: -card_references_430: +card_references_414: id: 456 referer_id: 525 referee_key: role+*type+*structure+*member referee_id: ref_type: I is_present: -card_references_431: +card_references_415: id: 457 referer_id: 525 referee_key: "*member" referee_id: 179 ref_type: P is_present: -card_references_432: +card_references_416: id: 458 referer_id: 180 referee_key: anyone+description referee_id: 181 ref_type: I is_present: -card_references_433: +card_references_417: id: 459 referer_id: 180 referee_key: anyone+dashboard referee_id: ref_type: I is_present: -card_references_434: +card_references_418: id: 460 referer_id: 180 referee_key: dashboard referee_id: 523 ref_type: P is_present: -card_references_435: +card_references_419: id: 461 referer_id: 180 referee_key: anyone+*member referee_id: ref_type: I is_present: -card_references_436: +card_references_420: id: 462 referer_id: 180 referee_key: "*member" referee_id: 179 ref_type: P is_present: -card_references_437: +card_references_421: id: 463 referer_id: 182 referee_key: anyone_signed_in+description referee_id: 183 ref_type: I is_present: -card_references_438: +card_references_422: id: 464 referer_id: 182 referee_key: anyone_signed_in+dashboard referee_id: 531 ref_type: I is_present: -card_references_439: +card_references_423: id: 465 referer_id: 182 referee_key: dashboard referee_id: 523 ref_type: P is_present: -card_references_440: +card_references_424: id: 466 referer_id: 182 referee_key: anyone_signed_in+*member referee_id: ref_type: I is_present: -card_references_441: +card_references_425: id: 467 referer_id: 182 referee_key: "*member" referee_id: 179 ref_type: P is_present: -card_references_442: +card_references_426: id: 468 referer_id: 184 referee_key: administrator+description referee_id: 185 ref_type: I is_present: -card_references_443: +card_references_427: id: 469 referer_id: 184 referee_key: administrator+dashboard referee_id: 527 ref_type: I is_present: -card_references_444: +card_references_428: id: 470 referer_id: 184 referee_key: dashboard referee_id: 523 ref_type: P is_present: -card_references_445: +card_references_429: id: 471 referer_id: 184 referee_key: administrator+*member referee_id: 186 ref_type: I is_present: -card_references_446: +card_references_430: id: 472 referer_id: 189 referee_key: eagle+description referee_id: 190 ref_type: I is_present: -card_references_447: +card_references_431: id: 473 referer_id: 189 referee_key: eagle+dashboard referee_id: 530 ref_type: I is_present: -card_references_448: +card_references_432: id: 474 referer_id: 189 referee_key: dashboard referee_id: 523 ref_type: P is_present: -card_references_449: +card_references_433: id: 475 referer_id: 189 referee_key: eagle+*member referee_id: ref_type: I is_present: -card_references_450: +card_references_434: id: 476 referer_id: 189 referee_key: "*member" referee_id: 179 ref_type: P is_present: -card_references_451: +card_references_435: id: 477 referer_id: 191 referee_key: shark+description referee_id: 192 ref_type: I is_present: -card_references_452: +card_references_436: id: 478 referer_id: 191 referee_key: shark+dashboard referee_id: 528 ref_type: I is_present: -card_references_453: +card_references_437: id: 479 referer_id: 191 referee_key: dashboard referee_id: 523 ref_type: P is_present: -card_references_454: +card_references_438: id: 480 referer_id: 191 referee_key: shark+*member referee_id: 193 ref_type: I is_present: -card_references_455: +card_references_439: id: 481 referer_id: 196 referee_key: help_desk+description referee_id: 197 ref_type: I is_present: -card_references_456: +card_references_440: id: 482 referer_id: 196 referee_key: help_desk+dashboard referee_id: 529 ref_type: I is_present: -card_references_457: +card_references_441: id: 483 referer_id: 196 referee_key: dashboard referee_id: 523 ref_type: P is_present: -card_references_458: +card_references_442: id: 484 referer_id: 196 referee_key: help_desk+*member referee_id: 198 ref_type: I is_present: -card_references_459: +card_references_443: id: 492 referer_id: 526 referee_key: "*all+*style" referee_id: 444 ref_type: L is_present: -card_references_460: +card_references_444: id: 493 referer_id: 526 referee_key: administrator referee_id: 184 ref_type: L is_present: -card_references_461: +card_references_445: id: 494 referer_id: 527 referee_key: administrator referee_id: 184 ref_type: I is_present: -card_references_462: +card_references_446: id: 495 referer_id: 528 referee_key: shark referee_id: 191 ref_type: I is_present: -card_references_463: +card_references_447: id: 496 referer_id: 528 referee_key: "*all" referee_id: 7 ref_type: I is_present: -card_references_464: - id: 497 - referer_id: 529 - referee_key: help_desk - referee_id: 196 - ref_type: I - is_present: -card_references_465: - id: 498 - referer_id: 529 - referee_key: "*account" - referee_id: 205 - ref_type: I - is_present: -card_references_466: - id: 499 - referer_id: 529 - referee_key: "*help" - referee_id: 89 - ref_type: I - is_present: -card_references_467: - id: 500 - referer_id: 529 - referee_key: email_template - referee_id: 152 - ref_type: L - is_present: -card_references_468: - id: 501 - referer_id: 529 - referee_key: email_template+*type+by_update - referee_id: - ref_type: I - is_present: -card_references_469: - id: 502 - referer_id: 529 - referee_key: email_template+*type - referee_id: 154 - ref_type: P - is_present: -card_references_470: - id: 503 - referer_id: 529 - referee_key: by_update - referee_id: 106 - ref_type: P - is_present: -card_references_471: +card_references_448: id: 504 referer_id: 530 referee_key: decko_bot+*created referee_id: ref_type: I is_present: -card_references_472: +card_references_449: id: 505 referer_id: 530 referee_key: decko_bot referee_id: 1 ref_type: P is_present: -card_references_473: +card_references_450: id: 506 referer_id: 530 referee_key: "*created" referee_id: 109 ref_type: P is_present: -card_references_474: +card_references_451: id: 507 referer_id: 530 referee_key: decko_bot+*edited referee_id: ref_type: I is_present: -card_references_475: +card_references_452: id: 508 referer_id: 530 referee_key: "*edited" referee_id: 112 ref_type: P is_present: -card_references_476: +card_references_453: id: 509 referer_id: 531 referee_key: decko_bot+*created referee_id: ref_type: I is_present: -card_references_477: +card_references_454: id: 510 referer_id: 531 referee_key: decko_bot referee_id: 1 ref_type: P is_present: -card_references_478: +card_references_455: id: 511 referer_id: 531 referee_key: "*created" referee_id: 109 ref_type: P is_present: -card_references_479: +card_references_456: id: 512 referer_id: 531 referee_key: decko_bot+*edited referee_id: ref_type: I is_present: -card_references_480: +card_references_457: id: 513 referer_id: 531 referee_key: "*edited" referee_id: 112 ref_type: P is_present: -card_references_481: +card_references_458: id: 514 referer_id: 532 referee_key: "*getting_started+shark" referee_id: 533 ref_type: I is_present: -card_references_482: +card_references_459: id: 515 referer_id: 538 referee_key: mod_format+*script+group_jquery referee_id: ref_type: L is_present: -card_references_483: +card_references_460: id: 516 referer_id: 538 referee_key: group_jquery referee_id: ref_type: P is_present: -card_references_484: +card_references_461: id: 517 referer_id: 538 referee_key: mod_format+*script+group_decko referee_id: ref_type: L is_present: -card_references_485: +card_references_462: id: 518 referer_id: 538 referee_key: group_decko referee_id: ref_type: P is_present: -card_references_486: +card_references_463: id: 519 referer_id: 540 referee_key: mod_format+*style+group_local referee_id: ref_type: L is_present: -card_references_487: +card_references_464: id: 520 referer_id: 540 referee_key: group_local referee_id: ref_type: P is_present: -card_references_488: +card_references_465: id: 521 referer_id: 542 referee_key: mod_list+*script+group_local referee_id: ref_type: L is_present: -card_references_489: +card_references_466: id: 522 referer_id: 542 referee_key: group_local referee_id: ref_type: P is_present: -card_references_490: +card_references_467: id: 523 referer_id: 544 referee_key: mod_list+*style+group_local referee_id: ref_type: L is_present: -card_references_491: +card_references_468: id: 524 referer_id: 544 referee_key: group_local referee_id: ref_type: P is_present: -card_references_492: +card_references_469: id: 525 referer_id: 547 referee_key: mod_permission+*style+group_local referee_id: ref_type: L is_present: -card_references_493: +card_references_470: id: 526 referer_id: 547 referee_key: group_local referee_id: ref_type: P is_present: -card_references_494: +card_references_471: id: 527 referer_id: 549 referee_key: mod_help+*style+group_local referee_id: ref_type: L is_present: -card_references_495: +card_references_472: id: 528 referer_id: 549 referee_key: group_local referee_id: ref_type: P is_present: -card_references_496: +card_references_473: id: 529 referer_id: 551 referee_key: mod_search+*script+group_local referee_id: ref_type: L is_present: -card_references_497: +card_references_474: id: 530 referer_id: 551 referee_key: group_local referee_id: ref_type: P is_present: -card_references_498: +card_references_475: id: 531 referer_id: 553 referee_key: mod_search+*style+group_local referee_id: ref_type: L is_present: -card_references_499: +card_references_476: id: 532 referer_id: 553 referee_key: group_local referee_id: ref_type: P is_present: -card_references_500: +card_references_477: id: 533 referer_id: 555 referee_key: mod_rule+*script+group_local referee_id: ref_type: L is_present: -card_references_501: +card_references_478: id: 534 referer_id: 555 referee_key: group_local referee_id: ref_type: P is_present: -card_references_502: +card_references_479: id: 535 referer_id: 557 referee_key: mod_rule+*style+group_local referee_id: ref_type: L is_present: -card_references_503: +card_references_480: id: 536 referer_id: 557 referee_key: group_local referee_id: ref_type: P is_present: -card_references_504: +card_references_481: id: 537 referer_id: 559 referee_key: mod_edit+*script+group_local referee_id: ref_type: L is_present: -card_references_505: +card_references_482: id: 538 referer_id: 559 referee_key: group_local referee_id: ref_type: P is_present: -card_references_506: +card_references_483: id: 539 referer_id: 561 referee_key: mod_edit+*style+group_local referee_id: ref_type: L is_present: -card_references_507: +card_references_484: id: 540 referer_id: 561 referee_key: group_local referee_id: ref_type: P is_present: -card_references_508: +card_references_485: id: 541 referer_id: 565 referee_key: mod_account+*script+group_local referee_id: ref_type: L is_present: -card_references_509: +card_references_486: id: 542 referer_id: 565 referee_key: group_local referee_id: ref_type: P is_present: -card_references_510: +card_references_487: id: 543 referer_id: 567 referee_key: mod_account+*style+group_local referee_id: ref_type: L is_present: -card_references_511: +card_references_488: id: 544 referer_id: 567 referee_key: group_local referee_id: ref_type: P is_present: -card_references_512: +card_references_489: id: 545 referer_id: 569 referee_key: mod_history+*style+group_local referee_id: ref_type: L is_present: -card_references_513: +card_references_490: id: 546 referer_id: 569 referee_key: group_local referee_id: ref_type: P is_present: -card_references_514: +card_references_491: id: 547 referer_id: 571 referee_key: mod_carrierwave+*script+group_local referee_id: ref_type: L is_present: -card_references_515: +card_references_492: id: 548 referer_id: 571 referee_key: group_local referee_id: ref_type: P is_present: -card_references_516: +card_references_493: id: 549 referer_id: 573 referee_key: mod_carrierwave+*style+group_local referee_id: ref_type: L is_present: -card_references_517: +card_references_494: id: 550 referer_id: 573 referee_key: group_local referee_id: ref_type: P is_present: -card_references_518: +card_references_495: id: 551 referer_id: 578 referee_key: mod_ace_editor+*script+group_ace_config referee_id: ref_type: L is_present: -card_references_519: +card_references_496: id: 552 referer_id: 578 referee_key: group_ace_config referee_id: ref_type: P is_present: -card_references_520: +card_references_497: id: 553 referer_id: 581 referee_key: mod_api_key+*style+group_local referee_id: ref_type: L is_present: -card_references_521: +card_references_498: id: 554 referer_id: 581 referee_key: group_local referee_id: ref_type: P is_present: -card_references_522: +card_references_499: id: 555 referer_id: 583 referee_key: mod_style+*style+group_local referee_id: ref_type: L is_present: -card_references_523: +card_references_500: id: 556 referer_id: 583 referee_key: group_local referee_id: ref_type: P is_present: -card_references_524: +card_references_501: id: 557 referer_id: 585 referee_key: mod_bar_and_box+*script+group_local referee_id: ref_type: L is_present: -card_references_525: +card_references_502: id: 558 referer_id: 585 referee_key: group_local referee_id: ref_type: P is_present: -card_references_526: +card_references_503: id: 559 referer_id: 587 referee_key: mod_bar_and_box+*style+group_local referee_id: ref_type: L is_present: -card_references_527: +card_references_504: id: 560 referer_id: 587 referee_key: group_local referee_id: ref_type: P is_present: -card_references_528: +card_references_505: id: 561 referer_id: 589 referee_key: mod_bootstrap+*script+group_bootstrap referee_id: ref_type: L is_present: -card_references_529: +card_references_506: id: 562 referer_id: 589 referee_key: group_bootstrap referee_id: ref_type: P is_present: -card_references_530: +card_references_507: id: 563 referer_id: 591 referee_key: mod_bootstrap+*style+group_bootstrap_decko referee_id: ref_type: L is_present: -card_references_531: +card_references_508: id: 564 referer_id: 591 referee_key: group_bootstrap_decko referee_id: ref_type: P is_present: -card_references_532: +card_references_509: id: 565 referer_id: 591 referee_key: mod_bootstrap+*style+group_library referee_id: ref_type: L is_present: -card_references_533: +card_references_510: id: 566 referer_id: 591 referee_key: group_library referee_id: ref_type: P is_present: -card_references_534: +card_references_511: id: 567 referer_id: 591 referee_key: mod_bootstrap+*style+group_select2 referee_id: ref_type: L is_present: -card_references_535: +card_references_512: id: 568 referer_id: 591 referee_key: group_select2 referee_id: ref_type: P is_present: -card_references_536: +card_references_513: id: 569 referer_id: 593 referee_key: mod_comment+*style+group_local referee_id: ref_type: L is_present: -card_references_537: +card_references_514: id: 570 referer_id: 593 referee_key: group_local referee_id: ref_type: P is_present: -card_references_538: +card_references_515: id: 571 referer_id: 597 referee_key: mod_follow+*script+group_local referee_id: ref_type: L is_present: -card_references_539: +card_references_516: id: 572 referer_id: 597 referee_key: group_local referee_id: ref_type: P is_present: -card_references_540: +card_references_517: id: 573 referer_id: 599 referee_key: mod_follow+*style+group_local referee_id: ref_type: L is_present: -card_references_541: +card_references_518: id: 574 referer_id: 599 referee_key: group_local referee_id: ref_type: P is_present: -card_references_542: +card_references_519: id: 575 referer_id: 602 referee_key: mod_tab+*script+group_local referee_id: ref_type: L is_present: -card_references_543: +card_references_520: id: 576 referer_id: 602 referee_key: group_local referee_id: ref_type: P is_present: -card_references_544: +card_references_521: id: 577 referer_id: 605 referee_key: mod_layout+*script+group_local referee_id: ref_type: L is_present: -card_references_545: +card_references_522: id: 578 referer_id: 605 referee_key: group_local referee_id: ref_type: P is_present: -card_references_546: +card_references_523: id: 579 referer_id: 607 referee_key: mod_layout+*style+group_local referee_id: ref_type: L is_present: -card_references_547: +card_references_524: id: 580 referer_id: 607 referee_key: group_local referee_id: ref_type: P is_present: -card_references_548: +card_references_525: id: 581 referer_id: 609 referee_key: mod_recaptcha+*script+group_local referee_id: ref_type: L is_present: -card_references_549: +card_references_526: id: 582 referer_id: 609 referee_key: group_local referee_id: ref_type: P is_present: -card_references_550: +card_references_527: id: 583 referer_id: 612 referee_key: mod_tinymce_editor+*script+group_local referee_id: ref_type: L is_present: -card_references_551: +card_references_528: id: 584 referer_id: 612 referee_key: group_local referee_id: ref_type: P is_present: -card_references_552: +card_references_529: id: 585 referer_id: 614 referee_key: mod_tinymce_editor+*style+group_local referee_id: ref_type: L is_present: -card_references_553: +card_references_530: id: 586 referer_id: 614 referee_key: group_local referee_id: ref_type: P is_present: -card_references_554: +card_references_531: id: 587 referer_id: 305 referee_key: mod_format+*script referee_id: 538 ref_type: L is_present: -card_references_555: +card_references_532: id: 588 referer_id: 305 referee_key: mod_list+*script referee_id: 542 ref_type: L is_present: -card_references_556: +card_references_533: id: 589 referer_id: 305 referee_key: mod_search+*script referee_id: 551 ref_type: L is_present: -card_references_557: +card_references_534: id: 590 referer_id: 305 referee_key: mod_rule+*script referee_id: 555 ref_type: L is_present: -card_references_558: +card_references_535: id: 591 referer_id: 305 referee_key: mod_edit+*script referee_id: 559 ref_type: L is_present: -card_references_559: +card_references_536: id: 592 referer_id: 305 referee_key: mod_account+*script referee_id: 565 ref_type: L is_present: -card_references_560: +card_references_537: id: 593 referer_id: 305 referee_key: mod_carrierwave+*script referee_id: 571 ref_type: L is_present: -card_references_561: +card_references_538: id: 594 referer_id: 305 referee_key: mod_ace_editor+*script referee_id: 578 ref_type: L is_present: -card_references_562: +card_references_539: id: 595 referer_id: 305 referee_key: mod_bar_and_box+*script referee_id: 585 ref_type: L is_present: -card_references_563: +card_references_540: id: 596 referer_id: 305 referee_key: mod_bootstrap+*script referee_id: 589 ref_type: L is_present: -card_references_564: +card_references_541: id: 597 referer_id: 305 referee_key: mod_follow+*script referee_id: 597 ref_type: L is_present: -card_references_565: +card_references_542: id: 598 referer_id: 305 referee_key: mod_tab+*script referee_id: 602 ref_type: L is_present: -card_references_566: +card_references_543: id: 599 referer_id: 305 referee_key: mod_layout+*script referee_id: 605 ref_type: L is_present: -card_references_567: +card_references_544: id: 600 referer_id: 305 referee_key: mod_recaptcha+*script referee_id: 609 ref_type: L is_present: -card_references_568: +card_references_545: id: 601 referer_id: 305 referee_key: mod_tinymce_editor+*script referee_id: 612 ref_type: L is_present: -card_references_569: +card_references_546: id: 609 referer_id: 326 referee_key: mod_format+*style referee_id: 540 ref_type: L is_present: -card_references_570: +card_references_547: id: 610 referer_id: 326 referee_key: mod_list+*style referee_id: 544 ref_type: L is_present: -card_references_571: +card_references_548: id: 611 referer_id: 326 referee_key: mod_permission+*style referee_id: 547 ref_type: L is_present: -card_references_572: +card_references_549: id: 612 referer_id: 326 referee_key: mod_help+*style referee_id: 549 ref_type: L is_present: -card_references_573: +card_references_550: id: 613 referer_id: 326 referee_key: mod_search+*style referee_id: 553 ref_type: L is_present: -card_references_574: +card_references_551: id: 614 referer_id: 326 referee_key: mod_rule+*style referee_id: 557 ref_type: L is_present: -card_references_575: +card_references_552: id: 615 referer_id: 326 referee_key: mod_edit+*style referee_id: 561 ref_type: L is_present: -card_references_576: +card_references_553: id: 616 referer_id: 326 referee_key: mod_account+*style referee_id: 567 ref_type: L is_present: -card_references_577: +card_references_554: id: 617 referer_id: 326 referee_key: mod_history+*style referee_id: 569 ref_type: L is_present: -card_references_578: +card_references_555: id: 618 referer_id: 326 referee_key: mod_carrierwave+*style referee_id: 573 ref_type: L is_present: -card_references_579: +card_references_556: id: 619 referer_id: 326 referee_key: mod_api_key+*style referee_id: 581 ref_type: L is_present: -card_references_580: +card_references_557: id: 620 referer_id: 326 referee_key: mod_style+*style referee_id: 583 ref_type: L is_present: -card_references_581: +card_references_558: id: 621 referer_id: 326 referee_key: mod_bar_and_box+*style referee_id: 587 ref_type: L is_present: -card_references_582: +card_references_559: id: 622 referer_id: 326 referee_key: mod_bootstrap+*style referee_id: 591 ref_type: L is_present: -card_references_583: +card_references_560: id: 623 referer_id: 326 referee_key: mod_comment+*style referee_id: 593 ref_type: L is_present: -card_references_584: +card_references_561: id: 624 referer_id: 326 referee_key: mod_follow+*style referee_id: 599 ref_type: L is_present: -card_references_585: +card_references_562: id: 625 referer_id: 326 referee_key: mod_layout+*style referee_id: 607 ref_type: L is_present: -card_references_586: +card_references_563: id: 626 referer_id: 326 referee_key: mod_tinymce_editor+*style referee_id: 614 ref_type: L is_present: -card_references_587: +card_references_564: id: 627 referer_id: 91 referee_key: help_desk referee_id: 196 ref_type: L is_present: -card_references_588: +card_references_565: id: 628 referer_id: 92 referee_key: help_desk referee_id: 196 ref_type: L is_present: -card_references_589: +card_references_566: id: 629 referer_id: 93 referee_key: help_desk referee_id: 196 ref_type: L is_present: -card_references_590: +card_references_567: id: 649 referer_id: 623 referee_key: active referee_id: ref_type: L is_present: -card_references_591: +card_references_568: id: 650 referer_id: 629 referee_key: active referee_id: ref_type: L is_present: -card_references_592: +card_references_569: id: 651 referer_id: 635 referee_key: active referee_id: ref_type: L is_present: -card_references_593: +card_references_570: id: 652 referer_id: 642 referee_key: active referee_id: ref_type: L is_present: -card_references_594: +card_references_571: id: 653 referer_id: 643 referee_key: cardtype_a+description referee_id: ref_type: I is_present: -card_references_595: +card_references_572: id: 654 referer_id: 643 referee_key: description referee_id: 12 ref_type: P is_present: -card_references_596: +card_references_573: id: 655 referer_id: 643 referee_key: cardtype_a+*type+by_name referee_id: ref_type: I is_present: -card_references_597: +card_references_574: id: 656 referer_id: 643 referee_key: cardtype_a+*type referee_id: ref_type: P is_present: -card_references_598: +card_references_575: id: 657 referer_id: 643 referee_key: "*type" referee_id: 21 ref_type: P is_present: -card_references_599: +card_references_576: id: 658 referer_id: 643 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_600: +card_references_577: id: 659 referer_id: 644 referee_key: cardtype_b+description referee_id: ref_type: I is_present: -card_references_601: +card_references_578: id: 660 referer_id: 644 referee_key: description referee_id: 12 ref_type: P is_present: -card_references_602: +card_references_579: id: 661 referer_id: 644 referee_key: cardtype_b+*type+by_name referee_id: ref_type: I is_present: -card_references_603: +card_references_580: id: 662 referer_id: 644 referee_key: cardtype_b+*type referee_id: 742 ref_type: P is_present: -card_references_604: +card_references_581: id: 663 referer_id: 644 referee_key: "*type" referee_id: 21 ref_type: P is_present: -card_references_605: +card_references_582: id: 664 referer_id: 644 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_606: +card_references_583: id: 665 referer_id: 645 referee_key: cardtype_c+description referee_id: ref_type: I is_present: -card_references_607: +card_references_584: id: 666 referer_id: 645 referee_key: description referee_id: 12 ref_type: P is_present: -card_references_608: +card_references_585: id: 667 referer_id: 645 referee_key: cardtype_c+*type+by_name referee_id: ref_type: I is_present: -card_references_609: +card_references_586: id: 668 referer_id: 645 referee_key: cardtype_c+*type referee_id: ref_type: P is_present: -card_references_610: +card_references_587: id: 669 referer_id: 645 referee_key: "*type" referee_id: 21 ref_type: P is_present: -card_references_611: +card_references_588: id: 670 referer_id: 645 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_612: +card_references_589: id: 671 referer_id: 646 referee_key: cardtype_d+description referee_id: ref_type: I is_present: -card_references_613: +card_references_590: id: 672 referer_id: 646 referee_key: description referee_id: 12 ref_type: P is_present: -card_references_614: +card_references_591: id: 673 referer_id: 646 referee_key: cardtype_d+*type+by_name referee_id: ref_type: I is_present: -card_references_615: +card_references_592: id: 674 referer_id: 646 referee_key: cardtype_d+*type referee_id: ref_type: P is_present: -card_references_616: +card_references_593: id: 675 referer_id: 646 referee_key: "*type" referee_id: 21 ref_type: P is_present: -card_references_617: +card_references_594: id: 676 referer_id: 646 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_618: +card_references_595: id: 677 referer_id: 647 referee_key: cardtype_e+description referee_id: ref_type: I is_present: -card_references_619: +card_references_596: id: 678 referer_id: 647 referee_key: description referee_id: 12 ref_type: P is_present: -card_references_620: +card_references_597: id: 679 referer_id: 647 referee_key: cardtype_e+*type+by_name referee_id: ref_type: I is_present: -card_references_621: +card_references_598: id: 680 referer_id: 647 referee_key: cardtype_e+*type referee_id: ref_type: P is_present: -card_references_622: +card_references_599: id: 681 referer_id: 647 referee_key: "*type" referee_id: 21 ref_type: P is_present: -card_references_623: +card_references_600: id: 682 referer_id: 647 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_624: +card_references_601: id: 683 referer_id: 648 referee_key: cardtype_f+description referee_id: ref_type: I is_present: -card_references_625: +card_references_602: id: 684 referer_id: 648 referee_key: description referee_id: 12 ref_type: P is_present: -card_references_626: +card_references_603: id: 685 referer_id: 648 referee_key: cardtype_f+*type+by_name referee_id: ref_type: I is_present: -card_references_627: +card_references_604: id: 686 referer_id: 648 referee_key: cardtype_f+*type referee_id: ref_type: P is_present: -card_references_628: +card_references_605: id: 687 referer_id: 648 referee_key: "*type" referee_id: 21 ref_type: P is_present: -card_references_629: +card_references_606: id: 688 referer_id: 648 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_630: +card_references_607: id: 689 referer_id: 655 referee_key: sample_cardtype+description referee_id: ref_type: I is_present: -card_references_631: +card_references_608: id: 690 referer_id: 655 referee_key: description referee_id: 12 ref_type: P is_present: -card_references_632: +card_references_609: id: 691 referer_id: 655 referee_key: sample_cardtype+*type+by_name referee_id: ref_type: I is_present: -card_references_633: +card_references_610: id: 692 referer_id: 655 referee_key: sample_cardtype+*type referee_id: ref_type: P is_present: -card_references_634: +card_references_611: id: 693 referer_id: 655 referee_key: "*type" referee_id: 21 ref_type: P is_present: -card_references_635: +card_references_612: id: 694 referer_id: 655 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_636: +card_references_613: id: 695 referer_id: 659 referee_key: sample_email_template+*from referee_id: ref_type: I is_present: -card_references_637: +card_references_614: id: 696 referer_id: 659 referee_key: "*from" referee_id: 159 ref_type: P is_present: -card_references_638: +card_references_615: id: 697 referer_id: 659 referee_key: sample_email_template+*to referee_id: ref_type: I is_present: -card_references_639: +card_references_616: id: 698 referer_id: 659 referee_key: "*to" referee_id: 156 ref_type: P is_present: -card_references_640: +card_references_617: id: 699 referer_id: 659 referee_key: sample_email_template+*cc referee_id: ref_type: I is_present: -card_references_641: +card_references_618: id: 700 referer_id: 659 referee_key: "*cc" referee_id: 162 ref_type: P is_present: -card_references_642: +card_references_619: id: 701 referer_id: 659 referee_key: sample_email_template+*bcc referee_id: ref_type: I is_present: -card_references_643: +card_references_620: id: 702 referer_id: 659 referee_key: "*bcc" referee_id: 165 ref_type: P is_present: -card_references_644: +card_references_621: id: 703 referer_id: 659 referee_key: sample_email_template+*subject referee_id: ref_type: I is_present: -card_references_645: +card_references_622: id: 704 referer_id: 659 referee_key: "*subject" referee_id: 168 ref_type: P is_present: -card_references_646: +card_references_623: id: 705 referer_id: 659 referee_key: sample_email_template+*html_message referee_id: ref_type: I is_present: -card_references_647: +card_references_624: id: 706 referer_id: 659 referee_key: "*html_message" referee_id: 172 ref_type: P is_present: -card_references_648: +card_references_625: id: 707 referer_id: 659 referee_key: sample_email_template+*text_message referee_id: ref_type: I is_present: -card_references_649: +card_references_626: id: 708 referer_id: 659 referee_key: "*text_message" referee_id: 173 ref_type: P is_present: -card_references_650: +card_references_627: id: 709 referer_id: 659 referee_key: sample_email_template+*attach referee_id: ref_type: I is_present: -card_references_651: +card_references_628: id: 710 referer_id: 659 referee_key: "*attach" referee_id: 169 ref_type: P is_present: -card_references_652: +card_references_629: id: 711 referer_id: 673 referee_key: sample_role+description referee_id: ref_type: I is_present: -card_references_653: +card_references_630: id: 712 referer_id: 673 referee_key: description referee_id: 12 ref_type: P is_present: -card_references_654: +card_references_631: id: 713 referer_id: 673 referee_key: sample_role+dashboard referee_id: ref_type: I is_present: -card_references_655: +card_references_632: id: 714 referer_id: 673 referee_key: dashboard referee_id: 523 ref_type: P is_present: -card_references_656: +card_references_633: id: 715 referer_id: 673 referee_key: sample_role+*member referee_id: ref_type: I is_present: -card_references_657: +card_references_634: id: 716 referer_id: 673 referee_key: "*member" referee_id: 179 ref_type: P is_present: -card_references_658: +card_references_635: id: 717 referer_id: 685 referee_key: z referee_id: 684 ref_type: L is_present: -card_references_659: +card_references_636: id: 718 referer_id: 686 referee_key: z referee_id: 684 ref_type: I is_present: -card_references_660: +card_references_637: id: 719 referer_id: 689 referee_key: a referee_id: 685 ref_type: L is_present: -card_references_661: +card_references_638: id: 720 referer_id: 689 referee_key: a+b referee_id: 687 ref_type: L is_present: -card_references_662: +card_references_639: id: 721 referer_id: 689 referee_key: t referee_id: 688 ref_type: L is_present: -card_references_663: +card_references_640: id: 722 referer_id: 690 referee_key: b referee_id: 686 ref_type: I is_present: -card_references_664: +card_references_641: id: 723 referer_id: 690 referee_key: a+b referee_id: 687 ref_type: I is_present: -card_references_665: +card_references_642: id: 724 referer_id: 690 referee_key: a referee_id: 685 ref_type: I is_present: -card_references_666: +card_references_643: id: 725 referer_id: 690 referee_key: t referee_id: 688 ref_type: I is_present: -card_references_667: +card_references_644: id: 726 referer_id: 693 referee_key: mister_x referee_id: ref_type: L is_present: -card_references_668: +card_references_645: id: 727 referer_id: 705 referee_key: blue referee_id: 704 ref_type: I is_present: -card_references_669: +card_references_646: id: 728 referer_id: 706 referee_key: blue referee_id: 704 ref_type: I is_present: -card_references_670: +card_references_647: id: 729 referer_id: 707 referee_key: blue referee_id: 704 ref_type: L is_present: -card_references_671: +card_references_648: id: 730 referer_id: 708 referee_key: blue referee_id: 704 ref_type: L is_present: -card_references_672: +card_references_649: id: 731 referer_id: 721 referee_key: self_aware+description referee_id: ref_type: I is_present: -card_references_673: +card_references_650: id: 732 referer_id: 721 referee_key: description referee_id: 12 ref_type: P is_present: -card_references_674: +card_references_651: id: 733 referer_id: 721 referee_key: self_aware+*type+by_name referee_id: ref_type: I is_present: -card_references_675: +card_references_652: id: 734 referer_id: 721 referee_key: self_aware+*type referee_id: ref_type: P is_present: -card_references_676: +card_references_653: id: 735 referer_id: 721 referee_key: "*type" referee_id: 21 ref_type: P is_present: -card_references_677: +card_references_654: id: 736 referer_id: 721 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_678: +card_references_655: id: 737 referer_id: 722 referee_key: user_form+description referee_id: ref_type: I is_present: -card_references_679: +card_references_656: id: 738 referer_id: 722 referee_key: description referee_id: 12 ref_type: P is_present: -card_references_680: +card_references_657: id: 739 referer_id: 722 referee_key: user_form+*type+by_name referee_id: ref_type: I is_present: -card_references_681: +card_references_658: id: 740 referer_id: 722 referee_key: user_form+*type referee_id: 725 ref_type: P is_present: -card_references_682: +card_references_659: id: 741 referer_id: 722 referee_key: "*type" referee_id: 21 ref_type: P is_present: -card_references_683: +card_references_660: id: 742 referer_id: 722 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_684: +card_references_661: id: 743 referer_id: 723 referee_key: book+description referee_id: ref_type: I is_present: -card_references_685: +card_references_662: id: 744 referer_id: 723 referee_key: description referee_id: 12 ref_type: P is_present: -card_references_686: +card_references_663: id: 745 referer_id: 723 referee_key: book+*type+by_name referee_id: ref_type: I is_present: -card_references_687: +card_references_664: id: 746 referer_id: 723 referee_key: book+*type referee_id: 727 ref_type: P is_present: -card_references_688: +card_references_665: id: 747 referer_id: 723 referee_key: "*type" referee_id: 21 ref_type: P is_present: -card_references_689: +card_references_666: id: 748 referer_id: 723 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_690: +card_references_667: id: 749 referer_id: 724 referee_key: author+description referee_id: ref_type: I is_present: -card_references_691: +card_references_668: id: 750 referer_id: 724 referee_key: description referee_id: 12 ref_type: P is_present: -card_references_692: +card_references_669: id: 751 referer_id: 724 referee_key: author+*type+by_name referee_id: ref_type: I is_present: -card_references_693: +card_references_670: id: 752 referer_id: 724 referee_key: author+*type referee_id: ref_type: P is_present: -card_references_694: +card_references_671: id: 753 referer_id: 724 referee_key: "*type" referee_id: 21 ref_type: P is_present: -card_references_695: +card_references_672: id: 754 referer_id: 724 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_696: +card_references_673: id: 755 referer_id: 726 referee_key: user_form+*type+*structure+name referee_id: ref_type: I is_present: -card_references_697: +card_references_674: id: 756 referer_id: 726 referee_key: name referee_id: ref_type: P is_present: -card_references_698: +card_references_675: id: 757 referer_id: 726 referee_key: user_form+*type+*structure+age referee_id: ref_type: I is_present: -card_references_699: +card_references_676: id: 758 referer_id: 726 referee_key: age referee_id: ref_type: P is_present: -card_references_700: +card_references_677: id: 759 referer_id: 726 referee_key: user_form+*type+*structure+description referee_id: ref_type: I is_present: -card_references_701: +card_references_678: id: 760 referer_id: 726 referee_key: description referee_id: 12 ref_type: P is_present: -card_references_702: +card_references_679: id: 768 referer_id: 728 referee_key: book+*type+*structure+author referee_id: ref_type: I is_present: -card_references_703: +card_references_680: id: 769 referer_id: 728 referee_key: author referee_id: 724 ref_type: P is_present: -card_references_704: +card_references_681: id: 770 referer_id: 728 referee_key: book+*type+*structure+illustrator referee_id: ref_type: I is_present: -card_references_705: +card_references_682: id: 771 referer_id: 728 referee_key: illustrator referee_id: ref_type: P is_present: -card_references_706: +card_references_683: id: 772 referer_id: 731 referee_key: iliad+author referee_id: ref_type: I is_present: -card_references_707: +card_references_684: id: 773 referer_id: 731 referee_key: author referee_id: 724 ref_type: P is_present: -card_references_708: +card_references_685: id: 774 referer_id: 731 referee_key: iliad+illustrator referee_id: ref_type: I is_present: -card_references_709: +card_references_686: id: 775 referer_id: 731 referee_key: illustrator referee_id: ref_type: P is_present: -card_references_710: +card_references_687: id: 776 referer_id: 732 referee_key: parry_hotter+author referee_id: ref_type: I is_present: -card_references_711: +card_references_688: id: 777 referer_id: 732 referee_key: author referee_id: 724 ref_type: P is_present: -card_references_712: +card_references_689: id: 778 referer_id: 732 referee_key: parry_hotter+illustrator referee_id: ref_type: I is_present: -card_references_713: +card_references_690: id: 779 referer_id: 732 referee_key: illustrator referee_id: ref_type: P is_present: -card_references_714: +card_references_691: id: 780 referer_id: 733 referee_key: 50_grade_of_shy+author referee_id: ref_type: I is_present: -card_references_715: +card_references_692: id: 781 referer_id: 733 referee_key: author referee_id: 724 ref_type: P is_present: -card_references_716: +card_references_693: id: 782 referer_id: 733 referee_key: 50_grade_of_shy+illustrator referee_id: ref_type: I is_present: -card_references_717: +card_references_694: id: 783 referer_id: 733 referee_key: illustrator referee_id: ref_type: P is_present: -card_references_718: +card_references_695: id: 792 referer_id: 737 referee_key: user referee_id: 18 ref_type: Q is_present: -card_references_719: +card_references_696: id: 802 referer_id: 738 referee_key: fruit+description referee_id: ref_type: I is_present: -card_references_720: +card_references_697: id: 803 referer_id: 738 referee_key: description referee_id: 12 ref_type: P is_present: -card_references_721: +card_references_698: id: 804 referer_id: 738 referee_key: fruit+*type+by_name referee_id: ref_type: I is_present: -card_references_722: +card_references_699: id: 805 referer_id: 738 referee_key: fruit+*type referee_id: 739 ref_type: P is_present: -card_references_723: +card_references_700: id: 806 referer_id: 738 referee_key: "*type" referee_id: 21 ref_type: P is_present: -card_references_724: +card_references_701: id: 807 referer_id: 738 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_725: +card_references_702: id: 808 referer_id: 740 referee_key: anyone referee_id: 180 ref_type: L is_present: -card_references_726: +card_references_703: id: 818 referer_id: 741 referee_key: administrator referee_id: 184 ref_type: L is_present: -card_references_727: +card_references_704: id: 828 referer_id: 743 referee_key: r3 referee_id: 767 ref_type: L is_present: -card_references_728: +card_references_705: id: 838 referer_id: 744 referee_key: r1 referee_id: 763 ref_type: L is_present: -card_references_729: +card_references_706: id: 849 referer_id: 750 referee_key: active referee_id: ref_type: L is_present: -card_references_730: +card_references_707: id: 850 referer_id: 756 referee_key: active referee_id: ref_type: L is_present: -card_references_731: +card_references_708: id: 851 referer_id: 762 referee_key: active referee_id: ref_type: L is_present: -card_references_732: +card_references_709: id: 852 referer_id: 186 referee_key: referee_id: 618 ref_type: L is_present: -card_references_733: +card_references_710: id: 853 referer_id: 186 referee_key: referee_id: 757 ref_type: L is_present: -card_references_734: +card_references_711: id: 854 referer_id: 193 referee_key: referee_id: 618 ref_type: L is_present: -card_references_735: +card_references_712: id: 855 referer_id: 193 referee_key: referee_id: 624 ref_type: L is_present: -card_references_736: +card_references_713: id: 856 referer_id: 193 referee_key: referee_id: 757 ref_type: L is_present: -card_references_737: +card_references_714: id: 857 referer_id: 198 referee_key: referee_id: 618 ref_type: L is_present: -card_references_738: +card_references_715: id: 858 referer_id: 763 referee_key: r1+description referee_id: ref_type: I is_present: -card_references_739: +card_references_716: id: 859 referer_id: 763 referee_key: description referee_id: 12 ref_type: P is_present: -card_references_740: +card_references_717: id: 860 referer_id: 763 referee_key: r1+dashboard referee_id: ref_type: I is_present: -card_references_741: +card_references_718: id: 861 referer_id: 763 referee_key: dashboard referee_id: 523 ref_type: P is_present: -card_references_742: +card_references_719: id: 862 referer_id: 763 referee_key: r1+*member referee_id: 764 ref_type: I is_present: -card_references_743: +card_references_720: id: 863 referer_id: 764 referee_key: referee_id: 745 ref_type: L is_present: -card_references_744: +card_references_721: id: 864 referer_id: 764 referee_key: referee_id: 751 ref_type: L is_present: -card_references_745: +card_references_722: id: 865 referer_id: 764 referee_key: referee_id: 757 ref_type: L is_present: -card_references_746: +card_references_723: id: 866 referer_id: 765 referee_key: r2+description referee_id: ref_type: I is_present: -card_references_747: +card_references_724: id: 867 referer_id: 765 referee_key: description referee_id: 12 ref_type: P is_present: -card_references_748: +card_references_725: id: 868 referer_id: 765 referee_key: r2+dashboard referee_id: ref_type: I is_present: -card_references_749: +card_references_726: id: 869 referer_id: 765 referee_key: dashboard referee_id: 523 ref_type: P is_present: -card_references_750: +card_references_727: id: 870 referer_id: 765 referee_key: r2+*member referee_id: 766 ref_type: I is_present: -card_references_751: +card_references_728: id: 871 referer_id: 766 referee_key: referee_id: 745 ref_type: L is_present: -card_references_752: +card_references_729: id: 872 referer_id: 766 referee_key: referee_id: 751 ref_type: L is_present: -card_references_753: +card_references_730: id: 873 referer_id: 767 referee_key: r3+description referee_id: ref_type: I is_present: -card_references_754: +card_references_731: id: 874 referer_id: 767 referee_key: description referee_id: 12 ref_type: P is_present: -card_references_755: +card_references_732: id: 875 referer_id: 767 referee_key: r3+dashboard referee_id: ref_type: I is_present: -card_references_756: +card_references_733: id: 876 referer_id: 767 referee_key: dashboard referee_id: 523 ref_type: P is_present: -card_references_757: +card_references_734: id: 877 referer_id: 767 referee_key: r3+*member referee_id: 768 ref_type: I is_present: -card_references_758: +card_references_735: id: 878 referer_id: 768 referee_key: referee_id: 745 ref_type: L is_present: -card_references_759: +card_references_736: id: 879 referer_id: 769 referee_key: r4+description referee_id: ref_type: I is_present: -card_references_760: +card_references_737: id: 880 referer_id: 769 referee_key: description referee_id: 12 ref_type: P is_present: -card_references_761: +card_references_738: id: 881 referer_id: 769 referee_key: r4+dashboard referee_id: ref_type: I is_present: -card_references_762: +card_references_739: id: 882 referer_id: 769 referee_key: dashboard referee_id: 523 ref_type: P is_present: -card_references_763: +card_references_740: id: 883 referer_id: 769 referee_key: r4+*member referee_id: 770 ref_type: I is_present: -card_references_764: +card_references_741: id: 884 referer_id: 770 referee_key: referee_id: 751 ref_type: L is_present: -card_references_765: +card_references_742: id: 885 referer_id: 770 referee_key: referee_id: 757 ref_type: L is_present: -card_references_766: +card_references_743: id: 886 referer_id: 772 referee_key: signup_decko_org referee_id: ref_type: L is_present: -card_references_767: +card_references_744: id: 887 referer_id: 775 referee_key: yeti_skin referee_id: 412 ref_type: L is_present: -card_references_768: +card_references_745: id: 888 referer_id: 779 referee_key: customized_yeti_skin referee_id: 774 ref_type: L is_present: -card_references_769: +card_references_746: id: 900 referer_id: 782 referee_key: bootstrap_default_skin referee_id: ref_type: L is_present: -card_references_770: +card_references_747: id: 901 referer_id: 782 referee_key: old_custom_css referee_id: 781 ref_type: L is_present: -card_references_771: +card_references_748: id: 913 referer_id: 786 referee_key: decko_bot+*account referee_id: 249 ref_type: L is_present: -card_references_772: +card_references_749: id: 914 referer_id: 787 referee_key: decko_bot+*account referee_id: 249 ref_type: L is_present: -card_references_773: +card_references_750: id: 915 referer_id: 788 referee_key: user referee_id: 18 ref_type: L is_present: -card_references_774: +card_references_751: id: 916 referer_id: 789 referee_key: "*changed_card" referee_id: ref_type: L is_present: -card_references_775: +card_references_752: id: 917 referer_id: 795 referee_key: active referee_id: ref_type: L is_present: -card_references_776: +card_references_753: id: 918 referer_id: 801 referee_key: active referee_id: ref_type: L is_present: -card_references_777: +card_references_754: id: 919 referer_id: 807 referee_key: active referee_id: ref_type: L is_present: -card_references_778: +card_references_755: id: 920 referer_id: 813 referee_key: active referee_id: ref_type: L is_present: -card_references_779: +card_references_756: id: 921 referer_id: 819 referee_key: active referee_id: ref_type: L is_present: -card_references_780: +card_references_757: id: 922 referer_id: 825 referee_key: active referee_id: ref_type: L is_present: -card_references_781: +card_references_758: id: 923 referer_id: 826 referee_key: optic+description referee_id: ref_type: I is_present: -card_references_782: +card_references_759: id: 924 referer_id: 826 referee_key: description referee_id: 12 ref_type: P is_present: -card_references_783: +card_references_760: id: 925 referer_id: 826 referee_key: optic+*type+by_name referee_id: ref_type: I is_present: -card_references_784: +card_references_761: id: 926 referer_id: 826 referee_key: optic+*type referee_id: 859 ref_type: P is_present: -card_references_785: +card_references_762: id: 927 referer_id: 826 referee_key: "*type" referee_id: 21 ref_type: P is_present: -card_references_786: +card_references_763: id: 928 referer_id: 826 referee_key: by_name referee_id: 104 ref_type: P is_present: -card_references_787: +card_references_764: id: 929 referer_id: 831 referee_key: john_following+her referee_id: 833 ref_type: I is_present: -card_references_788: +card_references_765: id: 930 referer_id: 831 referee_key: her referee_id: 832 ref_type: P is_present: -card_references_789: +card_references_766: id: 931 referer_id: 837 referee_key: sunglass+tint referee_id: 840 ref_type: I is_present: -card_references_790: +card_references_767: id: 932 referer_id: 837 referee_key: tint referee_id: 839 ref_type: P is_present: -card_references_791: +card_references_768: id: 933 referer_id: 837 referee_key: sunglass+len referee_id: ref_type: I is_present: -card_references_792: +card_references_769: id: 934 referer_id: 837 referee_key: len referee_id: 835 ref_type: P is_present: -card_references_793: +card_references_770: id: 935 referer_id: 838 referee_key: google_glass+price referee_id: ref_type: I is_present: -card_references_794: +card_references_771: id: 936 referer_id: 838 referee_key: price referee_id: 841 ref_type: P is_present: -card_references_795: +card_references_772: id: 949 referer_id: 847 referee_key: "*nest" referee_id: 130 ref_type: L is_present: -card_references_796: +card_references_773: id: 950 referer_id: 847 referee_key: sunglass+*self+*follow_field+price referee_id: ref_type: L is_present: -card_references_797: +card_references_774: id: 951 referer_id: 847 referee_key: price referee_id: 841 ref_type: P is_present: -card_references_798: +card_references_775: id: 952 referer_id: 847 referee_key: sunglass+*self+*follow_field+producer referee_id: ref_type: L is_present: -card_references_799: +card_references_776: id: 953 referer_id: 847 referee_key: producer referee_id: ref_type: P is_present: -card_references_800: +card_references_777: id: 954 referer_id: 850 referee_key: "*alway" referee_id: 463 ref_type: L is_present: -card_references_801: +card_references_778: id: 968 referer_id: 853 referee_key: "*alway" referee_id: 463 ref_type: L is_present: -card_references_802: +card_references_779: id: 969 referer_id: 856 referee_key: "*alway" referee_id: 463 ref_type: L is_present: -card_references_803: +card_references_780: id: 970 referer_id: 858 referee_key: "*alway" referee_id: 463 ref_type: L is_present: -card_references_804: +card_references_781: id: 971 referer_id: 861 referee_key: "*alway" referee_id: 463 ref_type: L is_present: -card_references_805: +card_references_782: id: 972 referer_id: 863 referee_key: "*alway" referee_id: 463 ref_type: L is_present: -card_references_806: +card_references_783: id: 973 referer_id: 865 referee_key: "*alway" referee_id: 463 ref_type: L is_present: -card_references_807: +card_references_784: id: 974 referer_id: 868 referee_key: "*alway" referee_id: 463 ref_type: L is_present: -card_references_808: +card_references_785: id: 975 referer_id: 870 referee_key: "*alway" referee_id: 463 ref_type: L is_present: -card_references_809: +card_references_786: id: 976 referer_id: 873 referee_key: "*alway" referee_id: 463 ref_type: L is_present: -card_references_810: +card_references_787: id: 977 referer_id: 877 referee_key: "*alway" referee_id: 463 ref_type: L is_present: -card_references_811: +card_references_788: id: 978 referer_id: 879 referee_key: "*created" referee_id: 109 ref_type: L is_present: -card_references_812: +card_references_789: id: 979 referer_id: 879 referee_key: "*edited" referee_id: 112 ref_type: L is_present: -card_references_813: +card_references_790: id: 980 referer_id: 881 referee_key: "*alway" referee_id: 463 ref_type: L is_present: -card_references_814: +card_references_791: id: 981 referer_id: 883 referee_key: "*alway" referee_id: 463 ref_type: L is_present: -card_references_815: +card_references_792: id: 982 referer_id: 885 referee_key: "*created" referee_id: 109 ref_type: L is_present: -card_references_816: +card_references_793: id: 983 referer_id: 885 referee_key: "*edited" referee_id: 112 ref_type: L is_present: -card_references_817: +card_references_794: id: 984 referer_id: 886 referee_key: card_with_field+field_1 referee_id: 888 ref_type: I is_present: -card_references_818: +card_references_795: id: 985 referer_id: 886 referee_key: card_with_field+field_2 referee_id: 890 ref_type: I is_present: -card_references_819: +card_references_796: id: 986 referer_id: 891 referee_key: card_with_field_and_admin_field+field_1 referee_id: 892 ref_type: I is_present: -card_references_820: +card_references_797: id: 987 referer_id: 891 referee_key: card_with_field_and_admin_field+admin_field_1 referee_id: 894 ref_type: I is_present: -card_references_821: +card_references_798: id: 988 referer_id: 895 referee_key: admin_card_with_field_and_admin_field+field_1 referee_id: 896 ref_type: I is_present: -card_references_822: +card_references_799: id: 989 referer_id: 895 referee_key: admin_card_with_field_and_admin_field+admin_field_1 referee_id: 897 ref_type: I is_present: -card_references_823: +card_references_800: id: 990 referer_id: 898 referee_key: admin_card_with_admin_field+admin_field_1 referee_id: 899 ref_type: I is_present: -card_references_824: +card_references_801: id: 991 referer_id: 898 referee_key: admin_card_with_admin_field+admin_field_2 referee_id: 901 ref_type: I is_present: -card_references_825: +card_references_802: id: 992 referer_id: 903 referee_key: administrator referee_id: 184 ref_type: L is_present: -card_references_826: +card_references_803: id: 1006 referer_id: 905 referee_key: administrator referee_id: 184 ref_type: L is_present: -card_references_827: +card_references_804: id: 1007 referer_id: 907 referee_key: administrator referee_id: 184 ref_type: L is_present: -card_references_828: +card_references_805: id: 1008 referer_id: 909 referee_key: administrator referee_id: 184 ref_type: L is_present: -card_references_829: +card_references_806: id: 1009 referer_id: 911 referee_key: anyone referee_id: 180 ref_type: L is_present: -card_references_830: +card_references_807: id: 1011 referer_id: 913 referee_key: horizontal referee_id: 916 ref_type: L is_present: -card_references_831: +card_references_808: id: 1012 referer_id: 913 referee_key: vertical referee_id: 917 ref_type: L is_present: -card_references_832: +card_references_809: id: 1013 referer_id: 915 referee_key: lay_out referee_id: 912 ref_type: L is_present: -card_references_833: - id: 1014 +card_references_810: + id: 1038 + referer_id: 155 + referee_key: email_template+*type+*structure+*from + referee_id: + ref_type: I + is_present: +card_references_811: + id: 1039 + referer_id: 155 + referee_key: "*from" + referee_id: 159 + ref_type: P + is_present: +card_references_812: + id: 1040 + referer_id: 155 + referee_key: email_template+*type+*structure+*to + referee_id: + ref_type: I + is_present: +card_references_813: + id: 1041 + referer_id: 155 + referee_key: "*to" + referee_id: 156 + ref_type: P + is_present: +card_references_814: + id: 1042 + referer_id: 155 + referee_key: email_template+*type+*structure+*cc + referee_id: + ref_type: I + is_present: +card_references_815: + id: 1043 + referer_id: 155 + referee_key: "*cc" + referee_id: 162 + ref_type: P + is_present: +card_references_816: + id: 1044 + referer_id: 155 + referee_key: email_template+*type+*structure+*bcc + referee_id: + ref_type: I + is_present: +card_references_817: + id: 1045 + referer_id: 155 + referee_key: "*bcc" + referee_id: 165 + ref_type: P + is_present: +card_references_818: + id: 1046 + referer_id: 155 + referee_key: email_template+*type+*structure+*subject + referee_id: + ref_type: I + is_present: +card_references_819: + id: 1047 + referer_id: 155 + referee_key: "*subject" + referee_id: 168 + ref_type: P + is_present: +card_references_820: + id: 1048 + referer_id: 155 + referee_key: email_template+*type+*structure+*html_message + referee_id: + ref_type: I + is_present: +card_references_821: + id: 1049 + referer_id: 155 + referee_key: "*html_message" + referee_id: 172 + ref_type: P + is_present: +card_references_822: + id: 1050 + referer_id: 155 + referee_key: email_template+*type+*structure+*text_message + referee_id: + ref_type: I + is_present: +card_references_823: + id: 1051 + referer_id: 155 + referee_key: "*text_message" + referee_id: 173 + ref_type: P + is_present: +card_references_824: + id: 1052 + referer_id: 155 + referee_key: email_template+*type+*structure+*attach + referee_id: + ref_type: I + is_present: +card_references_825: + id: 1053 + referer_id: 155 + referee_key: "*attach" + referee_id: 169 + ref_type: P + is_present: +card_references_826: + id: 1054 + referer_id: 481 + referee_key: "*structure" + referee_id: 28 + ref_type: L + is_present: +card_references_827: + id: 1055 referer_id: 481 referee_key: "*layout" referee_id: 492 ref_type: L is_present: -card_references_834: - id: 1015 +card_references_828: + id: 1056 referer_id: 481 referee_key: "*read" referee_id: 9 ref_type: L is_present: -card_references_835: - id: 1016 +card_references_829: + id: 1057 referer_id: 481 referee_key: "*follow" referee_id: 453 ref_type: L is_present: -card_references_836: - id: 1017 +card_references_830: + id: 1058 referer_id: 481 referee_key: "*follow_field" referee_id: 462 ref_type: L is_present: -card_references_837: - id: 1018 +card_references_831: + id: 1059 referer_id: 481 referee_key: "*default" referee_id: 8 ref_type: L is_present: -card_references_838: - id: 1019 +card_references_832: + id: 1060 referer_id: 481 referee_key: "*style" referee_id: 347 ref_type: L is_present: -card_references_839: - id: 1020 +card_references_833: + id: 1061 referer_id: 481 referee_key: "*update" referee_id: 66 ref_type: L is_present: -card_references_840: - id: 1021 +card_references_834: + id: 1062 referer_id: 481 referee_key: "*create" referee_id: 65 ref_type: L is_present: -card_references_841: - id: 1022 +card_references_835: + id: 1063 referer_id: 481 referee_key: "*content_option" referee_id: 59 ref_type: L is_present: -card_references_842: - id: 1023 - referer_id: 481 - referee_key: "*structure" - referee_id: 28 - ref_type: L - is_present: -card_references_843: - id: 1024 +card_references_836: + id: 1064 referer_id: 481 referee_key: "*script" referee_id: 301 ref_type: L is_present: -card_references_844: - id: 1025 +card_references_837: + id: 1065 referer_id: 481 referee_key: "*captcha" referee_id: 512 ref_type: L is_present: -card_references_845: - id: 1026 +card_references_838: + id: 1066 referer_id: 481 referee_key: "*input_type" referee_id: 148 ref_type: L is_present: +card_references_839: + id: 1070 + referer_id: 529 + referee_key: help_desk + referee_id: 196 + ref_type: I + is_present: +card_references_840: + id: 1071 + referer_id: 529 + referee_key: "*account" + referee_id: 205 + ref_type: I + is_present: +card_references_841: + id: 1072 + referer_id: 529 + referee_key: "*help" + referee_id: 89 + ref_type: I + is_present: +card_references_842: + id: 1073 + referer_id: 529 + referee_key: email_template + referee_id: 152 + ref_type: L + is_present: +card_references_843: + id: 1074 + referer_id: 529 + referee_key: email_template+*type+by_update + referee_id: + ref_type: I + is_present: +card_references_844: + id: 1075 + referer_id: 529 + referee_key: email_template+*type + referee_id: 154 + ref_type: P + is_present: +card_references_845: + id: 1076 + referer_id: 529 + referee_key: by_update + referee_id: 106 + ref_type: P + is_present: card_references_846: - id: 1036 + id: 1078 referer_id: 496 referee_key: "*getting_started_link" referee_id: 526 ref_type: L is_present: card_references_847: - id: 1037 + id: 1079 referer_id: 496 referee_key: "*recent" referee_id: 100 diff --git a/mod/defaults/data/fixtures/test/cards.yml b/mod/defaults/data/fixtures/test/cards.yml index 2281269b02..953f49c00c 100644 --- a/mod/defaults/data/fixtures/test/cards.yml +++ b/mod/defaults/data/fixtures/test/cards.yml @@ -2785,7 +2785,7 @@ cards_150: right_id: 59 current_revision_id: created_at: 2024-05-21 23:24:15.000000000 Z - updated_at: 2024-05-21 23:24:15.000000000 Z + updated_at: 2025-02-04 21:04:30.186566000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2821,7 +2821,7 @@ cards_152: right_id: current_revision_id: created_at: 2024-05-21 23:24:15.000000000 Z - updated_at: 2024-05-21 23:24:15.000000000 Z + updated_at: 2025-02-04 20:17:58.491081000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -2880,7 +2880,7 @@ cards_155: right_id: 28 current_revision_id: created_at: 2024-05-21 23:24:15.000000000 Z - updated_at: 2024-05-21 23:24:15.000000000 Z + updated_at: 2025-02-04 20:17:58.435197000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -2888,10 +2888,9 @@ cards_155: references_expired: trash: 0 type_id: 57 - db_content: "

    \n {{+*from | labeled | link}} \n {{+*to | labeled | link}} \n - \ {{+*cc | labeled | link}}\n {{+*bcc | labeled | link}}\n {{+*subject | titled}}\n - \ {{+*html message | titled}} \n {{+*text message | titled}}\n {{+*attach | - titled}}\n

    \"" + db_content: "{{+:from | labeled | link}} \n{{+:to | labeled | link}} \n{{+:cc | + labeled | link}}\n{{+:bcc | labeled | link}}\n{{+:subject | titled}}\n{{+:html_message + | titled}} \n{{+:text_message | titled}}\n{{+:attach | titled}}" cards_156: id: 156 name: "*to" @@ -3635,7 +3634,7 @@ cards_196: right_id: current_revision_id: created_at: 2024-05-21 23:24:17.000000000 Z - updated_at: 2024-08-12 16:20:25.000000000 Z + updated_at: 2025-02-04 20:18:00.346217000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -6877,7 +6876,7 @@ cards_363: id: 363 name: key: - codename: cerulean_skin_image + codename: left_id: 360 right_id: 284 current_revision_id: @@ -6890,7 +6889,7 @@ cards_363: references_expired: trash: 0 type_id: 284 - db_content: ":cerulean_skin_image/bootstrap.png" + db_content: ":cerulean_skin+:image/bootstrap.png" cards_364: id: 364 name: cosmo skin @@ -6949,7 +6948,7 @@ cards_367: id: 367 name: key: - codename: cosmo_skin_image + codename: left_id: 364 right_id: 284 current_revision_id: @@ -6962,7 +6961,7 @@ cards_367: references_expired: trash: 0 type_id: 284 - db_content: ":cosmo_skin_image/bootstrap.png" + db_content: ":cosmo_skin+:image/bootstrap.png" cards_368: id: 368 name: cyborg skin @@ -7021,7 +7020,7 @@ cards_371: id: 371 name: key: - codename: cyborg_skin_image + codename: left_id: 368 right_id: 284 current_revision_id: @@ -7034,7 +7033,7 @@ cards_371: references_expired: trash: 0 type_id: 284 - db_content: ":cyborg_skin_image/bootstrap.png" + db_content: ":cyborg_skin+:image/bootstrap.png" cards_372: id: 372 name: darkly skin @@ -7093,7 +7092,7 @@ cards_375: id: 375 name: key: - codename: darkly_skin_image + codename: left_id: 372 right_id: 284 current_revision_id: @@ -7106,7 +7105,7 @@ cards_375: references_expired: trash: 0 type_id: 284 - db_content: ":darkly_skin_image/bootstrap.png" + db_content: ":darkly_skin+:image/bootstrap.png" cards_376: id: 376 name: flatly skin @@ -7165,7 +7164,7 @@ cards_379: id: 379 name: key: - codename: flatly_skin_image + codename: left_id: 376 right_id: 284 current_revision_id: @@ -7178,7 +7177,7 @@ cards_379: references_expired: trash: 0 type_id: 284 - db_content: ":flatly_skin_image/bootstrap.png" + db_content: ":flatly_skin+:image/bootstrap.png" cards_380: id: 380 name: journal skin @@ -7237,7 +7236,7 @@ cards_383: id: 383 name: key: - codename: journal_skin_image + codename: left_id: 380 right_id: 284 current_revision_id: @@ -7250,7 +7249,7 @@ cards_383: references_expired: trash: 0 type_id: 284 - db_content: ":journal_skin_image/bootstrap.png" + db_content: ":journal_skin+:image/bootstrap.png" cards_384: id: 384 name: lumen skin @@ -7309,7 +7308,7 @@ cards_387: id: 387 name: key: - codename: lumen_skin_image + codename: left_id: 384 right_id: 284 current_revision_id: @@ -7322,7 +7321,7 @@ cards_387: references_expired: trash: 0 type_id: 284 - db_content: ":lumen_skin_image/bootstrap.png" + db_content: ":lumen_skin+:image/bootstrap.png" cards_388: id: 388 name: sandstone skin @@ -7381,7 +7380,7 @@ cards_391: id: 391 name: key: - codename: sandstone_skin_image + codename: left_id: 388 right_id: 284 current_revision_id: @@ -7394,7 +7393,7 @@ cards_391: references_expired: trash: 0 type_id: 284 - db_content: ":sandstone_skin_image/bootstrap.png" + db_content: ":sandstone_skin+:image/bootstrap.png" cards_392: id: 392 name: simplex skin @@ -7453,7 +7452,7 @@ cards_395: id: 395 name: key: - codename: simplex_skin_image + codename: left_id: 392 right_id: 284 current_revision_id: @@ -7466,7 +7465,7 @@ cards_395: references_expired: trash: 0 type_id: 284 - db_content: ":simplex_skin_image/bootstrap.png" + db_content: ":simplex_skin+:image/bootstrap.png" cards_396: id: 396 name: slate skin @@ -7525,7 +7524,7 @@ cards_399: id: 399 name: key: - codename: slate_skin_image + codename: left_id: 396 right_id: 284 current_revision_id: @@ -7538,7 +7537,7 @@ cards_399: references_expired: trash: 0 type_id: 284 - db_content: ":slate_skin_image/bootstrap.png" + db_content: ":slate_skin+:image/bootstrap.png" cards_400: id: 400 name: spacelab skin @@ -7597,7 +7596,7 @@ cards_403: id: 403 name: key: - codename: spacelab_skin_image + codename: left_id: 400 right_id: 284 current_revision_id: @@ -7610,7 +7609,7 @@ cards_403: references_expired: trash: 0 type_id: 284 - db_content: ":spacelab_skin_image/bootstrap.png" + db_content: ":spacelab_skin+:image/bootstrap.png" cards_404: id: 404 name: superhero skin @@ -7669,7 +7668,7 @@ cards_407: id: 407 name: key: - codename: superhero_skin_image + codename: left_id: 404 right_id: 284 current_revision_id: @@ -7682,7 +7681,7 @@ cards_407: references_expired: trash: 0 type_id: 284 - db_content: ":superhero_skin_image/bootstrap.png" + db_content: ":superhero_skin+:image/bootstrap.png" cards_408: id: 408 name: united skin @@ -7741,7 +7740,7 @@ cards_411: id: 411 name: key: - codename: united_skin_image + codename: left_id: 408 right_id: 284 current_revision_id: @@ -7754,7 +7753,7 @@ cards_411: references_expired: trash: 0 type_id: 284 - db_content: ":united_skin_image/bootstrap.png" + db_content: ":united_skin+:image/bootstrap.png" cards_412: id: 412 name: yeti skin @@ -7813,7 +7812,7 @@ cards_415: id: 415 name: key: - codename: yeti_skin_image + codename: left_id: 412 right_id: 284 current_revision_id: @@ -7826,7 +7825,7 @@ cards_415: references_expired: trash: 0 type_id: 284 - db_content: ":yeti_skin_image/bootstrap.png" + db_content: ":yeti_skin+:image/bootstrap.png" cards_416: id: 416 name: litera skin @@ -7885,7 +7884,7 @@ cards_419: id: 419 name: key: - codename: litera_skin_image + codename: left_id: 416 right_id: 284 current_revision_id: @@ -7898,7 +7897,7 @@ cards_419: references_expired: trash: 0 type_id: 284 - db_content: ":litera_skin_image/bootstrap.png" + db_content: ":litera_skin+:image/bootstrap.png" cards_420: id: 420 name: lux skin @@ -7957,7 +7956,7 @@ cards_423: id: 423 name: key: - codename: lux_skin_image + codename: left_id: 420 right_id: 284 current_revision_id: @@ -7970,7 +7969,7 @@ cards_423: references_expired: trash: 0 type_id: 284 - db_content: ":lux_skin_image/bootstrap.png" + db_content: ":lux_skin+:image/bootstrap.png" cards_424: id: 424 name: materia skin @@ -8029,7 +8028,7 @@ cards_427: id: 427 name: key: - codename: materia_skin_image + codename: left_id: 424 right_id: 284 current_revision_id: @@ -8042,7 +8041,7 @@ cards_427: references_expired: trash: 0 type_id: 284 - db_content: ":materia_skin_image/bootstrap.png" + db_content: ":materia_skin+:image/bootstrap.png" cards_428: id: 428 name: minty skin @@ -8101,7 +8100,7 @@ cards_431: id: 431 name: key: - codename: minty_skin_image + codename: left_id: 428 right_id: 284 current_revision_id: @@ -8114,7 +8113,7 @@ cards_431: references_expired: trash: 0 type_id: 284 - db_content: ":minty_skin_image/bootstrap.png" + db_content: ":minty_skin+:image/bootstrap.png" cards_432: id: 432 name: pulse skin @@ -8173,7 +8172,7 @@ cards_435: id: 435 name: key: - codename: pulse_skin_image + codename: left_id: 432 right_id: 284 current_revision_id: @@ -8186,7 +8185,7 @@ cards_435: references_expired: trash: 0 type_id: 284 - db_content: ":pulse_skin_image/bootstrap.png" + db_content: ":pulse_skin+:image/bootstrap.png" cards_436: id: 436 name: solar skin @@ -8245,7 +8244,7 @@ cards_439: id: 439 name: key: - codename: solar_skin_image + codename: left_id: 436 right_id: 284 current_revision_id: @@ -8258,7 +8257,7 @@ cards_439: references_expired: trash: 0 type_id: 284 - db_content: ":solar_skin_image/bootstrap.png" + db_content: ":solar_skin+:image/bootstrap.png" cards_440: id: 440 name: sketchy skin @@ -8317,7 +8316,7 @@ cards_443: id: 443 name: key: - codename: sketchy_skin_image + codename: left_id: 440 right_id: 284 current_revision_id: @@ -8330,7 +8329,7 @@ cards_443: references_expired: trash: 0 type_id: 284 - db_content: ":sketchy_skin_image/bootstrap.png" + db_content: ":sketchy_skin+:image/bootstrap.png" cards_444: id: 444 name: @@ -8353,12 +8352,12 @@ cards_445: id: 445 name: key: - codename: all_style_asset_output + codename: left_id: 444 right_id: 299 current_revision_id: created_at: 2024-05-21 23:25:44.000000000 Z - updated_at: 2024-12-13 17:35:34.104980000 Z + updated_at: 2025-02-04 21:04:51.807999000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -8366,7 +8365,7 @@ cards_445: references_expired: trash: 0 type_id: 282 - db_content: ":all_style_asset_output/defaults.css" + db_content: ":all+:style+:asset_output/defaults.css" cards_446: id: 446 name: discussion @@ -9038,7 +9037,7 @@ cards_481: right_id: current_revision_id: created_at: 2024-05-21 23:25:46.000000000 Z - updated_at: 2024-08-12 16:20:40.000000000 Z + updated_at: 2025-02-04 20:17:58.497071000 Z creator_id: 1 updater_id: 1 read_rule_class: "*self" @@ -9047,6 +9046,7 @@ cards_481: trash: 0 type_id: 2 db_content: |- + *structure *layout *read *follow @@ -9056,7 +9056,6 @@ cards_481: *update *create *content options - *structure *script *captcha *input type @@ -9324,7 +9323,7 @@ cards_496: right_id: current_revision_id: created_at: 2024-05-21 23:25:47.000000000 Z - updated_at: 2024-12-13 17:35:18.422093000 Z + updated_at: 2025-02-04 21:04:32.301700000 Z creator_id: 1 updater_id: 1 read_rule_class: "*self" @@ -9344,7 +9343,7 @@ cards_497: right_id: current_revision_id: created_at: 2024-05-21 23:25:47.000000000 Z - updated_at: 2024-12-13 17:35:18.435657000 Z + updated_at: 2025-02-04 21:04:32.316906000 Z creator_id: 1 updater_id: 1 read_rule_class: "*self" @@ -9551,7 +9550,7 @@ cards_507: right_id: current_revision_id: created_at: 2024-05-21 23:25:48.000000000 Z - updated_at: 2024-12-13 17:35:18.435657000 Z + updated_at: 2025-02-04 21:04:32.316906000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -9574,7 +9573,7 @@ cards_508: right_id: current_revision_id: created_at: 2024-05-21 23:25:48.000000000 Z - updated_at: 2024-12-13 17:35:18.435657000 Z + updated_at: 2025-02-04 21:04:32.316906000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -9597,7 +9596,7 @@ cards_509: right_id: current_revision_id: created_at: 2024-05-21 23:25:48.000000000 Z - updated_at: 2024-12-13 17:35:18.435657000 Z + updated_at: 2025-02-04 21:04:32.316906000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -9620,7 +9619,7 @@ cards_510: right_id: current_revision_id: created_at: 2024-05-21 23:25:48.000000000 Z - updated_at: 2024-12-13 17:35:18.435657000 Z + updated_at: 2025-02-04 21:04:32.316906000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -9644,7 +9643,7 @@ cards_511: right_id: current_revision_id: created_at: 2024-05-21 23:25:48.000000000 Z - updated_at: 2024-12-13 17:35:18.435657000 Z + updated_at: 2025-02-04 21:04:32.316906000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all" @@ -10013,7 +10012,7 @@ cards_529: right_id: 523 current_revision_id: created_at: 2024-05-21 23:25:50.000000000 Z - updated_at: 2024-08-12 16:20:25.000000000 Z + updated_at: 2025-02-04 20:18:00.346217000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -10028,8 +10027,8 @@ cards_529:

    Help Texts

    {{:help|bar}}

    Emails

    -

    Here are the current [[Email Templates|Email templates]] for your site.

    -

    {{Email Templates+*type+by update|content}}

    +

    Here are the current [[:email_template|Email templates]] for your site.

    +

    {{:email_template+:type+:by_update|content}}

    cards_530: id: 530 name: @@ -10290,12 +10289,12 @@ cards_539: id: 539 name: key: - codename: mod_format_script_asset_output + codename: left_id: 538 right_id: 299 current_revision_id: created_at: 2024-05-21 23:25:53.000000000 Z - updated_at: 2024-12-13 17:35:33.902526000 Z + updated_at: 2025-02-04 21:04:50.953074000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -10303,7 +10302,7 @@ cards_539: references_expired: trash: 0 type_id: 282 - db_content: ":mod_format_script_asset_output/format.js" + db_content: ":mod_format+:script+:asset_output/format.js" cards_540: id: 540 name: @@ -10362,12 +10361,12 @@ cards_543: id: 543 name: key: - codename: mod_list_script_asset_output + codename: left_id: 542 right_id: 299 current_revision_id: created_at: 2024-05-21 23:25:53.000000000 Z - updated_at: 2024-12-13 17:35:33.917644000 Z + updated_at: 2025-02-04 21:04:50.968683000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -10375,7 +10374,7 @@ cards_543: references_expired: trash: 0 type_id: 282 - db_content: ":mod_list_script_asset_output/list.js" + db_content: ":mod_list+:script+:asset_output/list.js" cards_544: id: 544 name: @@ -10524,12 +10523,12 @@ cards_552: id: 552 name: key: - codename: mod_search_script_asset_output + codename: left_id: 551 right_id: 299 current_revision_id: created_at: 2024-05-21 23:25:54.000000000 Z - updated_at: 2024-12-13 17:35:33.930848000 Z + updated_at: 2025-02-04 21:04:51.000645000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -10537,7 +10536,7 @@ cards_552: references_expired: trash: 0 type_id: 282 - db_content: ":mod_search_script_asset_output/search.js" + db_content: ":mod_search+:script+:asset_output/search.js" cards_553: id: 553 name: @@ -10596,12 +10595,12 @@ cards_556: id: 556 name: key: - codename: mod_rules_script_asset_output + codename: left_id: 555 right_id: 299 current_revision_id: created_at: 2024-05-21 23:25:55.000000000 Z - updated_at: 2024-12-13 17:35:33.941873000 Z + updated_at: 2025-02-04 21:04:51.015970000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -10609,7 +10608,7 @@ cards_556: references_expired: trash: 0 type_id: 282 - db_content: ":mod_rules_script_asset_output/rules.js" + db_content: ":mod_rules+:script+:asset_output/rules.js" cards_557: id: 557 name: @@ -10668,12 +10667,12 @@ cards_560: id: 560 name: key: - codename: mod_edit_script_asset_output + codename: left_id: 559 right_id: 299 current_revision_id: created_at: 2024-05-21 23:25:56.000000000 Z - updated_at: 2024-12-13 17:35:33.951799000 Z + updated_at: 2025-02-04 21:04:51.110160000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -10681,7 +10680,7 @@ cards_560: references_expired: trash: 0 type_id: 282 - db_content: ":mod_edit_script_asset_output/edit.js" + db_content: ":mod_edit+:script+:asset_output/edit.js" cards_561: id: 561 name: @@ -10776,12 +10775,12 @@ cards_566: id: 566 name: key: - codename: mod_account_script_asset_output + codename: left_id: 565 right_id: 299 current_revision_id: created_at: 2024-05-21 23:25:56.000000000 Z - updated_at: 2024-12-13 17:35:33.963272000 Z + updated_at: 2025-02-04 21:04:51.161619000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -10789,7 +10788,7 @@ cards_566: references_expired: trash: 0 type_id: 282 - db_content: ":mod_account_script_asset_output/account.js" + db_content: ":mod_account+:script+:asset_output/account.js" cards_567: id: 567 name: @@ -10884,12 +10883,12 @@ cards_572: id: 572 name: key: - codename: mod_carrierwave_script_asset_output + codename: left_id: 571 right_id: 299 current_revision_id: created_at: 2024-05-21 23:25:57.000000000 Z - updated_at: 2024-12-13 17:35:33.973759000 Z + updated_at: 2025-02-04 21:04:51.223481000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -10897,7 +10896,7 @@ cards_572: references_expired: trash: 0 type_id: 282 - db_content: ":mod_carrierwave_script_asset_output/carrierwave.js" + db_content: ":mod_carrierwave+:script+:asset_output/carrierwave.js" cards_573: id: 573 name: @@ -11010,12 +11009,12 @@ cards_579: id: 579 name: key: - codename: mod_ace_editor_script_asset_output + codename: left_id: 578 right_id: 299 current_revision_id: created_at: 2024-05-21 23:25:58.000000000 Z - updated_at: 2024-12-13 17:35:33.985125000 Z + updated_at: 2025-02-04 21:04:51.241035000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -11023,7 +11022,7 @@ cards_579: references_expired: trash: 0 type_id: 282 - db_content: ":mod_ace_editor_script_asset_output/ace_editor.js" + db_content: ":mod_ace_editor+:script+:asset_output/ace_editor.js" cards_580: id: 580 name: 'mod: api key' @@ -11136,12 +11135,12 @@ cards_586: id: 586 name: key: - codename: mod_bar_and_box_script_asset_output + codename: left_id: 585 right_id: 299 current_revision_id: created_at: 2024-05-21 23:25:58.000000000 Z - updated_at: 2024-12-13 17:35:33.996620000 Z + updated_at: 2025-02-04 21:04:51.263551000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -11149,7 +11148,7 @@ cards_586: references_expired: trash: 0 type_id: 282 - db_content: ":mod_bar_and_box_script_asset_output/bar_and_box.js" + db_content: ":mod_bar_and_box+:script+:asset_output/bar_and_box.js" cards_587: id: 587 name: @@ -11208,12 +11207,12 @@ cards_590: id: 590 name: key: - codename: mod_bootstrap_script_asset_output + codename: left_id: 589 right_id: 299 current_revision_id: created_at: 2024-05-21 23:26:00.000000000 Z - updated_at: 2024-12-13 17:35:34.008199000 Z + updated_at: 2025-02-04 21:04:51.328456000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -11221,7 +11220,7 @@ cards_590: references_expired: trash: 0 type_id: 282 - db_content: ":mod_bootstrap_script_asset_output/bootstrap.js" + db_content: ":mod_bootstrap+:script+:asset_output/bootstrap.js" cards_591: id: 591 name: @@ -11352,12 +11351,12 @@ cards_598: id: 598 name: key: - codename: mod_follow_script_asset_output + codename: left_id: 597 right_id: 299 current_revision_id: created_at: 2024-05-21 23:26:01.000000000 Z - updated_at: 2024-12-13 17:35:34.019427000 Z + updated_at: 2025-02-04 21:04:51.399803000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -11365,7 +11364,7 @@ cards_598: references_expired: trash: 0 type_id: 282 - db_content: ":mod_follow_script_asset_output/follow.js" + db_content: ":mod_follow+:script+:asset_output/follow.js" cards_599: id: 599 name: @@ -11442,12 +11441,12 @@ cards_603: id: 603 name: key: - codename: mod_tabs_script_asset_output + codename: left_id: 602 right_id: 299 current_revision_id: created_at: 2024-05-21 23:26:01.000000000 Z - updated_at: 2024-12-13 17:35:34.030153000 Z + updated_at: 2025-02-04 21:04:51.484559000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -11455,7 +11454,7 @@ cards_603: references_expired: trash: 0 type_id: 282 - db_content: ":mod_tabs_script_asset_output/tabs.js" + db_content: ":mod_tabs+:script+:asset_output/tabs.js" cards_604: id: 604 name: 'mod: layout' @@ -11496,12 +11495,12 @@ cards_606: id: 606 name: key: - codename: mod_layout_script_asset_output + codename: left_id: 605 right_id: 299 current_revision_id: created_at: 2024-05-21 23:26:01.000000000 Z - updated_at: 2024-12-13 17:35:34.040658000 Z + updated_at: 2025-02-04 21:04:51.543291000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -11509,7 +11508,7 @@ cards_606: references_expired: trash: 0 type_id: 282 - db_content: ":mod_layout_script_asset_output/layout.js" + db_content: ":mod_layout+:script+:asset_output/layout.js" cards_607: id: 607 name: @@ -11568,12 +11567,12 @@ cards_610: id: 610 name: key: - codename: mod_recaptcha_script_asset_output + codename: left_id: 609 right_id: 299 current_revision_id: created_at: 2024-05-21 23:26:02.000000000 Z - updated_at: 2024-12-13 17:35:34.052292000 Z + updated_at: 2025-02-04 21:04:51.678977000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -11581,7 +11580,7 @@ cards_610: references_expired: trash: 0 type_id: 282 - db_content: ":mod_recaptcha_script_asset_output/recaptcha.js" + db_content: ":mod_recaptcha+:script+:asset_output/recaptcha.js" cards_611: id: 611 name: 'mod: tinymce editor' @@ -11622,12 +11621,12 @@ cards_613: id: 613 name: key: - codename: mod_tinymce_editor_script_asset_output + codename: left_id: 612 right_id: 299 current_revision_id: created_at: 2024-05-21 23:26:03.000000000 Z - updated_at: 2024-12-13 17:35:34.075780000 Z + updated_at: 2025-02-04 21:04:51.737199000 Z creator_id: 1 updater_id: 1 read_rule_class: "*all plus" @@ -11635,7 +11634,7 @@ cards_613: references_expired: trash: 0 type_id: 282 - db_content: ":mod_tinymce_editor_script_asset_output/tinymce_editor.js" + db_content: ":mod_tinymce_editor+:script+:asset_output/tinymce_editor.js" cards_614: id: 614 name: @@ -17195,3 +17194,21 @@ cards_917: trash: 0 type_id: 55 db_content: '' +cards_918: + id: 918 + name: "*noindex" + key: "*noindex" + codename: noindex + left_id: + right_id: + current_revision_id: + created_at: 2025-02-04 20:17:57.808942000 Z + updated_at: 2025-02-04 20:17:57.808942000 Z + creator_id: 1 + updater_id: 1 + read_rule_class: "*all" + read_rule_id: 10 + references_expired: + trash: 0 + type_id: 4 + db_content: '' diff --git a/mod/defaults/data/fixtures/test/transform_migrations.yml b/mod/defaults/data/fixtures/test/transform_migrations.yml index 82e50d52e9..ffe44d68fe 100644 --- a/mod/defaults/data/fixtures/test/transform_migrations.yml +++ b/mod/defaults/data/fixtures/test/transform_migrations.yml @@ -361,3 +361,5 @@ transform_migrations_180: version: '20230502094848' transform_migrations_181: version: '20240510141851' +transform_migrations_182: + version: '20250204175412' From 5b8e6bd9defd82f157cafc4e6f05d8facc249e19 Mon Sep 17 00:00:00 2001 From: Ethan McCutchen Date: Tue, 4 Feb 2025 16:26:04 -0500 Subject: [PATCH 13/21] restructure content_options spec --- .../right/content_options_spec.rb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename mod/list/spec/set/self/{input_options_spec.rb => input_type/right/content_options_spec.rb} (85%) diff --git a/mod/list/spec/set/self/input_options_spec.rb b/mod/list/spec/set/self/input_type/right/content_options_spec.rb similarity index 85% rename from mod/list/spec/set/self/input_options_spec.rb rename to mod/list/spec/set/self/input_type/right/content_options_spec.rb index 0810ad5d91..de96791a0e 100644 --- a/mod/list/spec/set/self/input_options_spec.rb +++ b/mod/list/spec/set/self/input_type/right/content_options_spec.rb @@ -1,4 +1,4 @@ -describe Card::Set::Self::InputOptions do +describe Card::Set::Self::InputType::Right::ContentOptions do it "loads the self set" do expect(Card[:input_type, :right, :content_options].item_names) .to contain_exactly( From 87522068f40bbe741db7eaae47ef7077f386f4e8 Mon Sep 17 00:00:00 2001 From: Ethan McCutchen Date: Tue, 4 Feb 2025 16:54:29 -0500 Subject: [PATCH 14/21] image spec fixes --- mod/carrierwave/spec/set/type/image_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/carrierwave/spec/set/type/image_spec.rb b/mod/carrierwave/spec/set/type/image_spec.rb index 4c2deef27d..c17d61c04a 100644 --- a/mod/carrierwave/spec/set/type/image_spec.rb +++ b/mod/carrierwave/spec/set/type/image_spec.rb @@ -110,7 +110,7 @@ end it "has correct url as content" do - expect(subject.content).to eq ":#{subject.codename}/bootstrap.png" + expect(subject.content).to eq ":cerulean_skin+:image/bootstrap.png" end it "becomes a regular file when changed" do @@ -131,7 +131,7 @@ describe "source view" do it "renders url with original version" do expect(subject.format.render_source) - .to eq "/files/:#{subject.codename}/bootstrap-medium.png" + .to eq "/files/:cerulean_skin+:image/bootstrap-medium.png" end end end From 05fe20534e0d04dff3b4de1714eeea1671870aa9 Mon Sep 17 00:00:00 2001 From: Ethan McCutchen Date: Wed, 5 Feb 2025 12:21:12 -0500 Subject: [PATCH 15/21] rspec fixes for new codename handling --- card/lib/card/set/helpers.rb | 2 +- card/mod/core/set_pattern/09_self.rb | 4 ++-- mod/assets/spec/set/abstract/asset_outputter_spec.rb | 2 +- .../spec/set/abstract/attachment/coded_spec.rb | 2 +- mod/edit/data/real.yml | 2 -- mod/layout/spec/set/self/head_spec.rb | 10 +++++----- .../set/self/input_type/right/content_options_spec.rb | 2 +- mod/script/spec/set/abstract/mod_assets_spec.rb | 2 +- mod/script/spec/set/type_plus_right/mod/script_spec.rb | 2 +- 9 files changed, 13 insertions(+), 15 deletions(-) diff --git a/card/lib/card/set/helpers.rb b/card/lib/card/set/helpers.rb index 1fa3ae8754..29e37b1e53 100644 --- a/card/lib/card/set/helpers.rb +++ b/card/lib/card/set/helpers.rb @@ -10,7 +10,7 @@ module Helpers # Card::Set::Type::User def shortname first = 2 # shortname eliminates Card::Set - last = first + num_set_parts(pattern_code) + last = pattern_code == :self ? -1 : (first + num_set_parts(pattern_code)) set_name_parts[first..last].join "::" end diff --git a/card/mod/core/set_pattern/09_self.rb b/card/mod/core/set_pattern/09_self.rb index 71611dddf8..132c6aeb7f 100644 --- a/card/mod/core/set_pattern/09_self.rb +++ b/card/mod/core/set_pattern/09_self.rb @@ -22,6 +22,6 @@ def anchor_id card card.id end -def anchor_parts_count - @anchor_parts_count ||= @anchor_name ? @anchor_name.part_names.size : 1 +def self.anchor_parts_count + @anchor_name ? @anchor_name.part_names.size : 1 end diff --git a/mod/assets/spec/set/abstract/asset_outputter_spec.rb b/mod/assets/spec/set/abstract/asset_outputter_spec.rb index 32aaf2f9bb..7c6461fe46 100644 --- a/mod/assets/spec/set/abstract/asset_outputter_spec.rb +++ b/mod/assets/spec/set/abstract/asset_outputter_spec.rb @@ -5,7 +5,7 @@ it "creates coded file" do mod_path = Cardio::Mod.dirs.path "format" path = File.join mod_path, - "data", "files", "mod_format_script_asset_output", "file.js" + "data", "files", "mod_format", "script", "asset_output", "file.js" expect(File).to be_exist(path), "Decko should be shipped with generated script file. " \ "Couldn't find #{path}" diff --git a/mod/carrierwave/spec/set/abstract/attachment/coded_spec.rb b/mod/carrierwave/spec/set/abstract/attachment/coded_spec.rb index 45cd7e5115..944a68343f 100644 --- a/mod/carrierwave/spec/set/abstract/attachment/coded_spec.rb +++ b/mod/carrierwave/spec/set/abstract/attachment/coded_spec.rb @@ -22,7 +22,7 @@ specify "view: source" do expect(file_card.format.render_source) - .to eq("/files/:#{codename}/bootstrap-medium.png") + .to eq("/files/:#{codename}/carrierwave-original.svg") end describe "creating" do diff --git a/mod/edit/data/real.yml b/mod/edit/data/real.yml index ed455172b6..0df50d10f4 100644 --- a/mod/edit/data/real.yml +++ b/mod/edit/data/real.yml @@ -6,9 +6,7 @@ - :input_type - :right :fields: - # TODO: refactor so that we don't need a compound card to have a codename :content_options: :type: :pointer - :codename: input_options :content: overridden :input_type: radio diff --git a/mod/layout/spec/set/self/head_spec.rb b/mod/layout/spec/set/self/head_spec.rb index 1d487d9c42..b528aac833 100644 --- a/mod/layout/spec/set/self/head_spec.rb +++ b/mod/layout/spec/set/self/head_spec.rb @@ -22,10 +22,10 @@ aggregate_failures do %w[https://code.jquery.com/jquery-3.5.1.min.js https://cdnjs.cloudflare.com/ajax/libs/jquery-ujs/1.2.3/rails.min.js - /files/:mod_format_script_asset_output/format.js - /files/:mod_ace_editor_script_asset_output/ace_editor.js - /files/:mod_bootstrap_script_asset_output/bootstrap.js - /files/:mod_tinymce_editor_script_asset_output/tinymce_editor.js] + /files/:mod_format+:script+:asset_output/format.js + /files/:mod_ace_editor+:script+:asset_output/ace_editor.js + /files/:mod_bootstrap+:script+:asset_output/bootstrap.js + /files/:mod_tinymce_editor+:script+:asset_output/tinymce_editor.js] .each do |src| is_expected.to have_tag(:script, with: { src: src }) end @@ -35,7 +35,7 @@ it "has a main stylesheets link" do is_expected.to have_tag( :link, with: { rel: "stylesheet", media: "all", type: "text/css", - href: "/files/:all_style_asset_output/defaults.css" } + href: "/files/:all+:style+:asset_output/defaults.css" } ) end diff --git a/mod/list/spec/set/self/input_type/right/content_options_spec.rb b/mod/list/spec/set/self/input_type/right/content_options_spec.rb index de96791a0e..dbb4de8cd6 100644 --- a/mod/list/spec/set/self/input_type/right/content_options_spec.rb +++ b/mod/list/spec/set/self/input_type/right/content_options_spec.rb @@ -1,4 +1,4 @@ -describe Card::Set::Self::InputType::Right::ContentOptions do +RSpec.describe Card::Set::Self::InputType::Right::ContentOptions do it "loads the self set" do expect(Card[:input_type, :right, :content_options].item_names) .to contain_exactly( diff --git a/mod/script/spec/set/abstract/mod_assets_spec.rb b/mod/script/spec/set/abstract/mod_assets_spec.rb index 74c26159df..97d03edf29 100644 --- a/mod/script/spec/set/abstract/mod_assets_spec.rb +++ b/mod/script/spec/set/abstract/mod_assets_spec.rb @@ -22,7 +22,7 @@ card = Card["mod: format+*script"] card.update_asset_output card.make_asset_output_coded - card.asset_output_card.content.should eq(":mod_format_script_asset_output/format.js") + card.asset_output_card.content.should eq(":mod_format+:script+:asset_output/format.js") content = card.asset_output_card.file.file.read content.should include "// decko.js.coffee" end diff --git a/mod/script/spec/set/type_plus_right/mod/script_spec.rb b/mod/script/spec/set/type_plus_right/mod/script_spec.rb index 988a3083c8..88ab1f7bd7 100644 --- a/mod/script/spec/set/type_plus_right/mod/script_spec.rb +++ b/mod/script/spec/set/type_plus_right/mod/script_spec.rb @@ -19,7 +19,7 @@ it "contains local file" do script_card - .should match %r{} + .should match %r{} end end end From 3838a982eacf99484d43f31e565bc55cd5131812 Mon Sep 17 00:00:00 2001 From: Ethan McCutchen Date: Thu, 6 Feb 2025 16:21:56 -0500 Subject: [PATCH 16/21] code climate fixes --- card/lib/card/env/location_history.rb | 2 -- mod/carrierwave/set/abstract/attachment/coded.rb | 4 ++-- mod/carrierwave/spec/set/type/image_spec.rb | 3 ++- mod/email/set/abstract/test_context.rb | 1 - mod/script/spec/set/abstract/mod_assets_spec.rb | 7 ++++--- 5 files changed, 8 insertions(+), 9 deletions(-) diff --git a/card/lib/card/env/location_history.rb b/card/lib/card/env/location_history.rb index 6ab0c9cc72..c6b6522aa9 100644 --- a/card/lib/card/env/location_history.rb +++ b/card/lib/card/env/location_history.rb @@ -37,7 +37,6 @@ def interrupted_action session.delete :interrupted_action end - private def location_for_history card @@ -51,7 +50,6 @@ def url_key_for_location location def save_location? card !Env.ajax? && Env.html? && card.known? && (card.codename != :signin) end - end end end diff --git a/mod/carrierwave/set/abstract/attachment/coded.rb b/mod/carrierwave/set/abstract/attachment/coded.rb index 0164323aff..dec5593baa 100644 --- a/mod/carrierwave/set/abstract/attachment/coded.rb +++ b/mod/carrierwave/set/abstract/attachment/coded.rb @@ -20,7 +20,7 @@ def mod private def coded_ok? - !codename_parts.find &:blank? + !codename_parts.find(&:blank?) end def uncode? @@ -47,7 +47,7 @@ def mod_name_match cont # place for files of mod file cards def coded_dir new_mod=nil dir_parts = [mod_dir(new_mod), MOD_FILE_DIR] + codename_parts - dir = File.join *dir_parts + dir = File.join(*dir_parts) FileUtils.mkdir_p(dir) unless File.directory?(dir) dir end diff --git a/mod/carrierwave/spec/set/type/image_spec.rb b/mod/carrierwave/spec/set/type/image_spec.rb index c17d61c04a..af70e8f06f 100644 --- a/mod/carrierwave/spec/set/type/image_spec.rb +++ b/mod/carrierwave/spec/set/type/image_spec.rb @@ -106,7 +106,8 @@ end it "has correct url" do - expect(subject.image.url).to eq "/files/:cerulean_skin+:image/bootstrap-original.png" + expect(subject.image.url) + .to eq "/files/:cerulean_skin+:image/bootstrap-original.png" end it "has correct url as content" do diff --git a/mod/email/set/abstract/test_context.rb b/mod/email/set/abstract/test_context.rb index d5d20694f5..f4a9f12a10 100644 --- a/mod/email/set/abstract/test_context.rb +++ b/mod/email/set/abstract/test_context.rb @@ -13,7 +13,6 @@ def test_context_card end format :email_html do - view :core do process_content render_raw end diff --git a/mod/script/spec/set/abstract/mod_assets_spec.rb b/mod/script/spec/set/abstract/mod_assets_spec.rb index 97d03edf29..213bda95ab 100644 --- a/mod/script/spec/set/abstract/mod_assets_spec.rb +++ b/mod/script/spec/set/abstract/mod_assets_spec.rb @@ -22,8 +22,9 @@ card = Card["mod: format+*script"] card.update_asset_output card.make_asset_output_coded - card.asset_output_card.content.should eq(":mod_format+:script+:asset_output/format.js") - content = card.asset_output_card.file.file.read - content.should include "// decko.js.coffee" + expect(card.asset_output_card.content) + .to eq(":mod_format+:script+:asset_output/format.js") + expect(card.asset_output_card.file.file.read) + .to include "// decko.js.coffee" end end From 0d6ff0c0b6d03a1af35b9f2967ad3e6aaac8e982 Mon Sep 17 00:00:00 2001 From: Ethan McCutchen Date: Thu, 6 Feb 2025 19:13:01 -0500 Subject: [PATCH 17/21] self set loading, num_parts = file parts --- card/lib/card/set/helpers.rb | 4 ++-- card/lib/card/set/pattern/base.rb | 7 +++++-- card/lib/card/set/pattern/class_methods.rb | 2 +- card/lib/card/set/registrar.rb | 6 +++--- card/lib/cardio/mod/loader/set_template.rb | 8 ++++++++ card/mod/core/set_pattern/09_self.rb | 4 ++-- mod/list/set/self/input_type/right/content_options.rb | 4 ++++ .../set/self/input_type/right/content_options_spec.rb | 6 +++++- 8 files changed, 30 insertions(+), 11 deletions(-) diff --git a/card/lib/card/set/helpers.rb b/card/lib/card/set/helpers.rb index 29e37b1e53..7cf9103035 100644 --- a/card/lib/card/set/helpers.rb +++ b/card/lib/card/set/helpers.rb @@ -10,7 +10,7 @@ module Helpers # Card::Set::Type::User def shortname first = 2 # shortname eliminates Card::Set - last = pattern_code == :self ? -1 : (first + num_set_parts(pattern_code)) + last = pattern_code == :self ? -1 : (first + num_set_parts) set_name_parts[first..last].join "::" end @@ -115,7 +115,7 @@ def nonbase_format_modules format_sym Card::Set.modules[set_format_type_key][format_class][shortname] || [] end - def num_set_parts pattern_code + def num_set_parts return 1 if pattern_code == :abstract Pattern.find(pattern_code).anchor_parts_count diff --git a/card/lib/card/set/pattern/base.rb b/card/lib/card/set/pattern/base.rb index 016baaae7d..b524eb3d63 100644 --- a/card/lib/card/set/pattern/base.rb +++ b/card/lib/card/set/pattern/base.rb @@ -4,8 +4,7 @@ module Pattern # class from which set patterns inherit class Base extend ClassMethods - delegate :pattern_code, :pattern, :anchorless?, :anchor_parts_count, - :assigns_type, to: :class + delegate :pattern_code, :pattern, :anchorless?, :assigns_type, to: :class def initialize card return if anchorless? @@ -43,6 +42,10 @@ def anchor_codenames end end + def anchor_parts_count + self.class.anchor_parts_count @anchor_name + end + def anchor_parts return [@anchor_name] unless anchor_parts_count > 1 diff --git a/card/lib/card/set/pattern/class_methods.rb b/card/lib/card/set/pattern/class_methods.rb index 470a2a6880..fbaed65980 100644 --- a/card/lib/card/set/pattern/class_methods.rb +++ b/card/lib/card/set/pattern/class_methods.rb @@ -38,7 +38,7 @@ def pattern_applies? card compound_only? ? card.name.compound? : true end - def anchor_parts_count + def anchor_parts_count _anchor_name=nil @anchor_parts_count ||= (anchorless? ? 0 : 1) end diff --git a/card/lib/card/set/registrar.rb b/card/lib/card/set/registrar.rb index dc226d9d29..ac07b4f644 100644 --- a/card/lib/card/set/registrar.rb +++ b/card/lib/card/set/registrar.rb @@ -13,9 +13,9 @@ module Registrar # Definition Phase # each set file calls `extend Card::Set` when loaded - def extended mod - register_set mod - end + # def extended mod + # register_set mod + # end # make the set available for use def register_set set_module diff --git a/card/lib/cardio/mod/loader/set_template.rb b/card/lib/cardio/mod/loader/set_template.rb index 8b8c827e0b..4a67c073c6 100644 --- a/card/lib/cardio/mod/loader/set_template.rb +++ b/card/lib/cardio/mod/loader/set_template.rb @@ -123,6 +123,14 @@ def location_method end def postamble + [set_registration, ends].compact.join "\n" + end + + def set_registration + "Card::Set.register_set self" unless helper_module? + end + + def ends "end;" * (@modules.size + 3) end end diff --git a/card/mod/core/set_pattern/09_self.rb b/card/mod/core/set_pattern/09_self.rb index 132c6aeb7f..5e5c525dcc 100644 --- a/card/mod/core/set_pattern/09_self.rb +++ b/card/mod/core/set_pattern/09_self.rb @@ -22,6 +22,6 @@ def anchor_id card card.id end -def self.anchor_parts_count - @anchor_name ? @anchor_name.part_names.size : 1 +def anchor_parts_count anchor_name=nil + @anchor_parts_count ||= anchor_name&.part_names&.size || 1 end diff --git a/mod/list/set/self/input_type/right/content_options.rb b/mod/list/set/self/input_type/right/content_options.rb index ffa2806555..182edd9ef8 100644 --- a/mod/list/set/self/input_type/right/content_options.rb +++ b/mod/list/set/self/input_type/right/content_options.rb @@ -3,3 +3,7 @@ def content basket[:list_input_options].to_pointer_content end + +# def self.num_set_parts +# 2 +# end diff --git a/mod/list/spec/set/self/input_type/right/content_options_spec.rb b/mod/list/spec/set/self/input_type/right/content_options_spec.rb index dbb4de8cd6..6a89cd38f1 100644 --- a/mod/list/spec/set/self/input_type/right/content_options_spec.rb +++ b/mod/list/spec/set/self/input_type/right/content_options_spec.rb @@ -1,6 +1,10 @@ RSpec.describe Card::Set::Self::InputType::Right::ContentOptions do + let :options_rule_card do + Card[:input_type, :right, :content_options] + end + it "loads the self set" do - expect(Card[:input_type, :right, :content_options].item_names) + expect(options_rule_card.item_names) .to contain_exactly( "ace editor", "autocomplete", From 9c41786ae949e819d14d4137134f7c9bb1f81dc2 Mon Sep 17 00:00:00 2001 From: Ethan McCutchen Date: Thu, 6 Feb 2025 19:32:51 -0500 Subject: [PATCH 18/21] return to old set registration pattern. --- card/lib/card/set/registrar.rb | 6 +++--- card/lib/cardio/mod/loader/set_template.rb | 17 +++++++++-------- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/card/lib/card/set/registrar.rb b/card/lib/card/set/registrar.rb index ac07b4f644..dc226d9d29 100644 --- a/card/lib/card/set/registrar.rb +++ b/card/lib/card/set/registrar.rb @@ -13,9 +13,9 @@ module Registrar # Definition Phase # each set file calls `extend Card::Set` when loaded - # def extended mod - # register_set mod - # end + def extended mod + register_set mod + end # make the set available for use def register_set set_module diff --git a/card/lib/cardio/mod/loader/set_template.rb b/card/lib/cardio/mod/loader/set_template.rb index 4a67c073c6..7d6e1dc0e5 100644 --- a/card/lib/cardio/mod/loader/set_template.rb +++ b/card/lib/cardio/mod/loader/set_template.rb @@ -123,16 +123,17 @@ def location_method end def postamble - [set_registration, ends].compact.join "\n" - end - - def set_registration - "Card::Set.register_set self" unless helper_module? - end - - def ends "end;" * (@modules.size + 3) end + # [set_registration, ends].compact.join "\n" + # end + # + # def set_registration + # "Card::Set.register_set self" unless helper_module? + # end + # + # def ends + # end end end end From 4a55d097c33a60f0e2a86254857357ce4d5b5c78 Mon Sep 17 00:00:00 2001 From: Ethan McCutchen Date: Fri, 7 Feb 2025 14:27:46 -0500 Subject: [PATCH 19/21] cache anchor_parts_count on instance, not class --- card/lib/cardio/mod/loader/set_template.rb | 1 + card/mod/core/set_pattern/09_self.rb | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/card/lib/cardio/mod/loader/set_template.rb b/card/lib/cardio/mod/loader/set_template.rb index 7d6e1dc0e5..1771a9536c 100644 --- a/card/lib/cardio/mod/loader/set_template.rb +++ b/card/lib/cardio/mod/loader/set_template.rb @@ -125,6 +125,7 @@ def location_method def postamble "end;" * (@modules.size + 3) end + # [set_registration, ends].compact.join "\n" # end # diff --git a/card/mod/core/set_pattern/09_self.rb b/card/mod/core/set_pattern/09_self.rb index 5e5c525dcc..6291b7c10b 100644 --- a/card/mod/core/set_pattern/09_self.rb +++ b/card/mod/core/set_pattern/09_self.rb @@ -23,5 +23,5 @@ def anchor_id card end def anchor_parts_count anchor_name=nil - @anchor_parts_count ||= anchor_name&.part_names&.size || 1 + anchor_name&.part_names&.size || 1 end From 2f2ccf9a09d79a3173295cb37c00a389147e668c Mon Sep 17 00:00:00 2001 From: Ethan McCutchen Date: Fri, 7 Feb 2025 14:51:19 -0500 Subject: [PATCH 20/21] no caching in base either --- card/lib/card/set/pattern/base.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/card/lib/card/set/pattern/base.rb b/card/lib/card/set/pattern/base.rb index b524eb3d63..1ee452a574 100644 --- a/card/lib/card/set/pattern/base.rb +++ b/card/lib/card/set/pattern/base.rb @@ -43,7 +43,7 @@ def anchor_codenames end def anchor_parts_count - self.class.anchor_parts_count @anchor_name + @anchor_parts_count ||= self.class.anchor_parts_count @anchor_name end def anchor_parts From 36a6ed4635ecd09090630ad0fdc98987b4127157 Mon Sep 17 00:00:00 2001 From: Ethan McCutchen Date: Fri, 7 Feb 2025 16:56:21 -0500 Subject: [PATCH 21/21] fix set loading test --- card/spec/cardio/mod/loader_spec.rb | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/card/spec/cardio/mod/loader_spec.rb b/card/spec/cardio/mod/loader_spec.rb index 040805e565..41efc43bc4 100644 --- a/card/spec/cardio/mod/loader_spec.rb +++ b/card/spec/cardio/mod/loader_spec.rb @@ -1,6 +1,6 @@ # -*- encoding : utf-8 -*- -describe Cardio::Mod::Loader do +RSpec.describe Cardio::Mod::Loader do # let(:card_double) { double "Card" } # let(:pat_all_double) { proxy Card::Set::All } # let(:format_double) { proxy Card::Format } @@ -51,16 +51,18 @@ def hello end it "loads self set for junction card" do - create_card "set+test+load", codename: "set_test_load" + create_card ":set+:css" Card::Cache.reset_all - module Card::Set::Self::SetTestLoad - extend Card::Set - def hello - "hello" + module Card::Set::Self::Set + module Css + extend Card::Set + def hello + "hello" + end end end - expect(Card["set+test+load"]).to respond_to :hello + expect(Card["set+css"]).to respond_to :hello end it "loads type set" do @@ -75,8 +77,10 @@ def hello expect(Card.new(name: "test load", type: "set test load")).to respond_to :hello end - it "loads type set for a junction cardtyp" do - create_card "set+test load", codename: "set_test_load", type_id: Card::CardtypeID + it "loads type set for a compound cardtype" do + # now that compound cards can't have codenames, for this to work, we will need to + # make it so that type sets can have multi-codename modules + create_card "set+test load", codename: "set_test_load", type: :cardtype Card::Cache.reset_all module Card::Set::Type::SetTestLoad extend Card::Set
    ').addClass('cw').text('#')); - } - - while (currentDate.isBefore(this._viewDate.clone().endOf('w'))) { - row.append($('').addClass('dow').text(currentDate.format('dd'))); - currentDate.add(1, 'd'); - } - this.widget.find('.datepicker-days thead').append(row); - }; - - TempusDominusBootstrap4.prototype._fillMonths = function _fillMonths() { - var spans = [], - monthsShort = this._viewDate.clone().startOf('y').startOf('d'); - while (monthsShort.isSame(this._viewDate, 'y')) { - spans.push($('').attr('data-action', 'selectMonth').addClass('month').text(monthsShort.format('MMM'))); - monthsShort.add(1, 'M'); - } - this.widget.find('.datepicker-months td').empty().append(spans); - }; - - TempusDominusBootstrap4.prototype._updateMonths = function _updateMonths() { - var monthsView = this.widget.find('.datepicker-months'), - monthsViewHeader = monthsView.find('th'), - months = monthsView.find('tbody').find('span'), - self = this; - - monthsViewHeader.eq(0).find('span').attr('title', this._options.tooltips.prevYear); - monthsViewHeader.eq(1).attr('title', this._options.tooltips.selectYear); - monthsViewHeader.eq(2).find('span').attr('title', this._options.tooltips.nextYear); - - monthsView.find('.disabled').removeClass('disabled'); - - if (!this._isValid(this._viewDate.clone().subtract(1, 'y'), 'y')) { - monthsViewHeader.eq(0).addClass('disabled'); - } - - monthsViewHeader.eq(1).text(this._viewDate.year()); - - if (!this._isValid(this._viewDate.clone().add(1, 'y'), 'y')) { - monthsViewHeader.eq(2).addClass('disabled'); - } - - months.removeClass('active'); - if (this._getLastPickedDate().isSame(this._viewDate, 'y') && !this.unset) { - months.eq(this._getLastPickedDate().month()).addClass('active'); - } - - months.each(function (index) { - if (!self._isValid(self._viewDate.clone().month(index), 'M')) { - $(this).addClass('disabled'); - } - }); - }; - - TempusDominusBootstrap4.prototype._getStartEndYear = function _getStartEndYear(factor, year) { - var step = factor / 10, - startYear = Math.floor(year / factor) * factor, - endYear = startYear + step * 9, - focusValue = Math.floor(year / step) * step; - return [startYear, endYear, focusValue]; - }; - - TempusDominusBootstrap4.prototype._updateYears = function _updateYears() { - var yearsView = this.widget.find('.datepicker-years'), - yearsViewHeader = yearsView.find('th'), - yearCaps = this._getStartEndYear(10, this._viewDate.year()), - startYear = this._viewDate.clone().year(yearCaps[0]), - endYear = this._viewDate.clone().year(yearCaps[1]); - var html = ''; - - yearsViewHeader.eq(0).find('span').attr('title', this._options.tooltips.prevDecade); - yearsViewHeader.eq(1).attr('title', this._options.tooltips.selectDecade); - yearsViewHeader.eq(2).find('span').attr('title', this._options.tooltips.nextDecade); - - yearsView.find('.disabled').removeClass('disabled'); - - if (this._options.minDate && this._options.minDate.isAfter(startYear, 'y')) { - yearsViewHeader.eq(0).addClass('disabled'); - } - - yearsViewHeader.eq(1).text(startYear.year() + '-' + endYear.year()); - - if (this._options.maxDate && this._options.maxDate.isBefore(endYear, 'y')) { - yearsViewHeader.eq(2).addClass('disabled'); - } - - html += '' + (startYear.year() - 1) + ''; - while (!startYear.isAfter(endYear, 'y')) { - html += '' + startYear.year() + ''; - startYear.add(1, 'y'); - } - html += '' + startYear.year() + ''; - - yearsView.find('td').html(html); - }; - - TempusDominusBootstrap4.prototype._updateDecades = function _updateDecades() { - var decadesView = this.widget.find('.datepicker-decades'), - decadesViewHeader = decadesView.find('th'), - yearCaps = this._getStartEndYear(100, this._viewDate.year()), - startDecade = this._viewDate.clone().year(yearCaps[0]), - endDecade = this._viewDate.clone().year(yearCaps[1]); - var minDateDecade = false, - maxDateDecade = false, - endDecadeYear = void 0, - html = ''; - - decadesViewHeader.eq(0).find('span').attr('title', this._options.tooltips.prevCentury); - decadesViewHeader.eq(2).find('span').attr('title', this._options.tooltips.nextCentury); - - decadesView.find('.disabled').removeClass('disabled'); - - if (startDecade.year() === 0 || this._options.minDate && this._options.minDate.isAfter(startDecade, 'y')) { - decadesViewHeader.eq(0).addClass('disabled'); - } - - decadesViewHeader.eq(1).text(startDecade.year() + '-' + endDecade.year()); - - if (this._options.maxDate && this._options.maxDate.isBefore(endDecade, 'y')) { - decadesViewHeader.eq(2).addClass('disabled'); - } - - if (startDecade.year() - 10 < 0) { - html += ' '; - } else { - html += '' + (startDecade.year() - 10) + ''; - } - - while (!startDecade.isAfter(endDecade, 'y')) { - endDecadeYear = startDecade.year() + 11; - minDateDecade = this._options.minDate && this._options.minDate.isAfter(startDecade, 'y') && this._options.minDate.year() <= endDecadeYear; - maxDateDecade = this._options.maxDate && this._options.maxDate.isAfter(startDecade, 'y') && this._options.maxDate.year() <= endDecadeYear; - html += '' + startDecade.year() + ''; - startDecade.add(10, 'y'); - } - html += '' + startDecade.year() + ''; - - decadesView.find('td').html(html); - }; - - TempusDominusBootstrap4.prototype._fillDate = function _fillDate() { - var daysView = this.widget.find('.datepicker-days'), - daysViewHeader = daysView.find('th'), - html = []; - var currentDate = void 0, - row = void 0, - clsName = void 0, - i = void 0; - - if (!this._hasDate()) { - return; - } - - daysViewHeader.eq(0).find('span').attr('title', this._options.tooltips.prevMonth); - daysViewHeader.eq(1).attr('title', this._options.tooltips.selectMonth); - daysViewHeader.eq(2).find('span').attr('title', this._options.tooltips.nextMonth); - - daysView.find('.disabled').removeClass('disabled'); - daysViewHeader.eq(1).text(this._viewDate.format(this._options.dayViewHeaderFormat)); - - if (!this._isValid(this._viewDate.clone().subtract(1, 'M'), 'M')) { - daysViewHeader.eq(0).addClass('disabled'); - } - if (!this._isValid(this._viewDate.clone().add(1, 'M'), 'M')) { - daysViewHeader.eq(2).addClass('disabled'); - } - - currentDate = this._viewDate.clone().startOf('M').startOf('w').startOf('d'); - - for (i = 0; i < 42; i++) { - //always display 42 days (should show 6 weeks) - if (currentDate.weekday() === 0) { - row = $('
    ' + currentDate.week() + '' + currentDate.date() + '
    ' + currentHour.format(this.use24Hours ? 'HH' : 'hh') + '
    ' + currentMinute.format('mm') + '
    ' + currentSecond.format('ss') + '