gitextract_lgvougrd/ ├── .github/ │ └── workflows/ │ ├── build.yaml │ └── test.yaml ├── .gitignore ├── .vscode/ │ └── settings.json ├── Cargo.toml ├── LICENSE ├── README.md ├── audio/ │ ├── Cargo.toml │ ├── src/ │ │ ├── command.rs │ │ ├── conn.rs │ │ ├── decayer.rs │ │ ├── export/ │ │ │ ├── export_setting.rs │ │ │ ├── export_state.rs │ │ │ ├── export_type.rs │ │ │ ├── exportable.rs │ │ │ ├── metadata.rs │ │ │ └── multi_file_suffix.rs │ │ ├── export.rs │ │ ├── exporter.rs │ │ ├── lib.rs │ │ ├── midi_event_queue.rs │ │ ├── play_state.rs │ │ ├── player.rs │ │ ├── program.rs │ │ ├── synth_state.rs │ │ ├── timed_midi_event.rs │ │ └── types.rs │ └── tests/ │ └── CT1MBGMRSV1.06.sf2 ├── changelog.md ├── common/ │ ├── Cargo.toml │ └── src/ │ ├── args.rs │ ├── config.rs │ ├── edit_mode.rs │ ├── font.rs │ ├── fraction.rs │ ├── index.rs │ ├── indexed_values.rs │ ├── input_state.rs │ ├── lib.rs │ ├── midi_track.rs │ ├── music.rs │ ├── music_panel_field.rs │ ├── note.rs │ ├── open_file/ │ │ ├── child_paths.rs │ │ ├── extension.rs │ │ ├── file_and_directory.rs │ │ ├── file_or_directory.rs │ │ └── open_file_type.rs │ ├── open_file.rs │ ├── panel_type.rs │ ├── paths.rs │ ├── paths_state.rs │ ├── piano_roll_mode.rs │ ├── select_mode.rs │ ├── sizes.rs │ ├── state.rs │ ├── time.rs │ ├── u64_or_f32.rs │ └── view.rs ├── data/ │ ├── CT1MBGMRSV1.06.sf2 │ ├── attribution.txt │ ├── config.ini │ ├── icon │ └── text.csv ├── html/ │ ├── index.html │ ├── install.html │ ├── limitations.html │ ├── manifesto.html │ ├── me.html │ ├── privacy.html │ ├── roadmap.html │ ├── style.css │ └── user_guide.html ├── input/ │ ├── Cargo.toml │ └── src/ │ ├── debug_input_event.rs │ ├── input_event.rs │ ├── keys.rs │ ├── lib.rs │ ├── midi_binding.rs │ ├── midi_conn.rs │ ├── note_on.rs │ └── qwerty_binding.rs ├── io/ │ ├── Cargo.toml │ └── src/ │ ├── abc123.rs │ ├── export_panel.rs │ ├── export_settings_panel.rs │ ├── import_midi.rs │ ├── io_command.rs │ ├── lib.rs │ ├── links_panel.rs │ ├── music_panel.rs │ ├── open_file_panel.rs │ ├── panel.rs │ ├── piano_roll/ │ │ ├── edit.rs │ │ ├── edit_mode_deltas.rs │ │ ├── piano_roll_panel.rs │ │ ├── piano_roll_sub_panel.rs │ │ ├── select.rs │ │ ├── time.rs │ │ └── view.rs │ ├── piano_roll.rs │ ├── popup.rs │ ├── quit_panel.rs │ ├── save.rs │ ├── snapshot.rs │ └── tracks_panel.rs ├── py/ │ ├── build.py │ ├── itch_changelog.py │ └── macroquad_icon_creator.py ├── render/ │ ├── Cargo.toml │ └── src/ │ ├── color_key.rs │ ├── drawable.rs │ ├── export_panel.rs │ ├── export_settings_panel.rs │ ├── field_params/ │ │ ├── boolean.rs │ │ ├── boolean_corners.rs │ │ ├── key_input.rs │ │ ├── key_list.rs │ │ ├── key_list_corners.rs │ │ ├── key_width.rs │ │ ├── label.rs │ │ ├── label_rectangle.rs │ │ ├── label_ref.rs │ │ ├── line.rs │ │ ├── list.rs │ │ ├── panel_background.rs │ │ ├── rectangle.rs │ │ ├── rectangle_pixel.rs │ │ ├── util.rs │ │ └── width.rs │ ├── field_params.rs │ ├── lib.rs │ ├── links_panel.rs │ ├── main_menu.rs │ ├── music_panel.rs │ ├── open_file_panel.rs │ ├── page.rs │ ├── page_position.rs │ ├── panel.rs │ ├── panels.rs │ ├── piano_roll_panel/ │ │ ├── multi_track.rs │ │ ├── piano_roll_rows.rs │ │ ├── top_bar.rs │ │ ├── viewable_notes.rs │ │ └── volume.rs │ ├── piano_roll_panel.rs │ ├── popup.rs │ ├── quit_panel.rs │ ├── renderer.rs │ ├── tracks_panel.rs │ └── types.rs ├── src/ │ └── main.rs ├── test_files/ │ ├── child_paths/ │ │ ├── test_0.cac │ │ ├── test_1.cac │ │ └── test_2.CAC │ └── ubuntu20.04/ │ └── speechd.conf └── text/ ├── Cargo.toml └── src/ ├── lib.rs ├── tooltips.rs ├── tts.rs ├── tts_string.rs └── value_map.rs