gitextract_do_0u321/ ├── .gitignore ├── .rspec ├── .ruby-gemset ├── .ruby-version ├── .well-known/ │ └── .placeholder ├── COMM-LICENSE ├── Gemfile ├── Guardfile ├── LICENSE ├── README.md ├── Rakefile ├── SECURITY.md ├── app/ │ ├── assets/ │ │ ├── images/ │ │ │ └── .keep │ │ ├── javascripts/ │ │ │ ├── advisories.coffee │ │ │ ├── advisory_comments.coffee │ │ │ ├── application.js │ │ │ ├── captures.coffee │ │ │ ├── categories.coffee │ │ │ ├── challenge_attempts.coffee │ │ │ ├── challenges.coffee │ │ │ ├── dashboard.coffee │ │ │ ├── devices.coffee │ │ │ ├── messages.coffee │ │ │ ├── product_versions.coffee │ │ │ ├── products.coffee │ │ │ ├── profile.coffee │ │ │ ├── sections.coffee │ │ │ ├── submission.coffee │ │ │ ├── triage.coffee │ │ │ ├── units.coffee │ │ │ └── vendors.coffee │ │ └── stylesheets/ │ │ ├── advisories.scss │ │ ├── advisory_comments.scss │ │ ├── application.scss │ │ ├── captures.scss │ │ ├── categories.scss │ │ ├── challenge_attempts.scss │ │ ├── challenges.scss │ │ ├── dashboard.scss │ │ ├── devices.scss │ │ ├── messages.scss │ │ ├── product_versions.scss │ │ ├── products.scss │ │ ├── profile.scss │ │ ├── researcher.scss │ │ ├── scaffolds.scss │ │ ├── sections.scss │ │ ├── submission.scss │ │ ├── triage.scss │ │ ├── units.scss │ │ └── vendors.scss │ ├── controllers/ │ │ ├── application_controller.rb │ │ ├── captures_controller.rb │ │ ├── concerns/ │ │ │ └── .keep │ │ ├── dashboard_controller.rb │ │ ├── devices_controller.rb │ │ ├── registrations_controller.rb │ │ ├── section_templates_controller.rb │ │ ├── sections_controller.rb │ │ └── units_controller.rb │ ├── helpers/ │ │ ├── application_helper.rb │ │ ├── captures_helper.rb │ │ ├── dashboard_helper.rb │ │ ├── devices_helper.rb │ │ ├── section_templates_helper.rb │ │ ├── sections_helper.rb │ │ └── units_helper.rb │ ├── models/ │ │ ├── .keep │ │ ├── capture.rb │ │ ├── concerns/ │ │ │ └── .keep │ │ ├── cons.rb │ │ ├── device.rb │ │ ├── section.rb │ │ ├── section_template.rb │ │ ├── unit.rb │ │ └── user.rb │ └── views/ │ ├── application/ │ │ └── _favicon.html.erb │ ├── captures/ │ │ ├── _form.html.haml │ │ ├── edit.html.haml │ │ ├── index.html.haml │ │ ├── index.json.jbuilder │ │ ├── new.html.haml │ │ ├── show.html.haml │ │ └── show.json.jbuilder │ ├── dashboard/ │ │ ├── about.html.haml │ │ ├── contribute.html.haml │ │ └── temp.html.haml │ ├── devices/ │ │ ├── _add_unit.html.haml │ │ ├── _form.html.haml │ │ ├── _manchester_analysis.html.haml │ │ ├── _pwm_analysis.html.haml │ │ ├── _raw_analysis.html.haml │ │ ├── _show_units.html.haml │ │ ├── edit.html.haml │ │ ├── index.html.haml │ │ ├── index.json.jbuilder │ │ ├── new.html.haml │ │ ├── show.html.haml │ │ └── show.json.jbuilder │ ├── devise/ │ │ ├── confirmations/ │ │ │ └── new.html.erb │ │ ├── mailer/ │ │ │ ├── confirmation_instructions.html.erb │ │ │ ├── password_change.html.erb │ │ │ ├── reset_password_instructions.html.erb │ │ │ └── unlock_instructions.html.erb │ │ ├── passwords/ │ │ │ ├── edit.html.haml │ │ │ └── new.html.haml │ │ ├── registrations/ │ │ │ ├── edit.html.erb │ │ │ └── new.html.haml │ │ ├── sessions/ │ │ │ └── new.html.haml │ │ ├── shared/ │ │ │ └── _links.html.erb │ │ └── unlocks/ │ │ └── new.html.haml │ ├── layouts/ │ │ ├── _footer.html.erb │ │ ├── _messages.html.haml │ │ ├── _navigation.html.haml │ │ ├── _navigation_links.html.erb │ │ ├── application.html.haml │ │ ├── mailer.html.haml │ │ └── mailer.text.haml │ ├── profile/ │ │ ├── edit.html.haml │ │ ├── index.html.haml │ │ └── show.html.haml │ ├── section_templates/ │ │ ├── index.html.haml │ │ └── show.html.haml │ ├── sections/ │ │ ├── _form.html.haml │ │ ├── _manchester_analysis.html.haml │ │ ├── _no_sections.html.haml │ │ ├── _pwm_analysis.html.haml │ │ ├── _raw_analysis.html.haml │ │ ├── _rfcat_config.html.haml │ │ ├── _section_transformations.html.haml │ │ ├── _sections.html.haml │ │ ├── edit.html.haml │ │ ├── generate.html.haml │ │ ├── index.html.haml │ │ ├── index.json.jbuilder │ │ ├── new.html.haml │ │ ├── show.html.haml │ │ └── show.json.jbuilder │ └── units/ │ ├── _captures.html.haml │ ├── _form.html.haml │ ├── _manchester_analysis.html.haml │ ├── _manchester_decoding.html.haml │ ├── _pwm_analysis.html.haml │ ├── _pwm_decoding.html.haml │ ├── _raw_analysis.html.haml │ ├── _raw_decoding.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── index.json.jbuilder │ ├── new.html.haml │ ├── show.html.haml │ └── show.json.jbuilder ├── bin/ │ ├── bundle │ ├── rails │ ├── rake │ └── setup ├── config/ │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments/ │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── favicon.json │ ├── initializers/ │ │ ├── action_mailer.rb │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── devise.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── kaminari.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ ├── simple_form.rb │ │ └── wrap_parameters.rb │ ├── locales/ │ │ ├── devise.en.yml │ │ ├── en.yml │ │ ├── simple_form.en.yml │ │ ├── social_share_button.en.yml │ │ ├── social_share_button.zh-CN.yml │ │ └── social_share_button.zh-TW.yml │ ├── railscomposer.yml │ ├── routes.rb │ └── secrets.yml ├── config.ru ├── db/ │ ├── migrate/ │ │ ├── 20160225071956_devise_create_users.rb │ │ ├── 20160227015521_add_full_name_to_user.rb │ │ ├── 20160918060423_create_devices.rb │ │ ├── 20160918060509_create_units.rb │ │ ├── 20160918060631_create_captures.rb │ │ ├── 20170515023720_create_sections.rb │ │ ├── 20170520033410_add_flip_pwm_to_devices.rb │ │ └── 20170525084143_create_section_templates.rb │ ├── schema.rb │ ├── seeds.rb │ └── template_seeds/ │ └── user_contributions.rb ├── lib/ │ ├── assets/ │ │ └── .keep │ ├── tasks/ │ │ ├── .keep │ │ ├── account_seeds.rake │ │ └── custom_seed.rake │ └── templates/ │ └── haml/ │ └── scaffold/ │ └── _form.html.haml ├── public/ │ ├── 404.html │ ├── 422.html │ ├── 500.html │ └── robots.txt ├── spec/ │ ├── controllers/ │ │ ├── captures_controller_spec.rb │ │ ├── devices_controller_spec.rb │ │ ├── section_templates_controller_spec.rb │ │ ├── sections_controller_spec.rb │ │ └── units_controller_spec.rb │ ├── factories/ │ │ ├── captures.rb │ │ ├── devices.rb │ │ ├── section_templates.rb │ │ ├── sections.rb │ │ └── units.rb │ ├── helpers/ │ │ ├── captures_helper_spec.rb │ │ ├── devices_helper_spec.rb │ │ ├── section_templates_helper_spec.rb │ │ ├── sections_helper_spec.rb │ │ └── units_helper_spec.rb │ ├── models/ │ │ ├── capture_spec.rb │ │ ├── device_spec.rb │ │ ├── section_spec.rb │ │ ├── section_template_spec.rb │ │ └── unit_spec.rb │ ├── rails_helper.rb │ ├── requests/ │ │ ├── captures_spec.rb │ │ ├── devices_spec.rb │ │ ├── section_templates_spec.rb │ │ ├── sections_spec.rb │ │ └── units_spec.rb │ ├── routing/ │ │ ├── captures_routing_spec.rb │ │ ├── devices_routing_spec.rb │ │ ├── section_templates_routing_spec.rb │ │ ├── sections_routing_spec.rb │ │ └── units_routing_spec.rb │ ├── spec_helper.rb │ └── views/ │ ├── captures/ │ │ ├── edit.html.haml_spec.rb │ │ ├── index.html.haml_spec.rb │ │ ├── new.html.haml_spec.rb │ │ └── show.html.haml_spec.rb │ ├── devices/ │ │ ├── edit.html.haml_spec.rb │ │ ├── index.html.haml_spec.rb │ │ ├── new.html.haml_spec.rb │ │ └── show.html.haml_spec.rb │ ├── section_templates/ │ │ ├── edit.html.haml_spec.rb │ │ ├── index.html.haml_spec.rb │ │ ├── new.html.haml_spec.rb │ │ └── show.html.haml_spec.rb │ ├── sections/ │ │ ├── edit.html.haml_spec.rb │ │ ├── index.html.haml_spec.rb │ │ ├── new.html.haml_spec.rb │ │ └── show.html.haml_spec.rb │ └── units/ │ ├── edit.html.haml_spec.rb │ ├── index.html.haml_spec.rb │ ├── new.html.haml_spec.rb │ └── show.html.haml_spec.rb ├── test/ │ ├── controllers/ │ │ └── .keep │ ├── fixtures/ │ │ └── .keep │ ├── helpers/ │ │ └── .keep │ ├── integration/ │ │ └── .keep │ ├── mailers/ │ │ └── .keep │ ├── models/ │ │ └── .keep │ └── test_helper.rb └── vendor/ └── assets/ ├── javascripts/ │ └── .keep └── stylesheets/ └── .keep