card 1.17.4 → 1.18.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/card.gemspec +24 -25
- data/config/initializers/01_init_ruby_extensions.rb +0 -4
- data/config/initializers/inflections.rb +1 -1
- data/config/initializers/notification.rb +2 -2
- data/db/migrate/20110511221913_require_earlier_migrations.rb +3 -3
- data/db/migrate/20120105203350_require_1_8_migrations.rb +3 -3
- data/db/migrate/20121111025347_require_1_10_migrations.rb +3 -3
- data/db/migrate/20130106052640_table_cleanup.rb +4 -4
- data/db/migrate/20130411210957_update_codenames.rb +2 -2
- data/db/migrate/20141001105348_move_revisions_to_actions.rb +4 -4
- data/db/migrate/20141121172918_rename_card_migration_table.rb +2 -2
- data/db/migrate/20141208132159_remove_present_from_reference_table.rb +2 -2
- data/db/migrate/20141216053032_better_index_names.rb +9 -9
- data/db/migrate_core_cards/20120611203506_rails_inflection_updates.rb +29 -32
- data/db/migrate_core_cards/20130411191151_renaming_for_menu.rb +3 -4
- data/db/migrate_core_cards/20130411211600_delete_old_related_tab_cards.rb +1 -1
- data/db/migrate_core_cards/20130419215612_import_help_text.rb +1 -2
- data/db/migrate_core_cards/20130823192433_add_style_cards.rb +3 -3
- data/db/migrate_core_cards/20130910183318_move_styles_to_content.rb +2 -3
- data/db/migrate_core_cards/20130920214038_jsonize_tinymce.rb +2 -2
- data/db/migrate_core_cards/20130920291703_update_stylesheets.rb +1 -2
- data/db/migrate_core_cards/20130927191728_account_events.rb +5 -6
- data/db/migrate_core_cards/20131016172445_common_css_patch.rb +2 -3
- data/db/migrate_core_cards/20140110193325_reset_account_request_type.rb +0 -1
- data/db/migrate_core_cards/20140307231621_user_data_to_cards.rb +23 -32
- data/db/migrate_core_cards/20140317035504_account_requests_to_signups.rb +1 -7
- data/db/migrate_core_cards/20140512155840_add_script_cards.rb +21 -24
- data/db/migrate_core_cards/20140629222005_add_email_cards.rb +17 -22
- data/db/migrate_core_cards/20140725180118_config_card_updates.rb +2 -2
- data/db/migrate_core_cards/20141111083921_delete_machine_output.rb +1 -3
- data/db/migrate_core_cards/20141115034214_config_descriptions_etc.rb +2 -2
- data/db/migrate_core_cards/20141119001955_make_symlinks_relative.rb +3 -3
- data/db/migrate_core_cards/20141120120605_fix_notification_html_message.rb +1 -1
- data/db/migrate_core_cards/20141204061304_watchers_to_following.rb +8 -12
- data/db/migrate_core_cards/20141208162106_add_ace_script.rb +2 -3
- data/db/migrate_core_cards/20141216155251_add_more_following_cards.rb +10 -10
- data/db/migrate_core_cards/20150202143810_import_bootstrap_layout.rb +10 -12
- data/db/migrate_core_cards/20150220134731_following_to_follow_rule.rb +4 -4
- data/db/migrate_core_cards/20150317162412_bootstrap_themes.rb +3 -3
- data/db/migrate_core_cards/20150326205655_bootswatch_themes.rb +7 -7
- data/db/migrate_core_cards/20150429090551_search_card_context.rb +18 -20
- data/db/migrate_core_cards/20150508212032_menu_compatibility.rb +3 -7
- data/db/migrate_core_cards/20150510031118_fix_skin_images.rb +2 -3
- data/db/migrate_core_cards/20150528084659_add_session_cardtype.rb +3 -3
- data/db/migrate_core_cards/20150601133433_add_recent_setting_session_card.rb +4 -4
- data/db/migrate_core_cards/20150610171702_add_debugger_session_card.rb +4 -4
- data/db/migrate_core_cards/20150610180019_add_recaptcha_key_and_admin_info_cards.rb +5 -11
- data/db/migrate_core_cards/20150724123438_update_file_and_image_cards.rb +29 -35
- data/db/migrate_core_cards/20150824135418_update_file_history.rb +10 -14
- data/db/migrate_core_cards/20150903130006_attachment_upload_cards.rb +1 -1
- data/db/schema.rb +92 -94
- data/db/seed/new/card_actions.yml +461 -469
- data/db/seed/new/card_acts.yml +154 -172
- data/db/seed/new/card_changes.yml +4076 -4031
- data/db/seed/new/card_references.yml +1584 -1927
- data/db/seed/new/cards.yml +2095 -2112
- data/db/seed/test/fixtures/card_actions.yml +1497 -1505
- data/db/seed/test/fixtures/card_acts.yml +454 -472
- data/db/seed/test/fixtures/card_changes.yml +7309 -7263
- data/db/seed/test/fixtures/card_references.yml +2263 -2613
- data/db/seed/test/fixtures/cards.yml +3298 -3316
- data/db/seed/test/seed.rb +3 -0
- data/lib/card.rb +17 -9
- data/lib/card/active_record_ext.rb +6 -8
- data/lib/card/active_record_helper.rb +42 -32
- data/lib/card/auth.rb +3 -3
- data/lib/card/cache.rb +4 -4
- data/lib/card/cache/persistent.rb +9 -5
- data/lib/card/cache/temporary.rb +5 -5
- data/lib/card/chunk.rb +1 -1
- data/lib/card/codename.rb +3 -2
- data/lib/card/content.rb +62 -57
- data/lib/card/core_ext.rb +20 -30
- data/lib/card/diff.rb +88 -76
- data/lib/card/director_register.rb +66 -0
- data/lib/card/env.rb +14 -17
- data/lib/card/exceptions.rb +7 -9
- data/lib/card/format.rb +18 -367
- data/lib/card/format/nest.rb +183 -0
- data/lib/card/format/permission.rb +63 -0
- data/lib/card/format/render.rb +140 -0
- data/lib/card/loader.rb +17 -26
- data/lib/card/location.rb +6 -6
- data/lib/card/mailer.rb +4 -7
- data/lib/card/migration.rb +1 -1
- data/lib/card/name.rb +3 -6
- data/lib/card/query.rb +8 -8
- data/lib/card/query/attributes.rb +6 -6
- data/lib/card/query/clause.rb +10 -10
- data/lib/card/query/join.rb +7 -9
- data/lib/card/query/reference.rb +17 -19
- data/lib/card/query/sql_statement.rb +2 -2
- data/lib/card/query/value.rb +15 -16
- data/lib/card/set.rb +106 -209
- data/lib/card/set/event.rb +126 -0
- data/lib/card/set_pattern.rb +42 -29
- data/lib/card/simplecov_helper.rb +19 -19
- data/lib/card/spec_helper.rb +40 -16
- data/lib/card/stage.rb +72 -0
- data/lib/card/stage_director.rb +231 -0
- data/lib/card/subcards.rb +56 -24
- data/lib/card/subdirector_array.rb +31 -0
- data/lib/card/success.rb +15 -18
- data/lib/card/version.rb +1 -2
- data/lib/card/view_cache.rb +4 -4
- data/lib/card/view_name.rb +10 -8
- data/lib/cardio.rb +1 -1
- data/lib/generators/card.rb +2 -4
- data/lib/generators/card/format/format_generator.rb +4 -4
- data/lib/generators/card/migration/migration_generator.rb +6 -6
- data/lib/generators/card/set/set_generator.rb +5 -6
- data/mod/01_core/chunk/include.rb +2 -1
- data/mod/01_core/chunk/link.rb +2 -2
- data/mod/01_core/chunk/literal.rb +6 -9
- data/mod/01_core/chunk/query_reference.rb +1 -1
- data/mod/01_core/chunk/reference.rb +2 -2
- data/mod/01_core/chunk/uri.rb +52 -63
- data/mod/01_core/format/html_format.rb +8 -12
- data/mod/01_core/format/text_format.rb +1 -1
- data/mod/01_core/set/all/actify.rb +96 -0
- data/mod/01_core/set/all/active_card.rb +7 -7
- data/mod/01_core/set/all/collection.rb +19 -20
- data/mod/01_core/set/all/content.rb +9 -7
- data/mod/01_core/set/all/erb.rb +5 -5
- data/mod/01_core/set/all/event.rb +60 -0
- data/mod/01_core/set/all/fetch.rb +13 -19
- data/mod/01_core/set/all/haml.rb +1 -1
- data/mod/01_core/set/all/initialize.rb +35 -41
- data/mod/01_core/set/all/location_history.rb +3 -5
- data/mod/01_core/set/all/name.rb +19 -68
- data/mod/01_core/set/all/name_validations.rb +56 -0
- data/mod/01_core/set/all/pattern.rb +2 -2
- data/mod/01_core/set/all/permissions.rb +14 -20
- data/mod/01_core/set/all/phases.rb +9 -200
- data/mod/01_core/set/all/references.rb +10 -10
- data/mod/01_core/set/all/rules.rb +3 -4
- data/mod/01_core/set/all/stages.rb +24 -0
- data/mod/01_core/set/all/states.rb +4 -4
- data/mod/01_core/set/all/subcards.rb +16 -26
- data/mod/01_core/set/all/templating.rb +1 -3
- data/mod/01_core/set/all/tracked_attributes.rb +47 -48
- data/mod/01_core/set/all/trash.rb +10 -10
- data/mod/01_core/set/all/type.rb +9 -8
- data/mod/01_core/set/all/utils.rb +10 -14
- data/mod/01_core/set/all/view_cache.rb +2 -2
- data/mod/01_core/set_pattern/01_all.rb +3 -3
- data/mod/01_core/set_pattern/02_all_plus.rb +3 -3
- data/mod/01_core/set_pattern/03_type.rb +2 -2
- data/mod/01_core/set_pattern/04_star.rb +3 -3
- data/mod/01_core/set_pattern/05_rstar.rb +3 -3
- data/mod/01_core/set_pattern/06_right.rb +2 -2
- data/mod/01_core/set_pattern/07_type_plus_right.rb +2 -2
- data/mod/01_core/set_pattern/08_self.rb +1 -1
- data/mod/01_core/spec/chunk/literal_spec.rb +7 -8
- data/mod/01_core/spec/chunk/uri_spec.rb +140 -142
- data/mod/01_core/spec/format/html_format_spec.rb +72 -57
- data/mod/01_core/spec/set/all/collection_spec.rb +63 -43
- data/mod/01_core/spec/set/all/content_spec.rb +4 -4
- data/mod/01_core/spec/set/all/fetch_spec.rb +12 -3
- data/mod/01_core/spec/set/all/name_spec.rb +3 -4
- data/mod/01_core/spec/set/all/pattern_spec.rb +32 -35
- data/mod/01_core/spec/set/all/permissions_spec.rb +17 -5
- data/mod/01_core/spec/set/all/phases_spec.rb +0 -1
- data/mod/01_core/spec/set/all/references_spec.rb +1 -1
- data/mod/01_core/spec/set/all/rules2_spec.rb +79 -91
- data/mod/01_core/spec/set/all/rules_spec.rb +63 -56
- data/mod/01_core/spec/set/all/templating_spec.rb +0 -1
- data/mod/01_core/spec/set/all/tracked_attributes_spec.rb +4 -5
- data/mod/01_core/spec/set/all/trash_spec.rb +23 -1
- data/mod/01_core/spec/set/all/type_spec.rb +2 -5
- data/mod/01_history/lib/card/action.rb +8 -10
- data/mod/01_history/set/all/actions.rb +2 -4
- data/mod/01_history/set/all/content_history.rb +38 -32
- data/mod/01_history/set/all/history.rb +20 -17
- data/mod/02_basic_types/format/rss_format.rb +0 -1
- data/mod/02_basic_types/set/all/all_css.rb +9 -13
- data/mod/02_basic_types/set/all/all_csv.rb +14 -17
- data/mod/02_basic_types/set/all/all_js.rb +3 -4
- data/mod/02_basic_types/set/all/base.rb +2 -2
- data/mod/02_basic_types/set/all/file.rb +2 -5
- data/mod/02_basic_types/set/all/json.rb +19 -18
- data/mod/02_basic_types/set/all/rss.rb +3 -3
- data/mod/02_basic_types/set/all/text.rb +1 -3
- data/mod/02_basic_types/set/type/html.rb +4 -8
- data/mod/02_basic_types/set/type/plain_text.rb +2 -3
- data/mod/02_basic_types/set/type/pointer.rb +82 -92
- data/mod/02_basic_types/spec/set/all/all_css_spec.rb +2 -2
- data/mod/02_basic_types/spec/set/all/all_csv_spec.rb +6 -4
- data/mod/02_basic_types/spec/set/all/base_spec.rb +6 -6
- data/mod/02_basic_types/spec/set/all/json_spec.rb +8 -8
- data/mod/02_basic_types/spec/set/type/plain_text_spec.rb +3 -3
- data/mod/02_basic_types/spec/set/type/pointer_spec.rb +29 -32
- data/mod/03_machines/lib/card/machine.rb +95 -81
- data/mod/03_machines/lib/card/machine_input.rb +35 -34
- data/mod/03_machines/set/right/machine_input.rb +1 -1
- data/mod/03_machines/set/self/script_ace.rb +2 -3
- data/mod/03_machines/set/self/script_card_menu.rb +2 -3
- data/mod/03_machines/set/self/script_jquery_helper.rb +2 -2
- data/mod/03_machines/set/self/script_slot.rb +2 -2
- data/mod/03_machines/set/self/style_bootstrap_compatible.rb +1 -1
- data/mod/03_machines/set/self/style_cards.rb +1 -1
- data/mod/03_machines/set/self/style_jquery_ui_smoothness.rb +0 -1
- data/mod/03_machines/set/type/coffee_script.rb +9 -13
- data/mod/03_machines/set/type/css.rb +12 -13
- data/mod/03_machines/set/type/java_script.rb +6 -8
- data/mod/03_machines/set/type/scss.rb +4 -5
- data/mod/03_machines/set/type/skin.rb +3 -6
- data/mod/03_machines/spec/lib/shared_machine_examples.rb +31 -38
- data/mod/03_machines/spec/lib/shared_machine_input_examples.rb +7 -8
- data/mod/03_machines/spec/set/type/coffeescript_spec.rb +19 -13
- data/mod/03_machines/spec/set/type/css_spec.rb +22 -16
- data/mod/03_machines/spec/set/type/scss_spec.rb +28 -21
- data/mod/03_machines/spec/set/type/skin_spec.rb +28 -30
- data/mod/04_settings/lib/card/setting.rb +4 -4
- data/mod/04_settings/set/abstract/permission.rb +30 -37
- data/mod/04_settings/set/right/add_help.rb +3 -3
- data/mod/04_settings/set/right/script.rb +4 -5
- data/mod/04_settings/set/right/structure.rb +3 -4
- data/mod/04_settings/set/right/style.rb +3 -3
- data/mod/04_settings/set/self/add_help.rb +1 -1
- data/mod/04_settings/set/self/input.rb +1 -1
- data/mod/04_settings/set/self/on_create.rb +1 -1
- data/mod/04_settings/set/self/options.rb +1 -1
- data/mod/04_settings/set/self/options_label.rb +1 -1
- data/mod/04_settings/set/type/setting.rb +29 -44
- data/mod/04_settings/spec/set/right/comment_spec.rb +9 -12
- data/mod/04_settings/spec/set/right/script_spec.rb +7 -7
- data/mod/04_settings/spec/set/right/structure_spec.rb +13 -12
- data/mod/04_settings/spec/set/right/style_spec.rb +13 -13
- data/mod/04_settings/spec/set/type/setting_spec.rb +1 -1
- data/mod/05_email/format/email_html_format.rb +1 -1
- data/mod/05_email/format/email_text_format.rb +2 -2
- data/mod/05_email/lib/card/follow_option.rb +12 -15
- data/mod/05_email/set/all/email_html.rb +2 -3
- data/mod/05_email/set/all/email_text.rb +3 -3
- data/mod/05_email/set/all/follow.rb +14 -22
- data/mod/05_email/set/all/notify.rb +11 -11
- data/mod/05_email/set/all/observer.rb +7 -8
- data/mod/05_email/set/right/bcc.rb +4 -9
- data/mod/05_email/set/right/follow.rb +26 -39
- data/mod/05_email/set/right/follow_fields.rb +2 -2
- data/mod/05_email/set/right/followers.rb +3 -1
- data/mod/05_email/set/right/following.rb +13 -16
- data/mod/05_email/set/self/always.rb +1 -2
- data/mod/05_email/set/self/created.rb +4 -6
- data/mod/05_email/set/self/edited.rb +3 -7
- data/mod/05_email/set/self/follow_defaults.rb +11 -12
- data/mod/05_email/set/self/never.rb +2 -4
- data/mod/05_email/set/type/email_template.rb +40 -27
- data/mod/05_email/set/type_plus_right/user/follow.rb +159 -157
- data/mod/05_email/spec/set/all/follow_spec.rb +28 -37
- data/mod/05_email/spec/set/all/notify_spec.rb +21 -26
- data/mod/05_email/spec/set/all/observer_spec.rb +58 -37
- data/mod/05_email/spec/set/right/followers_spec.rb +9 -14
- data/mod/05_email/spec/set/right/following_spec.rb +1 -1
- data/mod/05_email/spec/set/self/follow_defaults_spec.rb +1 -1
- data/mod/05_standard/lib/carrier_wave/cardmount.rb +9 -9
- data/mod/05_standard/lib/file_uploader.rb +8 -13
- data/mod/05_standard/lib/image_uploader.rb +8 -9
- data/mod/05_standard/set/abstract/attachment.rb +26 -43
- data/mod/05_standard/set/all/account.rb +2 -2
- data/mod/05_standard/set/all/comment.rb +11 -13
- data/mod/05_standard/set/all/error.rb +18 -18
- data/mod/05_standard/set/all/event_viz.rb +16 -29
- data/mod/05_standard/set/all/links.rb +35 -34
- data/mod/05_standard/set/all/list_changes.rb +10 -12
- data/mod/05_standard/set/all/rich_html/content.rb +13 -13
- data/mod/05_standard/set/all/rich_html/editing.rb +5 -5
- data/mod/05_standard/set/all/rich_html/form.rb +22 -26
- data/mod/05_standard/set/all/rich_html/header.rb +18 -25
- data/mod/05_standard/set/all/rich_html/menu.rb +20 -22
- data/mod/05_standard/set/all/rich_html/modal.rb +3 -3
- data/mod/05_standard/set/all/rich_html/toolbar.rb +49 -58
- data/mod/05_standard/set/all/rich_html/wrapper.rb +40 -41
- data/mod/05_standard/set/right/account.rb +26 -14
- data/mod/05_standard/set/right/email.rb +2 -2
- data/mod/05_standard/set/right/password.rb +6 -5
- data/mod/05_standard/set/right/salt.rb +2 -2
- data/mod/05_standard/set/right/stats.rb +17 -20
- data/mod/05_standard/set/right/token.rb +1 -1
- data/mod/05_standard/set/right/when_created.rb +1 -1
- data/mod/05_standard/set/right/when_last_edited.rb +1 -1
- data/mod/05_standard/set/rstar/rules.rb +3 -3
- data/mod/05_standard/set/rstar/rules_editor.rb +39 -39
- data/mod/05_standard/set/self/account_links.rb +21 -22
- data/mod/05_standard/set/self/admin_info.rb +5 -5
- data/mod/05_standard/set/self/alerts.rb +1 -1
- data/mod/05_standard/set/self/all.rb +1 -1
- data/mod/05_standard/set/self/foot.rb +1 -1
- data/mod/05_standard/set/self/head.rb +19 -22
- data/mod/05_standard/set/self/navbox.rb +3 -7
- data/mod/05_standard/set/self/now.rb +1 -1
- data/mod/05_standard/set/self/recent.rb +19 -25
- data/mod/05_standard/set/self/search.rb +2 -4
- data/mod/05_standard/set/self/signin.rb +6 -6
- data/mod/05_standard/set/self/stats.rb +31 -38
- data/mod/05_standard/set/self/version.rb +1 -2
- data/mod/05_standard/set/type/basic.rb +15 -17
- data/mod/05_standard/set/type/cardtype.rb +3 -3
- data/mod/05_standard/set/type/date.rb +1 -2
- data/mod/05_standard/set/type/file.rb +22 -33
- data/mod/05_standard/set/type/image.rb +30 -23
- data/mod/05_standard/set/type/layout_type.rb +4 -4
- data/mod/05_standard/set/type/list.rb +32 -38
- data/mod/05_standard/set/type/listed_by.rb +11 -13
- data/mod/05_standard/set/type/number.rb +5 -6
- data/mod/05_standard/set/type/phrase.rb +1 -1
- data/mod/05_standard/set/type/search_type.rb +25 -23
- data/mod/05_standard/set/type/session.rb +2 -3
- data/mod/05_standard/set/type/set.rb +46 -51
- data/mod/05_standard/set/type/signup.rb +18 -19
- data/mod/05_standard/set/type/toggle.rb +5 -5
- data/mod/05_standard/set/type/user.rb +6 -6
- data/mod/05_standard/spec/chunk/include_spec.rb +115 -98
- data/mod/05_standard/spec/chunk/link_spec.rb +58 -31
- data/mod/05_standard/spec/chunk/query_reference_spec.rb +12 -14
- data/mod/05_standard/spec/set/all/email_html_spec.rb +3 -3
- data/mod/05_standard/spec/set/all/error_spec.rb +3 -3
- data/mod/05_standard/spec/set/all/history_spec.rb +52 -38
- data/mod/05_standard/spec/set/all/links_spec.rb +2 -2
- data/mod/05_standard/spec/set/all/rich_html/editing_spec.rb +0 -1
- data/mod/05_standard/spec/set/all/rich_html/form_spec.rb +11 -11
- data/mod/05_standard/spec/set/all/rich_html/wrapper_spec.rb +4 -4
- data/mod/05_standard/spec/set/right/email_spec.rb +1 -4
- data/mod/05_standard/spec/set/right/password_spec.rb +4 -7
- data/mod/05_standard/spec/set/right/stats_spec.rb +2 -3
- data/mod/05_standard/spec/set/right/when_created_spec.rb +1 -1
- data/mod/05_standard/spec/set/right/when_last_edited_spec.rb +1 -1
- data/mod/05_standard/spec/set/rstar/rules_spec.rb +6 -6
- data/mod/05_standard/spec/set/self/all_spec.rb +11 -13
- data/mod/05_standard/spec/set/self/head_spec.rb +1 -3
- data/mod/05_standard/spec/set/self/navbox_spec.rb +1 -1
- data/mod/05_standard/spec/set/self/now_spec.rb +2 -2
- data/mod/05_standard/spec/set/self/signin_spec.rb +1 -1
- data/mod/05_standard/spec/set/self/stats_spec.rb +1 -1
- data/mod/05_standard/spec/set/self/version_spec.rb +2 -2
- data/mod/05_standard/spec/set/type/cardtype_spec.rb +3 -4
- data/mod/05_standard/spec/set/type/date_spec.rb +1 -1
- data/mod/05_standard/spec/set/type/email_template_spec.rb +5 -5
- data/mod/05_standard/spec/set/type/file_spec.rb +50 -28
- data/mod/05_standard/spec/set/type/html_spec.rb +12 -7
- data/mod/05_standard/spec/set/type/image_spec.rb +55 -45
- data/mod/05_standard/spec/set/type/layout_type_spec.rb +2 -2
- data/mod/05_standard/spec/set/type/listed_by_spec.rb +2 -2
- data/mod/05_standard/spec/set/type/number_spec.rb +1 -1
- data/mod/05_standard/spec/set/type/phrase_spec.rb +1 -1
- data/mod/05_standard/spec/set/type/search_type_spec.rb +15 -16
- data/mod/05_standard/spec/set/type/set_spec.rb +16 -17
- data/mod/05_standard/spec/set/type/signup_spec.rb +7 -5
- data/mod/05_standard/spec/set/type/toggle_spec.rb +4 -4
- data/mod/05_standard/spec/set/type/uri_spec.rb +11 -11
- data/mod/05_standard/spec/set/type/user_spec.rb +0 -1
- data/mod/06_bootstrap/set/all/bootstrap/form.rb +9 -10
- data/mod/06_bootstrap/set/all/bootstrap/helper.rb +22 -27
- data/mod/06_bootstrap/set/all/bootstrap/wrapper.rb +1 -2
- data/mod/06_bootstrap/set/all/rich_bootstrap.rb +1 -3
- data/mod/06_bootstrap/set/self/bootstrap_cards.rb +2 -2
- data/mod/06_bootstrap/set/self/bootstrap_js.rb +2 -2
- data/mod/06_bootstrap/set/self/bootswatch_shared.rb +19 -19
- data/mod/06_bootstrap/set/self/smartmenu_css.rb +2 -2
- data/mod/06_bootstrap/set/self/smartmenu_js.rb +3 -3
- data/mod/06_bootstrap/spec/set/all/bootstrap/form_spec.rb +5 -5
- data/spec/lib/card/action_spec.rb +4 -4
- data/spec/lib/card/cache_spec.rb +3 -5
- data/spec/lib/card/chunk_spec.rb +6 -8
- data/spec/lib/card/codename_spec.rb +4 -6
- data/spec/lib/card/content_spec.rb +12 -17
- data/spec/lib/card/diff_spec.rb +59 -61
- data/spec/lib/card/format_spec.rb +55 -34
- data/spec/lib/card/loader_spec.rb +35 -37
- data/spec/lib/card/name_spec.rb +159 -145
- data/spec/lib/card/query_spec.rb +4 -4
- data/spec/lib/card/reference_spec.rb +24 -24
- data/spec/lib/card/set_pattern_spec.rb +3 -3
- data/spec/lib/card/stage_director_spec.rb +218 -0
- data/spec/lib/card/subcards_spec.rb +12 -16
- data/spec/lib/card/success_spec.rb +16 -18
- data/spec/lib/card/view_cache_spec.rb +1 -1
- data/spec/mailers/mailer_spec.rb +3 -5
- data/spec/models/card/cardtype_spec.rb +40 -51
- data/spec/models/card/create_spec.rb +58 -39
- data/spec/models/card/trash_spec.rb +23 -32
- data/spec/models/card/type_transition_spec.rb +41 -32
- data/spec/models/card/validation_spec.rb +13 -15
- data/spec/models/card_spec.rb +48 -59
- data/spec/spec_helper.rb +26 -31
- metadata +16 -2
@@ -39,7 +39,7 @@ class AddRecaptchaKeyAndAdminInfoCards < Card::CoreMigration
|
|
39
39
|
"[[+private key]]\n" \
|
40
40
|
'[[+proxy]]'
|
41
41
|
Card::Cache.reset_all
|
42
|
-
|
42
|
+
%w(public_key private_key proxy).each do |name|
|
43
43
|
Card.create!(
|
44
44
|
name: "#{Card[:recaptcha_settings].name}+#{name.tr('_', ' ')}",
|
45
45
|
codename: "recaptcha_#{name}"
|
@@ -48,16 +48,10 @@ class AddRecaptchaKeyAndAdminInfoCards < Card::CoreMigration
|
|
48
48
|
end
|
49
49
|
|
50
50
|
def admin_only args
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
'+*self+*delete' => { content: '[[Administrator]]' }
|
56
|
-
}
|
57
|
-
}
|
58
|
-
if args[:subcards]
|
59
|
-
shared_args[:subcards].merge! args.delete(:subcards)
|
51
|
+
create_or_update args.reverse_merge(type_id: Card::PhraseID)
|
52
|
+
%w(*read *update *delete).each do |perm|
|
53
|
+
create_or_update name: "#{args[:name]}+*self+#{perm}",
|
54
|
+
content: '[[Administrator]]'
|
60
55
|
end
|
61
|
-
create_or_update shared_args.merge(args)
|
62
56
|
end
|
63
57
|
end
|
@@ -1,11 +1,10 @@
|
|
1
1
|
# -*- encoding : utf-8 -*-
|
2
2
|
|
3
3
|
class UpdateFileAndImageCards < Card::CoreMigration
|
4
|
-
|
5
4
|
def get_new_file_name filename
|
6
5
|
original_filename = filename
|
7
6
|
if filename =~ /^(icon|small|medium|large|original)-([^.]+).(.+)$/
|
8
|
-
filename = "#{
|
7
|
+
filename = "#{Regexp.last_match(2)}-#{Regexp.last_match(1)}.#{Regexp.last_match(3)}"
|
9
8
|
end
|
10
9
|
filename = filename.downcase
|
11
10
|
filename if filename != original_filename
|
@@ -17,11 +16,10 @@ class UpdateFileAndImageCards < Card::CoreMigration
|
|
17
16
|
card.update_attributes! codename: 'credit_image'
|
18
17
|
end
|
19
18
|
%w( cerulean_skin cosmo_skin cyborg_skin darkly_skin flatly_skin journal_skin lumen_skin paper_skin readable_skin sandstone_skin simplex_skin slate_skin spacelab_skin superhero_skin united_skin yeti_skin ).each do |name|
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
end
|
19
|
+
next unless (card = Card[name.to_sym])
|
20
|
+
card.update_attributes! codename: nil
|
21
|
+
if (card = Card.fetch "#{name}+image")
|
22
|
+
card.update_attributes! codename: "#{name}_image"
|
25
23
|
end
|
26
24
|
end
|
27
25
|
|
@@ -33,38 +31,34 @@ class UpdateFileAndImageCards < Card::CoreMigration
|
|
33
31
|
action.update_attributes! comment: original_filename
|
34
32
|
end
|
35
33
|
end
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
end
|
57
|
-
end
|
58
|
-
end
|
59
|
-
symlink_target_hash.each do |symlink,target|
|
60
|
-
new_target_name = get_new_file_name(target)
|
61
|
-
File.symlink File.join(card.store_dir,new_target_name),File.join(card.store_dir,symlink)
|
34
|
+
next unless card.content.present?
|
35
|
+
attach_array = card.content.split "\n"
|
36
|
+
attach_array[0].match(/\.(.+)$/) do |_match|
|
37
|
+
extension = Regexp.last_match(1)
|
38
|
+
if attach_array.size > 3 # mod file
|
39
|
+
card.update_column :db_content, ":#{card.codename}/#{attach_array[3]}.#{extension}"
|
40
|
+
else
|
41
|
+
card.update_column :db_content, "~#{card.id}/#{card.last_action_id}.#{extension}"
|
42
|
+
end
|
43
|
+
# swap variant and action_id/type_code in file name
|
44
|
+
if Dir.exist? card.store_dir
|
45
|
+
symlink_target_hash = {}
|
46
|
+
Dir.entries(card.store_dir).each do |file|
|
47
|
+
next unless new_filename = get_new_file_name(file)
|
48
|
+
file_path = File.join(card.store_dir, file)
|
49
|
+
if File.symlink?(file_path)
|
50
|
+
symlink_target_hash[new_filename] = File.readlink(file_path)
|
51
|
+
File.unlink file_path
|
52
|
+
else
|
53
|
+
FileUtils.mv file_path, File.join(card.store_dir, new_filename)
|
62
54
|
end
|
63
55
|
end
|
56
|
+
symlink_target_hash.each do |symlink, target|
|
57
|
+
new_target_name = get_new_file_name(target)
|
58
|
+
File.symlink File.join(card.store_dir, new_target_name), File.join(card.store_dir, symlink)
|
59
|
+
end
|
64
60
|
end
|
65
61
|
end
|
66
62
|
end
|
67
|
-
|
68
63
|
end
|
69
|
-
|
70
64
|
end
|
@@ -4,22 +4,18 @@ class UpdateFileHistory < Card::CoreMigration
|
|
4
4
|
def up
|
5
5
|
Card.search(type: [:in, 'file', 'image']).each do |card|
|
6
6
|
card.actions.each do |action|
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
end
|
16
|
-
content_change.update_attributes! value: value
|
7
|
+
next unless (content_change = action.change_for(:db_content).first)
|
8
|
+
original_filename, file_type, action_id, mod = content_change.value.split("\n")
|
9
|
+
next unless file_type.present? && action_id.present?
|
10
|
+
value =
|
11
|
+
if mod.present?
|
12
|
+
":#{card.codename}/#{mod}#{::File.extname(original_filename)}"
|
13
|
+
else
|
14
|
+
"~#{card.id}/#{action_id}#{::File.extname(original_filename)}"
|
17
15
|
end
|
18
|
-
|
16
|
+
content_change.update_attributes! value: value
|
19
17
|
end
|
20
18
|
end
|
21
|
-
Card.search(
|
22
|
-
card.delete!
|
23
|
-
end
|
19
|
+
Card.search(right: { codename: 'machine_output' }).each(&:delete!)
|
24
20
|
end
|
25
21
|
end
|
data/db/schema.rb
CHANGED
@@ -11,123 +11,121 @@
|
|
11
11
|
#
|
12
12
|
# It's strongly recommended that you check this file into your version control system.
|
13
13
|
|
14
|
-
ActiveRecord::Schema.define(version:
|
15
|
-
|
16
|
-
|
17
|
-
t.integer
|
18
|
-
t.integer
|
19
|
-
t.integer
|
20
|
-
t.
|
21
|
-
t.
|
22
|
-
t.text "comment", limit: 65535
|
14
|
+
ActiveRecord::Schema.define(version: 20_160_122_153_608) do
|
15
|
+
create_table 'card_actions', force: :cascade do |t|
|
16
|
+
t.integer 'card_id', limit: 4
|
17
|
+
t.integer 'card_act_id', limit: 4
|
18
|
+
t.integer 'super_action_id', limit: 4
|
19
|
+
t.integer 'action_type', limit: 4
|
20
|
+
t.boolean 'draft'
|
21
|
+
t.text 'comment', limit: 65_535
|
23
22
|
end
|
24
23
|
|
25
|
-
add_index
|
26
|
-
add_index
|
24
|
+
add_index 'card_actions', ['card_act_id'], name: 'card_actions_card_act_id_index', using: :btree
|
25
|
+
add_index 'card_actions', ['card_id'], name: 'card_actions_card_id_index', using: :btree
|
27
26
|
|
28
|
-
create_table
|
29
|
-
t.integer
|
30
|
-
t.integer
|
31
|
-
t.datetime
|
32
|
-
t.string
|
27
|
+
create_table 'card_acts', force: :cascade do |t|
|
28
|
+
t.integer 'card_id', limit: 4
|
29
|
+
t.integer 'actor_id', limit: 4
|
30
|
+
t.datetime 'acted_at'
|
31
|
+
t.string 'ip_address', limit: 255
|
33
32
|
end
|
34
33
|
|
35
|
-
add_index
|
36
|
-
add_index
|
37
|
-
add_index
|
34
|
+
add_index 'card_acts', ['acted_at'], name: 'acts_acted_at_index', using: :btree
|
35
|
+
add_index 'card_acts', ['actor_id'], name: 'card_acts_actor_id_index', using: :btree
|
36
|
+
add_index 'card_acts', ['card_id'], name: 'card_acts_card_id_index', using: :btree
|
38
37
|
|
39
|
-
create_table
|
40
|
-
t.integer
|
41
|
-
t.integer
|
42
|
-
t.text
|
38
|
+
create_table 'card_changes', force: :cascade do |t|
|
39
|
+
t.integer 'card_action_id', limit: 4
|
40
|
+
t.integer 'field', limit: 4
|
41
|
+
t.text 'value', limit: 16_777_215
|
43
42
|
end
|
44
43
|
|
45
|
-
add_index
|
44
|
+
add_index 'card_changes', ['card_action_id'], name: 'card_changes_card_action_id_index', using: :btree
|
46
45
|
|
47
|
-
create_table
|
48
|
-
t.integer
|
49
|
-
t.string
|
50
|
-
t.integer
|
51
|
-
t.string
|
52
|
-
t.integer
|
46
|
+
create_table 'card_references', force: :cascade do |t|
|
47
|
+
t.integer 'referer_id', limit: 4, default: 0, null: false
|
48
|
+
t.string 'referee_key', limit: 255, default: '', null: false
|
49
|
+
t.integer 'referee_id', limit: 4
|
50
|
+
t.string 'ref_type', limit: 1, default: '', null: false
|
51
|
+
t.integer 'present', limit: 4
|
53
52
|
end
|
54
53
|
|
55
|
-
add_index
|
56
|
-
add_index
|
57
|
-
add_index
|
58
|
-
add_index
|
54
|
+
add_index 'card_references', ['ref_type'], name: 'card_references_ref_type_index', using: :btree
|
55
|
+
add_index 'card_references', ['referee_id'], name: 'card_references_referee_id_index', using: :btree
|
56
|
+
add_index 'card_references', ['referee_key'], name: 'card_references_referee_key_index', using: :btree
|
57
|
+
add_index 'card_references', ['referer_id'], name: 'card_references_referer_id_index', using: :btree
|
59
58
|
|
60
|
-
create_table
|
61
|
-
t.datetime
|
62
|
-
t.integer
|
63
|
-
t.integer
|
64
|
-
t.text
|
59
|
+
create_table 'card_revisions', force: :cascade do |t|
|
60
|
+
t.datetime 'created_at', null: false
|
61
|
+
t.integer 'card_id', limit: 4, null: false
|
62
|
+
t.integer 'creator_id', limit: 4, null: false
|
63
|
+
t.text 'content', limit: 65_535, null: false
|
65
64
|
end
|
66
65
|
|
67
|
-
add_index
|
68
|
-
add_index
|
69
|
-
|
70
|
-
create_table
|
71
|
-
t.string
|
72
|
-
t.string
|
73
|
-
t.string
|
74
|
-
t.integer
|
75
|
-
t.integer
|
76
|
-
t.integer
|
77
|
-
t.datetime
|
78
|
-
t.datetime
|
79
|
-
t.integer
|
80
|
-
t.integer
|
81
|
-
t.string
|
82
|
-
t.integer
|
83
|
-
t.integer
|
84
|
-
t.boolean
|
85
|
-
t.integer
|
86
|
-
t.text
|
66
|
+
add_index 'card_revisions', ['card_id'], name: 'revisions_card_id_index', using: :btree
|
67
|
+
add_index 'card_revisions', ['creator_id'], name: 'revisions_created_by_index', using: :btree
|
68
|
+
|
69
|
+
create_table 'cards', force: :cascade do |t|
|
70
|
+
t.string 'name', limit: 255, null: false
|
71
|
+
t.string 'key', limit: 255, null: false
|
72
|
+
t.string 'codename', limit: 255
|
73
|
+
t.integer 'left_id', limit: 4
|
74
|
+
t.integer 'right_id', limit: 4
|
75
|
+
t.integer 'current_revision_id', limit: 4
|
76
|
+
t.datetime 'created_at', null: false
|
77
|
+
t.datetime 'updated_at', null: false
|
78
|
+
t.integer 'creator_id', limit: 4, null: false
|
79
|
+
t.integer 'updater_id', limit: 4, null: false
|
80
|
+
t.string 'read_rule_class', limit: 255
|
81
|
+
t.integer 'read_rule_id', limit: 4
|
82
|
+
t.integer 'references_expired', limit: 4
|
83
|
+
t.boolean 'trash', null: false
|
84
|
+
t.integer 'type_id', limit: 4, null: false
|
85
|
+
t.text 'db_content', limit: 16_777_215
|
87
86
|
end
|
88
87
|
|
89
|
-
add_index
|
90
|
-
add_index
|
91
|
-
add_index
|
92
|
-
add_index
|
93
|
-
add_index
|
94
|
-
add_index
|
95
|
-
add_index
|
96
|
-
add_index
|
97
|
-
|
98
|
-
create_table
|
99
|
-
t.string
|
88
|
+
add_index 'cards', ['created_at'], name: 'cards_created_at_index', using: :btree
|
89
|
+
add_index 'cards', ['key'], name: 'cards_key_index', unique: true, using: :btree
|
90
|
+
add_index 'cards', ['left_id'], name: 'cards_left_id_index', using: :btree
|
91
|
+
add_index 'cards', ['name'], name: 'cards_name_index', using: :btree
|
92
|
+
add_index 'cards', ['read_rule_id'], name: 'cards_read_rule_id_index', using: :btree
|
93
|
+
add_index 'cards', ['right_id'], name: 'cards_right_id_index', using: :btree
|
94
|
+
add_index 'cards', ['type_id'], name: 'cards_type_id_index', using: :btree
|
95
|
+
add_index 'cards', ['updated_at'], name: 'cards_updated_at_index', using: :btree
|
96
|
+
|
97
|
+
create_table 'schema_migrations_core_cards', id: false, force: :cascade do |t|
|
98
|
+
t.string 'version', limit: 255, null: false
|
100
99
|
end
|
101
100
|
|
102
|
-
add_index
|
101
|
+
add_index 'schema_migrations_core_cards', ['version'], name: 'unique_schema_migrations_cards', unique: true, using: :btree
|
103
102
|
|
104
|
-
create_table
|
105
|
-
t.string
|
103
|
+
create_table 'schema_migrations_deck_cards', id: false, force: :cascade do |t|
|
104
|
+
t.string 'version', limit: 255, null: false
|
106
105
|
end
|
107
106
|
|
108
|
-
add_index
|
107
|
+
add_index 'schema_migrations_deck_cards', ['version'], name: 'unique_schema_migrations_deck_cards', unique: true, using: :btree
|
109
108
|
|
110
|
-
create_table
|
111
|
-
t.string
|
112
|
-
t.text
|
113
|
-
t.datetime
|
109
|
+
create_table 'sessions', force: :cascade do |t|
|
110
|
+
t.string 'session_id', limit: 255
|
111
|
+
t.text 'data', limit: 65_535
|
112
|
+
t.datetime 'updated_at'
|
114
113
|
end
|
115
114
|
|
116
|
-
add_index
|
117
|
-
|
118
|
-
create_table
|
119
|
-
t.string
|
120
|
-
t.string
|
121
|
-
t.string
|
122
|
-
t.string
|
123
|
-
t.datetime
|
124
|
-
t.datetime
|
125
|
-
t.string
|
126
|
-
t.string
|
127
|
-
t.integer
|
128
|
-
t.string
|
129
|
-
t.integer
|
130
|
-
t.integer
|
115
|
+
add_index 'sessions', ['session_id'], name: 'sessions_session_id_index', using: :btree
|
116
|
+
|
117
|
+
create_table 'users', force: :cascade do |t|
|
118
|
+
t.string 'login', limit: 40
|
119
|
+
t.string 'email', limit: 100
|
120
|
+
t.string 'crypted_password', limit: 40
|
121
|
+
t.string 'salt', limit: 42
|
122
|
+
t.datetime 'created_at'
|
123
|
+
t.datetime 'updated_at'
|
124
|
+
t.string 'password_reset_code', limit: 40
|
125
|
+
t.string 'status', limit: 255, default: 'request'
|
126
|
+
t.integer 'invite_sender_id', limit: 4
|
127
|
+
t.string 'identity_url', limit: 255
|
128
|
+
t.integer 'card_id', limit: 4, null: false
|
129
|
+
t.integer 'account_id', limit: 4, null: false
|
131
130
|
end
|
132
|
-
|
133
131
|
end
|
@@ -3128,22 +3128,6 @@ card_actions_391:
|
|
3128
3128
|
draft: false
|
3129
3129
|
comment:
|
3130
3130
|
card_actions_392:
|
3131
|
-
id: 6873
|
3132
|
-
card_id: 1015
|
3133
|
-
card_act_id: 1
|
3134
|
-
super_action_id:
|
3135
|
-
action_type: 0
|
3136
|
-
draft: false
|
3137
|
-
comment:
|
3138
|
-
card_actions_393:
|
3139
|
-
id: 6875
|
3140
|
-
card_id: 1017
|
3141
|
-
card_act_id: 1
|
3142
|
-
super_action_id:
|
3143
|
-
action_type: 0
|
3144
|
-
draft: false
|
3145
|
-
comment:
|
3146
|
-
card_actions_394:
|
3147
3131
|
id: 6891
|
3148
3132
|
card_id: 68
|
3149
3133
|
card_act_id: 1
|
@@ -3151,7 +3135,7 @@ card_actions_394:
|
|
3151
3135
|
action_type: 1
|
3152
3136
|
draft: false
|
3153
3137
|
comment:
|
3154
|
-
|
3138
|
+
card_actions_393:
|
3155
3139
|
id: 6896
|
3156
3140
|
card_id: 1033
|
3157
3141
|
card_act_id: 1
|
@@ -3159,7 +3143,7 @@ card_actions_395:
|
|
3159
3143
|
action_type: 0
|
3160
3144
|
draft: false
|
3161
3145
|
comment:
|
3162
|
-
|
3146
|
+
card_actions_394:
|
3163
3147
|
id: 6897
|
3164
3148
|
card_id: 1034
|
3165
3149
|
card_act_id: 1
|
@@ -3167,7 +3151,7 @@ card_actions_396:
|
|
3167
3151
|
action_type: 0
|
3168
3152
|
draft: false
|
3169
3153
|
comment:
|
3170
|
-
|
3154
|
+
card_actions_395:
|
3171
3155
|
id: 6898
|
3172
3156
|
card_id: 1035
|
3173
3157
|
card_act_id: 1
|
@@ -3175,7 +3159,7 @@ card_actions_397:
|
|
3175
3159
|
action_type: 0
|
3176
3160
|
draft: false
|
3177
3161
|
comment:
|
3178
|
-
|
3162
|
+
card_actions_396:
|
3179
3163
|
id: 6899
|
3180
3164
|
card_id: 1036
|
3181
3165
|
card_act_id: 1
|
@@ -3183,7 +3167,7 @@ card_actions_398:
|
|
3183
3167
|
action_type: 0
|
3184
3168
|
draft: false
|
3185
3169
|
comment:
|
3186
|
-
|
3170
|
+
card_actions_397:
|
3187
3171
|
id: 6900
|
3188
3172
|
card_id: 1037
|
3189
3173
|
card_act_id: 1
|
@@ -3191,7 +3175,7 @@ card_actions_399:
|
|
3191
3175
|
action_type: 0
|
3192
3176
|
draft: false
|
3193
3177
|
comment:
|
3194
|
-
|
3178
|
+
card_actions_398:
|
3195
3179
|
id: 6901
|
3196
3180
|
card_id: 1038
|
3197
3181
|
card_act_id: 1
|
@@ -3199,7 +3183,7 @@ card_actions_400:
|
|
3199
3183
|
action_type: 0
|
3200
3184
|
draft: false
|
3201
3185
|
comment:
|
3202
|
-
|
3186
|
+
card_actions_399:
|
3203
3187
|
id: 6902
|
3204
3188
|
card_id: 1039
|
3205
3189
|
card_act_id: 1
|
@@ -3207,7 +3191,7 @@ card_actions_401:
|
|
3207
3191
|
action_type: 0
|
3208
3192
|
draft: false
|
3209
3193
|
comment:
|
3210
|
-
|
3194
|
+
card_actions_400:
|
3211
3195
|
id: 6903
|
3212
3196
|
card_id: 1040
|
3213
3197
|
card_act_id: 1
|
@@ -3215,7 +3199,7 @@ card_actions_402:
|
|
3215
3199
|
action_type: 0
|
3216
3200
|
draft: false
|
3217
3201
|
comment:
|
3218
|
-
|
3202
|
+
card_actions_401:
|
3219
3203
|
id: 6904
|
3220
3204
|
card_id: 1041
|
3221
3205
|
card_act_id: 1
|
@@ -3223,7 +3207,7 @@ card_actions_403:
|
|
3223
3207
|
action_type: 0
|
3224
3208
|
draft: false
|
3225
3209
|
comment:
|
3226
|
-
|
3210
|
+
card_actions_402:
|
3227
3211
|
id: 6905
|
3228
3212
|
card_id: 1042
|
3229
3213
|
card_act_id: 1
|
@@ -3231,7 +3215,7 @@ card_actions_404:
|
|
3231
3215
|
action_type: 0
|
3232
3216
|
draft: false
|
3233
3217
|
comment:
|
3234
|
-
|
3218
|
+
card_actions_403:
|
3235
3219
|
id: 6906
|
3236
3220
|
card_id: 1043
|
3237
3221
|
card_act_id: 1
|
@@ -3239,7 +3223,7 @@ card_actions_405:
|
|
3239
3223
|
action_type: 0
|
3240
3224
|
draft: false
|
3241
3225
|
comment:
|
3242
|
-
|
3226
|
+
card_actions_404:
|
3243
3227
|
id: 6907
|
3244
3228
|
card_id: 1044
|
3245
3229
|
card_act_id: 1
|
@@ -3247,7 +3231,7 @@ card_actions_406:
|
|
3247
3231
|
action_type: 0
|
3248
3232
|
draft: false
|
3249
3233
|
comment:
|
3250
|
-
|
3234
|
+
card_actions_405:
|
3251
3235
|
id: 6908
|
3252
3236
|
card_id: 1045
|
3253
3237
|
card_act_id: 1
|
@@ -3255,7 +3239,7 @@ card_actions_407:
|
|
3255
3239
|
action_type: 0
|
3256
3240
|
draft: false
|
3257
3241
|
comment:
|
3258
|
-
|
3242
|
+
card_actions_406:
|
3259
3243
|
id: 6909
|
3260
3244
|
card_id: 1046
|
3261
3245
|
card_act_id: 1
|
@@ -3263,7 +3247,7 @@ card_actions_408:
|
|
3263
3247
|
action_type: 0
|
3264
3248
|
draft: false
|
3265
3249
|
comment:
|
3266
|
-
|
3250
|
+
card_actions_407:
|
3267
3251
|
id: 6910
|
3268
3252
|
card_id: 1047
|
3269
3253
|
card_act_id: 1
|
@@ -3271,7 +3255,7 @@ card_actions_409:
|
|
3271
3255
|
action_type: 0
|
3272
3256
|
draft: false
|
3273
3257
|
comment:
|
3274
|
-
|
3258
|
+
card_actions_408:
|
3275
3259
|
id: 6911
|
3276
3260
|
card_id: 1048
|
3277
3261
|
card_act_id: 1
|
@@ -3279,7 +3263,7 @@ card_actions_410:
|
|
3279
3263
|
action_type: 0
|
3280
3264
|
draft: false
|
3281
3265
|
comment:
|
3282
|
-
|
3266
|
+
card_actions_409:
|
3283
3267
|
id: 6912
|
3284
3268
|
card_id: 1049
|
3285
3269
|
card_act_id: 1
|
@@ -3287,7 +3271,7 @@ card_actions_411:
|
|
3287
3271
|
action_type: 0
|
3288
3272
|
draft: false
|
3289
3273
|
comment:
|
3290
|
-
|
3274
|
+
card_actions_410:
|
3291
3275
|
id: 6913
|
3292
3276
|
card_id: 1050
|
3293
3277
|
card_act_id: 1
|
@@ -3295,7 +3279,7 @@ card_actions_412:
|
|
3295
3279
|
action_type: 0
|
3296
3280
|
draft: false
|
3297
3281
|
comment:
|
3298
|
-
|
3282
|
+
card_actions_411:
|
3299
3283
|
id: 6914
|
3300
3284
|
card_id: 1051
|
3301
3285
|
card_act_id: 1
|
@@ -3303,7 +3287,7 @@ card_actions_413:
|
|
3303
3287
|
action_type: 0
|
3304
3288
|
draft: false
|
3305
3289
|
comment:
|
3306
|
-
|
3290
|
+
card_actions_412:
|
3307
3291
|
id: 6915
|
3308
3292
|
card_id: 1052
|
3309
3293
|
card_act_id: 1
|
@@ -3311,7 +3295,7 @@ card_actions_414:
|
|
3311
3295
|
action_type: 0
|
3312
3296
|
draft: false
|
3313
3297
|
comment:
|
3314
|
-
|
3298
|
+
card_actions_413:
|
3315
3299
|
id: 6916
|
3316
3300
|
card_id: 1053
|
3317
3301
|
card_act_id: 1
|
@@ -3319,7 +3303,7 @@ card_actions_415:
|
|
3319
3303
|
action_type: 0
|
3320
3304
|
draft: false
|
3321
3305
|
comment:
|
3322
|
-
|
3306
|
+
card_actions_414:
|
3323
3307
|
id: 6917
|
3324
3308
|
card_id: 1054
|
3325
3309
|
card_act_id: 1
|
@@ -3327,7 +3311,7 @@ card_actions_416:
|
|
3327
3311
|
action_type: 0
|
3328
3312
|
draft: false
|
3329
3313
|
comment:
|
3330
|
-
|
3314
|
+
card_actions_415:
|
3331
3315
|
id: 6918
|
3332
3316
|
card_id: 1055
|
3333
3317
|
card_act_id: 1
|
@@ -3335,7 +3319,7 @@ card_actions_417:
|
|
3335
3319
|
action_type: 0
|
3336
3320
|
draft: false
|
3337
3321
|
comment:
|
3338
|
-
|
3322
|
+
card_actions_416:
|
3339
3323
|
id: 6919
|
3340
3324
|
card_id: 1056
|
3341
3325
|
card_act_id: 1
|
@@ -3343,7 +3327,7 @@ card_actions_418:
|
|
3343
3327
|
action_type: 0
|
3344
3328
|
draft: false
|
3345
3329
|
comment:
|
3346
|
-
|
3330
|
+
card_actions_417:
|
3347
3331
|
id: 6920
|
3348
3332
|
card_id: 1057
|
3349
3333
|
card_act_id: 1
|
@@ -3351,7 +3335,7 @@ card_actions_419:
|
|
3351
3335
|
action_type: 0
|
3352
3336
|
draft: false
|
3353
3337
|
comment:
|
3354
|
-
|
3338
|
+
card_actions_418:
|
3355
3339
|
id: 6921
|
3356
3340
|
card_id: 1058
|
3357
3341
|
card_act_id: 1
|
@@ -3359,7 +3343,7 @@ card_actions_420:
|
|
3359
3343
|
action_type: 0
|
3360
3344
|
draft: false
|
3361
3345
|
comment:
|
3362
|
-
|
3346
|
+
card_actions_419:
|
3363
3347
|
id: 6922
|
3364
3348
|
card_id: 1059
|
3365
3349
|
card_act_id: 1
|
@@ -3367,7 +3351,7 @@ card_actions_421:
|
|
3367
3351
|
action_type: 0
|
3368
3352
|
draft: false
|
3369
3353
|
comment:
|
3370
|
-
|
3354
|
+
card_actions_420:
|
3371
3355
|
id: 6924
|
3372
3356
|
card_id: 1061
|
3373
3357
|
card_act_id: 1
|
@@ -3375,7 +3359,7 @@ card_actions_422:
|
|
3375
3359
|
action_type: 0
|
3376
3360
|
draft: false
|
3377
3361
|
comment:
|
3378
|
-
|
3362
|
+
card_actions_421:
|
3379
3363
|
id: 6925
|
3380
3364
|
card_id: 1062
|
3381
3365
|
card_act_id: 1
|
@@ -3383,7 +3367,15 @@ card_actions_423:
|
|
3383
3367
|
action_type: 0
|
3384
3368
|
draft: false
|
3385
3369
|
comment:
|
3386
|
-
|
3370
|
+
card_actions_422:
|
3371
|
+
id: 6976
|
3372
|
+
card_id: 69
|
3373
|
+
card_act_id: 1
|
3374
|
+
super_action_id:
|
3375
|
+
action_type: 1
|
3376
|
+
draft: false
|
3377
|
+
comment:
|
3378
|
+
card_actions_423:
|
3387
3379
|
id: 7122
|
3388
3380
|
card_id: 1008
|
3389
3381
|
card_act_id: 1
|
@@ -3391,7 +3383,7 @@ card_actions_424:
|
|
3391
3383
|
action_type: 1
|
3392
3384
|
draft: false
|
3393
3385
|
comment:
|
3394
|
-
|
3386
|
+
card_actions_424:
|
3395
3387
|
id: 7149
|
3396
3388
|
card_id: 1199
|
3397
3389
|
card_act_id: 1
|
@@ -3399,7 +3391,7 @@ card_actions_425:
|
|
3399
3391
|
action_type: 0
|
3400
3392
|
draft: false
|
3401
3393
|
comment:
|
3402
|
-
|
3394
|
+
card_actions_425:
|
3403
3395
|
id: 7150
|
3404
3396
|
card_id: 1201
|
3405
3397
|
card_act_id: 1
|
@@ -3407,7 +3399,7 @@ card_actions_426:
|
|
3407
3399
|
action_type: 0
|
3408
3400
|
draft: false
|
3409
3401
|
comment:
|
3410
|
-
|
3402
|
+
card_actions_426:
|
3411
3403
|
id: 7151
|
3412
3404
|
card_id: 1200
|
3413
3405
|
card_act_id: 1
|
@@ -3415,7 +3407,7 @@ card_actions_427:
|
|
3415
3407
|
action_type: 0
|
3416
3408
|
draft: false
|
3417
3409
|
comment:
|
3418
|
-
|
3410
|
+
card_actions_427:
|
3419
3411
|
id: 7152
|
3420
3412
|
card_id: 1202
|
3421
3413
|
card_act_id: 1
|
@@ -3423,7 +3415,7 @@ card_actions_428:
|
|
3423
3415
|
action_type: 0
|
3424
3416
|
draft: false
|
3425
3417
|
comment:
|
3426
|
-
|
3418
|
+
card_actions_428:
|
3427
3419
|
id: 7153
|
3428
3420
|
card_id: 1203
|
3429
3421
|
card_act_id: 1
|
@@ -3431,7 +3423,7 @@ card_actions_429:
|
|
3431
3423
|
action_type: 0
|
3432
3424
|
draft: false
|
3433
3425
|
comment:
|
3434
|
-
|
3426
|
+
card_actions_429:
|
3435
3427
|
id: 7154
|
3436
3428
|
card_id: 1205
|
3437
3429
|
card_act_id: 1
|
@@ -3439,7 +3431,7 @@ card_actions_430:
|
|
3439
3431
|
action_type: 0
|
3440
3432
|
draft: false
|
3441
3433
|
comment:
|
3442
|
-
|
3434
|
+
card_actions_430:
|
3443
3435
|
id: 7155
|
3444
3436
|
card_id: 1204
|
3445
3437
|
card_act_id: 1
|
@@ -3447,7 +3439,7 @@ card_actions_431:
|
|
3447
3439
|
action_type: 0
|
3448
3440
|
draft: false
|
3449
3441
|
comment:
|
3450
|
-
|
3442
|
+
card_actions_431:
|
3451
3443
|
id: 7156
|
3452
3444
|
card_id: 1206
|
3453
3445
|
card_act_id: 1
|
@@ -3455,7 +3447,7 @@ card_actions_432:
|
|
3455
3447
|
action_type: 0
|
3456
3448
|
draft: false
|
3457
3449
|
comment:
|
3458
|
-
|
3450
|
+
card_actions_432:
|
3459
3451
|
id: 7157
|
3460
3452
|
card_id: 1207
|
3461
3453
|
card_act_id: 1
|
@@ -3463,7 +3455,7 @@ card_actions_433:
|
|
3463
3455
|
action_type: 0
|
3464
3456
|
draft: false
|
3465
3457
|
comment:
|
3466
|
-
|
3458
|
+
card_actions_433:
|
3467
3459
|
id: 7158
|
3468
3460
|
card_id: 1209
|
3469
3461
|
card_act_id: 1
|
@@ -3471,7 +3463,7 @@ card_actions_434:
|
|
3471
3463
|
action_type: 0
|
3472
3464
|
draft: false
|
3473
3465
|
comment:
|
3474
|
-
|
3466
|
+
card_actions_434:
|
3475
3467
|
id: 7159
|
3476
3468
|
card_id: 1208
|
3477
3469
|
card_act_id: 1
|
@@ -3479,7 +3471,7 @@ card_actions_435:
|
|
3479
3471
|
action_type: 0
|
3480
3472
|
draft: false
|
3481
3473
|
comment:
|
3482
|
-
|
3474
|
+
card_actions_435:
|
3483
3475
|
id: 7160
|
3484
3476
|
card_id: 1210
|
3485
3477
|
card_act_id: 1
|
@@ -3487,7 +3479,7 @@ card_actions_436:
|
|
3487
3479
|
action_type: 0
|
3488
3480
|
draft: false
|
3489
3481
|
comment:
|
3490
|
-
|
3482
|
+
card_actions_436:
|
3491
3483
|
id: 7161
|
3492
3484
|
card_id: 375
|
3493
3485
|
card_act_id: 1
|
@@ -3495,7 +3487,7 @@ card_actions_437:
|
|
3495
3487
|
action_type: 1
|
3496
3488
|
draft: false
|
3497
3489
|
comment:
|
3498
|
-
|
3490
|
+
card_actions_437:
|
3499
3491
|
id: 7162
|
3500
3492
|
card_id: 1211
|
3501
3493
|
card_act_id: 1
|
@@ -3503,7 +3495,7 @@ card_actions_438:
|
|
3503
3495
|
action_type: 0
|
3504
3496
|
draft: false
|
3505
3497
|
comment:
|
3506
|
-
|
3498
|
+
card_actions_438:
|
3507
3499
|
id: 7163
|
3508
3500
|
card_id: 377
|
3509
3501
|
card_act_id: 1
|
@@ -3511,7 +3503,7 @@ card_actions_439:
|
|
3511
3503
|
action_type: 1
|
3512
3504
|
draft: false
|
3513
3505
|
comment:
|
3514
|
-
|
3506
|
+
card_actions_439:
|
3515
3507
|
id: 7164
|
3516
3508
|
card_id: 1212
|
3517
3509
|
card_act_id: 1
|
@@ -3519,7 +3511,7 @@ card_actions_440:
|
|
3519
3511
|
action_type: 0
|
3520
3512
|
draft: false
|
3521
3513
|
comment:
|
3522
|
-
|
3514
|
+
card_actions_440:
|
3523
3515
|
id: 7165
|
3524
3516
|
card_id: 380
|
3525
3517
|
card_act_id: 1
|
@@ -3527,7 +3519,7 @@ card_actions_441:
|
|
3527
3519
|
action_type: 1
|
3528
3520
|
draft: false
|
3529
3521
|
comment:
|
3530
|
-
|
3522
|
+
card_actions_441:
|
3531
3523
|
id: 7166
|
3532
3524
|
card_id: 1213
|
3533
3525
|
card_act_id: 1
|
@@ -3535,7 +3527,7 @@ card_actions_442:
|
|
3535
3527
|
action_type: 0
|
3536
3528
|
draft: false
|
3537
3529
|
comment:
|
3538
|
-
|
3530
|
+
card_actions_442:
|
3539
3531
|
id: 7167
|
3540
3532
|
card_id: 383
|
3541
3533
|
card_act_id: 1
|
@@ -3543,7 +3535,7 @@ card_actions_443:
|
|
3543
3535
|
action_type: 1
|
3544
3536
|
draft: false
|
3545
3537
|
comment:
|
3546
|
-
|
3538
|
+
card_actions_443:
|
3547
3539
|
id: 7168
|
3548
3540
|
card_id: 1214
|
3549
3541
|
card_act_id: 1
|
@@ -3551,7 +3543,7 @@ card_actions_444:
|
|
3551
3543
|
action_type: 0
|
3552
3544
|
draft: false
|
3553
3545
|
comment:
|
3554
|
-
|
3546
|
+
card_actions_444:
|
3555
3547
|
id: 7169
|
3556
3548
|
card_id: 1215
|
3557
3549
|
card_act_id: 1
|
@@ -3559,7 +3551,7 @@ card_actions_445:
|
|
3559
3551
|
action_type: 0
|
3560
3552
|
draft: false
|
3561
3553
|
comment:
|
3562
|
-
|
3554
|
+
card_actions_445:
|
3563
3555
|
id: 7171
|
3564
3556
|
card_id: 1216
|
3565
3557
|
card_act_id: 1
|
@@ -3567,7 +3559,7 @@ card_actions_446:
|
|
3567
3559
|
action_type: 0
|
3568
3560
|
draft: false
|
3569
3561
|
comment:
|
3570
|
-
|
3562
|
+
card_actions_446:
|
3571
3563
|
id: 7172
|
3572
3564
|
card_id: 1218
|
3573
3565
|
card_act_id: 1
|
@@ -3575,7 +3567,7 @@ card_actions_447:
|
|
3575
3567
|
action_type: 0
|
3576
3568
|
draft: false
|
3577
3569
|
comment:
|
3578
|
-
|
3570
|
+
card_actions_447:
|
3579
3571
|
id: 7173
|
3580
3572
|
card_id: 1219
|
3581
3573
|
card_act_id: 1
|
@@ -3583,7 +3575,7 @@ card_actions_448:
|
|
3583
3575
|
action_type: 0
|
3584
3576
|
draft: false
|
3585
3577
|
comment:
|
3586
|
-
|
3578
|
+
card_actions_448:
|
3587
3579
|
id: 7174
|
3588
3580
|
card_id: 1221
|
3589
3581
|
card_act_id: 1
|
@@ -3591,7 +3583,7 @@ card_actions_449:
|
|
3591
3583
|
action_type: 0
|
3592
3584
|
draft: false
|
3593
3585
|
comment:
|
3594
|
-
|
3586
|
+
card_actions_449:
|
3595
3587
|
id: 7175
|
3596
3588
|
card_id: 1220
|
3597
3589
|
card_act_id: 1
|
@@ -3599,7 +3591,7 @@ card_actions_450:
|
|
3599
3591
|
action_type: 0
|
3600
3592
|
draft: false
|
3601
3593
|
comment:
|
3602
|
-
|
3594
|
+
card_actions_450:
|
3603
3595
|
id: 7176
|
3604
3596
|
card_id: 1222
|
3605
3597
|
card_act_id: 1
|
@@ -3607,7 +3599,7 @@ card_actions_451:
|
|
3607
3599
|
action_type: 0
|
3608
3600
|
draft: false
|
3609
3601
|
comment:
|
3610
|
-
|
3602
|
+
card_actions_451:
|
3611
3603
|
id: 7177
|
3612
3604
|
card_id: 1223
|
3613
3605
|
card_act_id: 1
|
@@ -3615,7 +3607,7 @@ card_actions_452:
|
|
3615
3607
|
action_type: 0
|
3616
3608
|
draft: false
|
3617
3609
|
comment:
|
3618
|
-
|
3610
|
+
card_actions_452:
|
3619
3611
|
id: 7178
|
3620
3612
|
card_id: 1224
|
3621
3613
|
card_act_id: 1
|
@@ -3623,7 +3615,7 @@ card_actions_453:
|
|
3623
3615
|
action_type: 0
|
3624
3616
|
draft: false
|
3625
3617
|
comment:
|
3626
|
-
|
3618
|
+
card_actions_453:
|
3627
3619
|
id: 7179
|
3628
3620
|
card_id: 1225
|
3629
3621
|
card_act_id: 1
|
@@ -3631,7 +3623,7 @@ card_actions_454:
|
|
3631
3623
|
action_type: 0
|
3632
3624
|
draft: false
|
3633
3625
|
comment:
|
3634
|
-
|
3626
|
+
card_actions_454:
|
3635
3627
|
id: 7180
|
3636
3628
|
card_id: 1226
|
3637
3629
|
card_act_id: 1
|
@@ -3639,7 +3631,7 @@ card_actions_455:
|
|
3639
3631
|
action_type: 0
|
3640
3632
|
draft: false
|
3641
3633
|
comment:
|
3642
|
-
|
3634
|
+
card_actions_455:
|
3643
3635
|
id: 7181
|
3644
3636
|
card_id: 1227
|
3645
3637
|
card_act_id: 1
|
@@ -3647,7 +3639,7 @@ card_actions_456:
|
|
3647
3639
|
action_type: 0
|
3648
3640
|
draft: false
|
3649
3641
|
comment:
|
3650
|
-
|
3642
|
+
card_actions_456:
|
3651
3643
|
id: 7182
|
3652
3644
|
card_id: 1228
|
3653
3645
|
card_act_id: 1
|
@@ -3655,7 +3647,7 @@ card_actions_457:
|
|
3655
3647
|
action_type: 0
|
3656
3648
|
draft: false
|
3657
3649
|
comment:
|
3658
|
-
|
3650
|
+
card_actions_457:
|
3659
3651
|
id: 7183
|
3660
3652
|
card_id: 1229
|
3661
3653
|
card_act_id: 1
|
@@ -3663,7 +3655,7 @@ card_actions_458:
|
|
3663
3655
|
action_type: 0
|
3664
3656
|
draft: false
|
3665
3657
|
comment:
|
3666
|
-
|
3658
|
+
card_actions_458:
|
3667
3659
|
id: 7184
|
3668
3660
|
card_id: 1230
|
3669
3661
|
card_act_id: 1
|
@@ -3671,7 +3663,7 @@ card_actions_459:
|
|
3671
3663
|
action_type: 0
|
3672
3664
|
draft: false
|
3673
3665
|
comment:
|
3674
|
-
|
3666
|
+
card_actions_459:
|
3675
3667
|
id: 7185
|
3676
3668
|
card_id: 1231
|
3677
3669
|
card_act_id: 1
|
@@ -3679,7 +3671,7 @@ card_actions_460:
|
|
3679
3671
|
action_type: 0
|
3680
3672
|
draft: false
|
3681
3673
|
comment:
|
3682
|
-
|
3674
|
+
card_actions_460:
|
3683
3675
|
id: 7186
|
3684
3676
|
card_id: 1232
|
3685
3677
|
card_act_id: 1
|
@@ -3687,7 +3679,7 @@ card_actions_461:
|
|
3687
3679
|
action_type: 0
|
3688
3680
|
draft: false
|
3689
3681
|
comment:
|
3690
|
-
|
3682
|
+
card_actions_461:
|
3691
3683
|
id: 7187
|
3692
3684
|
card_id: 1233
|
3693
3685
|
card_act_id: 1
|
@@ -3695,7 +3687,7 @@ card_actions_462:
|
|
3695
3687
|
action_type: 0
|
3696
3688
|
draft: false
|
3697
3689
|
comment:
|
3698
|
-
|
3690
|
+
card_actions_462:
|
3699
3691
|
id: 7188
|
3700
3692
|
card_id: 1234
|
3701
3693
|
card_act_id: 1
|
@@ -3703,7 +3695,7 @@ card_actions_463:
|
|
3703
3695
|
action_type: 0
|
3704
3696
|
draft: false
|
3705
3697
|
comment:
|
3706
|
-
|
3698
|
+
card_actions_463:
|
3707
3699
|
id: 7190
|
3708
3700
|
card_id: 1236
|
3709
3701
|
card_act_id: 1
|
@@ -3711,7 +3703,7 @@ card_actions_464:
|
|
3711
3703
|
action_type: 0
|
3712
3704
|
draft: false
|
3713
3705
|
comment:
|
3714
|
-
|
3706
|
+
card_actions_464:
|
3715
3707
|
id: 7191
|
3716
3708
|
card_id: 1237
|
3717
3709
|
card_act_id: 1
|
@@ -3719,7 +3711,7 @@ card_actions_465:
|
|
3719
3711
|
action_type: 0
|
3720
3712
|
draft: false
|
3721
3713
|
comment:
|
3722
|
-
|
3714
|
+
card_actions_465:
|
3723
3715
|
id: 7192
|
3724
3716
|
card_id: 1238
|
3725
3717
|
card_act_id: 1
|
@@ -3727,7 +3719,7 @@ card_actions_466:
|
|
3727
3719
|
action_type: 0
|
3728
3720
|
draft: false
|
3729
3721
|
comment:
|
3730
|
-
|
3722
|
+
card_actions_466:
|
3731
3723
|
id: 7195
|
3732
3724
|
card_id: 1239
|
3733
3725
|
card_act_id: 1
|
@@ -3735,7 +3727,7 @@ card_actions_467:
|
|
3735
3727
|
action_type: 0
|
3736
3728
|
draft: false
|
3737
3729
|
comment:
|
3738
|
-
|
3730
|
+
card_actions_467:
|
3739
3731
|
id: 7196
|
3740
3732
|
card_id: 1240
|
3741
3733
|
card_act_id: 1
|
@@ -3743,7 +3735,7 @@ card_actions_468:
|
|
3743
3735
|
action_type: 0
|
3744
3736
|
draft: false
|
3745
3737
|
comment:
|
3746
|
-
|
3738
|
+
card_actions_468:
|
3747
3739
|
id: 7197
|
3748
3740
|
card_id: 1241
|
3749
3741
|
card_act_id: 1
|
@@ -3751,7 +3743,7 @@ card_actions_469:
|
|
3751
3743
|
action_type: 0
|
3752
3744
|
draft: false
|
3753
3745
|
comment:
|
3754
|
-
|
3746
|
+
card_actions_469:
|
3755
3747
|
id: 7204
|
3756
3748
|
card_id: 1242
|
3757
3749
|
card_act_id: 1
|
@@ -3759,7 +3751,7 @@ card_actions_470:
|
|
3759
3751
|
action_type: 0
|
3760
3752
|
draft: false
|
3761
3753
|
comment:
|
3762
|
-
|
3754
|
+
card_actions_470:
|
3763
3755
|
id: 7205
|
3764
3756
|
card_id: 1244
|
3765
3757
|
card_act_id: 1
|
@@ -3767,7 +3759,7 @@ card_actions_471:
|
|
3767
3759
|
action_type: 0
|
3768
3760
|
draft: false
|
3769
3761
|
comment:
|
3770
|
-
|
3762
|
+
card_actions_471:
|
3771
3763
|
id: 7206
|
3772
3764
|
card_id: 1243
|
3773
3765
|
card_act_id: 1
|
@@ -3775,7 +3767,7 @@ card_actions_472:
|
|
3775
3767
|
action_type: 0
|
3776
3768
|
draft: false
|
3777
3769
|
comment:
|
3778
|
-
|
3770
|
+
card_actions_472:
|
3779
3771
|
id: 7207
|
3780
3772
|
card_id: 1245
|
3781
3773
|
card_act_id: 1
|
@@ -3783,7 +3775,7 @@ card_actions_473:
|
|
3783
3775
|
action_type: 0
|
3784
3776
|
draft: false
|
3785
3777
|
comment:
|
3786
|
-
|
3778
|
+
card_actions_473:
|
3787
3779
|
id: 7208
|
3788
3780
|
card_id: 1246
|
3789
3781
|
card_act_id: 1
|
@@ -3791,7 +3783,7 @@ card_actions_474:
|
|
3791
3783
|
action_type: 0
|
3792
3784
|
draft: false
|
3793
3785
|
comment:
|
3794
|
-
|
3786
|
+
card_actions_474:
|
3795
3787
|
id: 7238
|
3796
3788
|
card_id: 1247
|
3797
3789
|
card_act_id: 1
|
@@ -3799,7 +3791,7 @@ card_actions_475:
|
|
3799
3791
|
action_type: 1
|
3800
3792
|
draft: false
|
3801
3793
|
comment:
|
3802
|
-
|
3794
|
+
card_actions_475:
|
3803
3795
|
id: 7239
|
3804
3796
|
card_id: 212
|
3805
3797
|
card_act_id: 1
|
@@ -3807,7 +3799,7 @@ card_actions_476:
|
|
3807
3799
|
action_type: 1
|
3808
3800
|
draft: false
|
3809
3801
|
comment:
|
3810
|
-
|
3802
|
+
card_actions_476:
|
3811
3803
|
id: 7271
|
3812
3804
|
card_id: 1217
|
3813
3805
|
card_act_id: 1
|
@@ -3815,7 +3807,7 @@ card_actions_477:
|
|
3815
3807
|
action_type: 1
|
3816
3808
|
draft: false
|
3817
3809
|
comment:
|
3818
|
-
|
3810
|
+
card_actions_477:
|
3819
3811
|
id: 7274
|
3820
3812
|
card_id: 216
|
3821
3813
|
card_act_id: 1
|
@@ -3823,7 +3815,7 @@ card_actions_478:
|
|
3823
3815
|
action_type: 1
|
3824
3816
|
draft: false
|
3825
3817
|
comment:
|
3826
|
-
|
3818
|
+
card_actions_478:
|
3827
3819
|
id: 7276
|
3828
3820
|
card_id: 181
|
3829
3821
|
card_act_id: 1
|
@@ -3831,6 +3823,14 @@ card_actions_479:
|
|
3831
3823
|
action_type: 1
|
3832
3824
|
draft: false
|
3833
3825
|
comment:
|
3826
|
+
card_actions_479:
|
3827
|
+
id: 7279
|
3828
|
+
card_id: 100
|
3829
|
+
card_act_id: 1
|
3830
|
+
super_action_id:
|
3831
|
+
action_type: 1
|
3832
|
+
draft: false
|
3833
|
+
comment:
|
3834
3834
|
card_actions_480:
|
3835
3835
|
id: 7283
|
3836
3836
|
card_id: 1248
|
@@ -4584,6 +4584,14 @@ card_actions_573:
|
|
4584
4584
|
draft: false
|
4585
4585
|
comment:
|
4586
4586
|
card_actions_574:
|
4587
|
+
id: 7628
|
4588
|
+
card_id: 73
|
4589
|
+
card_act_id: 1
|
4590
|
+
super_action_id:
|
4591
|
+
action_type: 1
|
4592
|
+
draft: false
|
4593
|
+
comment:
|
4594
|
+
card_actions_575:
|
4587
4595
|
id: 7629
|
4588
4596
|
card_id: 453
|
4589
4597
|
card_act_id: 1
|
@@ -4591,7 +4599,7 @@ card_actions_574:
|
|
4591
4599
|
action_type: 1
|
4592
4600
|
draft: false
|
4593
4601
|
comment:
|
4594
|
-
|
4602
|
+
card_actions_576:
|
4595
4603
|
id: 7630
|
4596
4604
|
card_id: 88
|
4597
4605
|
card_act_id: 1
|
@@ -4599,7 +4607,7 @@ card_actions_575:
|
|
4599
4607
|
action_type: 1
|
4600
4608
|
draft: false
|
4601
4609
|
comment:
|
4602
|
-
|
4610
|
+
card_actions_577:
|
4603
4611
|
id: 7665
|
4604
4612
|
card_id: 103
|
4605
4613
|
card_act_id: 1
|
@@ -4607,568 +4615,560 @@ card_actions_576:
|
|
4607
4615
|
action_type: 1
|
4608
4616
|
draft: false
|
4609
4617
|
comment: favicon-194x194.png
|
4610
|
-
|
4611
|
-
id:
|
4618
|
+
card_actions_578:
|
4619
|
+
id: 7697
|
4612
4620
|
card_id: 1347
|
4613
4621
|
card_act_id: 1
|
4614
4622
|
super_action_id:
|
4615
4623
|
action_type: 1
|
4616
4624
|
draft: false
|
4617
4625
|
comment:
|
4618
|
-
|
4619
|
-
id:
|
4626
|
+
card_actions_579:
|
4627
|
+
id: 7723
|
4620
4628
|
card_id: 1432
|
4621
4629
|
card_act_id: 1
|
4622
4630
|
super_action_id:
|
4623
4631
|
action_type: 0
|
4624
4632
|
draft: false
|
4625
4633
|
comment:
|
4626
|
-
|
4627
|
-
id:
|
4634
|
+
card_actions_580:
|
4635
|
+
id: 7726
|
4628
4636
|
card_id: 1436
|
4629
4637
|
card_act_id: 1
|
4630
4638
|
super_action_id:
|
4631
4639
|
action_type: 0
|
4632
4640
|
draft: false
|
4633
4641
|
comment:
|
4634
|
-
|
4635
|
-
id:
|
4642
|
+
card_actions_581:
|
4643
|
+
id: 7727
|
4636
4644
|
card_id: 1435
|
4637
4645
|
card_act_id: 1
|
4638
|
-
super_action_id:
|
4646
|
+
super_action_id: 7726
|
4639
4647
|
action_type: 0
|
4640
4648
|
draft: false
|
4641
4649
|
comment:
|
4642
|
-
|
4643
|
-
id:
|
4650
|
+
card_actions_582:
|
4651
|
+
id: 7728
|
4644
4652
|
card_id: 1434
|
4645
4653
|
card_act_id: 1
|
4646
|
-
super_action_id:
|
4654
|
+
super_action_id: 7727
|
4647
4655
|
action_type: 0
|
4648
4656
|
draft: false
|
4649
4657
|
comment:
|
4650
|
-
|
4651
|
-
id:
|
4658
|
+
card_actions_583:
|
4659
|
+
id: 7731
|
4652
4660
|
card_id: 1279
|
4653
4661
|
card_act_id: 1
|
4654
4662
|
super_action_id:
|
4655
4663
|
action_type: 1
|
4656
4664
|
draft: false
|
4657
4665
|
comment:
|
4658
|
-
card_actions_583:
|
4659
|
-
id: 7706
|
4660
|
-
card_id: 1439
|
4661
|
-
card_act_id: 1
|
4662
|
-
super_action_id: 7705
|
4663
|
-
action_type: 0
|
4664
|
-
draft: false
|
4665
|
-
comment:
|
4666
4666
|
card_actions_584:
|
4667
|
-
id:
|
4668
|
-
card_id:
|
4667
|
+
id: 7732
|
4668
|
+
card_id: 1439
|
4669
4669
|
card_act_id: 1
|
4670
|
-
super_action_id:
|
4670
|
+
super_action_id: 7731
|
4671
4671
|
action_type: 0
|
4672
4672
|
draft: false
|
4673
4673
|
comment:
|
4674
4674
|
card_actions_585:
|
4675
|
-
id:
|
4676
|
-
card_id:
|
4675
|
+
id: 7733
|
4676
|
+
card_id: 1442
|
4677
4677
|
card_act_id: 1
|
4678
|
-
super_action_id:
|
4679
|
-
action_type:
|
4678
|
+
super_action_id: 7731
|
4679
|
+
action_type: 0
|
4680
4680
|
draft: false
|
4681
4681
|
comment:
|
4682
4682
|
card_actions_586:
|
4683
|
-
id:
|
4684
|
-
card_id:
|
4683
|
+
id: 7734
|
4684
|
+
card_id: 1438
|
4685
4685
|
card_act_id: 1
|
4686
|
-
super_action_id:
|
4686
|
+
super_action_id: 7732
|
4687
4687
|
action_type: 0
|
4688
4688
|
draft: false
|
4689
4689
|
comment:
|
4690
4690
|
card_actions_587:
|
4691
|
-
id:
|
4692
|
-
card_id:
|
4691
|
+
id: 7736
|
4692
|
+
card_id: 1441
|
4693
4693
|
card_act_id: 1
|
4694
|
-
super_action_id:
|
4694
|
+
super_action_id: 7733
|
4695
4695
|
action_type: 0
|
4696
4696
|
draft: false
|
4697
4697
|
comment:
|
4698
4698
|
card_actions_588:
|
4699
|
-
id:
|
4700
|
-
card_id:
|
4699
|
+
id: 7740
|
4700
|
+
card_id: 1351
|
4701
4701
|
card_act_id: 1
|
4702
|
-
super_action_id:
|
4703
|
-
action_type:
|
4702
|
+
super_action_id:
|
4703
|
+
action_type: 1
|
4704
4704
|
draft: false
|
4705
4705
|
comment:
|
4706
4706
|
card_actions_589:
|
4707
|
-
id:
|
4708
|
-
card_id:
|
4707
|
+
id: 7741
|
4708
|
+
card_id: 1444
|
4709
4709
|
card_act_id: 1
|
4710
|
-
super_action_id:
|
4711
|
-
action_type:
|
4710
|
+
super_action_id: 7740
|
4711
|
+
action_type: 0
|
4712
4712
|
draft: false
|
4713
4713
|
comment:
|
4714
4714
|
card_actions_590:
|
4715
|
-
id:
|
4715
|
+
id: 7742
|
4716
4716
|
card_id: 1446
|
4717
4717
|
card_act_id: 1
|
4718
|
-
super_action_id:
|
4718
|
+
super_action_id: 7740
|
4719
4719
|
action_type: 0
|
4720
4720
|
draft: false
|
4721
4721
|
comment:
|
4722
4722
|
card_actions_591:
|
4723
|
-
id:
|
4724
|
-
card_id:
|
4723
|
+
id: 7746
|
4724
|
+
card_id: 1355
|
4725
4725
|
card_act_id: 1
|
4726
|
-
super_action_id:
|
4727
|
-
action_type:
|
4726
|
+
super_action_id:
|
4727
|
+
action_type: 1
|
4728
4728
|
draft: false
|
4729
4729
|
comment:
|
4730
4730
|
card_actions_592:
|
4731
|
-
id:
|
4732
|
-
card_id:
|
4731
|
+
id: 7747
|
4732
|
+
card_id: 1448
|
4733
4733
|
card_act_id: 1
|
4734
|
-
super_action_id:
|
4735
|
-
action_type:
|
4734
|
+
super_action_id: 7746
|
4735
|
+
action_type: 0
|
4736
4736
|
draft: false
|
4737
4737
|
comment:
|
4738
4738
|
card_actions_593:
|
4739
|
-
id:
|
4739
|
+
id: 7748
|
4740
4740
|
card_id: 1450
|
4741
4741
|
card_act_id: 1
|
4742
|
-
super_action_id:
|
4742
|
+
super_action_id: 7746
|
4743
4743
|
action_type: 0
|
4744
4744
|
draft: false
|
4745
4745
|
comment:
|
4746
4746
|
card_actions_594:
|
4747
|
-
id:
|
4748
|
-
card_id:
|
4747
|
+
id: 7752
|
4748
|
+
card_id: 1359
|
4749
4749
|
card_act_id: 1
|
4750
|
-
super_action_id:
|
4751
|
-
action_type:
|
4750
|
+
super_action_id:
|
4751
|
+
action_type: 1
|
4752
4752
|
draft: false
|
4753
4753
|
comment:
|
4754
4754
|
card_actions_595:
|
4755
|
-
id:
|
4756
|
-
card_id:
|
4755
|
+
id: 7753
|
4756
|
+
card_id: 1452
|
4757
4757
|
card_act_id: 1
|
4758
|
-
super_action_id:
|
4759
|
-
action_type:
|
4758
|
+
super_action_id: 7752
|
4759
|
+
action_type: 0
|
4760
4760
|
draft: false
|
4761
4761
|
comment:
|
4762
4762
|
card_actions_596:
|
4763
|
-
id:
|
4763
|
+
id: 7754
|
4764
4764
|
card_id: 1454
|
4765
4765
|
card_act_id: 1
|
4766
|
-
super_action_id:
|
4766
|
+
super_action_id: 7752
|
4767
4767
|
action_type: 0
|
4768
4768
|
draft: false
|
4769
4769
|
comment:
|
4770
4770
|
card_actions_597:
|
4771
|
-
id:
|
4772
|
-
card_id:
|
4771
|
+
id: 7758
|
4772
|
+
card_id: 1363
|
4773
4773
|
card_act_id: 1
|
4774
|
-
super_action_id:
|
4775
|
-
action_type:
|
4774
|
+
super_action_id:
|
4775
|
+
action_type: 1
|
4776
4776
|
draft: false
|
4777
4777
|
comment:
|
4778
4778
|
card_actions_598:
|
4779
|
-
id:
|
4780
|
-
card_id:
|
4779
|
+
id: 7759
|
4780
|
+
card_id: 1456
|
4781
4781
|
card_act_id: 1
|
4782
|
-
super_action_id:
|
4783
|
-
action_type:
|
4782
|
+
super_action_id: 7758
|
4783
|
+
action_type: 0
|
4784
4784
|
draft: false
|
4785
4785
|
comment:
|
4786
4786
|
card_actions_599:
|
4787
|
-
id:
|
4787
|
+
id: 7760
|
4788
4788
|
card_id: 1458
|
4789
4789
|
card_act_id: 1
|
4790
|
-
super_action_id:
|
4790
|
+
super_action_id: 7758
|
4791
4791
|
action_type: 0
|
4792
4792
|
draft: false
|
4793
4793
|
comment:
|
4794
4794
|
card_actions_600:
|
4795
|
-
id:
|
4796
|
-
card_id:
|
4795
|
+
id: 7764
|
4796
|
+
card_id: 1367
|
4797
4797
|
card_act_id: 1
|
4798
|
-
super_action_id:
|
4799
|
-
action_type:
|
4798
|
+
super_action_id:
|
4799
|
+
action_type: 1
|
4800
4800
|
draft: false
|
4801
4801
|
comment:
|
4802
4802
|
card_actions_601:
|
4803
|
-
id:
|
4804
|
-
card_id:
|
4803
|
+
id: 7765
|
4804
|
+
card_id: 1460
|
4805
4805
|
card_act_id: 1
|
4806
|
-
super_action_id:
|
4807
|
-
action_type:
|
4806
|
+
super_action_id: 7764
|
4807
|
+
action_type: 0
|
4808
4808
|
draft: false
|
4809
4809
|
comment:
|
4810
4810
|
card_actions_602:
|
4811
|
-
id:
|
4811
|
+
id: 7766
|
4812
4812
|
card_id: 1462
|
4813
4813
|
card_act_id: 1
|
4814
|
-
super_action_id:
|
4814
|
+
super_action_id: 7764
|
4815
4815
|
action_type: 0
|
4816
4816
|
draft: false
|
4817
4817
|
comment:
|
4818
4818
|
card_actions_603:
|
4819
|
-
id:
|
4820
|
-
card_id:
|
4819
|
+
id: 7770
|
4820
|
+
card_id: 1371
|
4821
4821
|
card_act_id: 1
|
4822
|
-
super_action_id:
|
4823
|
-
action_type:
|
4822
|
+
super_action_id:
|
4823
|
+
action_type: 1
|
4824
4824
|
draft: false
|
4825
4825
|
comment:
|
4826
4826
|
card_actions_604:
|
4827
|
-
id:
|
4828
|
-
card_id:
|
4827
|
+
id: 7771
|
4828
|
+
card_id: 1464
|
4829
4829
|
card_act_id: 1
|
4830
|
-
super_action_id:
|
4831
|
-
action_type:
|
4830
|
+
super_action_id: 7770
|
4831
|
+
action_type: 0
|
4832
4832
|
draft: false
|
4833
4833
|
comment:
|
4834
4834
|
card_actions_605:
|
4835
|
-
id:
|
4835
|
+
id: 7772
|
4836
4836
|
card_id: 1466
|
4837
4837
|
card_act_id: 1
|
4838
|
-
super_action_id:
|
4838
|
+
super_action_id: 7770
|
4839
4839
|
action_type: 0
|
4840
4840
|
draft: false
|
4841
4841
|
comment:
|
4842
4842
|
card_actions_606:
|
4843
|
-
id:
|
4844
|
-
card_id:
|
4843
|
+
id: 7776
|
4844
|
+
card_id: 1375
|
4845
4845
|
card_act_id: 1
|
4846
|
-
super_action_id:
|
4847
|
-
action_type:
|
4846
|
+
super_action_id:
|
4847
|
+
action_type: 1
|
4848
4848
|
draft: false
|
4849
4849
|
comment:
|
4850
4850
|
card_actions_607:
|
4851
|
-
id:
|
4852
|
-
card_id:
|
4851
|
+
id: 7777
|
4852
|
+
card_id: 1468
|
4853
4853
|
card_act_id: 1
|
4854
|
-
super_action_id:
|
4855
|
-
action_type:
|
4854
|
+
super_action_id: 7776
|
4855
|
+
action_type: 0
|
4856
4856
|
draft: false
|
4857
4857
|
comment:
|
4858
4858
|
card_actions_608:
|
4859
|
-
id:
|
4859
|
+
id: 7778
|
4860
4860
|
card_id: 1470
|
4861
4861
|
card_act_id: 1
|
4862
|
-
super_action_id:
|
4862
|
+
super_action_id: 7776
|
4863
4863
|
action_type: 0
|
4864
4864
|
draft: false
|
4865
4865
|
comment:
|
4866
4866
|
card_actions_609:
|
4867
|
-
id:
|
4868
|
-
card_id:
|
4867
|
+
id: 7782
|
4868
|
+
card_id: 1379
|
4869
4869
|
card_act_id: 1
|
4870
|
-
super_action_id:
|
4871
|
-
action_type:
|
4870
|
+
super_action_id:
|
4871
|
+
action_type: 1
|
4872
4872
|
draft: false
|
4873
4873
|
comment:
|
4874
4874
|
card_actions_610:
|
4875
|
-
id:
|
4876
|
-
card_id:
|
4875
|
+
id: 7783
|
4876
|
+
card_id: 1472
|
4877
4877
|
card_act_id: 1
|
4878
|
-
super_action_id:
|
4879
|
-
action_type:
|
4878
|
+
super_action_id: 7782
|
4879
|
+
action_type: 0
|
4880
4880
|
draft: false
|
4881
4881
|
comment:
|
4882
4882
|
card_actions_611:
|
4883
|
-
id:
|
4883
|
+
id: 7784
|
4884
4884
|
card_id: 1474
|
4885
4885
|
card_act_id: 1
|
4886
|
-
super_action_id:
|
4886
|
+
super_action_id: 7782
|
4887
4887
|
action_type: 0
|
4888
4888
|
draft: false
|
4889
4889
|
comment:
|
4890
4890
|
card_actions_612:
|
4891
|
-
id:
|
4892
|
-
card_id:
|
4891
|
+
id: 7788
|
4892
|
+
card_id: 1383
|
4893
4893
|
card_act_id: 1
|
4894
|
-
super_action_id:
|
4895
|
-
action_type:
|
4894
|
+
super_action_id:
|
4895
|
+
action_type: 1
|
4896
4896
|
draft: false
|
4897
4897
|
comment:
|
4898
4898
|
card_actions_613:
|
4899
|
-
id:
|
4900
|
-
card_id:
|
4899
|
+
id: 7789
|
4900
|
+
card_id: 1476
|
4901
4901
|
card_act_id: 1
|
4902
|
-
super_action_id:
|
4903
|
-
action_type:
|
4902
|
+
super_action_id: 7788
|
4903
|
+
action_type: 0
|
4904
4904
|
draft: false
|
4905
4905
|
comment:
|
4906
4906
|
card_actions_614:
|
4907
|
-
id:
|
4907
|
+
id: 7790
|
4908
4908
|
card_id: 1478
|
4909
4909
|
card_act_id: 1
|
4910
|
-
super_action_id:
|
4910
|
+
super_action_id: 7788
|
4911
4911
|
action_type: 0
|
4912
4912
|
draft: false
|
4913
4913
|
comment:
|
4914
4914
|
card_actions_615:
|
4915
|
-
id:
|
4916
|
-
card_id:
|
4915
|
+
id: 7794
|
4916
|
+
card_id: 1387
|
4917
4917
|
card_act_id: 1
|
4918
|
-
super_action_id:
|
4919
|
-
action_type:
|
4918
|
+
super_action_id:
|
4919
|
+
action_type: 1
|
4920
4920
|
draft: false
|
4921
4921
|
comment:
|
4922
4922
|
card_actions_616:
|
4923
|
-
id:
|
4924
|
-
card_id:
|
4923
|
+
id: 7795
|
4924
|
+
card_id: 1480
|
4925
4925
|
card_act_id: 1
|
4926
|
-
super_action_id:
|
4927
|
-
action_type:
|
4926
|
+
super_action_id: 7794
|
4927
|
+
action_type: 0
|
4928
4928
|
draft: false
|
4929
4929
|
comment:
|
4930
4930
|
card_actions_617:
|
4931
|
-
id:
|
4931
|
+
id: 7796
|
4932
4932
|
card_id: 1482
|
4933
4933
|
card_act_id: 1
|
4934
|
-
super_action_id:
|
4934
|
+
super_action_id: 7794
|
4935
4935
|
action_type: 0
|
4936
4936
|
draft: false
|
4937
4937
|
comment:
|
4938
4938
|
card_actions_618:
|
4939
|
-
id:
|
4940
|
-
card_id:
|
4939
|
+
id: 7800
|
4940
|
+
card_id: 1391
|
4941
4941
|
card_act_id: 1
|
4942
|
-
super_action_id:
|
4943
|
-
action_type:
|
4942
|
+
super_action_id:
|
4943
|
+
action_type: 1
|
4944
4944
|
draft: false
|
4945
4945
|
comment:
|
4946
4946
|
card_actions_619:
|
4947
4947
|
id: 7801
|
4948
|
-
card_id:
|
4948
|
+
card_id: 1484
|
4949
4949
|
card_act_id: 1
|
4950
|
-
super_action_id:
|
4951
|
-
action_type:
|
4950
|
+
super_action_id: 7800
|
4951
|
+
action_type: 0
|
4952
4952
|
draft: false
|
4953
4953
|
comment:
|
4954
4954
|
card_actions_620:
|
4955
4955
|
id: 7802
|
4956
4956
|
card_id: 1486
|
4957
4957
|
card_act_id: 1
|
4958
|
-
super_action_id:
|
4958
|
+
super_action_id: 7800
|
4959
4959
|
action_type: 0
|
4960
4960
|
draft: false
|
4961
4961
|
comment:
|
4962
4962
|
card_actions_621:
|
4963
|
-
id:
|
4964
|
-
card_id:
|
4963
|
+
id: 7806
|
4964
|
+
card_id: 1395
|
4965
4965
|
card_act_id: 1
|
4966
|
-
super_action_id:
|
4967
|
-
action_type:
|
4966
|
+
super_action_id:
|
4967
|
+
action_type: 1
|
4968
4968
|
draft: false
|
4969
4969
|
comment:
|
4970
4970
|
card_actions_622:
|
4971
|
-
id:
|
4972
|
-
card_id:
|
4971
|
+
id: 7807
|
4972
|
+
card_id: 1488
|
4973
4973
|
card_act_id: 1
|
4974
|
-
super_action_id:
|
4975
|
-
action_type:
|
4974
|
+
super_action_id: 7806
|
4975
|
+
action_type: 0
|
4976
4976
|
draft: false
|
4977
4977
|
comment:
|
4978
4978
|
card_actions_623:
|
4979
|
-
id:
|
4979
|
+
id: 7808
|
4980
4980
|
card_id: 1490
|
4981
4981
|
card_act_id: 1
|
4982
|
-
super_action_id:
|
4982
|
+
super_action_id: 7806
|
4983
4983
|
action_type: 0
|
4984
4984
|
draft: false
|
4985
4985
|
comment:
|
4986
4986
|
card_actions_624:
|
4987
|
-
id:
|
4988
|
-
card_id:
|
4987
|
+
id: 7812
|
4988
|
+
card_id: 1399
|
4989
4989
|
card_act_id: 1
|
4990
|
-
super_action_id:
|
4991
|
-
action_type:
|
4990
|
+
super_action_id:
|
4991
|
+
action_type: 1
|
4992
4992
|
draft: false
|
4993
4993
|
comment:
|
4994
4994
|
card_actions_625:
|
4995
|
-
id:
|
4996
|
-
card_id:
|
4995
|
+
id: 7813
|
4996
|
+
card_id: 1492
|
4997
4997
|
card_act_id: 1
|
4998
|
-
super_action_id:
|
4999
|
-
action_type:
|
4998
|
+
super_action_id: 7812
|
4999
|
+
action_type: 0
|
5000
5000
|
draft: false
|
5001
5001
|
comment:
|
5002
5002
|
card_actions_626:
|
5003
|
-
id:
|
5003
|
+
id: 7814
|
5004
5004
|
card_id: 1494
|
5005
5005
|
card_act_id: 1
|
5006
|
-
super_action_id:
|
5006
|
+
super_action_id: 7812
|
5007
5007
|
action_type: 0
|
5008
5008
|
draft: false
|
5009
5009
|
comment:
|
5010
5010
|
card_actions_627:
|
5011
|
-
id:
|
5012
|
-
card_id:
|
5011
|
+
id: 7818
|
5012
|
+
card_id: 1403
|
5013
5013
|
card_act_id: 1
|
5014
|
-
super_action_id:
|
5015
|
-
action_type:
|
5014
|
+
super_action_id:
|
5015
|
+
action_type: 1
|
5016
5016
|
draft: false
|
5017
5017
|
comment:
|
5018
5018
|
card_actions_628:
|
5019
|
-
id:
|
5020
|
-
card_id:
|
5019
|
+
id: 7819
|
5020
|
+
card_id: 1496
|
5021
5021
|
card_act_id: 1
|
5022
|
-
super_action_id:
|
5023
|
-
action_type:
|
5022
|
+
super_action_id: 7818
|
5023
|
+
action_type: 0
|
5024
5024
|
draft: false
|
5025
5025
|
comment:
|
5026
5026
|
card_actions_629:
|
5027
|
-
id:
|
5027
|
+
id: 7820
|
5028
5028
|
card_id: 1498
|
5029
5029
|
card_act_id: 1
|
5030
|
-
super_action_id:
|
5030
|
+
super_action_id: 7818
|
5031
5031
|
action_type: 0
|
5032
5032
|
draft: false
|
5033
5033
|
comment:
|
5034
5034
|
card_actions_630:
|
5035
|
-
id:
|
5036
|
-
card_id:
|
5035
|
+
id: 7824
|
5036
|
+
card_id: 1407
|
5037
5037
|
card_act_id: 1
|
5038
|
-
super_action_id:
|
5039
|
-
action_type:
|
5038
|
+
super_action_id:
|
5039
|
+
action_type: 1
|
5040
5040
|
draft: false
|
5041
5041
|
comment:
|
5042
5042
|
card_actions_631:
|
5043
|
-
id:
|
5044
|
-
card_id:
|
5043
|
+
id: 7825
|
5044
|
+
card_id: 1500
|
5045
5045
|
card_act_id: 1
|
5046
|
-
super_action_id:
|
5047
|
-
action_type:
|
5046
|
+
super_action_id: 7824
|
5047
|
+
action_type: 0
|
5048
5048
|
draft: false
|
5049
5049
|
comment:
|
5050
5050
|
card_actions_632:
|
5051
|
-
id:
|
5051
|
+
id: 7826
|
5052
5052
|
card_id: 1502
|
5053
5053
|
card_act_id: 1
|
5054
|
-
super_action_id:
|
5054
|
+
super_action_id: 7824
|
5055
5055
|
action_type: 0
|
5056
5056
|
draft: false
|
5057
5057
|
comment:
|
5058
5058
|
card_actions_633:
|
5059
|
-
id:
|
5060
|
-
card_id:
|
5059
|
+
id: 7830
|
5060
|
+
card_id: 1411
|
5061
5061
|
card_act_id: 1
|
5062
|
-
super_action_id:
|
5063
|
-
action_type:
|
5062
|
+
super_action_id:
|
5063
|
+
action_type: 1
|
5064
5064
|
draft: false
|
5065
5065
|
comment:
|
5066
5066
|
card_actions_634:
|
5067
|
-
id:
|
5068
|
-
card_id:
|
5067
|
+
id: 7831
|
5068
|
+
card_id: 1504
|
5069
5069
|
card_act_id: 1
|
5070
|
-
super_action_id:
|
5071
|
-
action_type:
|
5070
|
+
super_action_id: 7830
|
5071
|
+
action_type: 0
|
5072
5072
|
draft: false
|
5073
5073
|
comment:
|
5074
5074
|
card_actions_635:
|
5075
|
-
id:
|
5076
|
-
card_id:
|
5075
|
+
id: 7832
|
5076
|
+
card_id: 1506
|
5077
5077
|
card_act_id: 1
|
5078
|
-
super_action_id:
|
5079
|
-
action_type:
|
5078
|
+
super_action_id: 7830
|
5079
|
+
action_type: 0
|
5080
5080
|
draft: false
|
5081
5081
|
comment:
|
5082
5082
|
card_actions_636:
|
5083
|
-
id:
|
5084
|
-
card_id:
|
5083
|
+
id: 7837
|
5084
|
+
card_id: 1060
|
5085
5085
|
card_act_id: 1
|
5086
5086
|
super_action_id:
|
5087
|
-
action_type:
|
5087
|
+
action_type: 1
|
5088
5088
|
draft: false
|
5089
5089
|
comment:
|
5090
5090
|
card_actions_637:
|
5091
|
-
id:
|
5092
|
-
card_id:
|
5091
|
+
id: 7841
|
5092
|
+
card_id: 1286
|
5093
5093
|
card_act_id: 1
|
5094
|
-
super_action_id:
|
5095
|
-
action_type:
|
5094
|
+
super_action_id:
|
5095
|
+
action_type: 1
|
5096
5096
|
draft: false
|
5097
5097
|
comment:
|
5098
5098
|
card_actions_638:
|
5099
|
-
id:
|
5100
|
-
card_id:
|
5099
|
+
id: 7878
|
5100
|
+
card_id: 1509
|
5101
5101
|
card_act_id: 1
|
5102
5102
|
super_action_id:
|
5103
|
-
action_type:
|
5103
|
+
action_type: 0
|
5104
5104
|
draft: false
|
5105
5105
|
comment:
|
5106
5106
|
card_actions_639:
|
5107
|
-
id:
|
5108
|
-
card_id:
|
5107
|
+
id: 7879
|
5108
|
+
card_id: 1510
|
5109
5109
|
card_act_id: 1
|
5110
|
-
super_action_id:
|
5110
|
+
super_action_id: 7878
|
5111
5111
|
action_type: 0
|
5112
5112
|
draft: false
|
5113
5113
|
comment:
|
5114
5114
|
card_actions_640:
|
5115
|
-
id:
|
5115
|
+
id: 7881
|
5116
5116
|
card_id: 1515
|
5117
5117
|
card_act_id: 1
|
5118
|
-
super_action_id:
|
5118
|
+
super_action_id: 7880
|
5119
5119
|
action_type: 0
|
5120
5120
|
draft: false
|
5121
5121
|
comment:
|
5122
5122
|
card_actions_641:
|
5123
|
-
id:
|
5124
|
-
card_id:
|
5123
|
+
id: 7882
|
5124
|
+
card_id: 1516
|
5125
5125
|
card_act_id: 1
|
5126
|
-
super_action_id:
|
5126
|
+
super_action_id: 7880
|
5127
5127
|
action_type: 0
|
5128
5128
|
draft: false
|
5129
5129
|
comment:
|
5130
5130
|
card_actions_642:
|
5131
|
-
id:
|
5132
|
-
card_id:
|
5131
|
+
id: 7883
|
5132
|
+
card_id: 1518
|
5133
5133
|
card_act_id: 1
|
5134
|
-
super_action_id:
|
5134
|
+
super_action_id: 7880
|
5135
5135
|
action_type: 0
|
5136
5136
|
draft: false
|
5137
5137
|
comment:
|
5138
5138
|
card_actions_643:
|
5139
|
-
id:
|
5140
|
-
card_id:
|
5139
|
+
id: 7884
|
5140
|
+
card_id: 1520
|
5141
5141
|
card_act_id: 1
|
5142
|
-
super_action_id:
|
5142
|
+
super_action_id: 7880
|
5143
5143
|
action_type: 0
|
5144
5144
|
draft: false
|
5145
5145
|
comment:
|
5146
5146
|
card_actions_644:
|
5147
|
-
id:
|
5148
|
-
card_id:
|
5147
|
+
id: 7885
|
5148
|
+
card_id: 1514
|
5149
5149
|
card_act_id: 1
|
5150
|
-
super_action_id:
|
5150
|
+
super_action_id: 7881
|
5151
5151
|
action_type: 0
|
5152
5152
|
draft: false
|
5153
5153
|
comment:
|
5154
5154
|
card_actions_645:
|
5155
|
-
id:
|
5156
|
-
card_id:
|
5155
|
+
id: 7886
|
5156
|
+
card_id: 1517
|
5157
5157
|
card_act_id: 1
|
5158
|
-
super_action_id:
|
5158
|
+
super_action_id: 7883
|
5159
5159
|
action_type: 0
|
5160
5160
|
draft: false
|
5161
5161
|
comment:
|
5162
5162
|
card_actions_646:
|
5163
|
-
id:
|
5164
|
-
card_id:
|
5163
|
+
id: 7887
|
5164
|
+
card_id: 1519
|
5165
5165
|
card_act_id: 1
|
5166
|
-
super_action_id:
|
5166
|
+
super_action_id: 7884
|
5167
5167
|
action_type: 0
|
5168
5168
|
draft: false
|
5169
5169
|
comment:
|
5170
5170
|
card_actions_647:
|
5171
|
-
id:
|
5171
|
+
id: 7889
|
5172
5172
|
card_id: 1524
|
5173
5173
|
card_act_id: 1
|
5174
5174
|
super_action_id:
|
@@ -5176,7 +5176,7 @@ card_actions_647:
|
|
5176
5176
|
draft: false
|
5177
5177
|
comment:
|
5178
5178
|
card_actions_648:
|
5179
|
-
id:
|
5179
|
+
id: 7890
|
5180
5180
|
card_id: 1525
|
5181
5181
|
card_act_id: 1
|
5182
5182
|
super_action_id:
|
@@ -5184,23 +5184,23 @@ card_actions_648:
|
|
5184
5184
|
draft: false
|
5185
5185
|
comment:
|
5186
5186
|
card_actions_649:
|
5187
|
-
id:
|
5188
|
-
card_id:
|
5187
|
+
id: 7891
|
5188
|
+
card_id: 1526
|
5189
5189
|
card_act_id: 1
|
5190
|
-
super_action_id:
|
5190
|
+
super_action_id:
|
5191
5191
|
action_type: 0
|
5192
5192
|
draft: false
|
5193
5193
|
comment:
|
5194
5194
|
card_actions_650:
|
5195
|
-
id:
|
5196
|
-
card_id:
|
5195
|
+
id: 7892
|
5196
|
+
card_id: 1523
|
5197
5197
|
card_act_id: 1
|
5198
|
-
super_action_id:
|
5198
|
+
super_action_id: 7889
|
5199
5199
|
action_type: 0
|
5200
5200
|
draft: false
|
5201
5201
|
comment:
|
5202
5202
|
card_actions_651:
|
5203
|
-
id:
|
5203
|
+
id: 7896
|
5204
5204
|
card_id: 1527
|
5205
5205
|
card_act_id: 1
|
5206
5206
|
super_action_id:
|
@@ -5208,23 +5208,23 @@ card_actions_651:
|
|
5208
5208
|
draft: false
|
5209
5209
|
comment:
|
5210
5210
|
card_actions_652:
|
5211
|
-
id:
|
5212
|
-
card_id:
|
5211
|
+
id: 7897
|
5212
|
+
card_id: 1529
|
5213
5213
|
card_act_id: 1
|
5214
5214
|
super_action_id:
|
5215
5215
|
action_type: 0
|
5216
5216
|
draft: false
|
5217
5217
|
comment:
|
5218
5218
|
card_actions_653:
|
5219
|
-
id:
|
5220
|
-
card_id:
|
5219
|
+
id: 7898
|
5220
|
+
card_id: 1528
|
5221
5221
|
card_act_id: 1
|
5222
|
-
super_action_id:
|
5222
|
+
super_action_id: 7897
|
5223
5223
|
action_type: 0
|
5224
5224
|
draft: false
|
5225
5225
|
comment:
|
5226
5226
|
card_actions_654:
|
5227
|
-
id:
|
5227
|
+
id: 7900
|
5228
5228
|
card_id: 1530
|
5229
5229
|
card_act_id: 1
|
5230
5230
|
super_action_id:
|
@@ -5232,330 +5232,322 @@ card_actions_654:
|
|
5232
5232
|
draft: false
|
5233
5233
|
comment:
|
5234
5234
|
card_actions_655:
|
5235
|
-
id:
|
5236
|
-
card_id:
|
5235
|
+
id: 7902
|
5236
|
+
card_id: 1531
|
5237
5237
|
card_act_id: 1
|
5238
|
-
super_action_id:
|
5238
|
+
super_action_id:
|
5239
5239
|
action_type: 0
|
5240
5240
|
draft: false
|
5241
5241
|
comment:
|
5242
5242
|
card_actions_656:
|
5243
|
-
id:
|
5243
|
+
id: 7904
|
5244
5244
|
card_id: 1533
|
5245
5245
|
card_act_id: 1
|
5246
|
-
super_action_id:
|
5246
|
+
super_action_id:
|
5247
5247
|
action_type: 0
|
5248
5248
|
draft: false
|
5249
5249
|
comment:
|
5250
5250
|
card_actions_657:
|
5251
|
-
id:
|
5252
|
-
card_id:
|
5251
|
+
id: 7905
|
5252
|
+
card_id: 1532
|
5253
5253
|
card_act_id: 1
|
5254
|
-
super_action_id:
|
5254
|
+
super_action_id: 7904
|
5255
5255
|
action_type: 0
|
5256
5256
|
draft: false
|
5257
5257
|
comment:
|
5258
5258
|
card_actions_658:
|
5259
|
-
id:
|
5260
|
-
card_id:
|
5259
|
+
id: 7906
|
5260
|
+
card_id: 1535
|
5261
5261
|
card_act_id: 1
|
5262
|
-
super_action_id:
|
5262
|
+
super_action_id:
|
5263
5263
|
action_type: 0
|
5264
5264
|
draft: false
|
5265
5265
|
comment:
|
5266
5266
|
card_actions_659:
|
5267
|
-
id:
|
5268
|
-
card_id:
|
5267
|
+
id: 7907
|
5268
|
+
card_id: 1534
|
5269
5269
|
card_act_id: 1
|
5270
|
-
super_action_id:
|
5270
|
+
super_action_id: 7906
|
5271
5271
|
action_type: 0
|
5272
5272
|
draft: false
|
5273
5273
|
comment:
|
5274
5274
|
card_actions_660:
|
5275
|
-
id:
|
5275
|
+
id: 7908
|
5276
5276
|
card_id: 1537
|
5277
5277
|
card_act_id: 1
|
5278
|
-
super_action_id:
|
5278
|
+
super_action_id:
|
5279
5279
|
action_type: 0
|
5280
5280
|
draft: false
|
5281
5281
|
comment:
|
5282
5282
|
card_actions_661:
|
5283
|
-
id:
|
5284
|
-
card_id:
|
5283
|
+
id: 7909
|
5284
|
+
card_id: 1536
|
5285
5285
|
card_act_id: 1
|
5286
|
-
super_action_id:
|
5286
|
+
super_action_id: 7908
|
5287
5287
|
action_type: 0
|
5288
5288
|
draft: false
|
5289
5289
|
comment:
|
5290
5290
|
card_actions_662:
|
5291
|
-
id:
|
5292
|
-
card_id:
|
5291
|
+
id: 7910
|
5292
|
+
card_id: 1538
|
5293
5293
|
card_act_id: 1
|
5294
|
-
super_action_id:
|
5294
|
+
super_action_id:
|
5295
5295
|
action_type: 0
|
5296
5296
|
draft: false
|
5297
5297
|
comment:
|
5298
5298
|
card_actions_663:
|
5299
|
-
id:
|
5300
|
-
card_id:
|
5299
|
+
id: 7911
|
5300
|
+
card_id: 1540
|
5301
5301
|
card_act_id: 1
|
5302
|
-
super_action_id:
|
5302
|
+
super_action_id:
|
5303
5303
|
action_type: 0
|
5304
5304
|
draft: false
|
5305
5305
|
comment:
|
5306
5306
|
card_actions_664:
|
5307
|
-
id:
|
5308
|
-
card_id:
|
5307
|
+
id: 7912
|
5308
|
+
card_id: 1539
|
5309
5309
|
card_act_id: 1
|
5310
|
-
super_action_id:
|
5310
|
+
super_action_id: 7911
|
5311
5311
|
action_type: 0
|
5312
5312
|
draft: false
|
5313
5313
|
comment:
|
5314
5314
|
card_actions_665:
|
5315
|
-
id:
|
5316
|
-
card_id:
|
5315
|
+
id: 7914
|
5316
|
+
card_id: 1541
|
5317
5317
|
card_act_id: 1
|
5318
5318
|
super_action_id:
|
5319
|
-
action_type:
|
5319
|
+
action_type: 0
|
5320
5320
|
draft: false
|
5321
5321
|
comment:
|
5322
5322
|
card_actions_666:
|
5323
|
-
id:
|
5324
|
-
card_id:
|
5323
|
+
id: 7916
|
5324
|
+
card_id: 1542
|
5325
5325
|
card_act_id: 1
|
5326
5326
|
super_action_id:
|
5327
|
-
action_type:
|
5327
|
+
action_type: 0
|
5328
5328
|
draft: false
|
5329
5329
|
comment:
|
5330
5330
|
card_actions_667:
|
5331
|
-
id:
|
5332
|
-
card_id:
|
5331
|
+
id: 7918
|
5332
|
+
card_id: 1543
|
5333
5333
|
card_act_id: 1
|
5334
5334
|
super_action_id:
|
5335
|
-
action_type:
|
5335
|
+
action_type: 0
|
5336
5336
|
draft: false
|
5337
5337
|
comment:
|
5338
5338
|
card_actions_668:
|
5339
|
-
id:
|
5340
|
-
card_id:
|
5339
|
+
id: 7919
|
5340
|
+
card_id: 1545
|
5341
5341
|
card_act_id: 1
|
5342
5342
|
super_action_id:
|
5343
5343
|
action_type: 0
|
5344
5344
|
draft: false
|
5345
5345
|
comment:
|
5346
5346
|
card_actions_669:
|
5347
|
-
id:
|
5348
|
-
card_id:
|
5347
|
+
id: 7920
|
5348
|
+
card_id: 1544
|
5349
5349
|
card_act_id: 1
|
5350
|
-
super_action_id:
|
5350
|
+
super_action_id: 7919
|
5351
5351
|
action_type: 0
|
5352
5352
|
draft: false
|
5353
5353
|
comment:
|
5354
5354
|
card_actions_670:
|
5355
|
-
id:
|
5356
|
-
card_id:
|
5355
|
+
id: 7922
|
5356
|
+
card_id: 1546
|
5357
5357
|
card_act_id: 1
|
5358
|
-
super_action_id:
|
5358
|
+
super_action_id:
|
5359
5359
|
action_type: 0
|
5360
5360
|
draft: false
|
5361
5361
|
comment:
|
5362
5362
|
card_actions_671:
|
5363
|
-
id:
|
5364
|
-
card_id:
|
5363
|
+
id: 7924
|
5364
|
+
card_id: 1547
|
5365
5365
|
card_act_id: 1
|
5366
|
-
super_action_id:
|
5366
|
+
super_action_id:
|
5367
5367
|
action_type: 0
|
5368
5368
|
draft: false
|
5369
5369
|
comment:
|
5370
5370
|
card_actions_672:
|
5371
|
-
id:
|
5372
|
-
card_id:
|
5371
|
+
id: 7926
|
5372
|
+
card_id: 1548
|
5373
5373
|
card_act_id: 1
|
5374
|
-
super_action_id:
|
5374
|
+
super_action_id:
|
5375
5375
|
action_type: 0
|
5376
5376
|
draft: false
|
5377
5377
|
comment:
|
5378
5378
|
card_actions_673:
|
5379
|
-
id:
|
5380
|
-
card_id:
|
5379
|
+
id: 7927
|
5380
|
+
card_id: 1550
|
5381
5381
|
card_act_id: 1
|
5382
5382
|
super_action_id:
|
5383
5383
|
action_type: 0
|
5384
5384
|
draft: false
|
5385
5385
|
comment:
|
5386
5386
|
card_actions_674:
|
5387
|
-
id:
|
5388
|
-
card_id:
|
5387
|
+
id: 7928
|
5388
|
+
card_id: 1549
|
5389
5389
|
card_act_id: 1
|
5390
|
-
super_action_id:
|
5390
|
+
super_action_id: 7927
|
5391
5391
|
action_type: 0
|
5392
5392
|
draft: false
|
5393
5393
|
comment:
|
5394
5394
|
card_actions_675:
|
5395
|
-
id:
|
5396
|
-
card_id:
|
5395
|
+
id: 7930
|
5396
|
+
card_id: 1551
|
5397
5397
|
card_act_id: 1
|
5398
5398
|
super_action_id:
|
5399
5399
|
action_type: 0
|
5400
5400
|
draft: false
|
5401
5401
|
comment:
|
5402
5402
|
card_actions_676:
|
5403
|
-
id:
|
5404
|
-
card_id:
|
5403
|
+
id: 7932
|
5404
|
+
card_id: 1552
|
5405
5405
|
card_act_id: 1
|
5406
|
-
super_action_id:
|
5406
|
+
super_action_id:
|
5407
5407
|
action_type: 0
|
5408
5408
|
draft: false
|
5409
5409
|
comment:
|
5410
5410
|
card_actions_677:
|
5411
|
-
id:
|
5412
|
-
card_id:
|
5411
|
+
id: 7934
|
5412
|
+
card_id: 80
|
5413
5413
|
card_act_id: 1
|
5414
5414
|
super_action_id:
|
5415
|
-
action_type:
|
5415
|
+
action_type: 1
|
5416
5416
|
draft: false
|
5417
5417
|
comment:
|
5418
5418
|
card_actions_678:
|
5419
|
-
id:
|
5420
|
-
card_id:
|
5419
|
+
id: 7936
|
5420
|
+
card_id: 1303
|
5421
5421
|
card_act_id: 1
|
5422
|
-
super_action_id:
|
5423
|
-
action_type:
|
5422
|
+
super_action_id:
|
5423
|
+
action_type: 1
|
5424
5424
|
draft: false
|
5425
5425
|
comment:
|
5426
5426
|
card_actions_679:
|
5427
|
-
id:
|
5428
|
-
card_id:
|
5427
|
+
id: 7939
|
5428
|
+
card_id: 1554
|
5429
5429
|
card_act_id: 1
|
5430
5430
|
super_action_id:
|
5431
5431
|
action_type: 0
|
5432
5432
|
draft: false
|
5433
5433
|
comment:
|
5434
5434
|
card_actions_680:
|
5435
|
-
id:
|
5436
|
-
card_id:
|
5435
|
+
id: 7940
|
5436
|
+
card_id: 1555
|
5437
5437
|
card_act_id: 1
|
5438
|
-
super_action_id:
|
5438
|
+
super_action_id:
|
5439
5439
|
action_type: 0
|
5440
5440
|
draft: false
|
5441
5441
|
comment:
|
5442
5442
|
card_actions_681:
|
5443
|
-
id:
|
5444
|
-
card_id:
|
5443
|
+
id: 7941
|
5444
|
+
card_id: 1556
|
5445
5445
|
card_act_id: 1
|
5446
|
-
super_action_id:
|
5446
|
+
super_action_id:
|
5447
5447
|
action_type: 0
|
5448
5448
|
draft: false
|
5449
5449
|
comment:
|
5450
5450
|
card_actions_682:
|
5451
|
-
id:
|
5452
|
-
card_id:
|
5451
|
+
id: 7942
|
5452
|
+
card_id: 1558
|
5453
5453
|
card_act_id: 1
|
5454
|
-
super_action_id:
|
5454
|
+
super_action_id: 7941
|
5455
5455
|
action_type: 0
|
5456
5456
|
draft: false
|
5457
5457
|
comment:
|
5458
5458
|
card_actions_683:
|
5459
|
-
id:
|
5460
|
-
card_id:
|
5459
|
+
id: 7943
|
5460
|
+
card_id: 1559
|
5461
5461
|
card_act_id: 1
|
5462
|
-
super_action_id:
|
5462
|
+
super_action_id: 7941
|
5463
5463
|
action_type: 0
|
5464
5464
|
draft: false
|
5465
5465
|
comment:
|
5466
5466
|
card_actions_684:
|
5467
|
-
id:
|
5468
|
-
card_id:
|
5467
|
+
id: 7944
|
5468
|
+
card_id: 1560
|
5469
5469
|
card_act_id: 1
|
5470
|
-
super_action_id:
|
5470
|
+
super_action_id: 7941
|
5471
5471
|
action_type: 0
|
5472
5472
|
draft: false
|
5473
5473
|
comment:
|
5474
5474
|
card_actions_685:
|
5475
|
-
id:
|
5476
|
-
card_id:
|
5475
|
+
id: 7945
|
5476
|
+
card_id: 1557
|
5477
5477
|
card_act_id: 1
|
5478
|
-
super_action_id:
|
5478
|
+
super_action_id: 7942
|
5479
5479
|
action_type: 0
|
5480
5480
|
draft: false
|
5481
5481
|
comment:
|
5482
5482
|
card_actions_686:
|
5483
|
-
id:
|
5484
|
-
card_id:
|
5483
|
+
id: 7949
|
5484
|
+
card_id: 1561
|
5485
5485
|
card_act_id: 1
|
5486
|
-
super_action_id:
|
5486
|
+
super_action_id:
|
5487
5487
|
action_type: 0
|
5488
5488
|
draft: false
|
5489
5489
|
comment:
|
5490
5490
|
card_actions_687:
|
5491
|
-
id:
|
5492
|
-
card_id:
|
5491
|
+
id: 7950
|
5492
|
+
card_id: 1563
|
5493
5493
|
card_act_id: 1
|
5494
|
-
super_action_id:
|
5494
|
+
super_action_id: 7949
|
5495
5495
|
action_type: 0
|
5496
5496
|
draft: false
|
5497
5497
|
comment:
|
5498
5498
|
card_actions_688:
|
5499
|
-
id:
|
5500
|
-
card_id:
|
5499
|
+
id: 7951
|
5500
|
+
card_id: 1564
|
5501
5501
|
card_act_id: 1
|
5502
|
-
super_action_id:
|
5502
|
+
super_action_id: 7949
|
5503
5503
|
action_type: 0
|
5504
5504
|
draft: false
|
5505
5505
|
comment:
|
5506
5506
|
card_actions_689:
|
5507
|
-
id:
|
5508
|
-
card_id:
|
5507
|
+
id: 7952
|
5508
|
+
card_id: 1565
|
5509
5509
|
card_act_id: 1
|
5510
|
-
super_action_id:
|
5510
|
+
super_action_id: 7949
|
5511
5511
|
action_type: 0
|
5512
5512
|
draft: false
|
5513
5513
|
comment:
|
5514
5514
|
card_actions_690:
|
5515
|
-
id:
|
5516
|
-
card_id:
|
5515
|
+
id: 7953
|
5516
|
+
card_id: 1562
|
5517
5517
|
card_act_id: 1
|
5518
|
-
super_action_id:
|
5518
|
+
super_action_id: 7950
|
5519
5519
|
action_type: 0
|
5520
5520
|
draft: false
|
5521
5521
|
comment:
|
5522
5522
|
card_actions_691:
|
5523
|
-
id:
|
5524
|
-
card_id:
|
5523
|
+
id: 7956
|
5524
|
+
card_id: 1513
|
5525
5525
|
card_act_id: 1
|
5526
|
-
super_action_id:
|
5527
|
-
action_type:
|
5526
|
+
super_action_id:
|
5527
|
+
action_type: 1
|
5528
5528
|
draft: false
|
5529
5529
|
comment:
|
5530
5530
|
card_actions_692:
|
5531
|
-
id:
|
5531
|
+
id: 8007
|
5532
5532
|
card_id: 1566
|
5533
5533
|
card_act_id: 1
|
5534
|
-
super_action_id:
|
5534
|
+
super_action_id:
|
5535
5535
|
action_type: 0
|
5536
5536
|
draft: false
|
5537
5537
|
comment:
|
5538
5538
|
card_actions_693:
|
5539
|
-
id:
|
5540
|
-
card_id:
|
5539
|
+
id: 8008
|
5540
|
+
card_id: 1567
|
5541
5541
|
card_act_id: 1
|
5542
|
-
super_action_id:
|
5542
|
+
super_action_id:
|
5543
5543
|
action_type: 0
|
5544
5544
|
draft: false
|
5545
5545
|
comment:
|
5546
5546
|
card_actions_694:
|
5547
|
-
id:
|
5548
|
-
card_id:
|
5549
|
-
card_act_id: 1
|
5550
|
-
super_action_id:
|
5551
|
-
action_type: 1
|
5552
|
-
draft: false
|
5553
|
-
comment:
|
5554
|
-
card_actions_695:
|
5555
|
-
id: 8106
|
5556
|
-
card_id: 80
|
5547
|
+
id: 8011
|
5548
|
+
card_id: 1568
|
5557
5549
|
card_act_id: 1
|
5558
5550
|
super_action_id:
|
5559
|
-
action_type:
|
5551
|
+
action_type: 0
|
5560
5552
|
draft: false
|
5561
5553
|
comment:
|