320 lines
No EOL
736 KiB
HTML
320 lines
No EOL
736 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>graphify - /home/breadway/Projects/breadarr/graphify-out/graph.html</title>
|
|
<script src="https://unpkg.com/vis-network@9.1.6/standalone/umd/vis-network.min.js"
|
|
integrity="sha384-Ux6phic9PEHJ38YtrijhkzyJ8yQlH8i/+buBR8s3mAZOJrP1gwyvAcIYl3GWtpX1"
|
|
crossorigin="anonymous"></script>
|
|
<style>
|
|
* { box-sizing: border-box; margin: 0; padding: 0; }
|
|
body { background: #0f0f1a; color: #e0e0e0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; display: flex; height: 100vh; overflow: hidden; }
|
|
#graph { flex: 1; }
|
|
#sidebar { width: 280px; background: #1a1a2e; border-left: 1px solid #2a2a4e; display: flex; flex-direction: column; overflow: hidden; }
|
|
#search-wrap { padding: 12px; border-bottom: 1px solid #2a2a4e; }
|
|
#search { width: 100%; background: #0f0f1a; border: 1px solid #3a3a5e; color: #e0e0e0; padding: 7px 10px; border-radius: 6px; font-size: 13px; outline: none; }
|
|
#search:focus { border-color: #4E79A7; }
|
|
#search-results { max-height: 140px; overflow-y: auto; padding: 4px 12px; border-bottom: 1px solid #2a2a4e; display: none; }
|
|
.search-item { padding: 4px 6px; cursor: pointer; border-radius: 4px; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
|
.search-item:hover { background: #2a2a4e; }
|
|
#info-panel { padding: 14px; border-bottom: 1px solid #2a2a4e; min-height: 140px; }
|
|
#info-panel h3 { font-size: 13px; color: #aaa; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
|
|
#info-content { font-size: 13px; color: #ccc; line-height: 1.6; }
|
|
#info-content .field { margin-bottom: 5px; }
|
|
#info-content .field b { color: #e0e0e0; }
|
|
#info-content .empty { color: #555; font-style: italic; }
|
|
.neighbor-link { display: block; padding: 2px 6px; margin: 2px 0; border-radius: 3px; cursor: pointer; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; border-left: 3px solid #333; }
|
|
.neighbor-link:hover { background: #2a2a4e; }
|
|
#neighbors-list { max-height: 160px; overflow-y: auto; margin-top: 4px; }
|
|
#legend-wrap { flex: 1; overflow-y: auto; padding: 12px; }
|
|
#legend-wrap h3 { font-size: 13px; color: #aaa; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
|
|
.legend-item { display: flex; align-items: center; gap: 8px; padding: 4px 0; cursor: pointer; border-radius: 4px; font-size: 12px; }
|
|
.legend-item:hover { background: #2a2a4e; padding-left: 4px; }
|
|
.legend-item.dimmed { opacity: 0.35; }
|
|
.legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
|
|
.legend-label { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
.legend-count { color: #666; font-size: 11px; }
|
|
#stats { padding: 10px 14px; border-top: 1px solid #2a2a4e; font-size: 11px; color: #555; }
|
|
#legend-controls { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; padding: 4px 0; }
|
|
#legend-controls label { display: flex; align-items: center; gap: 6px; cursor: pointer; font-size: 12px; color: #aaa; user-select: none; }
|
|
#legend-controls label:hover { color: #e0e0e0; }
|
|
.legend-cb, #select-all-cb { appearance: none; -webkit-appearance: none; width: 14px; height: 14px; border: 1.5px solid #3a3a5e; border-radius: 3px; background: #0f0f1a; cursor: pointer; position: relative; flex-shrink: 0; }
|
|
.legend-cb:checked, #select-all-cb:checked { background: #4E79A7; border-color: #4E79A7; }
|
|
.legend-cb:checked::after, #select-all-cb:checked::after { content: ''; position: absolute; left: 3.5px; top: 1px; width: 4px; height: 7px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
|
|
#select-all-cb:indeterminate { background: #4E79A7; border-color: #4E79A7; }
|
|
#select-all-cb:indeterminate::after { content: ''; position: absolute; left: 2px; top: 5px; width: 8px; height: 2px; background: #fff; border: none; transform: none; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="graph"></div>
|
|
<div id="sidebar">
|
|
<div id="search-wrap">
|
|
<input id="search" type="text" placeholder="Search nodes..." autocomplete="off">
|
|
<div id="search-results"></div>
|
|
</div>
|
|
<div id="info-panel">
|
|
<h3>Node Info</h3>
|
|
<div id="info-content"><span class="empty">Click a node to inspect it</span></div>
|
|
</div>
|
|
<div id="legend-wrap">
|
|
<h3>Communities</h3>
|
|
<div id="legend-controls">
|
|
<label><input type="checkbox" id="select-all-cb" checked onchange="toggleAllCommunities(!this.checked)">Select All</label>
|
|
</div>
|
|
<div id="legend"></div>
|
|
</div>
|
|
<div id="stats">693 nodes · 1770 edges · 24 communities</div>
|
|
</div>
|
|
<script>
|
|
const RAW_NODES = [{"id": "breadarrd_src_db", "label": "db.rs", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "db.rs", "community": 20, "community_name": "db.rs", "source_file": "breadarrd/src/db.rs", "file_type": "code", "degree": 15}, {"id": "breadarrd_src_db_backup_before_open", "label": "backup_before_open()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "backup_before_open()", "community": 20, "community_name": "db.rs", "source_file": "breadarrd/src/db.rs", "file_type": "code", "degree": 7}, {"id": "path", "label": "Path", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Path", "community": 20, "community_name": "db.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_db_rs_result", "label": "Result", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Result", "community": 20, "community_name": "db.rs", "source_file": "", "file_type": "code", "degree": 6}, {"id": "breadarrd_src_db_prune_old_backups", "label": "prune_old_backups()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "prune_old_backups()", "community": 20, "community_name": "db.rs", "source_file": "breadarrd/src/db.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_db_add_column_if_missing", "label": "add_column_if_missing()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "add_column_if_missing()", "community": 20, "community_name": "db.rs", "source_file": "breadarrd/src/db.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_db_rs_connection", "label": "Connection", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Connection", "community": 20, "community_name": "db.rs", "source_file": "", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_db_init", "label": "init()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "init()", "community": 20, "community_name": "db.rs", "source_file": "breadarrd/src/db.rs", "file_type": "code", "degree": 9}, {"id": "breadarrd_src_db_record_event", "label": "record_event()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "record_event()", "community": 20, "community_name": "db.rs", "source_file": "breadarrd/src/db.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_db_rs_option", "label": "Option", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Option", "community": 20, "community_name": "db.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_db_record_torrent_fetch", "label": "record_torrent_fetch()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "record_torrent_fetch()", "community": 20, "community_name": "db.rs", "source_file": "breadarrd/src/db.rs", "file_type": "code", "degree": 6}, {"id": "breadarrd_src_db_init_is_idempotent", "label": "init_is_idempotent()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "init_is_idempotent()", "community": 20, "community_name": "db.rs", "source_file": "breadarrd/src/db.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_db_record_event_inserts_a_queryable_row", "label": "record_event_inserts_a_queryable_row()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "record_event_inserts_a_queryable_row()", "community": 20, "community_name": "db.rs", "source_file": "breadarrd/src/db.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_db_record_event_rejects_an_unknown_event_type", "label": "record_event_rejects_an_unknown_event_type()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "record_event_rejects_an_unknown_event_type()", "community": 20, "community_name": "db.rs", "source_file": "breadarrd/src/db.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_db_record_torrent_fetch_inserts_a_queryable_row", "label": "record_torrent_fetch_inserts_a_queryable_row()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "record_torrent_fetch_inserts_a_queryable_row()", "community": 20, "community_name": "db.rs", "source_file": "breadarrd/src/db.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_db_record_torrent_fetch_allows_a_null_hash_and_size", "label": "record_torrent_fetch_allows_a_null_hash_and_size()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "record_torrent_fetch_allows_a_null_hash_and_size()", "community": 20, "community_name": "db.rs", "source_file": "breadarrd/src/db.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_db_backup_before_open_is_a_noop_when_no_database_exists_yet", "label": "backup_before_open_is_a_noop_when_no_database_exists_yet()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "backup_before_open_is_a_noop_when_no_database_exists_yet()", "community": 20, "community_name": "db.rs", "source_file": "breadarrd/src/db.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_db_backup_before_open_copies_an_existing_database", "label": "backup_before_open_copies_an_existing_database()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "backup_before_open_copies_an_existing_database()", "community": 20, "community_name": "db.rs", "source_file": "breadarrd/src/db.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_db_backup_before_open_prunes_beyond_max_backups", "label": "backup_before_open_prunes_beyond_max_backups()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "backup_before_open_prunes_beyond_max_backups()", "community": 20, "community_name": "db.rs", "source_file": "breadarrd/src/db.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_main", "label": "main.rs", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 17.4, "font": {"size": 12, "color": "#ffffff"}, "title": "main.rs", "community": 17, "community_name": "main.rs", "source_file": "breadarrd/src/main.rs", "file_type": "code", "degree": 31}, {"id": "breadarrd_src_main_main", "label": "main()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.5, "font": {"size": 12, "color": "#ffffff"}, "title": "main()", "community": 17, "community_name": "main.rs", "source_file": "breadarrd/src/main.rs", "file_type": "code", "degree": 23}, {"id": "breadarrd_src_main_rs_result", "label": "Result", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Result", "community": 17, "community_name": "main.rs", "source_file": "", "file_type": "code", "degree": 24}, {"id": "breadarrd_src_main_run_daemon", "label": "run_daemon()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "run_daemon()", "community": 17, "community_name": "main.rs", "source_file": "breadarrd/src/main.rs", "file_type": "code", "degree": 5}, {"id": "config", "label": "Config", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Config", "community": 17, "community_name": "main.rs", "source_file": "", "file_type": "code", "degree": 26}, {"id": "breadarrd_src_main_load_title_matcher", "label": "load_title_matcher()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "load_title_matcher()", "community": 17, "community_name": "main.rs", "source_file": "breadarrd/src/main.rs", "file_type": "code", "degree": 6}, {"id": "titlematcher", "label": "TitleMatcher", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "TitleMatcher", "community": 17, "community_name": "main.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_main_background_loop", "label": "background_loop()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "background_loop()", "community": 17, "community_name": "main.rs", "source_file": "breadarrd/src/main.rs", "file_type": "code", "degree": 13}, {"id": "arc", "label": "Arc", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Arc", "community": 9, "community_name": "transcode/mod.rs", "source_file": "", "file_type": "code", "degree": 8}, {"id": "breadarrd_src_main_rs_mutex", "label": "Mutex", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Mutex", "community": 17, "community_name": "main.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_main_rs_connection", "label": "Connection", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Connection", "community": 17, "community_name": "main.rs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_main_rs_option", "label": "Option", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Option", "community": 17, "community_name": "main.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "jellyfinclient", "label": "JellyfinClient", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "JellyfinClient", "community": 17, "community_name": "main.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "cyclestatus", "label": "CycleStatus", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CycleStatus", "community": 17, "community_name": "main.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "receiver", "label": "Receiver", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Receiver", "community": 17, "community_name": "main.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backgroundrequest", "label": "BackgroundRequest", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BackgroundRequest", "community": 17, "community_name": "main.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_main_debug_qbit_add", "label": "debug_qbit_add()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "debug_qbit_add()", "community": 17, "community_name": "main.rs", "source_file": "breadarrd/src/main.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_main_debug_jellyfin_refresh", "label": "debug_jellyfin_refresh()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "debug_jellyfin_refresh()", "community": 17, "community_name": "main.rs", "source_file": "breadarrd/src/main.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_main_debug_tvdb_add", "label": "debug_tvdb_add()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "debug_tvdb_add()", "community": 17, "community_name": "main.rs", "source_file": "breadarrd/src/main.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_main_debug_anime_map_refresh", "label": "debug_anime_map_refresh()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "debug_anime_map_refresh()", "community": 17, "community_name": "main.rs", "source_file": "breadarrd/src/main.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_main_debug_match_title", "label": "debug_match_title()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "debug_match_title()", "community": 17, "community_name": "main.rs", "source_file": "breadarrd/src/main.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_main_debug_grab_cycle", "label": "debug_grab_cycle()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "debug_grab_cycle()", "community": 17, "community_name": "main.rs", "source_file": "breadarrd/src/main.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_main_debug_import_cycle", "label": "debug_import_cycle()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "debug_import_cycle()", "community": 17, "community_name": "main.rs", "source_file": "breadarrd/src/main.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_main_debug_1337x_search", "label": "debug_1337x_search()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "debug_1337x_search()", "community": 17, "community_name": "main.rs", "source_file": "breadarrd/src/main.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_main_debug_tvdb_search", "label": "debug_tvdb_search()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "debug_tvdb_search()", "community": 17, "community_name": "main.rs", "source_file": "breadarrd/src/main.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_main_debug_scan_tv", "label": "debug_scan_tv()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "debug_scan_tv()", "community": 17, "community_name": "main.rs", "source_file": "breadarrd/src/main.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_main_debug_scan_movies", "label": "debug_scan_movies()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "debug_scan_movies()", "community": 17, "community_name": "main.rs", "source_file": "breadarrd/src/main.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_main_debug_search_show", "label": "debug_search_show()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "debug_search_show()", "community": 17, "community_name": "main.rs", "source_file": "breadarrd/src/main.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_main_debug_reconcile_report", "label": "debug_reconcile_report()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "debug_reconcile_report()", "community": 17, "community_name": "main.rs", "source_file": "breadarrd/src/main.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_main_debug_qbit_list", "label": "debug_qbit_list()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "debug_qbit_list()", "community": 17, "community_name": "main.rs", "source_file": "breadarrd/src/main.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_main_remux_backlog_cmd", "label": "remux_backlog_cmd()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "remux_backlog_cmd()", "community": 17, "community_name": "main.rs", "source_file": "breadarrd/src/main.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_main_relink_orphaned_files_cmd", "label": "relink_orphaned_files_cmd()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "relink_orphaned_files_cmd()", "community": 17, "community_name": "main.rs", "source_file": "breadarrd/src/main.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_main_probe_library_cmd", "label": "probe_library_cmd()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "probe_library_cmd()", "community": 17, "community_name": "main.rs", "source_file": "breadarrd/src/main.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_main_transcode_library_cmd", "label": "transcode_library_cmd()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "transcode_library_cmd()", "community": 17, "community_name": "main.rs", "source_file": "breadarrd/src/main.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_main_retranscode_oversized_cmd", "label": "retranscode_oversized_cmd()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "retranscode_oversized_cmd()", "community": 17, "community_name": "main.rs", "source_file": "breadarrd/src/main.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_main_drive_transcode_queue_to_completion", "label": "drive_transcode_queue_to_completion()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "drive_transcode_queue_to_completion()", "community": 17, "community_name": "main.rs", "source_file": "breadarrd/src/main.rs", "file_type": "code", "degree": 6}, {"id": "breadarrd_src_main_verify_library_cmd", "label": "verify_library_cmd()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "verify_library_cmd()", "community": 17, "community_name": "main.rs", "source_file": "breadarrd/src/main.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_main_wait_for_shutdown", "label": "wait_for_shutdown()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "wait_for_shutdown()", "community": 17, "community_name": "main.rs", "source_file": "breadarrd/src/main.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_qbit_mod", "label": "qbit/mod.rs", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "qbit/mod.rs", "community": 19, "community_name": "QbitClient", "source_file": "breadarrd/src/qbit/mod.rs", "file_type": "code", "degree": 9}, {"id": "breadarrd_src_qbit_mod_extract_btih", "label": "extract_btih()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "extract_btih()", "community": 19, "community_name": "QbitClient", "source_file": "breadarrd/src/qbit/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_qbit_mod_rs_option", "label": "Option", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Option", "community": 19, "community_name": "QbitClient", "source_file": "", "file_type": "code", "degree": 3}, {"id": "string", "label": "String", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "String", "community": 19, "community_name": "QbitClient", "source_file": "", "file_type": "code", "degree": 6}, {"id": "breadarrd_src_qbit_mod_magnetrejected", "label": "MagnetRejected", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "MagnetRejected", "community": 19, "community_name": "QbitClient", "source_file": "breadarrd/src/qbit/mod.rs", "file_type": "code", "degree": 5}, {"id": "display", "label": "Display", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Display", "community": 19, "community_name": "QbitClient", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_qbit_mod_magnetrejected_fmt", "label": ".fmt()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".fmt()", "community": 19, "community_name": "QbitClient", "source_file": "breadarrd/src/qbit/mod.rs", "file_type": "code", "degree": 3}, {"id": "formatter", "label": "Formatter", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Formatter", "community": 19, "community_name": "QbitClient", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_qbit_mod_rs_result", "label": "Result", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Result", "community": 19, "community_name": "QbitClient", "source_file": "", "file_type": "code", "degree": 8}, {"id": "error", "label": "Error", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Error", "community": 19, "community_name": "QbitClient", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_qbit_mod_addtorrentresponse", "label": "AddTorrentResponse", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "AddTorrentResponse", "community": 19, "community_name": "QbitClient", "source_file": "breadarrd/src/qbit/mod.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_qbit_mod_qbitclient", "label": "QbitClient", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "QbitClient", "community": 19, "community_name": "QbitClient", "source_file": "breadarrd/src/qbit/mod.rs", "file_type": "code", "degree": 17}, {"id": "client", "label": "Client", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Client", "community": 19, "community_name": "QbitClient", "source_file": "", "file_type": "code", "degree": 1}, {"id": "rwlock", "label": "RwLock", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "RwLock", "community": 19, "community_name": "QbitClient", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_qbit_mod_rs_mutex", "label": "Mutex", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Mutex", "community": 19, "community_name": "QbitClient", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_qbit_mod_torrentinfo", "label": "TorrentInfo", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "TorrentInfo", "community": 19, "community_name": "QbitClient", "source_file": "breadarrd/src/qbit/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_qbit_mod_qbitclient_new", "label": ".new()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".new()", "community": 19, "community_name": "QbitClient", "source_file": "breadarrd/src/qbit/mod.rs", "file_type": "code", "degree": 6}, {"id": "into", "label": "Into", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Into", "community": 19, "community_name": "QbitClient", "source_file": "", "file_type": "code", "degree": 1}, {"id": "self", "label": "Self", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Self", "community": 19, "community_name": "QbitClient", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_qbit_mod_qbitclient_login", "label": ".login()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".login()", "community": 19, "community_name": "QbitClient", "source_file": "breadarrd/src/qbit/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_qbit_mod_qbitclient_do_login", "label": ".do_login()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": ".do_login()", "community": 19, "community_name": "QbitClient", "source_file": "breadarrd/src/qbit/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_qbit_mod_qbitclient_try_reauth", "label": ".try_reauth()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".try_reauth()", "community": 19, "community_name": "QbitClient", "source_file": "breadarrd/src/qbit/mod.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_qbit_mod_qbitclient_add_magnet", "label": ".add_magnet()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": ".add_magnet()", "community": 19, "community_name": "QbitClient", "source_file": "breadarrd/src/qbit/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_qbit_mod_qbitclient_list_torrents", "label": ".list_torrents()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".list_torrents()", "community": 19, "community_name": "QbitClient", "source_file": "breadarrd/src/qbit/mod.rs", "file_type": "code", "degree": 6}, {"id": "vec", "label": "Vec", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Vec", "community": 19, "community_name": "QbitClient", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_qbit_mod_qbitclient_post_form", "label": ".post_form()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".post_form()", "community": 19, "community_name": "QbitClient", "source_file": "breadarrd/src/qbit/mod.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_qbit_mod_qbitclient_lock_for_grab", "label": ".lock_for_grab()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".lock_for_grab()", "community": 19, "community_name": "QbitClient", "source_file": "breadarrd/src/qbit/mod.rs", "file_type": "code", "degree": 2}, {"id": "mutexguard", "label": "MutexGuard", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "MutexGuard", "community": 19, "community_name": "QbitClient", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_qbit_mod_qbitclient_delete_torrent", "label": ".delete_torrent()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".delete_torrent()", "community": 19, "community_name": "QbitClient", "source_file": "breadarrd/src/qbit/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_qbit_mod_extracts_hash_from_a_real_magnet", "label": "extracts_hash_from_a_real_magnet()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "extracts_hash_from_a_real_magnet()", "community": 19, "community_name": "QbitClient", "source_file": "breadarrd/src/qbit/mod.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_qbit_mod_extracts_base32_hash_from_a_magnet", "label": "extracts_base32_hash_from_a_magnet()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "extracts_base32_hash_from_a_magnet()", "community": 19, "community_name": "QbitClient", "source_file": "breadarrd/src/qbit/mod.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_qbit_mod_returns_none_for_a_torrent_download_url", "label": "returns_none_for_a_torrent_download_url()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "returns_none_for_a_torrent_download_url()", "community": 19, "community_name": "QbitClient", "source_file": "breadarrd/src/qbit/mod.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_qbit_mod_returns_none_for_a_1337x_page_url", "label": "returns_none_for_a_1337x_page_url()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "returns_none_for_a_1337x_page_url()", "community": 19, "community_name": "QbitClient", "source_file": "breadarrd/src/qbit/mod.rs", "file_type": "code", "degree": 1}, {"id": "breadarr_shared_src_config", "label": "config.rs", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 23.3, "font": {"size": 12, "color": "#ffffff"}, "title": "config.rs", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 56}, {"id": "breadarr_shared_src_config_config", "label": "Config", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Config", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 15}, {"id": "breadarr_shared_src_config_libraryconfig", "label": "LibraryConfig", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "LibraryConfig", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 3}, {"id": "breadarr_shared_src_config_rs_string", "label": "String", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "String", "community": 8, "community_name": "config.rs", "source_file": "", "file_type": "code", "degree": 19}, {"id": "breadarr_shared_src_config_default_root_folder", "label": "default_root_folder()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "default_root_folder()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 2}, {"id": "breadarr_shared_src_config_sourcesconfig", "label": "SourcesConfig", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "SourcesConfig", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 6}, {"id": "breadarr_shared_src_config_rs_vec", "label": "Vec", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Vec", "community": 8, "community_name": "config.rs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "default", "label": "Default", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Default", "community": 8, "community_name": "config.rs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "breadarr_shared_src_config_sourcesconfig_default", "label": ".default()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".default()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 15}, {"id": "breadarr_shared_src_config_rs_self", "label": "Self", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Self", "community": 8, "community_name": "config.rs", "source_file": "", "file_type": "code", "degree": 4}, {"id": "breadarr_shared_src_config_default_tpb_api_url", "label": "default_tpb_api_url()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "default_tpb_api_url()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 3}, {"id": "breadarr_shared_src_config_default_upgrade_enabled", "label": "default_upgrade_enabled()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "default_upgrade_enabled()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 2}, {"id": "breadarr_shared_src_config_default_upgrade_poll_interval_secs", "label": "default_upgrade_poll_interval_secs()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "default_upgrade_poll_interval_secs()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 2}, {"id": "breadarr_shared_src_config_default_upgrade_budget_per_cycle", "label": "default_upgrade_budget_per_cycle()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "default_upgrade_budget_per_cycle()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 2}, {"id": "breadarr_shared_src_config_default_upgrade_min_score_gain", "label": "default_upgrade_min_score_gain()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "default_upgrade_min_score_gain()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 2}, {"id": "breadarr_shared_src_config_default_search_poll_interval_secs", "label": "default_search_poll_interval_secs()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "default_search_poll_interval_secs()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 2}, {"id": "breadarr_shared_src_config_default_search_budget_per_cycle", "label": "default_search_budget_per_cycle()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "default_search_budget_per_cycle()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 2}, {"id": "breadarr_shared_src_config_default_search_enabled", "label": "default_search_enabled()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "default_search_enabled()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 2}, {"id": "breadarr_shared_src_config_default_nyaa_rss_url", "label": "default_nyaa_rss_url()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "default_nyaa_rss_url()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 3}, {"id": "breadarr_shared_src_config_default_grab_poll_interval_secs", "label": "default_grab_poll_interval_secs()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "default_grab_poll_interval_secs()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 2}, {"id": "breadarr_shared_src_config_default_grab_enabled", "label": "default_grab_enabled()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "default_grab_enabled()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 2}, {"id": "breadarr_shared_src_config_default_import_poll_interval_secs", "label": "default_import_poll_interval_secs()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "default_import_poll_interval_secs()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 2}, {"id": "breadarr_shared_src_config_default_1337x_mirrors", "label": "default_1337x_mirrors()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "default_1337x_mirrors()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 4}, {"id": "breadarr_shared_src_config_daemonconfig", "label": "DaemonConfig", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "DaemonConfig", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 5}, {"id": "breadarr_shared_src_config_daemonconfig_default", "label": ".default()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".default()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 6}, {"id": "breadarr_shared_src_config_qbitconfig", "label": "QbitConfig", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "QbitConfig", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 3}, {"id": "breadarr_shared_src_config_notificationsconfig", "label": "NotificationsConfig", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "NotificationsConfig", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 3}, {"id": "breadarr_shared_src_config_jellyfinconfig", "label": "JellyfinConfig", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "JellyfinConfig", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 3}, {"id": "breadarr_shared_src_config_transcodeconfig", "label": "TranscodeConfig", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "TranscodeConfig", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 24}, {"id": "breadarr_shared_src_config_transcodeconfig_default", "label": ".default()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.2, "font": {"size": 12, "color": "#ffffff"}, "title": ".default()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 22}, {"id": "breadarr_shared_src_config_default_transcode_poll_interval_secs", "label": "default_transcode_poll_interval_secs()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "default_transcode_poll_interval_secs()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 2}, {"id": "breadarr_shared_src_config_default_vaapi_device", "label": "default_vaapi_device()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "default_vaapi_device()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 3}, {"id": "breadarr_shared_src_config_default_parallelism_min", "label": "default_parallelism_min()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "default_parallelism_min()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 2}, {"id": "breadarr_shared_src_config_default_parallelism_max", "label": "default_parallelism_max()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "default_parallelism_max()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 2}, {"id": "breadarr_shared_src_config_default_parallelism_max_anime", "label": "default_parallelism_max_anime()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "default_parallelism_max_anime()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 2}, {"id": "breadarr_shared_src_config_default_reference_bitrate_kbps", "label": "default_reference_bitrate_kbps()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "default_reference_bitrate_kbps()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 2}, {"id": "breadarr_shared_src_config_default_reference_height", "label": "default_reference_height()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "default_reference_height()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 2}, {"id": "breadarr_shared_src_config_default_av1_efficiency_factor", "label": "default_av1_efficiency_factor()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "default_av1_efficiency_factor()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 2}, {"id": "breadarr_shared_src_config_default_exclude_hdr", "label": "default_exclude_hdr()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "default_exclude_hdr()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 2}, {"id": "breadarr_shared_src_config_default_exclude_min_height", "label": "default_exclude_min_height()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "default_exclude_min_height()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 2}, {"id": "breadarr_shared_src_config_default_quality_live_action", "label": "default_quality_live_action()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "default_quality_live_action()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 2}, {"id": "breadarr_shared_src_config_default_quality_anime", "label": "default_quality_anime()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "default_quality_anime()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 2}, {"id": "breadarr_shared_src_config_default_anime_svtav1_preset", "label": "default_anime_svtav1_preset()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "default_anime_svtav1_preset()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 2}, {"id": "breadarr_shared_src_config_default_anime_svtav1_max_threads", "label": "default_anime_svtav1_max_threads()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "default_anime_svtav1_max_threads()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 2}, {"id": "breadarr_shared_src_config_default_min_size_reduction_pct", "label": "default_min_size_reduction_pct()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "default_min_size_reduction_pct()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 2}, {"id": "breadarr_shared_src_config_default_skip_below_ceiling_ratio", "label": "default_skip_below_ceiling_ratio()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "default_skip_below_ceiling_ratio()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 2}, {"id": "breadarr_shared_src_config_default_verify_sample_secs", "label": "default_verify_sample_secs()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "default_verify_sample_secs()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 2}, {"id": "breadarr_shared_src_config_tvdbconfig", "label": "TvdbConfig", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "TvdbConfig", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 3}, {"id": "breadarr_shared_src_config_tmdbconfig", "label": "TmdbConfig", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "TmdbConfig", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 3}, {"id": "breadarr_shared_src_config_config_load", "label": ".load()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".load()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 7}, {"id": "breadarr_shared_src_config_rs_result", "label": "Result", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Result", "community": 8, "community_name": "config.rs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "breadarr_shared_src_config_config_validate", "label": ".validate()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": ".validate()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 4}, {"id": "breadarr_shared_src_config_config_db_path", "label": ".db_path()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".db_path()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 3}, {"id": "breadarr_shared_src_config_rs_pathbuf", "label": "PathBuf", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "PathBuf", "community": 8, "community_name": "config.rs", "source_file": "", "file_type": "code", "degree": 5}, {"id": "breadarr_shared_src_config_config_model_dir", "label": ".model_dir()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".model_dir()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 3}, {"id": "breadarr_shared_src_config_config_default_root_folder", "label": ".default_root_folder()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".default_root_folder()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 3}, {"id": "breadarr_shared_src_config_config_path", "label": "config_path()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "config_path()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 4}, {"id": "breadarr_shared_src_config_expand_home", "label": "expand_home()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "expand_home()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 6}, {"id": "breadarr_shared_src_config_default_log_level", "label": "default_log_level()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "default_log_level()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 3}, {"id": "breadarr_shared_src_config_default_listen_addr", "label": "default_listen_addr()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "default_listen_addr()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 3}, {"id": "breadarr_shared_src_config_default_db_path", "label": "default_db_path()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "default_db_path()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 3}, {"id": "breadarr_shared_src_config_default_model_dir", "label": "default_model_dir()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "default_model_dir()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 3}, {"id": "breadarr_shared_src_config_default_qbit_category", "label": "default_qbit_category()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "default_qbit_category()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 2}, {"id": "breadarr_shared_src_config_default_config_has_expected_values", "label": "default_config_has_expected_values()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "default_config_has_expected_values()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 2}, {"id": "breadarr_shared_src_config_load_falls_back_to_default_when_file_missing", "label": "load_falls_back_to_default_when_file_missing()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "load_falls_back_to_default_when_file_missing()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 2}, {"id": "breadarr_shared_src_config_parses_partial_toml_with_defaults", "label": "parses_partial_toml_with_defaults()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "parses_partial_toml_with_defaults()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 1}, {"id": "breadarr_shared_src_config_default_config_passes_validation", "label": "default_config_passes_validation()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "default_config_passes_validation()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 3}, {"id": "breadarr_shared_src_config_rejects_a_zero_reference_height", "label": "rejects_a_zero_reference_height()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "rejects_a_zero_reference_height()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 1}, {"id": "breadarr_shared_src_config_rejects_a_negative_min_size_reduction_pct", "label": "rejects_a_negative_min_size_reduction_pct()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "rejects_a_negative_min_size_reduction_pct()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 1}, {"id": "breadarr_shared_src_config_rejects_a_min_size_reduction_pct_above_one", "label": "rejects_a_min_size_reduction_pct_above_one()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "rejects_a_min_size_reduction_pct_above_one()", "community": 8, "community_name": "config.rs", "source_file": "breadarr-shared/src/config.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_importer_ffprobe", "label": "ffprobe.rs", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "ffprobe.rs", "community": 10, "community_name": "ffprobe.rs", "source_file": "breadarrd/src/importer/ffprobe.rs", "file_type": "code", "degree": 26}, {"id": "breadarrd_src_importer_ffprobe_audiostream", "label": "AudioStream", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "AudioStream", "community": 10, "community_name": "ffprobe.rs", "source_file": "breadarrd/src/importer/ffprobe.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_importer_ffprobe_rs_option", "label": "Option", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Option", "community": 10, "community_name": "ffprobe.rs", "source_file": "", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_importer_ffprobe_rs_string", "label": "String", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "String", "community": 10, "community_name": "ffprobe.rs", "source_file": "", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_importer_ffprobe_subtitlestream", "label": "SubtitleStream", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "SubtitleStream", "community": 10, "community_name": "ffprobe.rs", "source_file": "breadarrd/src/importer/ffprobe.rs", "file_type": "code", "degree": 7}, {"id": "breadarrd_src_importer_ffprobe_mediaprobe", "label": "MediaProbe", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "MediaProbe", "community": 10, "community_name": "ffprobe.rs", "source_file": "breadarrd/src/importer/ffprobe.rs", "file_type": "code", "degree": 13}, {"id": "breadarrd_src_importer_ffprobe_rs_vec", "label": "Vec", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Vec", "community": 10, "community_name": "ffprobe.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_importer_ffprobe_mediaprobe_is_hdr", "label": ".is_hdr()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".is_hdr()", "community": 10, "community_name": "ffprobe.rs", "source_file": "breadarrd/src/importer/ffprobe.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_importer_ffprobe_is_english", "label": "is_english()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "is_english()", "community": 10, "community_name": "ffprobe.rs", "source_file": "breadarrd/src/importer/ffprobe.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_importer_ffprobe_mediaprobe_has_english_audio", "label": ".has_english_audio()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".has_english_audio()", "community": 10, "community_name": "ffprobe.rs", "source_file": "breadarrd/src/importer/ffprobe.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_ffprobe_mediaprobe_default_audio_is_non_english", "label": ".default_audio_is_non_english()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".default_audio_is_non_english()", "community": 10, "community_name": "ffprobe.rs", "source_file": "breadarrd/src/importer/ffprobe.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_ffprobe_probe", "label": "probe()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "probe()", "community": 10, "community_name": "ffprobe.rs", "source_file": "breadarrd/src/importer/ffprobe.rs", "file_type": "code", "degree": 8}, {"id": "breadarrd_src_importer_ffprobe_rs_path", "label": "Path", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path", "community": 10, "community_name": "ffprobe.rs", "source_file": "", "file_type": "code", "degree": 6}, {"id": "breadarrd_src_importer_ffprobe_rs_result", "label": "Result", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Result", "community": 10, "community_name": "ffprobe.rs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_importer_ffprobe_build_media_probe", "label": "build_media_probe()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "build_media_probe()", "community": 10, "community_name": "ffprobe.rs", "source_file": "breadarrd/src/importer/ffprobe.rs", "file_type": "code", "degree": 7}, {"id": "value", "label": "Value", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Value", "community": 10, "community_name": "ffprobe.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_importer_ffprobe_parse_frame_rate_fraction", "label": "parse_frame_rate_fraction()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "parse_frame_rate_fraction()", "community": 10, "community_name": "ffprobe.rs", "source_file": "breadarrd/src/importer/ffprobe.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_ffprobe_decodecheck", "label": "DecodeCheck", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "DecodeCheck", "community": 10, "community_name": "ffprobe.rs", "source_file": "breadarrd/src/importer/ffprobe.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_importer_ffprobe_verify_decodable", "label": "verify_decodable()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "verify_decodable()", "community": 10, "community_name": "ffprobe.rs", "source_file": "breadarrd/src/importer/ffprobe.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_importer_ffprobe_verify_decodable_sampled", "label": "verify_decodable_sampled()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "verify_decodable_sampled()", "community": 10, "community_name": "ffprobe.rs", "source_file": "breadarrd/src/importer/ffprobe.rs", "file_type": "code", "degree": 8}, {"id": "breadarrd_src_importer_ffprobe_has_english_audio_true_when_any_track_is_english", "label": "has_english_audio_true_when_any_track_is_english()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "has_english_audio_true_when_any_track_is_english()", "community": 10, "community_name": "ffprobe.rs", "source_file": "breadarrd/src/importer/ffprobe.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_importer_ffprobe_has_english_audio_false_with_no_tracks", "label": "has_english_audio_false_with_no_tracks()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "has_english_audio_false_with_no_tracks()", "community": 10, "community_name": "ffprobe.rs", "source_file": "breadarrd/src/importer/ffprobe.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_importer_ffprobe_default_audio_is_non_english_true_when_default_track_is_not_english", "label": "default_audio_is_non_english_true_when_default_track_is_not_english()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "default_audio_is_non_english_true_when_default_track_is_not_english()", "community": 10, "community_name": "ffprobe.rs", "source_file": "breadarrd/src/importer/ffprobe.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_importer_ffprobe_default_audio_is_non_english_false_when_no_default_is_set", "label": "default_audio_is_non_english_false_when_no_default_is_set()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "default_audio_is_non_english_false_when_no_default_is_set()", "community": 10, "community_name": "ffprobe.rs", "source_file": "breadarrd/src/importer/ffprobe.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_importer_ffprobe_default_audio_is_non_english_false_when_default_is_english", "label": "default_audio_is_non_english_false_when_default_is_english()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "default_audio_is_non_english_false_when_default_is_english()", "community": 10, "community_name": "ffprobe.rs", "source_file": "breadarrd/src/importer/ffprobe.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_importer_ffprobe_probe_fails_gracefully_for_a_nonexistent_file", "label": "probe_fails_gracefully_for_a_nonexistent_file()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "probe_fails_gracefully_for_a_nonexistent_file()", "community": 10, "community_name": "ffprobe.rs", "source_file": "breadarrd/src/importer/ffprobe.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_ffprobe_generate_clip", "label": "generate_clip()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "generate_clip()", "community": 10, "community_name": "ffprobe.rs", "source_file": "breadarrd/src/importer/ffprobe.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_importer_ffprobe_rs_pathbuf", "label": "PathBuf", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "PathBuf", "community": 10, "community_name": "ffprobe.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_ffprobe_verify_decodable_sampled_passes_a_genuinely_intact_short_file", "label": "verify_decodable_sampled_passes_a_genuinely_intact_short_file()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "verify_decodable_sampled_passes_a_genuinely_intact_short_file()", "community": 10, "community_name": "ffprobe.rs", "source_file": "breadarrd/src/importer/ffprobe.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_importer_ffprobe_verify_decodable_sampled_passes_a_genuinely_intact_long_file", "label": "verify_decodable_sampled_passes_a_genuinely_intact_long_file()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "verify_decodable_sampled_passes_a_genuinely_intact_long_file()", "community": 10, "community_name": "ffprobe.rs", "source_file": "breadarrd/src/importer/ffprobe.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_importer_ffprobe_verify_decodable_sampled_flags_a_file_that_does_not_decode_at_all", "label": "verify_decodable_sampled_flags_a_file_that_does_not_decode_at_all()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "verify_decodable_sampled_flags_a_file_that_does_not_decode_at_all()", "community": 10, "community_name": "ffprobe.rs", "source_file": "breadarrd/src/importer/ffprobe.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_ffprobe_generate_test_clip", "label": "generate_test_clip()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "generate_test_clip()", "community": 10, "community_name": "ffprobe.rs", "source_file": "breadarrd/src/importer/ffprobe.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_importer_ffprobe_probe_extracts_real_resolution_and_audio_language_from_a_generated_clip", "label": "probe_extracts_real_resolution_and_audio_language_from_a_generated_clip()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "probe_extracts_real_resolution_and_audio_language_from_a_generated_clip()", "community": 10, "community_name": "ffprobe.rs", "source_file": "breadarrd/src/importer/ffprobe.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_importer_ffprobe_probe_extracts_extra_metadata_from_a_generated_clip", "label": "probe_extracts_extra_metadata_from_a_generated_clip()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "probe_extracts_extra_metadata_from_a_generated_clip()", "community": 10, "community_name": "ffprobe.rs", "source_file": "breadarrd/src/importer/ffprobe.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_importer_ffprobe_probe_finds_the_real_video_stream_even_when_attached_pic_comes_first", "label": "probe_finds_the_real_video_stream_even_when_attached_pic_comes_first()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "probe_finds_the_real_video_stream_even_when_attached_pic_comes_first()", "community": 10, "community_name": "ffprobe.rs", "source_file": "breadarrd/src/importer/ffprobe.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_ffprobe_probe_finds_the_real_video_stream_when_attached_pic_comes_second", "label": "probe_finds_the_real_video_stream_when_attached_pic_comes_second()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "probe_finds_the_real_video_stream_when_attached_pic_comes_second()", "community": 10, "community_name": "ffprobe.rs", "source_file": "breadarrd/src/importer/ffprobe.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod", "label": "importer/mod.rs", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 36.9, "font": {"size": 12, "color": "#ffffff"}, "title": "importer/mod.rs", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 113}, {"id": "breadarrd_src_importer_mod_pendinggrab", "label": "PendingGrab", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "PendingGrab", "community": 13, "community_name": "process_pending_grabs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 12}, {"id": "breadarrd_src_importer_mod_rs_string", "label": "String", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "String", "community": 16, "community_name": "find_relinkable_episode_files", "source_file": "", "file_type": "code", "degree": 8}, {"id": "breadarrd_src_importer_mod_rs_option", "label": "Option", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Option", "community": 13, "community_name": "process_pending_grabs", "source_file": "", "file_type": "code", "degree": 14}, {"id": "breadarrd_src_importer_mod_pendinggrab_release_id", "label": ".release_id()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".release_id()", "community": 13, "community_name": "process_pending_grabs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_pendinggrab_media_item_id", "label": ".media_item_id()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".media_item_id()", "community": 13, "community_name": "process_pending_grabs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_importer_mod_pendinggrab_torrent_hash", "label": ".torrent_hash()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".torrent_hash()", "community": 13, "community_name": "process_pending_grabs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_pendinggrab_episode_id", "label": ".episode_id()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".episode_id()", "community": 13, "community_name": "process_pending_grabs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_importer_mod_pendinggrab_root_folder", "label": ".root_folder()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".root_folder()", "community": 13, "community_name": "process_pending_grabs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_importer_mod_fetch_pending_grabs", "label": "fetch_pending_grabs()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "fetch_pending_grabs()", "community": 13, "community_name": "process_pending_grabs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 9}, {"id": "breadarrd_src_importer_mod_rs_connection", "label": "Connection", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Connection", "community": 14, "community_name": "Connection", "source_file": "", "file_type": "code", "degree": 26}, {"id": "breadarrd_src_importer_mod_rs_result", "label": "Result", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Result", "community": 12, "community_name": "Result", "source_file": "", "file_type": "code", "degree": 29}, {"id": "breadarrd_src_importer_mod_rs_vec", "label": "Vec", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Vec", "community": 16, "community_name": "find_relinkable_episode_files", "source_file": "", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_importer_mod_locate_video_file", "label": "locate_video_file()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "locate_video_file()", "community": 12, "community_name": "Result", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 8}, {"id": "breadarrd_src_importer_mod_rs_path", "label": "Path", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Path", "community": 12, "community_name": "Result", "source_file": "", "file_type": "code", "degree": 19}, {"id": "breadarrd_src_importer_mod_rs_pathbuf", "label": "PathBuf", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "PathBuf", "community": 12, "community_name": "Result", "source_file": "", "file_type": "code", "degree": 12}, {"id": "breadarrd_src_importer_mod_largest_video_file", "label": "largest_video_file()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "largest_video_file()", "community": 12, "community_name": "Result", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 6}, {"id": "breadarrd_src_importer_mod_walk_files", "label": "walk_files()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "walk_files()", "community": 12, "community_name": "Result", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 7}, {"id": "breadarrd_src_importer_mod_season_dir", "label": "season_dir()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "season_dir()", "community": 12, "community_name": "Result", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_importer_mod_has_cjk", "label": "has_cjk()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "has_cjk()", "community": 16, "community_name": "find_relinkable_episode_files", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_deterministic_filename", "label": "deterministic_filename()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "deterministic_filename()", "community": 16, "community_name": "find_relinkable_episode_files", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 7}, {"id": "breadarrd_src_importer_mod_deterministic_movie_filename", "label": "deterministic_movie_filename()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "deterministic_movie_filename()", "community": 16, "community_name": "find_relinkable_episode_files", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_importer_mod_sanitize", "label": "sanitize()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "sanitize()", "community": 16, "community_name": "find_relinkable_episode_files", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_importer_mod_insufficient_space", "label": "insufficient_space()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "insufficient_space()", "community": 12, "community_name": "Result", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_importer_mod_same_filesystem", "label": "same_filesystem()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "same_filesystem()", "community": 12, "community_name": "Result", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_importer_mod_move_or_copy_file", "label": "move_or_copy_file()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "move_or_copy_file()", "community": 12, "community_name": "Result", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 7}, {"id": "breadarrd_src_importer_mod_copy_via_temp_file", "label": "copy_via_temp_file()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "copy_via_temp_file()", "community": 12, "community_name": "Result", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_importer_mod_importstats", "label": "ImportStats", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ImportStats", "community": 13, "community_name": "process_pending_grabs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_importer_mod_update_grab_progress", "label": "update_grab_progress()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "update_grab_progress()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 6}, {"id": "breadarrd_src_importer_mod_grab_is_stalled", "label": "grab_is_stalled()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "grab_is_stalled()", "community": 14, "community_name": "Connection", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_importer_mod_grab_missing_past_grace", "label": "grab_missing_past_grace()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "grab_missing_past_grace()", "community": 14, "community_name": "Connection", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_importer_mod_record_import_error", "label": "record_import_error()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "record_import_error()", "community": 14, "community_name": "Connection", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_importer_mod_fail_grab", "label": "fail_grab()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "fail_grab()", "community": 13, "community_name": "process_pending_grabs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 8}, {"id": "breadarrd_src_importer_mod_reconcileoutcome", "label": "ReconcileOutcome", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ReconcileOutcome", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_reconcile_missing_files", "label": "reconcile_missing_files()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "reconcile_missing_files()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 11}, {"id": "breadarrd_src_importer_mod_find_by_basename", "label": "find_by_basename()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "find_by_basename()", "community": 12, "community_name": "Result", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 6}, {"id": "osstr", "label": "OsStr", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "OsStr", "community": 12, "community_name": "Result", "source_file": "", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_find_by_stem", "label": "find_by_stem()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "find_by_stem()", "community": 12, "community_name": "Result", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 6}, {"id": "breadarrd_src_importer_mod_relinkcandidate", "label": "RelinkCandidate", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "RelinkCandidate", "community": 16, "community_name": "find_relinkable_episode_files", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_importer_mod_collect_video_files", "label": "collect_video_files()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "collect_video_files()", "community": 16, "community_name": "find_relinkable_episode_files", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_importer_mod_find_relinkable_episode_files", "label": "find_relinkable_episode_files()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "find_relinkable_episode_files()", "community": 16, "community_name": "find_relinkable_episode_files", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 10}, {"id": "breadarrd_src_importer_mod_relink_episode_files", "label": "relink_episode_files()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "relink_episode_files()", "community": 16, "community_name": "find_relinkable_episode_files", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 6}, {"id": "breadarrd_src_importer_mod_ensure_probed", "label": "ensure_probed()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ensure_probed()", "community": 14, "community_name": "Connection", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 14}, {"id": "breadarrd_src_importer_mod_probefields", "label": "ProbeFields", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ProbeFields", "community": 16, "community_name": "find_relinkable_episode_files", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_importer_mod_probefields_from_probe", "label": ".from_probe()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".from_probe()", "community": 16, "community_name": "find_relinkable_episode_files", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_importer_mod_rs_self", "label": "Self", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Self", "community": 16, "community_name": "find_relinkable_episode_files", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_importer_mod_upsert_probe", "label": "upsert_probe()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "upsert_probe()", "community": 14, "community_name": "Connection", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 6}, {"id": "breadarrd_src_importer_mod_record_decode_check", "label": "record_decode_check()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "record_decode_check()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_importer_mod_probe_indicates_import_problem", "label": "probe_indicates_import_problem()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "probe_indicates_import_problem()", "community": 12, "community_name": "Result", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_importer_mod_probesweepreport", "label": "ProbeSweepReport", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ProbeSweepReport", "community": 14, "community_name": "Connection", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_probe_library", "label": "probe_library()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "probe_library()", "community": 14, "community_name": "Connection", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 6}, {"id": "breadarrd_src_importer_mod_verifylibraryreport", "label": "VerifyLibraryReport", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "VerifyLibraryReport", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_verify_library", "label": "verify_library()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "verify_library()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 8}, {"id": "breadarrd_src_importer_mod_remuxbacklogreport", "label": "RemuxBacklogReport", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "RemuxBacklogReport", "community": 14, "community_name": "Connection", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_remux_backlog", "label": "remux_backlog()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "remux_backlog()", "community": 14, "community_name": "Connection", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 7}, {"id": "breadarrd_src_importer_mod_remux_one_backlog_file", "label": "remux_one_backlog_file()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "remux_one_backlog_file()", "community": 14, "community_name": "Connection", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 6}, {"id": "breadarrd_src_importer_mod_remap_path", "label": "remap_path()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "remap_path()", "community": 12, "community_name": "Result", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_importer_mod_run_import_cycle", "label": "run_import_cycle()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "run_import_cycle()", "community": 13, "community_name": "process_pending_grabs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 10}, {"id": "qbitclient", "label": "QbitClient", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "QbitClient", "community": 13, "community_name": "process_pending_grabs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_rs_jellyfinclient", "label": "JellyfinClient", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "JellyfinClient", "community": 13, "community_name": "process_pending_grabs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_process_pending_grabs", "label": "process_pending_grabs()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "process_pending_grabs()", "community": 13, "community_name": "process_pending_grabs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 24}, {"id": "torrentinfo", "label": "TorrentInfo", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "TorrentInfo", "community": 13, "community_name": "process_pending_grabs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_importer_mod_importoutcome", "label": "ImportOutcome", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ImportOutcome", "community": 15, "community_name": "import_one", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_maybe_enqueue_transcode", "label": "maybe_enqueue_transcode()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "maybe_enqueue_transcode()", "community": 12, "community_name": "Result", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 6}, {"id": "breadarrd_src_importer_mod_stalefile", "label": "StaleFile", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "StaleFile", "community": 12, "community_name": "Result", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_importer_mod_stalefile_restore", "label": ".restore()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".restore()", "community": 12, "community_name": "Result", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_importer_mod_import_one", "label": "import_one()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "import_one()", "community": 15, "community_name": "import_one", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 30}, {"id": "breadarrd_src_importer_mod_seasonpackimportoutcome", "label": "SeasonPackImportOutcome", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "SeasonPackImportOutcome", "community": 18, "community_name": "import_season_pack", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_import_season_pack", "label": "import_season_pack()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "import_season_pack()", "community": 18, "community_name": "import_season_pack", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 14}, {"id": "breadarrd_src_importer_mod_packfileoutcome", "label": "PackFileOutcome", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "PackFileOutcome", "community": 12, "community_name": "Result", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_import_season_pack_file", "label": "import_season_pack_file()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "import_season_pack_file()", "community": 12, "community_name": "Result", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 17}, {"id": "breadarrd_src_importer_mod_generate_test_clip", "label": "generate_test_clip()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generate_test_clip()", "community": 15, "community_name": "import_one", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 11}, {"id": "breadarrd_src_importer_mod_ensure_probed_flags_a_low_resolution_file_as_under_quality", "label": "ensure_probed_flags_a_low_resolution_file_as_under_quality()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ensure_probed_flags_a_low_resolution_file_as_under_quality()", "community": 15, "community_name": "import_one", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_importer_mod_ensure_probed_does_not_flag_a_wide_aspect_ratio_file_as_under_quality", "label": "ensure_probed_does_not_flag_a_wide_aspect_ratio_file_as_under_quality()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ensure_probed_does_not_flag_a_wide_aspect_ratio_file_as_under_quality()", "community": 14, "community_name": "Connection", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_importer_mod_ensure_probed_skips_reprobing_an_unchanged_file", "label": "ensure_probed_skips_reprobing_an_unchanged_file()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ensure_probed_skips_reprobing_an_unchanged_file()", "community": 15, "community_name": "import_one", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_probe_library_reports_probed_vs_skipped_up_to_date", "label": "probe_library_reports_probed_vs_skipped_up_to_date()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "probe_library_reports_probed_vs_skipped_up_to_date()", "community": 14, "community_name": "Connection", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_importer_mod_verify_library_confirms_a_genuinely_decodable_file", "label": "verify_library_confirms_a_genuinely_decodable_file()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "verify_library_confirms_a_genuinely_decodable_file()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_importer_mod_verify_library_flags_a_file_that_parses_but_does_not_decode", "label": "verify_library_flags_a_file_that_parses_but_does_not_decode()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "verify_library_flags_a_file_that_parses_but_does_not_decode()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_verify_library_skips_files_that_never_even_passed_the_header_probe", "label": "verify_library_skips_files_that_never_even_passed_the_header_probe()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "verify_library_skips_files_that_never_even_passed_the_header_probe()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_seeded_release_conn", "label": "seeded_release_conn()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "seeded_release_conn()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 9}, {"id": "breadarrd_src_importer_mod_media_item_with_root", "label": "media_item_with_root()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "media_item_with_root()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 9}, {"id": "breadarrd_src_importer_mod_reconcile_clears_episode_file_rows_whose_path_no_longer_exists", "label": "reconcile_clears_episode_file_rows_whose_path_no_longer_exists()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "reconcile_clears_episode_file_rows_whose_path_no_longer_exists()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_importer_mod_reconcile_repairs_a_path_whose_show_folder_was_renamed_instead_of_clearing_it", "label": "reconcile_repairs_a_path_whose_show_folder_was_renamed_instead_of_clearing_it()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "reconcile_repairs_a_path_whose_show_folder_was_renamed_instead_of_clearing_it()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_reconcile_repairs_a_path_whose_extension_changed_from_a_transcode", "label": "reconcile_repairs_a_path_whose_extension_changed_from_a_transcode()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "reconcile_repairs_a_path_whose_extension_changed_from_a_transcode()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_reconcile_refuses_to_clear_an_anomalous_fraction_in_one_pass", "label": "reconcile_refuses_to_clear_an_anomalous_fraction_in_one_pass()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "reconcile_refuses_to_clear_an_anomalous_fraction_in_one_pass()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_importer_mod_reconcile_dry_run_reports_without_writing_anything", "label": "reconcile_dry_run_reports_without_writing_anything()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "reconcile_dry_run_reports_without_writing_anything()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_importer_mod_find_relinkable_episode_files_finds_a_file_with_no_tracked_row", "label": "find_relinkable_episode_files_finds_a_file_with_no_tracked_row()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "find_relinkable_episode_files_finds_a_file_with_no_tracked_row()", "community": 16, "community_name": "find_relinkable_episode_files", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_importer_mod_find_relinkable_episode_files_falls_back_to_the_unpadded_season_folder", "label": "find_relinkable_episode_files_falls_back_to_the_unpadded_season_folder()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "find_relinkable_episode_files_falls_back_to_the_unpadded_season_folder()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_importer_mod_find_relinkable_episode_files_skips_an_ambiguous_match_rather_than_guessing", "label": "find_relinkable_episode_files_skips_an_ambiguous_match_rather_than_guessing()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "find_relinkable_episode_files_skips_an_ambiguous_match_rather_than_guessing()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_importer_mod_a_fresh_grab_is_not_stalled", "label": "a_fresh_grab_is_not_stalled()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "a_fresh_grab_is_not_stalled()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_a_grab_untouched_past_the_threshold_is_stalled", "label": "a_grab_untouched_past_the_threshold_is_stalled()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "a_grab_untouched_past_the_threshold_is_stalled()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_progress_advancing_resets_the_stall_clock", "label": "progress_advancing_resets_the_stall_clock()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "progress_advancing_resets_the_stall_clock()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_importer_mod_update_grab_progress_ignores_a_non_increasing_value", "label": "update_grab_progress_ignores_a_non_increasing_value()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "update_grab_progress_ignores_a_non_increasing_value()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_importer_mod_a_torrent_missing_within_the_grace_period_is_not_yet_failed", "label": "a_torrent_missing_within_the_grace_period_is_not_yet_failed()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "a_torrent_missing_within_the_grace_period_is_not_yet_failed()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_a_torrent_missing_past_the_grace_period_is_failed", "label": "a_torrent_missing_past_the_grace_period_is_failed()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "a_torrent_missing_past_the_grace_period_is_failed()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_fail_grab_reopens_the_release_for_search", "label": "fail_grab_reopens_the_release_for_search()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "fail_grab_reopens_the_release_for_search()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_importer_mod_builds_filename_with_episode_title", "label": "builds_filename_with_episode_title()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "builds_filename_with_episode_title()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_importer_mod_builds_filename_without_episode_title", "label": "builds_filename_without_episode_title()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "builds_filename_without_episode_title()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_importer_mod_sanitizes_path_hostile_characters", "label": "sanitizes_path_hostile_characters()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "sanitizes_path_hostile_characters()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_importer_mod_omits_a_cjk_only_episode_title_instead_of_embedding_it", "label": "omits_a_cjk_only_episode_title_instead_of_embedding_it()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "omits_a_cjk_only_episode_title_instead_of_embedding_it()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_importer_mod_insufficient_space_is_false_for_a_trivially_small_request", "label": "insufficient_space_is_false_for_a_trivially_small_request()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "insufficient_space_is_false_for_a_trivially_small_request()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_importer_mod_insufficient_space_is_true_for_an_absurd_request", "label": "insufficient_space_is_true_for_an_absurd_request()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "insufficient_space_is_true_for_an_absurd_request()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_importer_mod_same_filesystem_is_true_for_two_paths_under_the_same_temp_dir", "label": "same_filesystem_is_true_for_two_paths_under_the_same_temp_dir()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "same_filesystem_is_true_for_two_paths_under_the_same_temp_dir()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_importer_mod_same_filesystem_is_false_when_either_path_cannot_be_stat_d", "label": "same_filesystem_is_false_when_either_path_cannot_be_stat_d()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "same_filesystem_is_false_when_either_path_cannot_be_stat_d()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_importer_mod_copy_via_temp_file_writes_through_a_part_file_and_renames_into_place", "label": "copy_via_temp_file_writes_through_a_part_file_and_renames_into_place()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "copy_via_temp_file_writes_through_a_part_file_and_renames_into_place()", "community": 12, "community_name": "Result", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_move_or_copy_file_moves_the_source_out", "label": "move_or_copy_file_moves_the_source_out()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "move_or_copy_file_moves_the_source_out()", "community": 12, "community_name": "Result", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_locates_a_single_file_torrent", "label": "locates_a_single_file_torrent()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "locates_a_single_file_torrent()", "community": 12, "community_name": "Result", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_remap_path_translates_container_prefix_to_host_prefix", "label": "remap_path_translates_container_prefix_to_host_prefix()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "remap_path_translates_container_prefix_to_host_prefix()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_importer_mod_remap_path_is_noop_when_prefixes_not_configured", "label": "remap_path_is_noop_when_prefixes_not_configured()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "remap_path_is_noop_when_prefixes_not_configured()", "community": 11, "community_name": "importer/mod.rs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_importer_mod_process_pending_grabs_routes_each_grab_by_torrent_state", "label": "process_pending_grabs_routes_each_grab_by_torrent_state()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "process_pending_grabs_routes_each_grab_by_torrent_state()", "community": 13, "community_name": "process_pending_grabs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_importer_mod_does_not_import_a_torrent_while_it_is_still_being_physically_moved", "label": "does_not_import_a_torrent_while_it_is_still_being_physically_moved()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "does_not_import_a_torrent_while_it_is_still_being_physically_moved()", "community": 13, "community_name": "process_pending_grabs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_importer_mod_a_persistently_failing_import_escalates_to_failed_instead_of_retrying_forever", "label": "a_persistently_failing_import_escalates_to_failed_instead_of_retrying_forever()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "a_persistently_failing_import_escalates_to_failed_instead_of_retrying_forever()", "community": 13, "community_name": "process_pending_grabs", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_importer_mod_imports_a_movie_release_with_no_episode_id", "label": "imports_a_movie_release_with_no_episode_id()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "imports_a_movie_release_with_no_episode_id()", "community": 15, "community_name": "import_one", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_import_one_enqueues_a_transcode_job_when_transcode_is_enabled", "label": "import_one_enqueues_a_transcode_job_when_transcode_is_enabled()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "import_one_enqueues_a_transcode_job_when_transcode_is_enabled()", "community": 15, "community_name": "import_one", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_importer_mod_import_one_enqueues_an_anime_tagged_transcode_job_for_anime", "label": "import_one_enqueues_an_anime_tagged_transcode_job_for_anime()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "import_one_enqueues_an_anime_tagged_transcode_job_for_anime()", "community": 15, "community_name": "import_one", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_importer_mod_import_one_places_a_single_episode_grab_under_its_season_subfolder", "label": "import_one_places_a_single_episode_grab_under_its_season_subfolder()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "import_one_places_a_single_episode_grab_under_its_season_subfolder()", "community": 15, "community_name": "import_one", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_import_one_flags_quality_when_the_real_file_is_under_1080p", "label": "import_one_flags_quality_when_the_real_file_is_under_1080p()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "import_one_flags_quality_when_the_real_file_is_under_1080p()", "community": 15, "community_name": "import_one", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_importer_mod_generate_dual_audio_clip", "label": "generate_dual_audio_clip()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "generate_dual_audio_clip()", "community": 14, "community_name": "Connection", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_importer_mod_remux_backlog_promotes_english_to_default_for_a_flagged_file", "label": "remux_backlog_promotes_english_to_default_for_a_flagged_file()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "remux_backlog_promotes_english_to_default_for_a_flagged_file()", "community": 14, "community_name": "Connection", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_importer_mod_remux_backlog_skips_non_mkv_files", "label": "remux_backlog_skips_non_mkv_files()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "remux_backlog_skips_non_mkv_files()", "community": 14, "community_name": "Connection", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_refuses_to_overwrite_an_already_imported_higher_scoring_file", "label": "refuses_to_overwrite_an_already_imported_higher_scoring_file()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "refuses_to_overwrite_an_already_imported_higher_scoring_file()", "community": 15, "community_name": "import_one", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_a_strictly_better_release_replaces_the_existing_file_via_a_real_move", "label": "a_strictly_better_release_replaces_the_existing_file_via_a_real_move()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "a_strictly_better_release_replaces_the_existing_file_via_a_real_move()", "community": 15, "community_name": "import_one", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_an_upgrade_swap_sweeps_every_duplicate_episode_file_row_not_just_one", "label": "an_upgrade_swap_sweeps_every_duplicate_episode_file_row_not_just_one()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "an_upgrade_swap_sweeps_every_duplicate_episode_file_row_not_just_one()", "community": 15, "community_name": "import_one", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_a_drifted_root_folder_does_not_defeat_the_dest_collision_check", "label": "a_drifted_root_folder_does_not_defeat_the_dest_collision_check()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "a_drifted_root_folder_does_not_defeat_the_dest_collision_check()", "community": 15, "community_name": "import_one", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_locates_the_largest_video_file_in_a_directory", "label": "locates_the_largest_video_file_in_a_directory()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "locates_the_largest_video_file_in_a_directory()", "community": 12, "community_name": "Result", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_importer_mod_seeded_season_pack_conn", "label": "seeded_season_pack_conn()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "seeded_season_pack_conn()", "community": 18, "community_name": "import_season_pack", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 6}, {"id": "breadarrd_src_importer_mod_import_season_pack_imports_every_file_and_marks_episodes_owned", "label": "import_season_pack_imports_every_file_and_marks_episodes_owned()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "import_season_pack_imports_every_file_and_marks_episodes_owned()", "community": 18, "community_name": "import_season_pack", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_importer_mod_import_season_pack_skips_episodes_that_already_have_a_better_file", "label": "import_season_pack_skips_episodes_that_already_have_a_better_file()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "import_season_pack_skips_episodes_that_already_have_a_better_file()", "community": 18, "community_name": "import_season_pack", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_importer_mod_import_season_pack_skips_an_upgrade_locked_episode_even_with_a_lower_scoring_existing_release", "label": "import_season_pack_skips_an_upgrade_locked_episode_even_with_a_lower_scoring_existing_release()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "import_season_pack_skips_an_upgrade_locked_episode_even_with_a_lower_scoring_existing_release()", "community": 18, "community_name": "import_season_pack", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_importer_mod_import_season_pack_fails_when_nothing_in_it_matches_a_tracked_episode", "label": "import_season_pack_fails_when_nothing_in_it_matches_a_tracked_episode()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "import_season_pack_fails_when_nothing_in_it_matches_a_tracked_episode()", "community": 18, "community_name": "import_season_pack", "source_file": "breadarrd/src/importer/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_transcode_mod", "label": "transcode/mod.rs", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 23.8, "font": {"size": 12, "color": "#ffffff"}, "title": "transcode/mod.rs", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 58}, {"id": "breadarrd_src_transcode_mod_target_bitrate_kbps", "label": "target_bitrate_kbps()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "target_bitrate_kbps()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 6}, {"id": "breadarrd_src_transcode_mod_run_ffmpeg_encode_live_action", "label": "run_ffmpeg_encode_live_action()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "run_ffmpeg_encode_live_action()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 6}, {"id": "breadarrd_src_transcode_mod_rs_path", "label": "Path", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path", "community": 9, "community_name": "transcode/mod.rs", "source_file": "", "file_type": "code", "degree": 10}, {"id": "breadarrd_src_transcode_mod_rs_result", "label": "Result", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Result", "community": 9, "community_name": "transcode/mod.rs", "source_file": "", "file_type": "code", "degree": 13}, {"id": "breadarrd_src_transcode_mod_run_ffmpeg_encode_anime", "label": "run_ffmpeg_encode_anime()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "run_ffmpeg_encode_anime()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 6}, {"id": "breadarrd_src_transcode_mod_subtitle_codec_args", "label": "subtitle_codec_args()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "subtitle_codec_args()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 7}, {"id": "breadarrd_src_transcode_mod_rs_vec", "label": "Vec", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Vec", "community": 9, "community_name": "transcode/mod.rs", "source_file": "", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_transcode_mod_rs_string", "label": "String", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "String", "community": 9, "community_name": "transcode/mod.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_transcode_mod_temp_path_for", "label": "temp_path_for()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "temp_path_for()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 6}, {"id": "breadarrd_src_transcode_mod_rs_pathbuf", "label": "PathBuf", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "PathBuf", "community": 9, "community_name": "transcode/mod.rs", "source_file": "", "file_type": "code", "degree": 8}, {"id": "breadarrd_src_transcode_mod_encodeoutcome", "label": "EncodeOutcome", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "EncodeOutcome", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_transcode_mod_encode_and_verify", "label": "encode_and_verify()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "encode_and_verify()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 18}, {"id": "breadarrd_src_transcode_mod_rs_option", "label": "Option", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Option", "community": 9, "community_name": "transcode/mod.rs", "source_file": "", "file_type": "code", "degree": 8}, {"id": "breadarrd_src_transcode_mod_is_beneficial", "label": "is_beneficial()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "is_beneficial()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_transcode_mod_is_anime", "label": "is_anime()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "is_anime()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_transcode_mod_rs_connection", "label": "Connection", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Connection", "community": 9, "community_name": "transcode/mod.rs", "source_file": "", "file_type": "code", "degree": 11}, {"id": "breadarrd_src_transcode_mod_is_anime_path", "label": "is_anime_path()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "is_anime_path()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 6}, {"id": "breadarrd_src_transcode_mod_is_anime_content", "label": "is_anime_content()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "is_anime_content()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 7}, {"id": "breadarrd_src_transcode_mod_reset_orphaned_running_jobs", "label": "reset_orphaned_running_jobs()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "reset_orphaned_running_jobs()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_transcode_mod_enqueue", "label": "enqueue()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "enqueue()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_transcode_mod_should_enqueue", "label": "should_enqueue()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "should_enqueue()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_transcode_mod_find_backlog_candidates", "label": "find_backlog_candidates()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "find_backlog_candidates()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 8}, {"id": "breadarrd_src_transcode_mod_find_oversized_av1_candidates", "label": "find_oversized_av1_candidates()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "find_oversized_av1_candidates()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 7}, {"id": "breadarrd_src_transcode_mod_backlogcandidate", "label": "BacklogCandidate", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BacklogCandidate", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_transcode_mod_claimedjob", "label": "ClaimedJob", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ClaimedJob", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_transcode_mod_claim_pending_jobs", "label": "claim_pending_jobs()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "claim_pending_jobs()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 11}, {"id": "mutex", "label": "Mutex", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Mutex", "community": 9, "community_name": "transcode/mod.rs", "source_file": "", "file_type": "code", "degree": 7}, {"id": "breadarrd_src_transcode_mod_finalize_job", "label": "finalize_job()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "finalize_job()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 9}, {"id": "breadarrd_src_transcode_mod_transcodeoutcome", "label": "TranscodeOutcome", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "TranscodeOutcome", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_transcode_mod_finalizedjob", "label": "FinalizedJob", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "FinalizedJob", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_transcode_mod_transcodecyclestats", "label": "TranscodeCycleStats", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "TranscodeCycleStats", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_transcode_mod_transcodecyclestats_merge", "label": ".merge()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".merge()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_transcode_mod_rs_self", "label": "Self", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Self", "community": 9, "community_name": "transcode/mod.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_transcode_mod_live_action_parallelism_for", "label": "live_action_parallelism_for()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "live_action_parallelism_for()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_transcode_mod_effective_parallelism", "label": "effective_parallelism()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "effective_parallelism()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 6}, {"id": "breadarrd_src_transcode_mod_rs_jellyfinclient", "label": "JellyfinClient", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "JellyfinClient", "community": 9, "community_name": "transcode/mod.rs", "source_file": "", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_transcode_mod_run_cycle", "label": "run_cycle()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "run_cycle()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 11}, {"id": "breadarrd_src_transcode_mod_run_pipeline_cycle", "label": "run_pipeline_cycle()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "run_pipeline_cycle()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 13}, {"id": "breadarrd_src_transcode_mod_cfg", "label": "cfg()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "cfg()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 15}, {"id": "breadarrd_src_transcode_mod_seed_file", "label": "seed_file()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "seed_file()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 6}, {"id": "breadarrd_src_transcode_mod_claim_pending_jobs_respects_already_running_jobs_as_a_global_cap", "label": "claim_pending_jobs_respects_already_running_jobs_as_a_global_cap()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "claim_pending_jobs_respects_already_running_jobs_as_a_global_cap()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_transcode_mod_find_backlog_candidates_excludes_skipped_jobs", "label": "find_backlog_candidates_excludes_skipped_jobs()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "find_backlog_candidates_excludes_skipped_jobs()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_transcode_mod_claim_pending_jobs_claims_nothing_when_already_at_the_cap", "label": "claim_pending_jobs_claims_nothing_when_already_at_the_cap()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "claim_pending_jobs_claims_nothing_when_already_at_the_cap()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_transcode_mod_claim_pending_jobs_enforces_live_action_and_anime_caps_independently", "label": "claim_pending_jobs_enforces_live_action_and_anime_caps_independently()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "claim_pending_jobs_enforces_live_action_and_anime_caps_independently()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_transcode_mod_generate_test_clip", "label": "generate_test_clip()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "generate_test_clip()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 6}, {"id": "breadarrd_src_transcode_mod_should_enqueue_rejects_missing_codec_or_height", "label": "should_enqueue_rejects_missing_codec_or_height()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "should_enqueue_rejects_missing_codec_or_height()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_transcode_mod_encode_and_verify_skips_a_file_that_is_already_av1", "label": "encode_and_verify_skips_a_file_that_is_already_av1()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "encode_and_verify_skips_a_file_that_is_already_av1()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_transcode_mod_temp_path_for_is_not_picked_up_by_video_file_scans", "label": "temp_path_for_is_not_picked_up_by_video_file_scans()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "temp_path_for_is_not_picked_up_by_video_file_scans()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_transcode_mod_is_beneficial_rejects_growth_and_marginal_shrinkage", "label": "is_beneficial_rejects_growth_and_marginal_shrinkage()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "is_beneficial_rejects_growth_and_marginal_shrinkage()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_transcode_mod_live_action_parallelism_for_reserves_exactly_what_jellyfin_is_using", "label": "live_action_parallelism_for_reserves_exactly_what_jellyfin_is_using()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "live_action_parallelism_for_reserves_exactly_what_jellyfin_is_using()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_transcode_mod_encode_and_verify_skips_pre_emptively_when_source_is_already_efficient", "label": "encode_and_verify_skips_pre_emptively_when_source_is_already_efficient()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "encode_and_verify_skips_pre_emptively_when_source_is_already_efficient()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_transcode_mod_generate_lossless_test_clip", "label": "generate_lossless_test_clip()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "generate_lossless_test_clip()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_transcode_mod_generate_clip_with_attached_pic", "label": "generate_clip_with_attached_pic()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "generate_clip_with_attached_pic()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_transcode_mod_generate_clip_with_mov_text_subtitle", "label": "generate_clip_with_mov_text_subtitle()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "generate_clip_with_mov_text_subtitle()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_transcode_mod_subtitle_codec_args_converts_only_mov_text", "label": "subtitle_codec_args_converts_only_mov_text()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "subtitle_codec_args_converts_only_mov_text()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_transcode_mod_encode_and_verify_handles_a_source_with_attached_cover_art", "label": "encode_and_verify_handles_a_source_with_attached_cover_art()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "encode_and_verify_handles_a_source_with_attached_cover_art()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_transcode_mod_encode_and_verify_handles_a_source_with_a_mov_text_subtitle", "label": "encode_and_verify_handles_a_source_with_a_mov_text_subtitle()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "encode_and_verify_handles_a_source_with_a_mov_text_subtitle()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_transcode_mod_encode_and_verify_anime_pipeline_shrinks_a_bloated_source", "label": "encode_and_verify_anime_pipeline_shrinks_a_bloated_source()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "encode_and_verify_anime_pipeline_shrinks_a_bloated_source()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_transcode_mod_encode_and_verify_force_reencode_bypasses_the_already_av1_short_circuit", "label": "encode_and_verify_force_reencode_bypasses_the_already_av1_short_circuit()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "encode_and_verify_force_reencode_bypasses_the_already_av1_short_circuit()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_transcode_mod_is_anime_path_matches_configured_root_folders", "label": "is_anime_path_matches_configured_root_folders()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "is_anime_path_matches_configured_root_folders()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_transcode_mod_target_bitrate_matches_reference_at_reference_resolution", "label": "target_bitrate_matches_reference_at_reference_resolution()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "target_bitrate_matches_reference_at_reference_resolution()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_transcode_mod_target_bitrate_scales_down_for_720p", "label": "target_bitrate_scales_down_for_720p()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "target_bitrate_scales_down_for_720p()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_transcode_mod_target_bitrate_scales_up_for_1440p", "label": "target_bitrate_scales_up_for_1440p()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "target_bitrate_scales_up_for_1440p()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_transcode_mod_run_cycle_attributes_each_result_to_the_correct_job_even_out_of_claim_order", "label": "run_cycle_attributes_each_result_to_the_correct_job_even_out_of_claim_order()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "run_cycle_attributes_each_result_to_the_correct_job_even_out_of_claim_order()", "community": 9, "community_name": "transcode/mod.rs", "source_file": "breadarrd/src/transcode/mod.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_api_mod", "label": "api/mod.rs", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.8, "font": {"size": 12, "color": "#ffffff"}, "title": "api/mod.rs", "community": 1, "community_name": "api/mod.rs", "source_file": "breadarrd/src/api/mod.rs", "file_type": "code", "degree": 20}, {"id": "breadarrd_src_api_mod_appstate", "label": "AppState", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "AppState", "community": 1, "community_name": "api/mod.rs", "source_file": "breadarrd/src/api/mod.rs", "file_type": "code", "degree": 19}, {"id": "breadarrd_src_api_mod_rs_connection", "label": "Connection", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Connection", "community": 1, "community_name": "api/mod.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_api_mod_rs_option", "label": "Option", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Option", "community": 1, "community_name": "api/mod.rs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "tvdbclient", "label": "TvdbClient", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "TvdbClient", "community": 1, "community_name": "api/mod.rs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "tmdbclient", "label": "TmdbClient", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "TmdbClient", "community": 1, "community_name": "api/mod.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_api_mod_rs_qbitclient", "label": "QbitClient", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "QbitClient", "community": 1, "community_name": "api/mod.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_api_mod_rs_string", "label": "String", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "String", "community": 1, "community_name": "api/mod.rs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "sender", "label": "Sender", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Sender", "community": 1, "community_name": "api/mod.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_api_mod_backgroundrequest", "label": "BackgroundRequest", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "BackgroundRequest", "community": 1, "community_name": "api/mod.rs", "source_file": "breadarrd/src/api/mod.rs", "file_type": "code", "degree": 9}, {"id": "breadarrd_src_api_mod_rs_result", "label": "Result", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Result", "community": 1, "community_name": "api/mod.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_api_mod_rs_vec", "label": "Vec", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Vec", "community": 1, "community_name": "api/mod.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_api_mod_rs_releasecandidate", "label": "ReleaseCandidate", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ReleaseCandidate", "community": 1, "community_name": "api/mod.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_api_mod_cyclestatus", "label": "CycleStatus", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "CycleStatus", "community": 1, "community_name": "api/mod.rs", "source_file": "breadarrd/src/api/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_api_mod_cyclerecord", "label": "CycleRecord", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CycleRecord", "community": 1, "community_name": "api/mod.rs", "source_file": "breadarrd/src/api/mod.rs", "file_type": "code", "degree": 5}, {"id": "datetime", "label": "DateTime", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "DateTime", "community": 1, "community_name": "api/mod.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "utc", "label": "Utc", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Utc", "community": 1, "community_name": "api/mod.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_api_mod_require_api_token", "label": "require_api_token()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "require_api_token()", "community": 1, "community_name": "api/mod.rs", "source_file": "breadarrd/src/api/mod.rs", "file_type": "code", "degree": 7}, {"id": "breadarrd_src_api_mod_rs_state", "label": "State", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "State", "community": 1, "community_name": "api/mod.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "request", "label": "Request", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Request", "community": 1, "community_name": "api/mod.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "next", "label": "Next", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Next", "community": 1, "community_name": "api/mod.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "response", "label": "Response", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Response", "community": 1, "community_name": "api/mod.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_api_mod_constant_time_eq", "label": "constant_time_eq()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "constant_time_eq()", "community": 1, "community_name": "api/mod.rs", "source_file": "breadarrd/src/api/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_api_mod_router", "label": "router()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "router()", "community": 1, "community_name": "api/mod.rs", "source_file": "breadarrd/src/api/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_api_mod_constant_time_eq_matches_identical_strings", "label": "constant_time_eq_matches_identical_strings()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "constant_time_eq_matches_identical_strings()", "community": 1, "community_name": "api/mod.rs", "source_file": "breadarrd/src/api/mod.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_api_mod_constant_time_eq_rejects_different_strings_of_the_same_length", "label": "constant_time_eq_rejects_different_strings_of_the_same_length()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "constant_time_eq_rejects_different_strings_of_the_same_length()", "community": 1, "community_name": "api/mod.rs", "source_file": "breadarrd/src/api/mod.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_api_mod_constant_time_eq_rejects_different_lengths", "label": "constant_time_eq_rejects_different_lengths()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "constant_time_eq_rejects_different_lengths()", "community": 1, "community_name": "api/mod.rs", "source_file": "breadarrd/src/api/mod.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_api_mod_constant_time_eq_treats_empty_strings_as_equal", "label": "constant_time_eq_treats_empty_strings_as_equal()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "constant_time_eq_treats_empty_strings_as_equal()", "community": 1, "community_name": "api/mod.rs", "source_file": "breadarrd/src/api/mod.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_api_routes_review", "label": "review.rs", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "review.rs", "community": 1, "community_name": "api/mod.rs", "source_file": "breadarrd/src/api/routes/review.rs", "file_type": "code", "degree": 9}, {"id": "breadarrd_src_api_routes_review_list", "label": "list()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "list()", "community": 1, "community_name": "api/mod.rs", "source_file": "breadarrd/src/api/routes/review.rs", "file_type": "code", "degree": 9}, {"id": "breadarrd_src_api_routes_review_rs_state", "label": "State", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "State", "community": 1, "community_name": "api/mod.rs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_api_routes_review_rs_result", "label": "Result", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Result", "community": 1, "community_name": "api/mod.rs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "json", "label": "Json", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Json", "community": 1, "community_name": "api/mod.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_api_routes_review_rs_vec", "label": "Vec", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Vec", "community": 1, "community_name": "api/mod.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "reviewqueueentry", "label": "ReviewQueueEntry", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ReviewQueueEntry", "community": 1, "community_name": "api/mod.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "statuscode", "label": "StatusCode", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "StatusCode", "community": 1, "community_name": "api/mod.rs", "source_file": "", "file_type": "code", "degree": 6}, {"id": "breadarrd_src_api_routes_review_rs_string", "label": "String", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "String", "community": 1, "community_name": "api/mod.rs", "source_file": "", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_api_routes_review_approve", "label": "approve()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "approve()", "community": 1, "community_name": "api/mod.rs", "source_file": "breadarrd/src/api/routes/review.rs", "file_type": "code", "degree": 8}, {"id": "breadarrd_src_api_routes_review_rs_path", "label": "Path", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Path", "community": 1, "community_name": "api/mod.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_api_routes_review_reject", "label": "reject()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "reject()", "community": 1, "community_name": "api/mod.rs", "source_file": "breadarrd/src/api/routes/review.rs", "file_type": "code", "degree": 7}, {"id": "breadarrd_src_api_routes_review_internal", "label": "internal()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "internal()", "community": 1, "community_name": "api/mod.rs", "source_file": "breadarrd/src/api/routes/review.rs", "file_type": "code", "degree": 5}, {"id": "e", "label": "E", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "E", "community": 1, "community_name": "api/mod.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_matcher_mod", "label": "matcher/mod.rs", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "matcher/mod.rs", "community": 6, "community_name": "TitleMatcher", "source_file": "breadarrd/src/matcher/mod.rs", "file_type": "code", "degree": 14}, {"id": "breadarrd_src_matcher_mod_ensure_model", "label": "ensure_model()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ensure_model()", "community": 6, "community_name": "TitleMatcher", "source_file": "breadarrd/src/matcher/mod.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_matcher_mod_rs_path", "label": "Path", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Path", "community": 6, "community_name": "TitleMatcher", "source_file": "", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_matcher_mod_rs_result", "label": "Result", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Result", "community": 6, "community_name": "TitleMatcher", "source_file": "", "file_type": "code", "degree": 8}, {"id": "pathbuf", "label": "PathBuf", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "PathBuf", "community": 6, "community_name": "TitleMatcher", "source_file": "", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_matcher_mod_download", "label": "download()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "download()", "community": 6, "community_name": "TitleMatcher", "source_file": "breadarrd/src/matcher/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_matcher_mod_matchcandidate", "label": "MatchCandidate", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "MatchCandidate", "community": 6, "community_name": "TitleMatcher", "source_file": "breadarrd/src/matcher/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_matcher_mod_rs_string", "label": "String", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "String", "community": 6, "community_name": "TitleMatcher", "source_file": "", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_matcher_mod_matchoutcome", "label": "MatchOutcome", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "MatchOutcome", "community": 6, "community_name": "TitleMatcher", "source_file": "breadarrd/src/matcher/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_matcher_mod_titlematcher", "label": "TitleMatcher", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TitleMatcher", "community": 6, "community_name": "TitleMatcher", "source_file": "breadarrd/src/matcher/mod.rs", "file_type": "code", "degree": 15}, {"id": "ortembedder", "label": "OrtEmbedder", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "OrtEmbedder", "community": 6, "community_name": "TitleMatcher", "source_file": "", "file_type": "code", "degree": 1}, {"id": "hashmap", "label": "HashMap", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "HashMap", "community": 6, "community_name": "TitleMatcher", "source_file": "", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_matcher_mod_rs_vec", "label": "Vec", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Vec", "community": 6, "community_name": "TitleMatcher", "source_file": "", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_matcher_mod_titlematcher_load", "label": ".load()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": ".load()", "community": 6, "community_name": "TitleMatcher", "source_file": "breadarrd/src/matcher/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_matcher_mod_rs_self", "label": "Self", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Self", "community": 6, "community_name": "TitleMatcher", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_matcher_mod_titlematcher_embed_cached", "label": ".embed_cached()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".embed_cached()", "community": 6, "community_name": "TitleMatcher", "source_file": "breadarrd/src/matcher/mod.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_matcher_mod_titlematcher_embed_query", "label": ".embed_query()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".embed_query()", "community": 6, "community_name": "TitleMatcher", "source_file": "breadarrd/src/matcher/mod.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_matcher_mod_titlematcher_best_match_index", "label": ".best_match_index()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".best_match_index()", "community": 6, "community_name": "TitleMatcher", "source_file": "breadarrd/src/matcher/mod.rs", "file_type": "code", "degree": 6}, {"id": "breadarrd_src_matcher_mod_rs_option", "label": "Option", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Option", "community": 6, "community_name": "TitleMatcher", "source_file": "", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_matcher_mod_titlematcher_match_title", "label": ".match_title()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".match_title()", "community": 6, "community_name": "TitleMatcher", "source_file": "breadarrd/src/matcher/mod.rs", "file_type": "code", "degree": 7}, {"id": "breadarrd_src_matcher_mod_rs_connection", "label": "Connection", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Connection", "community": 6, "community_name": "TitleMatcher", "source_file": "", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_matcher_mod_token_overlap_ratio", "label": "token_overlap_ratio()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "token_overlap_ratio()", "community": 6, "community_name": "TitleMatcher", "source_file": "breadarrd/src/matcher/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_matcher_mod_queue_for_review", "label": "queue_for_review()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "queue_for_review()", "community": 6, "community_name": "TitleMatcher", "source_file": "breadarrd/src/matcher/mod.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_matcher_mod_identical_titles_fully_overlap", "label": "identical_titles_fully_overlap()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "identical_titles_fully_overlap()", "community": 6, "community_name": "TitleMatcher", "source_file": "breadarrd/src/matcher/mod.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_matcher_mod_short_alias_contained_in_longer_title_fully_overlaps", "label": "short_alias_contained_in_longer_title_fully_overlaps()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "short_alias_contained_in_longer_title_fully_overlaps()", "community": 6, "community_name": "TitleMatcher", "source_file": "breadarrd/src/matcher/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_matcher_mod_unrelated_titles_have_no_overlap", "label": "unrelated_titles_have_no_overlap()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "unrelated_titles_have_no_overlap()", "community": 6, "community_name": "TitleMatcher", "source_file": "breadarrd/src/matcher/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_matcher_mod_empty_input_has_zero_overlap", "label": "empty_input_has_zero_overlap()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "empty_input_has_zero_overlap()", "community": 6, "community_name": "TitleMatcher", "source_file": "breadarrd/src/matcher/mod.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_matcher_mod_shared_particle_alone_is_not_real_overlap", "label": "shared_particle_alone_is_not_real_overlap()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "shared_particle_alone_is_not_real_overlap()", "community": 6, "community_name": "TitleMatcher", "source_file": "breadarrd/src/matcher/mod.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_parser_mod", "label": "parser/mod.rs", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 16.0, "font": {"size": 12, "color": "#ffffff"}, "title": "parser/mod.rs", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/mod.rs", "file_type": "code", "degree": 25}, {"id": "breadarrd_src_parser_mod_source", "label": "Source", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Source", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_parser_mod_codec", "label": "Codec", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Codec", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_parser_mod_parsedrelease", "label": "ParsedRelease", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ParsedRelease", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/mod.rs", "file_type": "code", "degree": 9}, {"id": "breadarrd_src_parser_mod_rs_string", "label": "String", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "String", "community": 7, "community_name": "parser/mod.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_parser_mod_rs_option", "label": "Option", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Option", "community": 7, "community_name": "parser/mod.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_parser_mod_parse", "label": "parse()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.2, "font": {"size": 12, "color": "#ffffff"}, "title": "parse()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/mod.rs", "file_type": "code", "degree": 22}, {"id": "breadarrd_src_parser_mod_parses_standard_sxxexx_with_group_and_quality_chain", "label": "parses_standard_sxxexx_with_group_and_quality_chain()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "parses_standard_sxxexx_with_group_and_quality_chain()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_parser_mod_parses_sxxexx_with_a_trailing_fansub_revision_tag", "label": "parses_sxxexx_with_a_trailing_fansub_revision_tag()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "parses_sxxexx_with_a_trailing_fansub_revision_tag()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_parser_mod_parses_subsplease_dash_episode_with_group_and_hash", "label": "parses_subsplease_dash_episode_with_group_and_hash()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "parses_subsplease_dash_episode_with_group_and_hash()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_parser_mod_parses_erai_raws_bracket_quality_block", "label": "parses_erai_raws_bracket_quality_block()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "parses_erai_raws_bracket_quality_block()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_parser_mod_parses_lolihouse_webrip_hevc_10bit", "label": "parses_lolihouse_webrip_hevc_10bit()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "parses_lolihouse_webrip_hevc_10bit()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_parser_mod_parses_season_pack_no_episode", "label": "parses_season_pack_no_episode()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "parses_season_pack_no_episode()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_parser_mod_parses_season_pack_shapes_without_literal_parens", "label": "parses_season_pack_shapes_without_literal_parens()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "parses_season_pack_shapes_without_literal_parens()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/mod.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_parser_mod_parses_a_season_marker_followed_by_a_dash_episode", "label": "parses_a_season_marker_followed_by_a_dash_episode()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "parses_a_season_marker_followed_by_a_dash_episode()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_parser_mod_a_genuine_season_only_pack_with_no_dash_episode_still_has_no_episode", "label": "a_genuine_season_only_pack_with_no_dash_episode_still_has_no_episode()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "a_genuine_season_only_pack_with_no_dash_episode_still_has_no_episode()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_parser_mod_does_not_mistake_a_yyyy_mm_dd_date_for_an_episode_range", "label": "does_not_mistake_a_yyyy_mm_dd_date_for_an_episode_range()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "does_not_mistake_a_yyyy_mm_dd_date_for_an_episode_range()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_parser_mod_parses_yameii_dash_sxxexx_with_english_dub_tag", "label": "parses_yameii_dash_sxxexx_with_english_dub_tag()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "parses_yameii_dash_sxxexx_with_english_dub_tag()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_parser_mod_parses_year_and_bare_episode_number", "label": "parses_year_and_bare_episode_number()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "parses_year_and_bare_episode_number()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_parser_mod_does_not_panic_on_real_corpus", "label": "does_not_panic_on_real_corpus()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "does_not_panic_on_real_corpus()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_parser_mod_refuses_to_resolve_a_bracketed_batch_range_to_one_episode", "label": "refuses_to_resolve_a_bracketed_batch_range_to_one_episode()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "refuses_to_resolve_a_bracketed_batch_range_to_one_episode()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_parser_mod_refuses_to_resolve_a_dash_prefixed_batch_range_to_one_episode", "label": "refuses_to_resolve_a_dash_prefixed_batch_range_to_one_episode()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "refuses_to_resolve_a_dash_prefixed_batch_range_to_one_episode()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_parser_mod_refuses_to_resolve_an_sxxexx_range_to_one_episode", "label": "refuses_to_resolve_an_sxxexx_range_to_one_episode()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "refuses_to_resolve_an_sxxexx_range_to_one_episode()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_parser_mod_single_episode_dash_titles_are_unaffected_by_range_detection", "label": "single_episode_dash_titles_are_unaffected_by_range_detection()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "single_episode_dash_titles_are_unaffected_by_range_detection()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_parser_mod_extracts_a_bare_year_from_a_scene_style_movie_name", "label": "extracts_a_bare_year_from_a_scene_style_movie_name()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "extracts_a_bare_year_from_a_scene_style_movie_name()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_parser_mod_does_not_mistake_a_year_titled_movie_for_a_bare_year", "label": "does_not_mistake_a_year_titled_movie_for_a_bare_year()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "does_not_mistake_a_year_titled_movie_for_a_bare_year()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_parser_mod_brackets_still_take_priority_over_a_coincidental_bare_year", "label": "brackets_still_take_priority_over_a_coincidental_bare_year()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "brackets_still_take_priority_over_a_coincidental_bare_year()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_parser_mod_does_not_panic_on_unparsable_manga_release", "label": "does_not_panic_on_unparsable_manga_release()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "does_not_panic_on_unparsable_manga_release()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/mod.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_parser_tokens", "label": "tokens.rs", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "tokens.rs", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/tokens.rs", "file_type": "code", "degree": 13}, {"id": "breadarrd_src_parser_tokens_overlaps_a_date", "label": "overlaps_a_date()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "overlaps_a_date()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/tokens.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_parser_tokens_looks_like_episode_range", "label": "looks_like_episode_range()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "looks_like_episode_range()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/tokens.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_parser_tokens_extract_group", "label": "extract_group()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "extract_group()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/tokens.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_parser_tokens_rs_option", "label": "Option", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Option", "community": 7, "community_name": "parser/mod.rs", "source_file": "", "file_type": "code", "degree": 10}, {"id": "breadarrd_src_parser_tokens_rs_string", "label": "String", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "String", "community": 7, "community_name": "parser/mod.rs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_parser_tokens_extract_container", "label": "extract_container()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "extract_container()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/tokens.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_parser_tokens_extract_resolution", "label": "extract_resolution()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "extract_resolution()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/tokens.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_parser_tokens_extract_source", "label": "extract_source()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "extract_source()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/tokens.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_parser_tokens_extract_codec", "label": "extract_codec()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "extract_codec()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/tokens.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_parser_tokens_extract_bit_depth", "label": "extract_bit_depth()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "extract_bit_depth()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/tokens.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_parser_tokens_extract_year", "label": "extract_year()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "extract_year()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/tokens.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_parser_tokens_find_real_dash_episode", "label": "find_real_dash_episode()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "find_real_dash_episode()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/tokens.rs", "file_type": "code", "degree": 5}, {"id": "captures", "label": "Captures", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Captures", "community": 7, "community_name": "parser/mod.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_parser_tokens_extract_episode_info", "label": "extract_episode_info()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "extract_episode_info()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/tokens.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_parser_tokens_first_quality_marker", "label": "first_quality_marker()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "first_quality_marker()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/tokens.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_parser_tokens_derive_title", "label": "derive_title()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "derive_title()", "community": 7, "community_name": "parser/mod.rs", "source_file": "breadarrd/src/parser/tokens.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_scheduler", "label": "scheduler.rs", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 40.0, "font": {"size": 12, "color": "#ffffff"}, "title": "scheduler.rs", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 126}, {"id": "breadarrd_src_scheduler_processoutcome", "label": "ProcessOutcome", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ProcessOutcome", "community": 2, "community_name": "Connection", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_scheduler_rs_option", "label": "Option", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 16.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Option", "community": 2, "community_name": "Connection", "source_file": "", "file_type": "code", "degree": 25}, {"id": "rejectreason", "label": "RejectReason", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "RejectReason", "community": 2, "community_name": "Connection", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_scheduler_mediaitemrow", "label": "MediaItemRow", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "MediaItemRow", "community": 21, "community_name": "String", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_scheduler_rs_string", "label": "String", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "String", "community": 21, "community_name": "String", "source_file": "", "file_type": "code", "degree": 11}, {"id": "breadarrd_src_scheduler_get_media_item", "label": "get_media_item()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "get_media_item()", "community": 21, "community_name": "String", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 8}, {"id": "breadarrd_src_scheduler_rs_connection", "label": "Connection", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 19.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Connection", "community": 2, "community_name": "Connection", "source_file": "", "file_type": "code", "degree": 40}, {"id": "breadarrd_src_scheduler_rs_result", "label": "Result", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 19.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Result", "community": 2, "community_name": "Connection", "source_file": "", "file_type": "code", "degree": 38}, {"id": "breadarrd_src_scheduler_load_quality_profile", "label": "load_quality_profile()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "load_quality_profile()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 11}, {"id": "profilekind", "label": "ProfileKind", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ProfileKind", "community": 0, "community_name": "scheduler.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "qualityprofile", "label": "QualityProfile", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "QualityProfile", "community": 0, "community_name": "scheduler.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_scheduler_looks_like_episode", "label": "looks_like_episode()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "looks_like_episode()", "community": 2, "community_name": "Connection", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_scheduler_looks_like_season_pack", "label": "looks_like_season_pack()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "looks_like_season_pack()", "community": 3, "community_name": "fetch_candidates", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 7}, {"id": "breadarrd_src_scheduler_release_sort_key", "label": "release_sort_key()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "release_sort_key()", "community": 3, "community_name": "fetch_candidates", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 4}, {"id": "reverse", "label": "Reverse", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Reverse", "community": 3, "community_name": "fetch_candidates", "source_file": "", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_scheduler_looks_like_non_video_format", "label": "looks_like_non_video_format()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "looks_like_non_video_format()", "community": 2, "community_name": "Connection", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_scheduler_movie_year_mismatch", "label": "movie_year_mismatch()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "movie_year_mismatch()", "community": 2, "community_name": "Connection", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_scheduler_movie_needs_grab", "label": "movie_needs_grab()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "movie_needs_grab()", "community": 2, "community_name": "Connection", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_scheduler_movie_eligible_for_upgrade", "label": "movie_eligible_for_upgrade()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "movie_eligible_for_upgrade()", "community": 2, "community_name": "Connection", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_scheduler_is_anime", "label": "is_anime()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "is_anime()", "community": 3, "community_name": "fetch_candidates", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_scheduler_resolve_episode", "label": "resolve_episode()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "resolve_episode()", "community": 2, "community_name": "Connection", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 7}, {"id": "breadarrd_src_scheduler_find_episode_id", "label": "find_episode_id()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "find_episode_id()", "community": 2, "community_name": "Connection", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_scheduler_find_monitored_missing_episode", "label": "find_monitored_missing_episode()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "find_monitored_missing_episode()", "community": 2, "community_name": "Connection", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 7}, {"id": "breadarrd_src_scheduler_find_monitored_episode", "label": "find_monitored_episode()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "find_monitored_episode()", "community": 2, "community_name": "Connection", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_scheduler_count_monitored_missing_episodes_in_season", "label": "count_monitored_missing_episodes_in_season()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "count_monitored_missing_episodes_in_season()", "community": 2, "community_name": "Connection", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_scheduler_infer_has_english_audio", "label": "infer_has_english_audio()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "infer_has_english_audio()", "community": 3, "community_name": "fetch_candidates", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_scheduler_best_existing_score", "label": "best_existing_score()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "best_existing_score()", "community": 2, "community_name": "Connection", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_scheduler_best_existing_movie_score", "label": "best_existing_movie_score()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "best_existing_movie_score()", "community": 2, "community_name": "Connection", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_scheduler_best_existing_season_pack_score", "label": "best_existing_season_pack_score()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "best_existing_season_pack_score()", "community": 2, "community_name": "Connection", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_scheduler_should_grab", "label": "should_grab()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "should_grab()", "community": 2, "community_name": "Connection", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_scheduler_record_grab", "label": "record_grab()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "record_grab()", "community": 23, "community_name": "seeded_conn", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 9}, {"id": "breadarrd_src_scheduler_is_seen", "label": "is_seen()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "is_seen()", "community": 2, "community_name": "Connection", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_scheduler_mark_seen", "label": "mark_seen()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "mark_seen()", "community": 2, "community_name": "Connection", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_scheduler_process_item", "label": "process_item()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "process_item()", "community": 2, "community_name": "Connection", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 30}, {"id": "breadarrd_src_scheduler_rs_qbitclient", "label": "QbitClient", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "QbitClient", "community": 21, "community_name": "String", "source_file": "", "file_type": "code", "degree": 9}, {"id": "breadarrd_src_scheduler_grab_and_capture_hash", "label": "grab_and_capture_hash()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "grab_and_capture_hash()", "community": 21, "community_name": "String", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 8}, {"id": "breadarrd_src_scheduler_grabcyclestats", "label": "GrabCycleStats", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "GrabCycleStats", "community": 2, "community_name": "Connection", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_scheduler_run_grab_cycle", "label": "run_grab_cycle()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "run_grab_cycle()", "community": 2, "community_name": "Connection", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 10}, {"id": "breadarrd_src_scheduler_searchroute", "label": "SearchRoute", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchRoute", "community": 4, "community_name": "enumerate_upgrade_targets", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_scheduler_searchtarget", "label": "SearchTarget", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchTarget", "community": 4, "community_name": "enumerate_upgrade_targets", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 10}, {"id": "breadarrd_src_scheduler_rs_vec", "label": "Vec", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Vec", "community": 4, "community_name": "enumerate_upgrade_targets", "source_file": "", "file_type": "code", "degree": 6}, {"id": "breadarrd_src_scheduler_significant_words", "label": "significant_words()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "significant_words()", "community": 4, "community_name": "enumerate_upgrade_targets", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 8}, {"id": "breadarrd_src_scheduler_passes_relevance_filter", "label": "passes_relevance_filter()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "passes_relevance_filter()", "community": 3, "community_name": "fetch_candidates", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_scheduler_sanitize_query_text", "label": "sanitize_query_text()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "sanitize_query_text()", "community": 21, "community_name": "String", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_scheduler_build_tv_query", "label": "build_tv_query()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "build_tv_query()", "community": 4, "community_name": "enumerate_upgrade_targets", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 7}, {"id": "breadarrd_src_scheduler_build_movie_query", "label": "build_movie_query()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "build_movie_query()", "community": 21, "community_name": "String", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 6}, {"id": "breadarrd_src_scheduler_enumerate_search_targets", "label": "enumerate_search_targets()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "enumerate_search_targets()", "community": 22, "community_name": "enumerate_search_targets", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 16}, {"id": "breadarrd_src_scheduler_enumerate_upgrade_targets", "label": "enumerate_upgrade_targets()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "enumerate_upgrade_targets()", "community": 4, "community_name": "enumerate_upgrade_targets", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 12}, {"id": "breadarrd_src_scheduler_record_search_attempt", "label": "record_search_attempt()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "record_search_attempt()", "community": 22, "community_name": "enumerate_search_targets", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 8}, {"id": "breadarrd_src_scheduler_record_upgrade_attempt", "label": "record_upgrade_attempt()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "record_upgrade_attempt()", "community": 2, "community_name": "Connection", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_scheduler_record_target_attempt", "label": "record_target_attempt()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "record_target_attempt()", "community": 2, "community_name": "Connection", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 7}, {"id": "breadarrd_src_scheduler_searchcyclestats", "label": "SearchCycleStats", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchCycleStats", "community": 3, "community_name": "fetch_candidates", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 6}, {"id": "breadarrd_src_scheduler_run_search_cycle", "label": "run_search_cycle()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "run_search_cycle()", "community": 3, "community_name": "fetch_candidates", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 11}, {"id": "scrapesource", "label": "ScrapeSource", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ScrapeSource", "community": 3, "community_name": "fetch_candidates", "source_file": "", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_scheduler_run_upgrade_cycle", "label": "run_upgrade_cycle()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "run_upgrade_cycle()", "community": 3, "community_name": "fetch_candidates", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 11}, {"id": "breadarrd_src_scheduler_enumerate_search_targets_for_media_item", "label": "enumerate_search_targets_for_media_item()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "enumerate_search_targets_for_media_item()", "community": 4, "community_name": "enumerate_upgrade_targets", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 9}, {"id": "breadarrd_src_scheduler_find_media_item_id_by_title", "label": "find_media_item_id_by_title()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "find_media_item_id_by_title()", "community": 2, "community_name": "Connection", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_scheduler_execute_search_targets", "label": "execute_search_targets()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "execute_search_targets()", "community": 3, "community_name": "fetch_candidates", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 17}, {"id": "breadarrd_src_scheduler_source_route_name", "label": "source_route_name()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "source_route_name()", "community": 4, "community_name": "enumerate_upgrade_targets", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_scheduler_fetch_candidates", "label": "fetch_candidates()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fetch_candidates()", "community": 3, "community_name": "fetch_candidates", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 18}, {"id": "breadarrd_src_scheduler_rs_releasecandidate", "label": "ReleaseCandidate", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ReleaseCandidate", "community": 3, "community_name": "fetch_candidates", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_scheduler_grab_candidate", "label": "grab_candidate()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "grab_candidate()", "community": 21, "community_name": "String", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 10}, {"id": "breadarrd_src_scheduler_reviewqueuerow", "label": "ReviewQueueRow", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ReviewQueueRow", "community": 21, "community_name": "String", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_scheduler_get_review_row", "label": "get_review_row()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "get_review_row()", "community": 2, "community_name": "Connection", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_scheduler_preparedapproval", "label": "PreparedApproval", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PreparedApproval", "community": 21, "community_name": "String", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 6}, {"id": "breadarrd_src_scheduler_approvalprep", "label": "ApprovalPrep", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ApprovalPrep", "community": 21, "community_name": "String", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_scheduler_prepare_review_approval", "label": "prepare_review_approval()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "prepare_review_approval()", "community": 2, "community_name": "Connection", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 15}, {"id": "breadarrd_src_scheduler_release_review_claim", "label": "release_review_claim()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "release_review_claim()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_scheduler_grab_prepared_approval", "label": "grab_prepared_approval()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "grab_prepared_approval()", "community": 21, "community_name": "String", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 7}, {"id": "breadarrd_src_scheduler_finalize_review_approval", "label": "finalize_review_approval()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "finalize_review_approval()", "community": 21, "community_name": "String", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 6}, {"id": "breadarrd_src_scheduler_reject_review", "label": "reject_review()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "reject_review()", "community": 2, "community_name": "Connection", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_scheduler_should_grab_when_nothing_exists_yet", "label": "should_grab_when_nothing_exists_yet()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "should_grab_when_nothing_exists_yet()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_scheduler_should_grab_when_strictly_better_score", "label": "should_grab_when_strictly_better_score()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "should_grab_when_strictly_better_score()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_scheduler_should_not_grab_when_worse_or_equal_score", "label": "should_not_grab_when_worse_or_equal_score()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "should_not_grab_when_worse_or_equal_score()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_scheduler_should_grab_repack_even_if_not_higher_scored", "label": "should_grab_repack_even_if_not_higher_scored()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "should_grab_repack_even_if_not_higher_scored()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_scheduler_should_not_grab_when_score_gain_is_below_the_minimum_threshold", "label": "should_not_grab_when_score_gain_is_below_the_minimum_threshold()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "should_not_grab_when_score_gain_is_below_the_minimum_threshold()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_scheduler_should_grab_repack_even_below_the_minimum_gain_threshold", "label": "should_grab_repack_even_below_the_minimum_gain_threshold()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "should_grab_repack_even_below_the_minimum_gain_threshold()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_scheduler_infers_english_audio_present_by_default", "label": "infers_english_audio_present_by_default()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "infers_english_audio_present_by_default()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_scheduler_infers_no_english_audio_for_vostfr", "label": "infers_no_english_audio_for_vostfr()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "infers_no_english_audio_for_vostfr()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_scheduler_seeded_conn", "label": "seeded_conn()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "seeded_conn()", "community": 23, "community_name": "seeded_conn", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 10}, {"id": "breadarrd_src_scheduler_finds_a_monitored_missing_episode", "label": "finds_a_monitored_missing_episode()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "finds_a_monitored_missing_episode()", "community": 23, "community_name": "seeded_conn", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_scheduler_seeded_upgrade_conn_with_one_flagged_episode", "label": "seeded_upgrade_conn_with_one_flagged_episode()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "seeded_upgrade_conn_with_one_flagged_episode()", "community": 4, "community_name": "enumerate_upgrade_targets", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_scheduler_enumerate_upgrade_targets_prioritizes_a_probe_flagged_episode_over_a_clean_one", "label": "enumerate_upgrade_targets_prioritizes_a_probe_flagged_episode_over_a_clean_one()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "enumerate_upgrade_targets_prioritizes_a_probe_flagged_episode_over_a_clean_one()", "community": 4, "community_name": "enumerate_upgrade_targets", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_scheduler_enumerate_upgrade_targets_returns_both_when_budget_allows", "label": "enumerate_upgrade_targets_returns_both_when_budget_allows()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "enumerate_upgrade_targets_returns_both_when_budget_allows()", "community": 4, "community_name": "enumerate_upgrade_targets", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_scheduler_enumerate_upgrade_targets_excludes_an_upgrade_locked_episode", "label": "enumerate_upgrade_targets_excludes_an_upgrade_locked_episode()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "enumerate_upgrade_targets_excludes_an_upgrade_locked_episode()", "community": 4, "community_name": "enumerate_upgrade_targets", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_scheduler_record_grab_writes_both_a_release_row_and_a_torrent_fetch_audit_row", "label": "record_grab_writes_both_a_release_row_and_a_torrent_fetch_audit_row()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "record_grab_writes_both_a_release_row_and_a_torrent_fetch_audit_row()", "community": 23, "community_name": "seeded_conn", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_scheduler_record_grab_still_logs_to_torrent_fetch_when_hash_capture_failed", "label": "record_grab_still_logs_to_torrent_fetch_when_hash_capture_failed()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "record_grab_still_logs_to_torrent_fetch_when_hash_capture_failed()", "community": 23, "community_name": "seeded_conn", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_scheduler_insert_pending_review", "label": "insert_pending_review()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "insert_pending_review()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 7}, {"id": "breadarrd_src_scheduler_does_not_find_an_unmonitored_or_already_have_episode", "label": "does_not_find_an_unmonitored_or_already_have_episode()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "does_not_find_an_unmonitored_or_already_have_episode()", "community": 23, "community_name": "seeded_conn", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_scheduler_resolves_direct_season_episode_without_anime_map", "label": "resolves_direct_season_episode_without_anime_map()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "resolves_direct_season_episode_without_anime_map()", "community": 23, "community_name": "seeded_conn", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_scheduler_resolves_absolute_episode_via_anime_map", "label": "resolves_absolute_episode_via_anime_map()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "resolves_absolute_episode_via_anime_map()", "community": 23, "community_name": "seeded_conn", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_scheduler_seeded_movie_conn", "label": "seeded_movie_conn()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "seeded_movie_conn()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 17}, {"id": "breadarrd_src_scheduler_load_quality_profile_uses_defaults_for_the_seeded_empty_weights_row", "label": "load_quality_profile_uses_defaults_for_the_seeded_empty_weights_row()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "load_quality_profile_uses_defaults_for_the_seeded_empty_weights_row()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_scheduler_load_quality_profile_applies_a_stored_override", "label": "load_quality_profile_applies_a_stored_override()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "load_quality_profile_applies_a_stored_override()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_scheduler_movie_needs_grab_when_monitored_and_missing", "label": "movie_needs_grab_when_monitored_and_missing()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "movie_needs_grab_when_monitored_and_missing()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_scheduler_prepares_a_movie_review_approval_with_no_episode_id", "label": "prepares_a_movie_review_approval_with_no_episode_id()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "prepares_a_movie_review_approval_with_no_episode_id()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_scheduler_a_second_prepare_call_on_an_already_claimed_review_sees_not_pending", "label": "a_second_prepare_call_on_an_already_claimed_review_sees_not_pending()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "a_second_prepare_call_on_an_already_claimed_review_sees_not_pending()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_scheduler_release_review_claim_reverts_a_claimed_row_back_to_pending", "label": "release_review_claim_reverts_a_claimed_row_back_to_pending()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "release_review_claim_reverts_a_claimed_row_back_to_pending()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_scheduler_rejects_a_movie_review_whose_title_looks_like_an_episode", "label": "rejects_a_movie_review_whose_title_looks_like_an_episode()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "rejects_a_movie_review_whose_title_looks_like_an_episode()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_scheduler_rejects_a_movie_review_with_a_mismatched_year", "label": "rejects_a_movie_review_with_a_mismatched_year()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "rejects_a_movie_review_with_a_mismatched_year()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_scheduler_movie_does_not_need_grab_when_unmonitored", "label": "movie_does_not_need_grab_when_unmonitored()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "movie_does_not_need_grab_when_unmonitored()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_scheduler_movie_does_not_need_grab_once_it_has_a_file", "label": "movie_does_not_need_grab_once_it_has_a_file()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "movie_does_not_need_grab_once_it_has_a_file()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_scheduler_movie_does_not_need_grab_while_a_release_is_in_flight", "label": "movie_does_not_need_grab_while_a_release_is_in_flight()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "movie_does_not_need_grab_while_a_release_is_in_flight()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_scheduler_movie_eligible_for_upgrade_is_true_once_it_already_has_a_file", "label": "movie_eligible_for_upgrade_is_true_once_it_already_has_a_file()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "movie_eligible_for_upgrade_is_true_once_it_already_has_a_file()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_scheduler_movie_eligible_for_upgrade_is_false_once_upgrade_locked", "label": "movie_eligible_for_upgrade_is_false_once_upgrade_locked()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "movie_eligible_for_upgrade_is_false_once_upgrade_locked()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_scheduler_movie_eligible_for_upgrade_is_false_when_unmonitored", "label": "movie_eligible_for_upgrade_is_false_when_unmonitored()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "movie_eligible_for_upgrade_is_false_when_unmonitored()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_scheduler_movie_eligible_for_upgrade_is_false_while_a_release_is_in_flight", "label": "movie_eligible_for_upgrade_is_false_while_a_release_is_in_flight()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "movie_eligible_for_upgrade_is_false_while_a_release_is_in_flight()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_scheduler_find_monitored_episode_ignores_has_file_but_still_requires_monitored", "label": "find_monitored_episode_ignores_has_file_but_still_requires_monitored()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "find_monitored_episode_ignores_has_file_but_still_requires_monitored()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_scheduler_looks_like_episode_detects_any_episode_marker", "label": "looks_like_episode_detects_any_episode_marker()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "looks_like_episode_detects_any_episode_marker()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_scheduler_looks_like_season_pack_detects_batch_releases", "label": "looks_like_season_pack_detects_batch_releases()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "looks_like_season_pack_detects_batch_releases()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_scheduler_looks_like_season_pack_is_false_for_a_single_episode", "label": "looks_like_season_pack_is_false_for_a_single_episode()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "looks_like_season_pack_is_false_for_a_single_episode()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_scheduler_release_sort_key_prefers_a_season_pack_over_a_higher_seeded_episode", "label": "release_sort_key_prefers_a_season_pack_over_a_higher_seeded_episode()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "release_sort_key_prefers_a_season_pack_over_a_higher_seeded_episode()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_scheduler_release_sort_key_falls_back_to_seeders_within_the_same_group", "label": "release_sort_key_falls_back_to_seeders_within_the_same_group()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "release_sort_key_falls_back_to_seeders_within_the_same_group()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_scheduler_count_monitored_missing_episodes_in_season_counts_correctly", "label": "count_monitored_missing_episodes_in_season_counts_correctly()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "count_monitored_missing_episodes_in_season_counts_correctly()", "community": 23, "community_name": "seeded_conn", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_scheduler_find_episode_id_ignores_monitored_and_has_file_state", "label": "find_episode_id_ignores_monitored_and_has_file_state()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "find_episode_id_ignores_monitored_and_has_file_state()", "community": 23, "community_name": "seeded_conn", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_scheduler_looks_like_non_video_format_catches_common_ebook_and_comic_markers", "label": "looks_like_non_video_format_catches_common_ebook_and_comic_markers()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "looks_like_non_video_format_catches_common_ebook_and_comic_markers()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_scheduler_movie_year_mismatch_rejects_far_apart_years_only", "label": "movie_year_mismatch_rejects_far_apart_years_only()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "movie_year_mismatch_rejects_far_apart_years_only()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_scheduler_sanitize_query_text_strips_punctuation", "label": "sanitize_query_text_strips_punctuation()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "sanitize_query_text_strips_punctuation()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_scheduler_build_tv_query_formats_season_episode_for_x1337", "label": "build_tv_query_formats_season_episode_for_x1337()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "build_tv_query_formats_season_episode_for_x1337()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_scheduler_build_tv_query_is_title_only_for_tpb", "label": "build_tv_query_is_title_only_for_tpb()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "build_tv_query_is_title_only_for_tpb()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_scheduler_build_movie_query_appends_year_when_known", "label": "build_movie_query_appends_year_when_known()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "build_movie_query_appends_year_when_known()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_scheduler_search_enumeration_conn", "label": "search_enumeration_conn()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "search_enumeration_conn()", "community": 22, "community_name": "enumerate_search_targets", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 11}, {"id": "breadarrd_src_scheduler_enumerate_search_targets_excludes_unaired_inflight_and_anime", "label": "enumerate_search_targets_excludes_unaired_inflight_and_anime()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "enumerate_search_targets_excludes_unaired_inflight_and_anime()", "community": 22, "community_name": "enumerate_search_targets", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_scheduler_enumerate_search_targets_for_media_item_routes_anime_movie_via_tmdb_table", "label": "enumerate_search_targets_for_media_item_routes_anime_movie_via_tmdb_table()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "enumerate_search_targets_for_media_item_routes_anime_movie_via_tmdb_table()", "community": 4, "community_name": "enumerate_upgrade_targets", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_scheduler_enumerate_search_targets_excludes_owned_movies_includes_missing", "label": "enumerate_search_targets_excludes_owned_movies_includes_missing()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "enumerate_search_targets_excludes_owned_movies_includes_missing()", "community": 22, "community_name": "enumerate_search_targets", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_scheduler_enumerate_search_targets_routes_anime_movies_to_nyaa_search", "label": "enumerate_search_targets_routes_anime_movies_to_nyaa_search()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "enumerate_search_targets_routes_anime_movies_to_nyaa_search()", "community": 22, "community_name": "enumerate_search_targets", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_scheduler_enumerate_search_targets_respects_budget", "label": "enumerate_search_targets_respects_budget()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "enumerate_search_targets_respects_budget()", "community": 22, "community_name": "enumerate_search_targets", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_scheduler_record_search_attempt_is_due_again_only_after_cadence_elapses", "label": "record_search_attempt_is_due_again_only_after_cadence_elapses()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "record_search_attempt_is_due_again_only_after_cadence_elapses()", "community": 22, "community_name": "enumerate_search_targets", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_scheduler_cadence_stays_backed_off_at_a_high_search_count_instead_of_overflowing", "label": "cadence_stays_backed_off_at_a_high_search_count_instead_of_overflowing()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "cadence_stays_backed_off_at_a_high_search_count_instead_of_overflowing()", "community": 22, "community_name": "enumerate_search_targets", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_scheduler_record_search_attempt_upserts_rather_than_duplicating", "label": "record_search_attempt_upserts_rather_than_duplicating()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "record_search_attempt_upserts_rather_than_duplicating()", "community": 22, "community_name": "enumerate_search_targets", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_scheduler_enumerate_search_targets_prioritizes_never_searched_first", "label": "enumerate_search_targets_prioritizes_never_searched_first()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "enumerate_search_targets_prioritizes_never_searched_first()", "community": 22, "community_name": "enumerate_search_targets", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_scheduler_significant_words_drops_short_and_punctuation_only_tokens", "label": "significant_words_drops_short_and_punctuation_only_tokens()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "significant_words_drops_short_and_punctuation_only_tokens()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_scheduler_relevance_filter_rejects_titles_missing_a_significant_word", "label": "relevance_filter_rejects_titles_missing_a_significant_word()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "relevance_filter_rejects_titles_missing_a_significant_word()", "community": 4, "community_name": "enumerate_upgrade_targets", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_scheduler_relevance_filter_accepts_a_genuine_match", "label": "relevance_filter_accepts_a_genuine_match()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "relevance_filter_accepts_a_genuine_match()", "community": 4, "community_name": "enumerate_upgrade_targets", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_scheduler_relevance_filter_lets_everything_through_for_titles_with_no_significant_words", "label": "relevance_filter_lets_everything_through_for_titles_with_no_significant_words()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "relevance_filter_lets_everything_through_for_titles_with_no_significant_words()", "community": 0, "community_name": "scheduler.rs", "source_file": "breadarrd/src/scheduler.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_sources_mod", "label": "sources/mod.rs", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "sources/mod.rs", "community": 5, "community_name": "rss.rs", "source_file": "breadarrd/src/sources/mod.rs", "file_type": "code", "degree": 8}, {"id": "breadarrd_src_sources_mod_rawreleaseitem", "label": "RawReleaseItem", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "RawReleaseItem", "community": 5, "community_name": "rss.rs", "source_file": "breadarrd/src/sources/mod.rs", "file_type": "code", "degree": 8}, {"id": "breadarrd_src_sources_mod_rs_string", "label": "String", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "String", "community": 5, "community_name": "rss.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_sources_mod_rs_option", "label": "Option", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Option", "community": 5, "community_name": "rss.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_sources_mod_releasesource", "label": "ReleaseSource", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ReleaseSource", "community": 3, "community_name": "fetch_candidates", "source_file": "breadarrd/src/sources/mod.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_sources_mod_urlencode", "label": "urlencode()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "urlencode()", "community": 5, "community_name": "rss.rs", "source_file": "breadarrd/src/sources/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_sources_mod_parse_human_size", "label": "parse_human_size()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "parse_human_size()", "community": 5, "community_name": "rss.rs", "source_file": "breadarrd/src/sources/mod.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_sources_mod_parses_gib", "label": "parses_gib()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "parses_gib()", "community": 5, "community_name": "rss.rs", "source_file": "breadarrd/src/sources/mod.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_sources_mod_parses_mib", "label": "parses_mib()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "parses_mib()", "community": 5, "community_name": "rss.rs", "source_file": "breadarrd/src/sources/mod.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_sources_mod_rejects_unknown_unit", "label": "rejects_unknown_unit()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "rejects_unknown_unit()", "community": 5, "community_name": "rss.rs", "source_file": "breadarrd/src/sources/mod.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_sources_mod_parses_a_size_with_no_space_before_the_unit", "label": "parses_a_size_with_no_space_before_the_unit()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "parses_a_size_with_no_space_before_the_unit()", "community": 5, "community_name": "rss.rs", "source_file": "breadarrd/src/sources/mod.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_sources_rss", "label": "rss.rs", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "rss.rs", "community": 5, "community_name": "rss.rs", "source_file": "breadarrd/src/sources/rss.rs", "file_type": "code", "degree": 12}, {"id": "breadarrd_src_sources_rss_rsssource", "label": "RssSource", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "RssSource", "community": 3, "community_name": "fetch_candidates", "source_file": "breadarrd/src/sources/rss.rs", "file_type": "code", "degree": 10}, {"id": "breadarrd_src_sources_rss_rs_string", "label": "String", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "String", "community": 5, "community_name": "rss.rs", "source_file": "", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_sources_rss_rs_client", "label": "Client", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Client", "community": 3, "community_name": "fetch_candidates", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_sources_rss_rsssource_new", "label": ".new()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".new()", "community": 5, "community_name": "rss.rs", "source_file": "breadarrd/src/sources/rss.rs", "file_type": "code", "degree": 6}, {"id": "breadarrd_src_sources_rss_rs_into", "label": "Into", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Into", "community": 5, "community_name": "rss.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_sources_rss_rs_self", "label": "Self", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Self", "community": 5, "community_name": "rss.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_sources_rss_rsssource_fetch", "label": ".fetch()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".fetch()", "community": 5, "community_name": "rss.rs", "source_file": "breadarrd/src/sources/rss.rs", "file_type": "code", "degree": 8}, {"id": "breadarrd_src_sources_rss_rs_option", "label": "Option", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Option", "community": 5, "community_name": "rss.rs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_sources_rss_rs_result", "label": "Result", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Result", "community": 5, "community_name": "rss.rs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_sources_rss_rs_vec", "label": "Vec", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Vec", "community": 5, "community_name": "rss.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_sources_rss_build_search_url", "label": "build_search_url()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "build_search_url()", "community": 5, "community_name": "rss.rs", "source_file": "breadarrd/src/sources/rss.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_sources_rss_itemfields", "label": "ItemFields", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ItemFields", "community": 5, "community_name": "rss.rs", "source_file": "breadarrd/src/sources/rss.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_sources_rss_accumulate_field", "label": "accumulate_field()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "accumulate_field()", "community": 5, "community_name": "rss.rs", "source_file": "breadarrd/src/sources/rss.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_sources_rss_parse_nyaa_rss", "label": "parse_nyaa_rss()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "parse_nyaa_rss()", "community": 5, "community_name": "rss.rs", "source_file": "breadarrd/src/sources/rss.rs", "file_type": "code", "degree": 9}, {"id": "breadarrd_src_sources_rss_parses_nyaa_item_with_custom_fields", "label": "parses_nyaa_item_with_custom_fields()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "parses_nyaa_item_with_custom_fields()", "community": 5, "community_name": "rss.rs", "source_file": "breadarrd/src/sources/rss.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_sources_rss_parses_cdata_wrapped_fields", "label": "parses_cdata_wrapped_fields()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "parses_cdata_wrapped_fields()", "community": 5, "community_name": "rss.rs", "source_file": "breadarrd/src/sources/rss.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_sources_rss_build_search_url_appends_query_param", "label": "build_search_url_appends_query_param()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "build_search_url_appends_query_param()", "community": 5, "community_name": "rss.rs", "source_file": "breadarrd/src/sources/rss.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_sources_rss_build_search_url_handles_a_feed_url_with_no_existing_query_string", "label": "build_search_url_handles_a_feed_url_with_no_existing_query_string()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "build_search_url_handles_a_feed_url_with_no_existing_query_string()", "community": 5, "community_name": "rss.rs", "source_file": "breadarrd/src/sources/rss.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_sources_rss_build_search_url_is_unchanged_without_a_query", "label": "build_search_url_is_unchanged_without_a_query()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "build_search_url_is_unchanged_without_a_query()", "community": 5, "community_name": "rss.rs", "source_file": "breadarrd/src/sources/rss.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_sources_rss_parses_live_nyaa_feed", "label": "parses_live_nyaa_feed()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "parses_live_nyaa_feed()", "community": 5, "community_name": "rss.rs", "source_file": "breadarrd/src/sources/rss.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_sources_tpb", "label": "tpb.rs", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.1, "font": {"size": 0, "color": "#ffffff"}, "title": "tpb.rs", "community": 5, "community_name": "rss.rs", "source_file": "breadarrd/src/sources/tpb.rs", "file_type": "code", "degree": 9}, {"id": "breadarrd_src_sources_tpb_is_valid_info_hash", "label": "is_valid_info_hash()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 0, "color": "#ffffff"}, "title": "is_valid_info_hash()", "community": 5, "community_name": "rss.rs", "source_file": "breadarrd/src/sources/tpb.rs", "file_type": "code", "degree": 3}, {"id": "breadarrd_src_sources_tpb_tpbsource", "label": "TpbSource", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "TpbSource", "community": 3, "community_name": "fetch_candidates", "source_file": "breadarrd/src/sources/tpb.rs", "file_type": "code", "degree": 10}, {"id": "breadarrd_src_sources_tpb_rs_string", "label": "String", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "String", "community": 5, "community_name": "rss.rs", "source_file": "", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_sources_tpb_rs_client", "label": "Client", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Client", "community": 3, "community_name": "fetch_candidates", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_sources_tpb_tpbresult", "label": "TpbResult", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "TpbResult", "community": 5, "community_name": "rss.rs", "source_file": "breadarrd/src/sources/tpb.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_sources_tpb_build_magnet", "label": "build_magnet()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "build_magnet()", "community": 5, "community_name": "rss.rs", "source_file": "breadarrd/src/sources/tpb.rs", "file_type": "code", "degree": 5}, {"id": "breadarrd_src_sources_tpb_tpbsource_new", "label": ".new()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": ".new()", "community": 5, "community_name": "rss.rs", "source_file": "breadarrd/src/sources/tpb.rs", "file_type": "code", "degree": 4}, {"id": "breadarrd_src_sources_tpb_rs_into", "label": "Into", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Into", "community": 5, "community_name": "rss.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_sources_tpb_rs_self", "label": "Self", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Self", "community": 5, "community_name": "rss.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_sources_tpb_tpbsource_fetch", "label": ".fetch()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".fetch()", "community": 5, "community_name": "rss.rs", "source_file": "breadarrd/src/sources/tpb.rs", "file_type": "code", "degree": 7}, {"id": "breadarrd_src_sources_tpb_rs_option", "label": "Option", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Option", "community": 5, "community_name": "rss.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_sources_tpb_rs_result", "label": "Result", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Result", "community": 5, "community_name": "rss.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_sources_tpb_rs_vec", "label": "Vec", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Vec", "community": 5, "community_name": "rss.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_sources_tpb_build_magnet_includes_hash_name_and_trackers", "label": "build_magnet_includes_hash_name_and_trackers()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "build_magnet_includes_hash_name_and_trackers()", "community": 5, "community_name": "rss.rs", "source_file": "breadarrd/src/sources/tpb.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_sources_tpb_parses_a_real_captured_response", "label": "parses_a_real_captured_response()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "parses_a_real_captured_response()", "community": 5, "community_name": "rss.rs", "source_file": "breadarrd/src/sources/tpb.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_sources_tpb_filters_out_the_no_results_sentinel", "label": "filters_out_the_no_results_sentinel()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "filters_out_the_no_results_sentinel()", "community": 5, "community_name": "rss.rs", "source_file": "breadarrd/src/sources/tpb.rs", "file_type": "code", "degree": 2}, {"id": "breadarrd_src_sources_tpb_is_valid_info_hash_accepts_both_real_shapes", "label": "is_valid_info_hash_accepts_both_real_shapes()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "is_valid_info_hash_accepts_both_real_shapes()", "community": 5, "community_name": "rss.rs", "source_file": "breadarrd/src/sources/tpb.rs", "file_type": "code", "degree": 1}, {"id": "breadarrd_src_sources_tpb_is_valid_info_hash_rejects_malformed_values", "label": "is_valid_info_hash_rejects_malformed_values()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "is_valid_info_hash_rejects_malformed_values()", "community": 5, "community_name": "rss.rs", "source_file": "breadarrd/src/sources/tpb.rs", "file_type": "code", "degree": 1}];
|
|
const RAW_EDGES = [{"from": "breadarrd_src_db", "to": "breadarrd_src_db_add_column_if_missing", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db", "to": "breadarrd_src_db_backup_before_open", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db", "to": "breadarrd_src_db_backup_before_open_copies_an_existing_database", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db", "to": "breadarrd_src_db_backup_before_open_is_a_noop_when_no_database_exists_yet", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db", "to": "breadarrd_src_db_backup_before_open_prunes_beyond_max_backups", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db", "to": "breadarrd_src_db_init", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db", "to": "breadarrd_src_db_init_is_idempotent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db", "to": "breadarrd_src_db_prune_old_backups", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db", "to": "breadarrd_src_db_record_event", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db", "to": "breadarrd_src_db_record_event_inserts_a_queryable_row", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db", "to": "breadarrd_src_db_record_event_rejects_an_unknown_event_type", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db", "to": "breadarrd_src_db_record_torrent_fetch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db", "to": "breadarrd_src_db_record_torrent_fetch_allows_a_null_hash_and_size", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db", "to": "breadarrd_src_db_record_torrent_fetch_inserts_a_queryable_row", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db", "to": "breadarrd_src_db_rs_connection", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db_backup_before_open", "to": "breadarrd_src_db_prune_old_backups", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db_backup_before_open", "to": "breadarrd_src_db_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db_backup_before_open", "to": "path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db_backup_before_open_copies_an_existing_database", "to": "breadarrd_src_db_backup_before_open", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db_backup_before_open_is_a_noop_when_no_database_exists_yet", "to": "breadarrd_src_db_backup_before_open", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db_backup_before_open_prunes_beyond_max_backups", "to": "breadarrd_src_db_backup_before_open", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db_prune_old_backups", "to": "path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db_add_column_if_missing", "to": "breadarrd_src_db_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db_init", "to": "breadarrd_src_db_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db_prune_old_backups", "to": "breadarrd_src_db_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db_record_event", "to": "breadarrd_src_db_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db_record_torrent_fetch", "to": "breadarrd_src_db_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db_add_column_if_missing", "to": "breadarrd_src_db_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db_init", "to": "breadarrd_src_db_add_column_if_missing", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db_init", "to": "breadarrd_src_db_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db_record_event", "to": "breadarrd_src_db_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db_record_torrent_fetch", "to": "breadarrd_src_db_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db_init_is_idempotent", "to": "breadarrd_src_db_init", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db_record_event_inserts_a_queryable_row", "to": "breadarrd_src_db_init", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db_record_event_rejects_an_unknown_event_type", "to": "breadarrd_src_db_init", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db_record_torrent_fetch_allows_a_null_hash_and_size", "to": "breadarrd_src_db_init", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db_record_torrent_fetch_inserts_a_queryable_row", "to": "breadarrd_src_db_init", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db_record_event", "to": "breadarrd_src_db_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db_record_event_inserts_a_queryable_row", "to": "breadarrd_src_db_record_event", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db_record_torrent_fetch", "to": "breadarrd_src_db_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db_record_torrent_fetch_allows_a_null_hash_and_size", "to": "breadarrd_src_db_record_torrent_fetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_db_record_torrent_fetch_inserts_a_queryable_row", "to": "breadarrd_src_db_record_torrent_fetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main", "to": "breadarrd_src_main_background_loop", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main", "to": "breadarrd_src_main_debug_1337x_search", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main", "to": "breadarrd_src_main_debug_anime_map_refresh", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main", "to": "breadarrd_src_main_debug_grab_cycle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main", "to": "breadarrd_src_main_debug_import_cycle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main", "to": "breadarrd_src_main_debug_jellyfin_refresh", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main", "to": "breadarrd_src_main_debug_match_title", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main", "to": "breadarrd_src_main_debug_qbit_add", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main", "to": "breadarrd_src_main_debug_qbit_list", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main", "to": "breadarrd_src_main_debug_reconcile_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main", "to": "breadarrd_src_main_debug_scan_movies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main", "to": "breadarrd_src_main_debug_scan_tv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main", "to": "breadarrd_src_main_debug_search_show", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main", "to": "breadarrd_src_main_debug_tvdb_add", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main", "to": "breadarrd_src_main_debug_tvdb_search", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main", "to": "breadarrd_src_main_drive_transcode_queue_to_completion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main", "to": "breadarrd_src_main_load_title_matcher", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main", "to": "breadarrd_src_main_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main", "to": "breadarrd_src_main_probe_library_cmd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main", "to": "breadarrd_src_main_relink_orphaned_files_cmd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main", "to": "breadarrd_src_main_remux_backlog_cmd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main", "to": "breadarrd_src_main_retranscode_oversized_cmd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main", "to": "breadarrd_src_main_rs_connection", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main", "to": "breadarrd_src_main_run_daemon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main", "to": "breadarrd_src_main_transcode_library_cmd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main", "to": "breadarrd_src_main_verify_library_cmd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main", "to": "breadarrd_src_main_wait_for_shutdown", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main", "to": "breadarrd_src_qbit_mod_qbitclient", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main", "to": "config", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main", "to": "jellyfinclient", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main", "to": "tvdbclient", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_main", "to": "breadarrd_src_main_debug_1337x_search", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_main", "to": "breadarrd_src_main_debug_anime_map_refresh", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_main", "to": "breadarrd_src_main_debug_grab_cycle", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_main", "to": "breadarrd_src_main_debug_import_cycle", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_main", "to": "breadarrd_src_main_debug_jellyfin_refresh", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_main", "to": "breadarrd_src_main_debug_match_title", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_main", "to": "breadarrd_src_main_debug_qbit_add", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_main", "to": "breadarrd_src_main_debug_qbit_list", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_main", "to": "breadarrd_src_main_debug_reconcile_report", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_main", "to": "breadarrd_src_main_debug_scan_movies", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_main", "to": "breadarrd_src_main_debug_scan_tv", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_main", "to": "breadarrd_src_main_debug_search_show", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_main", "to": "breadarrd_src_main_debug_tvdb_add", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_main", "to": "breadarrd_src_main_debug_tvdb_search", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_main", "to": "breadarrd_src_main_probe_library_cmd", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_main", "to": "breadarrd_src_main_relink_orphaned_files_cmd", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_main", "to": "breadarrd_src_main_remux_backlog_cmd", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_main", "to": "breadarrd_src_main_retranscode_oversized_cmd", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_main", "to": "breadarrd_src_main_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_main", "to": "breadarrd_src_main_run_daemon", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_main", "to": "breadarrd_src_main_transcode_library_cmd", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_main", "to": "breadarrd_src_main_verify_library_cmd", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_debug_1337x_search", "to": "breadarrd_src_main_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_debug_anime_map_refresh", "to": "breadarrd_src_main_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_debug_grab_cycle", "to": "breadarrd_src_main_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_debug_import_cycle", "to": "breadarrd_src_main_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_debug_jellyfin_refresh", "to": "breadarrd_src_main_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_debug_match_title", "to": "breadarrd_src_main_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_debug_qbit_add", "to": "breadarrd_src_main_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_debug_qbit_list", "to": "breadarrd_src_main_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_debug_reconcile_report", "to": "breadarrd_src_main_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_debug_scan_movies", "to": "breadarrd_src_main_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_debug_scan_tv", "to": "breadarrd_src_main_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_debug_search_show", "to": "breadarrd_src_main_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_debug_tvdb_add", "to": "breadarrd_src_main_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_debug_tvdb_search", "to": "breadarrd_src_main_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_drive_transcode_queue_to_completion", "to": "breadarrd_src_main_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_load_title_matcher", "to": "breadarrd_src_main_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_probe_library_cmd", "to": "breadarrd_src_main_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_relink_orphaned_files_cmd", "to": "breadarrd_src_main_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_remux_backlog_cmd", "to": "breadarrd_src_main_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_retranscode_oversized_cmd", "to": "breadarrd_src_main_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_run_daemon", "to": "breadarrd_src_main_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_transcode_library_cmd", "to": "breadarrd_src_main_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_verify_library_cmd", "to": "breadarrd_src_main_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_run_daemon", "to": "breadarrd_src_main_background_loop", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_run_daemon", "to": "config", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod_appstate", "to": "config", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_background_loop", "to": "config", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_debug_1337x_search", "to": "config", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_debug_anime_map_refresh", "to": "config", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_debug_grab_cycle", "to": "config", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_debug_import_cycle", "to": "config", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_debug_jellyfin_refresh", "to": "config", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_debug_match_title", "to": "config", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_debug_qbit_add", "to": "config", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_debug_qbit_list", "to": "config", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_debug_reconcile_report", "to": "config", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_debug_scan_movies", "to": "config", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_debug_scan_tv", "to": "config", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_debug_search_show", "to": "config", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_debug_tvdb_add", "to": "config", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_debug_tvdb_search", "to": "config", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_drive_transcode_queue_to_completion", "to": "config", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_load_title_matcher", "to": "config", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_probe_library_cmd", "to": "config", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_relink_orphaned_files_cmd", "to": "config", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_remux_backlog_cmd", "to": "config", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_retranscode_oversized_cmd", "to": "config", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_transcode_library_cmd", "to": "config", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_verify_library_cmd", "to": "config", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_background_loop", "to": "breadarrd_src_main_load_title_matcher", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_debug_search_show", "to": "breadarrd_src_main_load_title_matcher", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_load_title_matcher", "to": "titlematcher", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_background_loop", "to": "arc", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_background_loop", "to": "backgroundrequest", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_background_loop", "to": "breadarrd_src_main_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_background_loop", "to": "breadarrd_src_main_rs_mutex", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_background_loop", "to": "breadarrd_src_main_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_background_loop", "to": "breadarrd_src_qbit_mod_qbitclient", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_background_loop", "to": "cyclestatus", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_background_loop", "to": "jellyfinclient", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_background_loop", "to": "receiver", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod", "to": "arc", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod_appstate", "to": "arc", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "arc", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_claim_pending_jobs", "to": "arc", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_finalize_job", "to": "arc", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_cycle", "to": "arc", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_pipeline_cycle", "to": "arc", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_drive_transcode_queue_to_completion", "to": "breadarrd_src_main_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_debug_qbit_list", "to": "breadarrd_src_main_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_transcode_library_cmd", "to": "breadarrd_src_main_drive_transcode_queue_to_completion", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_main_retranscode_oversized_cmd", "to": "breadarrd_src_main_drive_transcode_queue_to_completion", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod", "to": "breadarrd_src_qbit_mod_addtorrentresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod", "to": "breadarrd_src_qbit_mod_extract_btih", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod", "to": "breadarrd_src_qbit_mod_extracts_base32_hash_from_a_magnet", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod", "to": "breadarrd_src_qbit_mod_extracts_hash_from_a_real_magnet", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod", "to": "breadarrd_src_qbit_mod_magnetrejected", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod", "to": "breadarrd_src_qbit_mod_qbitclient", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod", "to": "breadarrd_src_qbit_mod_returns_none_for_a_1337x_page_url", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod", "to": "breadarrd_src_qbit_mod_returns_none_for_a_torrent_download_url", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod", "to": "breadarrd_src_qbit_mod_torrentinfo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_extract_btih", "to": "breadarrd_src_qbit_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_extract_btih", "to": "string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient", "to": "breadarrd_src_qbit_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient_list_torrents", "to": "breadarrd_src_qbit_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_magnetrejected", "to": "string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient", "to": "string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient_new", "to": "string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient_post_form", "to": "string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_torrentinfo", "to": "string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_magnetrejected", "to": "breadarrd_src_qbit_mod_magnetrejected_fmt", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_magnetrejected", "to": "display", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_magnetrejected", "to": "error", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_magnetrejected_fmt", "to": "breadarrd_src_qbit_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_magnetrejected_fmt", "to": "formatter", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient_add_magnet", "to": "breadarrd_src_qbit_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient_delete_torrent", "to": "breadarrd_src_qbit_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient_do_login", "to": "breadarrd_src_qbit_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient_list_torrents", "to": "breadarrd_src_qbit_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient_login", "to": "breadarrd_src_qbit_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient_new", "to": "breadarrd_src_qbit_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient_post_form", "to": "breadarrd_src_qbit_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient", "to": "breadarrd_src_qbit_mod_qbitclient_add_magnet", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient", "to": "breadarrd_src_qbit_mod_qbitclient_delete_torrent", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient", "to": "breadarrd_src_qbit_mod_qbitclient_do_login", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient", "to": "breadarrd_src_qbit_mod_qbitclient_list_torrents", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient", "to": "breadarrd_src_qbit_mod_qbitclient_lock_for_grab", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient", "to": "breadarrd_src_qbit_mod_qbitclient_login", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient", "to": "breadarrd_src_qbit_mod_qbitclient_new", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient", "to": "breadarrd_src_qbit_mod_qbitclient_post_form", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient", "to": "breadarrd_src_qbit_mod_qbitclient_try_reauth", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient", "to": "breadarrd_src_qbit_mod_rs_mutex", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient", "to": "client", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient", "to": "rwlock", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient_list_torrents", "to": "breadarrd_src_qbit_mod_torrentinfo", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient_add_magnet", "to": "breadarrd_src_qbit_mod_qbitclient_new", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient_new", "to": "into", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient_new", "to": "self", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient_login", "to": "breadarrd_src_qbit_mod_qbitclient_do_login", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient_try_reauth", "to": "breadarrd_src_qbit_mod_qbitclient_do_login", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient_add_magnet", "to": "breadarrd_src_qbit_mod_qbitclient_try_reauth", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient_list_torrents", "to": "breadarrd_src_qbit_mod_qbitclient_try_reauth", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient_post_form", "to": "breadarrd_src_qbit_mod_qbitclient_try_reauth", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient_list_torrents", "to": "vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient_delete_torrent", "to": "breadarrd_src_qbit_mod_qbitclient_post_form", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_qbit_mod_qbitclient_lock_for_grab", "to": "mutexguard", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_config_path", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_daemonconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_1337x_mirrors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_anime_svtav1_max_threads", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_anime_svtav1_preset", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_av1_efficiency_factor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_config_has_expected_values", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_config_passes_validation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_db_path", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_exclude_hdr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_exclude_min_height", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_grab_enabled", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_grab_poll_interval_secs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_import_poll_interval_secs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_listen_addr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_log_level", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_min_size_reduction_pct", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_model_dir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_nyaa_rss_url", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_parallelism_max", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_parallelism_max_anime", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_parallelism_min", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_qbit_category", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_quality_anime", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_quality_live_action", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_reference_bitrate_kbps", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_reference_height", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_root_folder", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_search_budget_per_cycle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_search_enabled", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_search_poll_interval_secs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_skip_below_ceiling_ratio", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_tpb_api_url", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_transcode_poll_interval_secs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_upgrade_budget_per_cycle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_upgrade_enabled", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_upgrade_min_score_gain", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_upgrade_poll_interval_secs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_vaapi_device", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_default_verify_sample_secs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_expand_home", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_jellyfinconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_libraryconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_load_falls_back_to_default_when_file_missing", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_notificationsconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_parses_partial_toml_with_defaults", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_qbitconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_rejects_a_min_size_reduction_pct_above_one", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_rejects_a_negative_min_size_reduction_pct", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_rejects_a_zero_reference_height", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_rs_result", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_sourcesconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_tmdbconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_transcodeconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config", "to": "breadarr_shared_src_config_tvdbconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_config", "to": "breadarr_shared_src_config_config_db_path", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_config", "to": "breadarr_shared_src_config_config_default_root_folder", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_config", "to": "breadarr_shared_src_config_config_load", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_config", "to": "breadarr_shared_src_config_config_model_dir", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_config", "to": "breadarr_shared_src_config_config_validate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_config", "to": "breadarr_shared_src_config_daemonconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_config", "to": "breadarr_shared_src_config_jellyfinconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_config", "to": "breadarr_shared_src_config_libraryconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_config", "to": "breadarr_shared_src_config_notificationsconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_config", "to": "breadarr_shared_src_config_qbitconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_config", "to": "breadarr_shared_src_config_sourcesconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_config", "to": "breadarr_shared_src_config_tmdbconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_config", "to": "breadarr_shared_src_config_transcodeconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_config", "to": "breadarr_shared_src_config_tvdbconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_libraryconfig", "to": "breadarr_shared_src_config_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_daemonconfig", "to": "breadarr_shared_src_config_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_default_1337x_mirrors", "to": "breadarr_shared_src_config_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_default_db_path", "to": "breadarr_shared_src_config_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_default_listen_addr", "to": "breadarr_shared_src_config_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_default_log_level", "to": "breadarr_shared_src_config_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_default_model_dir", "to": "breadarr_shared_src_config_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_default_nyaa_rss_url", "to": "breadarr_shared_src_config_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_default_qbit_category", "to": "breadarr_shared_src_config_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_default_root_folder", "to": "breadarr_shared_src_config_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_default_tpb_api_url", "to": "breadarr_shared_src_config_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_default_vaapi_device", "to": "breadarr_shared_src_config_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_jellyfinconfig", "to": "breadarr_shared_src_config_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_notificationsconfig", "to": "breadarr_shared_src_config_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_qbitconfig", "to": "breadarr_shared_src_config_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_sourcesconfig", "to": "breadarr_shared_src_config_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_tmdbconfig", "to": "breadarr_shared_src_config_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_transcodeconfig", "to": "breadarr_shared_src_config_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_tvdbconfig", "to": "breadarr_shared_src_config_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_sourcesconfig", "to": "breadarr_shared_src_config_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_sourcesconfig", "to": "breadarr_shared_src_config_sourcesconfig_default", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_sourcesconfig", "to": "default", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_default_1337x_mirrors", "to": "breadarr_shared_src_config_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_transcodeconfig", "to": "breadarr_shared_src_config_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_daemonconfig", "to": "default", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_transcodeconfig", "to": "default", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_sourcesconfig_default", "to": "breadarr_shared_src_config_default_1337x_mirrors", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_sourcesconfig_default", "to": "breadarr_shared_src_config_default_grab_enabled", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_sourcesconfig_default", "to": "breadarr_shared_src_config_default_grab_poll_interval_secs", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_sourcesconfig_default", "to": "breadarr_shared_src_config_default_import_poll_interval_secs", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_sourcesconfig_default", "to": "breadarr_shared_src_config_default_nyaa_rss_url", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_sourcesconfig_default", "to": "breadarr_shared_src_config_default_search_budget_per_cycle", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_sourcesconfig_default", "to": "breadarr_shared_src_config_default_search_enabled", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_sourcesconfig_default", "to": "breadarr_shared_src_config_default_search_poll_interval_secs", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_sourcesconfig_default", "to": "breadarr_shared_src_config_default_tpb_api_url", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_sourcesconfig_default", "to": "breadarr_shared_src_config_default_upgrade_budget_per_cycle", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_sourcesconfig_default", "to": "breadarr_shared_src_config_default_upgrade_enabled", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_sourcesconfig_default", "to": "breadarr_shared_src_config_default_upgrade_min_score_gain", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_sourcesconfig_default", "to": "breadarr_shared_src_config_default_upgrade_poll_interval_secs", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_sourcesconfig_default", "to": "breadarr_shared_src_config_rs_self", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_config_load", "to": "breadarr_shared_src_config_rs_self", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_daemonconfig_default", "to": "breadarr_shared_src_config_rs_self", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_transcodeconfig_default", "to": "breadarr_shared_src_config_rs_self", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_daemonconfig", "to": "breadarr_shared_src_config_daemonconfig_default", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_daemonconfig_default", "to": "breadarr_shared_src_config_default_db_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_daemonconfig_default", "to": "breadarr_shared_src_config_default_listen_addr", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_daemonconfig_default", "to": "breadarr_shared_src_config_default_log_level", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_daemonconfig_default", "to": "breadarr_shared_src_config_default_model_dir", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_transcodeconfig", "to": "breadarr_shared_src_config_transcodeconfig_default", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_one", "to": "breadarr_shared_src_config_transcodeconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_season_pack", "to": "breadarr_shared_src_config_transcodeconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_season_pack_file", "to": "breadarr_shared_src_config_transcodeconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_maybe_enqueue_transcode", "to": "breadarr_shared_src_config_transcodeconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_process_pending_grabs", "to": "breadarr_shared_src_config_transcodeconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_run_import_cycle", "to": "breadarr_shared_src_config_transcodeconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarr_shared_src_config_transcodeconfig", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_cfg", "to": "breadarr_shared_src_config_transcodeconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_effective_parallelism", "to": "breadarr_shared_src_config_transcodeconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_encode_and_verify", "to": "breadarr_shared_src_config_transcodeconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_find_backlog_candidates", "to": "breadarr_shared_src_config_transcodeconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_find_oversized_av1_candidates", "to": "breadarr_shared_src_config_transcodeconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_is_anime_content", "to": "breadarr_shared_src_config_transcodeconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_is_anime_path", "to": "breadarr_shared_src_config_transcodeconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_cycle", "to": "breadarr_shared_src_config_transcodeconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_pipeline_cycle", "to": "breadarr_shared_src_config_transcodeconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_should_enqueue", "to": "breadarr_shared_src_config_transcodeconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_target_bitrate_kbps", "to": "breadarr_shared_src_config_transcodeconfig", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_config_load", "to": "breadarr_shared_src_config_transcodeconfig_default", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_default_config_has_expected_values", "to": "breadarr_shared_src_config_transcodeconfig_default", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_default_config_passes_validation", "to": "breadarr_shared_src_config_transcodeconfig_default", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_transcodeconfig_default", "to": "breadarr_shared_src_config_default_anime_svtav1_max_threads", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_transcodeconfig_default", "to": "breadarr_shared_src_config_default_anime_svtav1_preset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_transcodeconfig_default", "to": "breadarr_shared_src_config_default_av1_efficiency_factor", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_transcodeconfig_default", "to": "breadarr_shared_src_config_default_exclude_hdr", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_transcodeconfig_default", "to": "breadarr_shared_src_config_default_exclude_min_height", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_transcodeconfig_default", "to": "breadarr_shared_src_config_default_min_size_reduction_pct", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_transcodeconfig_default", "to": "breadarr_shared_src_config_default_parallelism_max", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_transcodeconfig_default", "to": "breadarr_shared_src_config_default_parallelism_max_anime", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_transcodeconfig_default", "to": "breadarr_shared_src_config_default_parallelism_min", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_transcodeconfig_default", "to": "breadarr_shared_src_config_default_quality_anime", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_transcodeconfig_default", "to": "breadarr_shared_src_config_default_quality_live_action", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_transcodeconfig_default", "to": "breadarr_shared_src_config_default_reference_bitrate_kbps", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_transcodeconfig_default", "to": "breadarr_shared_src_config_default_reference_height", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_transcodeconfig_default", "to": "breadarr_shared_src_config_default_skip_below_ceiling_ratio", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_transcodeconfig_default", "to": "breadarr_shared_src_config_default_transcode_poll_interval_secs", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_transcodeconfig_default", "to": "breadarr_shared_src_config_default_vaapi_device", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_transcodeconfig_default", "to": "breadarr_shared_src_config_default_verify_sample_secs", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_config_load", "to": "breadarr_shared_src_config_config_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_config_load", "to": "breadarr_shared_src_config_config_validate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_config_load", "to": "breadarr_shared_src_config_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_load_falls_back_to_default_when_file_missing", "to": "breadarr_shared_src_config_config_load", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_config_validate", "to": "breadarr_shared_src_config_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_default_config_passes_validation", "to": "breadarr_shared_src_config_config_validate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_config_db_path", "to": "breadarr_shared_src_config_expand_home", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_config_db_path", "to": "breadarr_shared_src_config_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_config_default_root_folder", "to": "breadarr_shared_src_config_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_config_model_dir", "to": "breadarr_shared_src_config_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_config_path", "to": "breadarr_shared_src_config_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_expand_home", "to": "breadarr_shared_src_config_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_config_model_dir", "to": "breadarr_shared_src_config_expand_home", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_config_default_root_folder", "to": "breadarr_shared_src_config_expand_home", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarr_shared_src_config_config_path", "to": "breadarr_shared_src_config_expand_home", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe", "to": "breadarrd_src_importer_ffprobe_audiostream", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe", "to": "breadarrd_src_importer_ffprobe_build_media_probe", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe", "to": "breadarrd_src_importer_ffprobe_decodecheck", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe", "to": "breadarrd_src_importer_ffprobe_default_audio_is_non_english_false_when_default_is_english", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe", "to": "breadarrd_src_importer_ffprobe_default_audio_is_non_english_false_when_no_default_is_set", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe", "to": "breadarrd_src_importer_ffprobe_default_audio_is_non_english_true_when_default_track_is_not_english", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe", "to": "breadarrd_src_importer_ffprobe_generate_clip", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe", "to": "breadarrd_src_importer_ffprobe_generate_test_clip", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe", "to": "breadarrd_src_importer_ffprobe_has_english_audio_false_with_no_tracks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe", "to": "breadarrd_src_importer_ffprobe_has_english_audio_true_when_any_track_is_english", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe", "to": "breadarrd_src_importer_ffprobe_is_english", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe", "to": "breadarrd_src_importer_ffprobe_mediaprobe", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe", "to": "breadarrd_src_importer_ffprobe_parse_frame_rate_fraction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe", "to": "breadarrd_src_importer_ffprobe_probe", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe", "to": "breadarrd_src_importer_ffprobe_probe_extracts_extra_metadata_from_a_generated_clip", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe", "to": "breadarrd_src_importer_ffprobe_probe_extracts_real_resolution_and_audio_language_from_a_generated_clip", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe", "to": "breadarrd_src_importer_ffprobe_probe_fails_gracefully_for_a_nonexistent_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe", "to": "breadarrd_src_importer_ffprobe_probe_finds_the_real_video_stream_even_when_attached_pic_comes_first", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe", "to": "breadarrd_src_importer_ffprobe_probe_finds_the_real_video_stream_when_attached_pic_comes_second", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe", "to": "breadarrd_src_importer_ffprobe_rs_path", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe", "to": "breadarrd_src_importer_ffprobe_subtitlestream", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe", "to": "breadarrd_src_importer_ffprobe_verify_decodable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe", "to": "breadarrd_src_importer_ffprobe_verify_decodable_sampled", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe", "to": "breadarrd_src_importer_ffprobe_verify_decodable_sampled_flags_a_file_that_does_not_decode_at_all", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe", "to": "breadarrd_src_importer_ffprobe_verify_decodable_sampled_passes_a_genuinely_intact_long_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe", "to": "breadarrd_src_importer_ffprobe_verify_decodable_sampled_passes_a_genuinely_intact_short_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_audiostream", "to": "breadarrd_src_importer_ffprobe_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_audiostream", "to": "breadarrd_src_importer_ffprobe_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_mediaprobe", "to": "breadarrd_src_importer_ffprobe_audiostream", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_is_english", "to": "breadarrd_src_importer_ffprobe_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_mediaprobe", "to": "breadarrd_src_importer_ffprobe_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_parse_frame_rate_fraction", "to": "breadarrd_src_importer_ffprobe_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_subtitlestream", "to": "breadarrd_src_importer_ffprobe_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_build_media_probe", "to": "breadarrd_src_importer_ffprobe_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_decodecheck", "to": "breadarrd_src_importer_ffprobe_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_mediaprobe", "to": "breadarrd_src_importer_ffprobe_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_subtitlestream", "to": "breadarrd_src_importer_ffprobe_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_mediaprobe", "to": "breadarrd_src_importer_ffprobe_subtitlestream", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_ffmpeg_encode_anime", "to": "breadarrd_src_importer_ffprobe_subtitlestream", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_ffmpeg_encode_live_action", "to": "breadarrd_src_importer_ffprobe_subtitlestream", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_subtitle_codec_args", "to": "breadarrd_src_importer_ffprobe_subtitlestream", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_build_media_probe", "to": "breadarrd_src_importer_ffprobe_mediaprobe", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_mediaprobe", "to": "breadarrd_src_importer_ffprobe_mediaprobe_default_audio_is_non_english", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_mediaprobe", "to": "breadarrd_src_importer_ffprobe_mediaprobe_has_english_audio", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_mediaprobe", "to": "breadarrd_src_importer_ffprobe_mediaprobe_is_hdr", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_mediaprobe", "to": "breadarrd_src_importer_ffprobe_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_probe", "to": "breadarrd_src_importer_ffprobe_mediaprobe", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_probefields_from_probe", "to": "breadarrd_src_importer_ffprobe_mediaprobe", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_upsert_probe", "to": "breadarrd_src_importer_ffprobe_mediaprobe", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_mediaprobe_default_audio_is_non_english", "to": "breadarrd_src_importer_ffprobe_is_english", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_mediaprobe_has_english_audio", "to": "breadarrd_src_importer_ffprobe_is_english", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_probe", "to": "breadarrd_src_importer_ffprobe_build_media_probe", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_probe", "to": "breadarrd_src_importer_ffprobe_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_probe", "to": "breadarrd_src_importer_ffprobe_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_probe_extracts_extra_metadata_from_a_generated_clip", "to": "breadarrd_src_importer_ffprobe_probe", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_probe_extracts_real_resolution_and_audio_language_from_a_generated_clip", "to": "breadarrd_src_importer_ffprobe_probe", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_probe_fails_gracefully_for_a_nonexistent_file", "to": "breadarrd_src_importer_ffprobe_probe", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_generate_clip", "to": "breadarrd_src_importer_ffprobe_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_generate_test_clip", "to": "breadarrd_src_importer_ffprobe_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_verify_decodable", "to": "breadarrd_src_importer_ffprobe_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_verify_decodable_sampled", "to": "breadarrd_src_importer_ffprobe_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_verify_decodable", "to": "breadarrd_src_importer_ffprobe_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_verify_decodable_sampled", "to": "breadarrd_src_importer_ffprobe_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_build_media_probe", "to": "value", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_probe_finds_the_real_video_stream_even_when_attached_pic_comes_first", "to": "breadarrd_src_importer_ffprobe_build_media_probe", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_probe_finds_the_real_video_stream_when_attached_pic_comes_second", "to": "breadarrd_src_importer_ffprobe_build_media_probe", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_verify_decodable", "to": "breadarrd_src_importer_ffprobe_decodecheck", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_verify_decodable_sampled", "to": "breadarrd_src_importer_ffprobe_decodecheck", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_record_decode_check", "to": "breadarrd_src_importer_ffprobe_decodecheck", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_verify_decodable_sampled", "to": "breadarrd_src_importer_ffprobe_verify_decodable", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_verify_decodable_sampled_flags_a_file_that_does_not_decode_at_all", "to": "breadarrd_src_importer_ffprobe_verify_decodable_sampled", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_verify_decodable_sampled_passes_a_genuinely_intact_long_file", "to": "breadarrd_src_importer_ffprobe_verify_decodable_sampled", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_verify_decodable_sampled_passes_a_genuinely_intact_short_file", "to": "breadarrd_src_importer_ffprobe_verify_decodable_sampled", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_generate_clip", "to": "breadarrd_src_importer_ffprobe_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_verify_decodable_sampled_passes_a_genuinely_intact_long_file", "to": "breadarrd_src_importer_ffprobe_generate_clip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_verify_decodable_sampled_passes_a_genuinely_intact_short_file", "to": "breadarrd_src_importer_ffprobe_generate_clip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_generate_test_clip", "to": "breadarrd_src_importer_ffprobe_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_probe_extracts_extra_metadata_from_a_generated_clip", "to": "breadarrd_src_importer_ffprobe_generate_test_clip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_ffprobe_probe_extracts_real_resolution_and_audio_language_from_a_generated_clip", "to": "breadarrd_src_importer_ffprobe_generate_test_clip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_a_drifted_root_folder_does_not_defeat_the_dest_collision_check", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_a_fresh_grab_is_not_stalled", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_a_grab_untouched_past_the_threshold_is_stalled", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_a_persistently_failing_import_escalates_to_failed_instead_of_retrying_forever", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_a_strictly_better_release_replaces_the_existing_file_via_a_real_move", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_a_torrent_missing_past_the_grace_period_is_failed", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_a_torrent_missing_within_the_grace_period_is_not_yet_failed", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_an_upgrade_swap_sweeps_every_duplicate_episode_file_row_not_just_one", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_builds_filename_with_episode_title", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_builds_filename_without_episode_title", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_collect_video_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_copy_via_temp_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_copy_via_temp_file_writes_through_a_part_file_and_renames_into_place", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_deterministic_filename", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_deterministic_movie_filename", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_does_not_import_a_torrent_while_it_is_still_being_physically_moved", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_ensure_probed", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_ensure_probed_does_not_flag_a_wide_aspect_ratio_file_as_under_quality", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_ensure_probed_flags_a_low_resolution_file_as_under_quality", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_ensure_probed_skips_reprobing_an_unchanged_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_fail_grab", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_fail_grab_reopens_the_release_for_search", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_fetch_pending_grabs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_find_by_basename", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_find_by_stem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_find_relinkable_episode_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_find_relinkable_episode_files_falls_back_to_the_unpadded_season_folder", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_find_relinkable_episode_files_finds_a_file_with_no_tracked_row", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_find_relinkable_episode_files_skips_an_ambiguous_match_rather_than_guessing", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_generate_dual_audio_clip", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_generate_test_clip", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_grab_is_stalled", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_grab_missing_past_grace", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_has_cjk", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_import_one", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_import_one_enqueues_a_transcode_job_when_transcode_is_enabled", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_import_one_enqueues_an_anime_tagged_transcode_job_for_anime", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_import_one_flags_quality_when_the_real_file_is_under_1080p", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_import_one_places_a_single_episode_grab_under_its_season_subfolder", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_import_season_pack", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_import_season_pack_fails_when_nothing_in_it_matches_a_tracked_episode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_import_season_pack_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_import_season_pack_imports_every_file_and_marks_episodes_owned", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_import_season_pack_skips_an_upgrade_locked_episode_even_with_a_lower_scoring_existing_release", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_import_season_pack_skips_episodes_that_already_have_a_better_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_importoutcome", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_imports_a_movie_release_with_no_episode_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_importstats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_insufficient_space", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_insufficient_space_is_false_for_a_trivially_small_request", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_insufficient_space_is_true_for_an_absurd_request", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_largest_video_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_locate_video_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_locates_a_single_file_torrent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_locates_the_largest_video_file_in_a_directory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_maybe_enqueue_transcode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_media_item_with_root", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_move_or_copy_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_move_or_copy_file_moves_the_source_out", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_omits_a_cjk_only_episode_title_instead_of_embedding_it", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_packfileoutcome", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_pendinggrab", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_probe_indicates_import_problem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_probe_library", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_probe_library_reports_probed_vs_skipped_up_to_date", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_probefields", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_probesweepreport", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_process_pending_grabs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_process_pending_grabs_routes_each_grab_by_torrent_state", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_progress_advancing_resets_the_stall_clock", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_reconcile_clears_episode_file_rows_whose_path_no_longer_exists", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_reconcile_dry_run_reports_without_writing_anything", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_reconcile_missing_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_reconcile_refuses_to_clear_an_anomalous_fraction_in_one_pass", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_reconcile_repairs_a_path_whose_extension_changed_from_a_transcode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_reconcile_repairs_a_path_whose_show_folder_was_renamed_instead_of_clearing_it", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_reconcileoutcome", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_record_decode_check", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_record_import_error", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_refuses_to_overwrite_an_already_imported_higher_scoring_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_relink_episode_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_relinkcandidate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_remap_path", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_remap_path_is_noop_when_prefixes_not_configured", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_remap_path_translates_container_prefix_to_host_prefix", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_remux_backlog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_remux_backlog_promotes_english_to_default_for_a_flagged_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_remux_backlog_skips_non_mkv_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_remux_one_backlog_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_remuxbacklogreport", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_rs_jellyfinclient", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_rs_path", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_run_import_cycle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_same_filesystem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_same_filesystem_is_false_when_either_path_cannot_be_stat_d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_same_filesystem_is_true_for_two_paths_under_the_same_temp_dir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_sanitize", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_sanitizes_path_hostile_characters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_season_dir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_seasonpackimportoutcome", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_seeded_release_conn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_seeded_season_pack_conn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_stalefile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_update_grab_progress", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_update_grab_progress_ignores_a_non_increasing_value", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_upsert_probe", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_verify_library", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_verify_library_confirms_a_genuinely_decodable_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_verify_library_flags_a_file_that_parses_but_does_not_decode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_verify_library_skips_files_that_never_even_passed_the_header_probe", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_verifylibraryreport", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "breadarrd_src_importer_mod_walk_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod", "to": "qbitclient", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_fail_grab", "to": "breadarrd_src_importer_mod_pendinggrab", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_fetch_pending_grabs", "to": "breadarrd_src_importer_mod_pendinggrab", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_one", "to": "breadarrd_src_importer_mod_pendinggrab", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_pendinggrab", "to": "breadarrd_src_importer_mod_pendinggrab_episode_id", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_pendinggrab", "to": "breadarrd_src_importer_mod_pendinggrab_media_item_id", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_pendinggrab", "to": "breadarrd_src_importer_mod_pendinggrab_release_id", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_pendinggrab", "to": "breadarrd_src_importer_mod_pendinggrab_root_folder", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_pendinggrab", "to": "breadarrd_src_importer_mod_pendinggrab_torrent_hash", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_pendinggrab", "to": "breadarrd_src_importer_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_pendinggrab", "to": "breadarrd_src_importer_mod_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_process_pending_grabs", "to": "breadarrd_src_importer_mod_pendinggrab", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_deterministic_filename", "to": "breadarrd_src_importer_mod_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_deterministic_movie_filename", "to": "breadarrd_src_importer_mod_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_find_relinkable_episode_files", "to": "breadarrd_src_importer_mod_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_probefields", "to": "breadarrd_src_importer_mod_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_process_pending_grabs", "to": "breadarrd_src_importer_mod_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_relinkcandidate", "to": "breadarrd_src_importer_mod_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_sanitize", "to": "breadarrd_src_importer_mod_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_deterministic_filename", "to": "breadarrd_src_importer_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_deterministic_movie_filename", "to": "breadarrd_src_importer_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_find_by_basename", "to": "breadarrd_src_importer_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_find_by_stem", "to": "breadarrd_src_importer_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_one", "to": "breadarrd_src_importer_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_season_pack", "to": "breadarrd_src_importer_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_season_pack_file", "to": "breadarrd_src_importer_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_pendinggrab_episode_id", "to": "breadarrd_src_importer_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_probefields", "to": "breadarrd_src_importer_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_process_pending_grabs", "to": "breadarrd_src_importer_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_run_import_cycle", "to": "breadarrd_src_importer_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_stalefile", "to": "breadarrd_src_importer_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_upsert_probe", "to": "breadarrd_src_importer_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_process_pending_grabs", "to": "breadarrd_src_importer_mod_pendinggrab_release_id", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_fail_grab", "to": "breadarrd_src_importer_mod_pendinggrab_media_item_id", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_one", "to": "breadarrd_src_importer_mod_pendinggrab_media_item_id", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_process_pending_grabs", "to": "breadarrd_src_importer_mod_pendinggrab_torrent_hash", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_fail_grab", "to": "breadarrd_src_importer_mod_pendinggrab_episode_id", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_a_persistently_failing_import_escalates_to_failed_instead_of_retrying_forever", "to": "breadarrd_src_importer_mod_fetch_pending_grabs", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_does_not_import_a_torrent_while_it_is_still_being_physically_moved", "to": "breadarrd_src_importer_mod_fetch_pending_grabs", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_fetch_pending_grabs", "to": "breadarrd_src_importer_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_fetch_pending_grabs", "to": "breadarrd_src_importer_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_fetch_pending_grabs", "to": "breadarrd_src_importer_mod_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_process_pending_grabs_routes_each_grab_by_torrent_state", "to": "breadarrd_src_importer_mod_fetch_pending_grabs", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_run_import_cycle", "to": "breadarrd_src_importer_mod_fetch_pending_grabs", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_ensure_probed", "to": "breadarrd_src_importer_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_fail_grab", "to": "breadarrd_src_importer_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_find_relinkable_episode_files", "to": "breadarrd_src_importer_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_grab_is_stalled", "to": "breadarrd_src_importer_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_grab_missing_past_grace", "to": "breadarrd_src_importer_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_one", "to": "breadarrd_src_importer_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_season_pack", "to": "breadarrd_src_importer_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_season_pack_file", "to": "breadarrd_src_importer_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_maybe_enqueue_transcode", "to": "breadarrd_src_importer_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_media_item_with_root", "to": "breadarrd_src_importer_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_probe_indicates_import_problem", "to": "breadarrd_src_importer_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_probe_library", "to": "breadarrd_src_importer_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_process_pending_grabs", "to": "breadarrd_src_importer_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_reconcile_missing_files", "to": "breadarrd_src_importer_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_record_decode_check", "to": "breadarrd_src_importer_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_record_import_error", "to": "breadarrd_src_importer_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_relink_episode_files", "to": "breadarrd_src_importer_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_remux_backlog", "to": "breadarrd_src_importer_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_remux_one_backlog_file", "to": "breadarrd_src_importer_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_run_import_cycle", "to": "breadarrd_src_importer_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_seeded_release_conn", "to": "breadarrd_src_importer_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_seeded_season_pack_conn", "to": "breadarrd_src_importer_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_update_grab_progress", "to": "breadarrd_src_importer_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_upsert_probe", "to": "breadarrd_src_importer_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_verify_library", "to": "breadarrd_src_importer_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_copy_via_temp_file", "to": "breadarrd_src_importer_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_ensure_probed", "to": "breadarrd_src_importer_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_fail_grab", "to": "breadarrd_src_importer_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_find_relinkable_episode_files", "to": "breadarrd_src_importer_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_grab_is_stalled", "to": "breadarrd_src_importer_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_grab_missing_past_grace", "to": "breadarrd_src_importer_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_one", "to": "breadarrd_src_importer_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_season_pack", "to": "breadarrd_src_importer_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_season_pack_file", "to": "breadarrd_src_importer_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_insufficient_space", "to": "breadarrd_src_importer_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_largest_video_file", "to": "breadarrd_src_importer_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_locate_video_file", "to": "breadarrd_src_importer_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_maybe_enqueue_transcode", "to": "breadarrd_src_importer_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_move_or_copy_file", "to": "breadarrd_src_importer_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_probe_indicates_import_problem", "to": "breadarrd_src_importer_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_probe_library", "to": "breadarrd_src_importer_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_process_pending_grabs", "to": "breadarrd_src_importer_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_reconcile_missing_files", "to": "breadarrd_src_importer_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_record_decode_check", "to": "breadarrd_src_importer_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_record_import_error", "to": "breadarrd_src_importer_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_relink_episode_files", "to": "breadarrd_src_importer_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_remux_backlog", "to": "breadarrd_src_importer_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_remux_one_backlog_file", "to": "breadarrd_src_importer_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_run_import_cycle", "to": "breadarrd_src_importer_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_update_grab_progress", "to": "breadarrd_src_importer_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_upsert_probe", "to": "breadarrd_src_importer_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_verify_library", "to": "breadarrd_src_importer_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_walk_files", "to": "breadarrd_src_importer_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_collect_video_files", "to": "breadarrd_src_importer_mod_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_find_relinkable_episode_files", "to": "breadarrd_src_importer_mod_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_process_pending_grabs", "to": "breadarrd_src_importer_mod_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_walk_files", "to": "breadarrd_src_importer_mod_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_one", "to": "breadarrd_src_importer_mod_locate_video_file", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_locate_video_file", "to": "breadarrd_src_importer_mod_largest_video_file", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_locate_video_file", "to": "breadarrd_src_importer_mod_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_locate_video_file", "to": "breadarrd_src_importer_mod_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_locates_a_single_file_torrent", "to": "breadarrd_src_importer_mod_locate_video_file", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_locates_the_largest_video_file_in_a_directory", "to": "breadarrd_src_importer_mod_locate_video_file", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_collect_video_files", "to": "breadarrd_src_importer_mod_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_copy_via_temp_file", "to": "breadarrd_src_importer_mod_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_ensure_probed", "to": "breadarrd_src_importer_mod_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_find_by_basename", "to": "breadarrd_src_importer_mod_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_find_by_stem", "to": "breadarrd_src_importer_mod_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_generate_dual_audio_clip", "to": "breadarrd_src_importer_mod_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_generate_test_clip", "to": "breadarrd_src_importer_mod_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_one", "to": "breadarrd_src_importer_mod_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_season_pack", "to": "breadarrd_src_importer_mod_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_season_pack_file", "to": "breadarrd_src_importer_mod_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_insufficient_space", "to": "breadarrd_src_importer_mod_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_largest_video_file", "to": "breadarrd_src_importer_mod_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_media_item_with_root", "to": "breadarrd_src_importer_mod_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_move_or_copy_file", "to": "breadarrd_src_importer_mod_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_remux_one_backlog_file", "to": "breadarrd_src_importer_mod_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_same_filesystem", "to": "breadarrd_src_importer_mod_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_walk_files", "to": "breadarrd_src_importer_mod_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_collect_video_files", "to": "breadarrd_src_importer_mod_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_find_by_basename", "to": "breadarrd_src_importer_mod_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_find_by_stem", "to": "breadarrd_src_importer_mod_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_generate_dual_audio_clip", "to": "breadarrd_src_importer_mod_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_generate_test_clip", "to": "breadarrd_src_importer_mod_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_largest_video_file", "to": "breadarrd_src_importer_mod_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_relinkcandidate", "to": "breadarrd_src_importer_mod_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_remap_path", "to": "breadarrd_src_importer_mod_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_season_dir", "to": "breadarrd_src_importer_mod_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_stalefile", "to": "breadarrd_src_importer_mod_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_walk_files", "to": "breadarrd_src_importer_mod_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_largest_video_file", "to": "breadarrd_src_importer_mod_walk_files", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_season_pack", "to": "breadarrd_src_importer_mod_walk_files", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_one", "to": "breadarrd_src_importer_mod_season_dir", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_season_pack_file", "to": "breadarrd_src_importer_mod_season_dir", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_deterministic_filename", "to": "breadarrd_src_importer_mod_has_cjk", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_deterministic_filename", "to": "breadarrd_src_importer_mod_sanitize", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_one", "to": "breadarrd_src_importer_mod_deterministic_filename", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_season_pack_file", "to": "breadarrd_src_importer_mod_deterministic_filename", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_deterministic_movie_filename", "to": "breadarrd_src_importer_mod_sanitize", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_one", "to": "breadarrd_src_importer_mod_deterministic_movie_filename", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_one", "to": "breadarrd_src_importer_mod_insufficient_space", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_season_pack_file", "to": "breadarrd_src_importer_mod_insufficient_space", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_one", "to": "breadarrd_src_importer_mod_same_filesystem", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_season_pack_file", "to": "breadarrd_src_importer_mod_same_filesystem", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_one", "to": "breadarrd_src_importer_mod_move_or_copy_file", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_season_pack_file", "to": "breadarrd_src_importer_mod_move_or_copy_file", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_move_or_copy_file", "to": "breadarrd_src_importer_mod_copy_via_temp_file", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_move_or_copy_file_moves_the_source_out", "to": "breadarrd_src_importer_mod_move_or_copy_file", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_copy_via_temp_file_writes_through_a_part_file_and_renames_into_place", "to": "breadarrd_src_importer_mod_copy_via_temp_file", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_process_pending_grabs", "to": "breadarrd_src_importer_mod_importstats", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_run_import_cycle", "to": "breadarrd_src_importer_mod_importstats", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_process_pending_grabs", "to": "breadarrd_src_importer_mod_update_grab_progress", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_progress_advancing_resets_the_stall_clock", "to": "breadarrd_src_importer_mod_update_grab_progress", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_update_grab_progress_ignores_a_non_increasing_value", "to": "breadarrd_src_importer_mod_update_grab_progress", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_process_pending_grabs", "to": "breadarrd_src_importer_mod_grab_is_stalled", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_process_pending_grabs", "to": "breadarrd_src_importer_mod_grab_missing_past_grace", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_process_pending_grabs", "to": "breadarrd_src_importer_mod_record_import_error", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_fail_grab_reopens_the_release_for_search", "to": "breadarrd_src_importer_mod_fail_grab", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_process_pending_grabs", "to": "breadarrd_src_importer_mod_fail_grab", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_reconcile_missing_files", "to": "breadarrd_src_importer_mod_reconcileoutcome", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_reconcile_clears_episode_file_rows_whose_path_no_longer_exists", "to": "breadarrd_src_importer_mod_reconcile_missing_files", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_reconcile_dry_run_reports_without_writing_anything", "to": "breadarrd_src_importer_mod_reconcile_missing_files", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_reconcile_missing_files", "to": "breadarrd_src_importer_mod_find_by_basename", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_reconcile_missing_files", "to": "breadarrd_src_importer_mod_find_by_stem", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_reconcile_refuses_to_clear_an_anomalous_fraction_in_one_pass", "to": "breadarrd_src_importer_mod_reconcile_missing_files", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_reconcile_repairs_a_path_whose_extension_changed_from_a_transcode", "to": "breadarrd_src_importer_mod_reconcile_missing_files", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_reconcile_repairs_a_path_whose_show_folder_was_renamed_instead_of_clearing_it", "to": "breadarrd_src_importer_mod_reconcile_missing_files", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_find_by_basename", "to": "osstr", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_find_by_stem", "to": "osstr", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_find_relinkable_episode_files", "to": "breadarrd_src_importer_mod_relinkcandidate", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_relink_episode_files", "to": "breadarrd_src_importer_mod_relinkcandidate", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_find_relinkable_episode_files", "to": "breadarrd_src_importer_mod_collect_video_files", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_find_relinkable_episode_files_falls_back_to_the_unpadded_season_folder", "to": "breadarrd_src_importer_mod_find_relinkable_episode_files", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_find_relinkable_episode_files_finds_a_file_with_no_tracked_row", "to": "breadarrd_src_importer_mod_find_relinkable_episode_files", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_find_relinkable_episode_files_skips_an_ambiguous_match_rather_than_guessing", "to": "breadarrd_src_importer_mod_find_relinkable_episode_files", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_find_relinkable_episode_files_finds_a_file_with_no_tracked_row", "to": "breadarrd_src_importer_mod_relink_episode_files", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_relink_episode_files", "to": "breadarrd_src_importer_mod_ensure_probed", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_ensure_probed", "to": "breadarrd_src_importer_mod_upsert_probe", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_ensure_probed_does_not_flag_a_wide_aspect_ratio_file_as_under_quality", "to": "breadarrd_src_importer_mod_ensure_probed", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_ensure_probed_flags_a_low_resolution_file_as_under_quality", "to": "breadarrd_src_importer_mod_ensure_probed", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_one", "to": "breadarrd_src_importer_mod_ensure_probed", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_season_pack_file", "to": "breadarrd_src_importer_mod_ensure_probed", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_probe_library", "to": "breadarrd_src_importer_mod_ensure_probed", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_remux_backlog_promotes_english_to_default_for_a_flagged_file", "to": "breadarrd_src_importer_mod_ensure_probed", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_remux_one_backlog_file", "to": "breadarrd_src_importer_mod_ensure_probed", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_verify_library_confirms_a_genuinely_decodable_file", "to": "breadarrd_src_importer_mod_ensure_probed", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_probefields", "to": "breadarrd_src_importer_mod_probefields_from_probe", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_probefields_from_probe", "to": "breadarrd_src_importer_mod_rs_self", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_verify_library", "to": "breadarrd_src_importer_mod_record_decode_check", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_one", "to": "breadarrd_src_importer_mod_probe_indicates_import_problem", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_season_pack_file", "to": "breadarrd_src_importer_mod_probe_indicates_import_problem", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_probe_library", "to": "breadarrd_src_importer_mod_probesweepreport", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_probe_library_reports_probed_vs_skipped_up_to_date", "to": "breadarrd_src_importer_mod_probe_library", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_verify_library", "to": "breadarrd_src_importer_mod_verifylibraryreport", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_verify_library_confirms_a_genuinely_decodable_file", "to": "breadarrd_src_importer_mod_verify_library", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_verify_library_flags_a_file_that_parses_but_does_not_decode", "to": "breadarrd_src_importer_mod_verify_library", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_verify_library_skips_files_that_never_even_passed_the_header_probe", "to": "breadarrd_src_importer_mod_verify_library", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_remux_backlog", "to": "breadarrd_src_importer_mod_remuxbacklogreport", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_remux_backlog", "to": "breadarrd_src_importer_mod_remux_one_backlog_file", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_remux_backlog_promotes_english_to_default_for_a_flagged_file", "to": "breadarrd_src_importer_mod_remux_backlog", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_remux_backlog_skips_non_mkv_files", "to": "breadarrd_src_importer_mod_remux_backlog", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_process_pending_grabs", "to": "breadarrd_src_importer_mod_remap_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_run_import_cycle", "to": "breadarrd_src_importer_mod_process_pending_grabs", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_run_import_cycle", "to": "breadarrd_src_importer_mod_rs_jellyfinclient", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_run_import_cycle", "to": "qbitclient", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_a_persistently_failing_import_escalates_to_failed_instead_of_retrying_forever", "to": "breadarrd_src_importer_mod_process_pending_grabs", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_does_not_import_a_torrent_while_it_is_still_being_physically_moved", "to": "breadarrd_src_importer_mod_process_pending_grabs", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_process_pending_grabs", "to": "breadarrd_src_importer_mod_import_one", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_process_pending_grabs", "to": "breadarrd_src_importer_mod_import_season_pack", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_process_pending_grabs", "to": "torrentinfo", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_process_pending_grabs_routes_each_grab_by_torrent_state", "to": "breadarrd_src_importer_mod_process_pending_grabs", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_one", "to": "breadarrd_src_importer_mod_importoutcome", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_one", "to": "breadarrd_src_importer_mod_maybe_enqueue_transcode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_season_pack_file", "to": "breadarrd_src_importer_mod_maybe_enqueue_transcode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_stalefile", "to": "breadarrd_src_importer_mod_stalefile_restore", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_one", "to": "breadarrd_src_importer_mod_stalefile_restore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_season_pack_file", "to": "breadarrd_src_importer_mod_stalefile_restore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_a_drifted_root_folder_does_not_defeat_the_dest_collision_check", "to": "breadarrd_src_importer_mod_import_one", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_a_strictly_better_release_replaces_the_existing_file_via_a_real_move", "to": "breadarrd_src_importer_mod_import_one", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_an_upgrade_swap_sweeps_every_duplicate_episode_file_row_not_just_one", "to": "breadarrd_src_importer_mod_import_one", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_one_enqueues_a_transcode_job_when_transcode_is_enabled", "to": "breadarrd_src_importer_mod_import_one", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_one_enqueues_an_anime_tagged_transcode_job_for_anime", "to": "breadarrd_src_importer_mod_import_one", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_one_flags_quality_when_the_real_file_is_under_1080p", "to": "breadarrd_src_importer_mod_import_one", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_one_places_a_single_episode_grab_under_its_season_subfolder", "to": "breadarrd_src_importer_mod_import_one", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_imports_a_movie_release_with_no_episode_id", "to": "breadarrd_src_importer_mod_import_one", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_refuses_to_overwrite_an_already_imported_higher_scoring_file", "to": "breadarrd_src_importer_mod_import_one", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_season_pack", "to": "breadarrd_src_importer_mod_seasonpackimportoutcome", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_season_pack", "to": "breadarrd_src_importer_mod_import_season_pack_file", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_season_pack_fails_when_nothing_in_it_matches_a_tracked_episode", "to": "breadarrd_src_importer_mod_import_season_pack", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_season_pack_imports_every_file_and_marks_episodes_owned", "to": "breadarrd_src_importer_mod_import_season_pack", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_season_pack_skips_an_upgrade_locked_episode_even_with_a_lower_scoring_existing_release", "to": "breadarrd_src_importer_mod_import_season_pack", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_season_pack_skips_episodes_that_already_have_a_better_file", "to": "breadarrd_src_importer_mod_import_season_pack", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_season_pack_file", "to": "breadarrd_src_importer_mod_packfileoutcome", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_ensure_probed_does_not_flag_a_wide_aspect_ratio_file_as_under_quality", "to": "breadarrd_src_importer_mod_generate_test_clip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_ensure_probed_flags_a_low_resolution_file_as_under_quality", "to": "breadarrd_src_importer_mod_generate_test_clip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_ensure_probed_skips_reprobing_an_unchanged_file", "to": "breadarrd_src_importer_mod_generate_test_clip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_one_enqueues_a_transcode_job_when_transcode_is_enabled", "to": "breadarrd_src_importer_mod_generate_test_clip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_one_enqueues_an_anime_tagged_transcode_job_for_anime", "to": "breadarrd_src_importer_mod_generate_test_clip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_one_flags_quality_when_the_real_file_is_under_1080p", "to": "breadarrd_src_importer_mod_generate_test_clip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_probe_library_reports_probed_vs_skipped_up_to_date", "to": "breadarrd_src_importer_mod_generate_test_clip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_verify_library_confirms_a_genuinely_decodable_file", "to": "breadarrd_src_importer_mod_generate_test_clip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_a_fresh_grab_is_not_stalled", "to": "breadarrd_src_importer_mod_seeded_release_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_a_grab_untouched_past_the_threshold_is_stalled", "to": "breadarrd_src_importer_mod_seeded_release_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_a_torrent_missing_past_the_grace_period_is_failed", "to": "breadarrd_src_importer_mod_seeded_release_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_a_torrent_missing_within_the_grace_period_is_not_yet_failed", "to": "breadarrd_src_importer_mod_seeded_release_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_fail_grab_reopens_the_release_for_search", "to": "breadarrd_src_importer_mod_seeded_release_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_progress_advancing_resets_the_stall_clock", "to": "breadarrd_src_importer_mod_seeded_release_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_update_grab_progress_ignores_a_non_increasing_value", "to": "breadarrd_src_importer_mod_seeded_release_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_find_relinkable_episode_files_falls_back_to_the_unpadded_season_folder", "to": "breadarrd_src_importer_mod_media_item_with_root", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_find_relinkable_episode_files_finds_a_file_with_no_tracked_row", "to": "breadarrd_src_importer_mod_media_item_with_root", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_find_relinkable_episode_files_skips_an_ambiguous_match_rather_than_guessing", "to": "breadarrd_src_importer_mod_media_item_with_root", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_reconcile_clears_episode_file_rows_whose_path_no_longer_exists", "to": "breadarrd_src_importer_mod_media_item_with_root", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_reconcile_dry_run_reports_without_writing_anything", "to": "breadarrd_src_importer_mod_media_item_with_root", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_reconcile_refuses_to_clear_an_anomalous_fraction_in_one_pass", "to": "breadarrd_src_importer_mod_media_item_with_root", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_remux_backlog_promotes_english_to_default_for_a_flagged_file", "to": "breadarrd_src_importer_mod_generate_dual_audio_clip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_season_pack_fails_when_nothing_in_it_matches_a_tracked_episode", "to": "breadarrd_src_importer_mod_seeded_season_pack_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_season_pack_imports_every_file_and_marks_episodes_owned", "to": "breadarrd_src_importer_mod_seeded_season_pack_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_season_pack_skips_an_upgrade_locked_episode_even_with_a_lower_scoring_existing_release", "to": "breadarrd_src_importer_mod_seeded_season_pack_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_importer_mod_import_season_pack_skips_episodes_that_already_have_a_better_file", "to": "breadarrd_src_importer_mod_seeded_season_pack_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_backlogcandidate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_cfg", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_claim_pending_jobs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_claim_pending_jobs_claims_nothing_when_already_at_the_cap", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_claim_pending_jobs_enforces_live_action_and_anime_caps_independently", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_claim_pending_jobs_respects_already_running_jobs_as_a_global_cap", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_claimedjob", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_effective_parallelism", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_encode_and_verify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_encode_and_verify_anime_pipeline_shrinks_a_bloated_source", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_encode_and_verify_force_reencode_bypasses_the_already_av1_short_circuit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_encode_and_verify_handles_a_source_with_a_mov_text_subtitle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_encode_and_verify_handles_a_source_with_attached_cover_art", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_encode_and_verify_skips_a_file_that_is_already_av1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_encode_and_verify_skips_pre_emptively_when_source_is_already_efficient", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_encodeoutcome", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_enqueue", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_finalize_job", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_finalizedjob", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_find_backlog_candidates", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_find_backlog_candidates_excludes_skipped_jobs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_find_oversized_av1_candidates", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_generate_clip_with_attached_pic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_generate_clip_with_mov_text_subtitle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_generate_lossless_test_clip", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_generate_test_clip", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_is_anime", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_is_anime_content", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_is_anime_path", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_is_anime_path_matches_configured_root_folders", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_is_beneficial", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_is_beneficial_rejects_growth_and_marginal_shrinkage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_live_action_parallelism_for", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_live_action_parallelism_for_reserves_exactly_what_jellyfin_is_using", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_reset_orphaned_running_jobs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_rs_jellyfinclient", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_rs_path", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_run_cycle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_run_cycle_attributes_each_result_to_the_correct_job_even_out_of_claim_order", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_run_ffmpeg_encode_anime", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_run_ffmpeg_encode_live_action", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_run_pipeline_cycle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_seed_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_should_enqueue", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_should_enqueue_rejects_missing_codec_or_height", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_subtitle_codec_args", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_subtitle_codec_args_converts_only_mov_text", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_target_bitrate_kbps", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_target_bitrate_matches_reference_at_reference_resolution", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_target_bitrate_scales_down_for_720p", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_target_bitrate_scales_up_for_1440p", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_temp_path_for", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_temp_path_for_is_not_picked_up_by_video_file_scans", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_transcodecyclestats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "breadarrd_src_transcode_mod_transcodeoutcome", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod", "to": "mutex", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_encode_and_verify", "to": "breadarrd_src_transcode_mod_target_bitrate_kbps", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_target_bitrate_matches_reference_at_reference_resolution", "to": "breadarrd_src_transcode_mod_target_bitrate_kbps", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_target_bitrate_scales_down_for_720p", "to": "breadarrd_src_transcode_mod_target_bitrate_kbps", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_target_bitrate_scales_up_for_1440p", "to": "breadarrd_src_transcode_mod_target_bitrate_kbps", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_encode_and_verify", "to": "breadarrd_src_transcode_mod_run_ffmpeg_encode_live_action", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_ffmpeg_encode_live_action", "to": "breadarrd_src_transcode_mod_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_ffmpeg_encode_live_action", "to": "breadarrd_src_transcode_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_ffmpeg_encode_live_action", "to": "breadarrd_src_transcode_mod_subtitle_codec_args", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_generate_clip_with_attached_pic", "to": "breadarrd_src_transcode_mod_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_generate_clip_with_mov_text_subtitle", "to": "breadarrd_src_transcode_mod_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_generate_lossless_test_clip", "to": "breadarrd_src_transcode_mod_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_generate_test_clip", "to": "breadarrd_src_transcode_mod_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_is_anime_content", "to": "breadarrd_src_transcode_mod_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_is_anime_path", "to": "breadarrd_src_transcode_mod_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_ffmpeg_encode_anime", "to": "breadarrd_src_transcode_mod_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_temp_path_for", "to": "breadarrd_src_transcode_mod_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_claim_pending_jobs", "to": "breadarrd_src_transcode_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_encode_and_verify", "to": "breadarrd_src_transcode_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_enqueue", "to": "breadarrd_src_transcode_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_finalize_job", "to": "breadarrd_src_transcode_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_find_backlog_candidates", "to": "breadarrd_src_transcode_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_find_oversized_av1_candidates", "to": "breadarrd_src_transcode_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_is_anime", "to": "breadarrd_src_transcode_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_is_anime_content", "to": "breadarrd_src_transcode_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_reset_orphaned_running_jobs", "to": "breadarrd_src_transcode_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_cycle", "to": "breadarrd_src_transcode_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_ffmpeg_encode_anime", "to": "breadarrd_src_transcode_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_pipeline_cycle", "to": "breadarrd_src_transcode_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_encode_and_verify", "to": "breadarrd_src_transcode_mod_run_ffmpeg_encode_anime", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_ffmpeg_encode_anime", "to": "breadarrd_src_transcode_mod_subtitle_codec_args", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_subtitle_codec_args", "to": "breadarrd_src_transcode_mod_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_subtitle_codec_args", "to": "breadarrd_src_transcode_mod_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_subtitle_codec_args_converts_only_mov_text", "to": "breadarrd_src_transcode_mod_subtitle_codec_args", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_claim_pending_jobs", "to": "breadarrd_src_transcode_mod_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_find_backlog_candidates", "to": "breadarrd_src_transcode_mod_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_find_oversized_av1_candidates", "to": "breadarrd_src_transcode_mod_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_backlogcandidate", "to": "breadarrd_src_transcode_mod_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_encode_and_verify", "to": "breadarrd_src_transcode_mod_temp_path_for", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_reset_orphaned_running_jobs", "to": "breadarrd_src_transcode_mod_temp_path_for", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_temp_path_for", "to": "breadarrd_src_transcode_mod_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_temp_path_for_is_not_picked_up_by_video_file_scans", "to": "breadarrd_src_transcode_mod_temp_path_for", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_claimedjob", "to": "breadarrd_src_transcode_mod_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_encode_and_verify", "to": "breadarrd_src_transcode_mod_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_encodeoutcome", "to": "breadarrd_src_transcode_mod_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_generate_clip_with_attached_pic", "to": "breadarrd_src_transcode_mod_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_generate_clip_with_mov_text_subtitle", "to": "breadarrd_src_transcode_mod_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_generate_lossless_test_clip", "to": "breadarrd_src_transcode_mod_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_generate_test_clip", "to": "breadarrd_src_transcode_mod_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_encode_and_verify", "to": "breadarrd_src_transcode_mod_encodeoutcome", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_finalize_job", "to": "breadarrd_src_transcode_mod_encodeoutcome", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_encode_and_verify", "to": "breadarrd_src_transcode_mod_is_beneficial", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_encode_and_verify", "to": "breadarrd_src_transcode_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_encode_and_verify_anime_pipeline_shrinks_a_bloated_source", "to": "breadarrd_src_transcode_mod_encode_and_verify", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_encode_and_verify_force_reencode_bypasses_the_already_av1_short_circuit", "to": "breadarrd_src_transcode_mod_encode_and_verify", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_encode_and_verify_handles_a_source_with_a_mov_text_subtitle", "to": "breadarrd_src_transcode_mod_encode_and_verify", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_encode_and_verify_handles_a_source_with_attached_cover_art", "to": "breadarrd_src_transcode_mod_encode_and_verify", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_encode_and_verify_skips_a_file_that_is_already_av1", "to": "breadarrd_src_transcode_mod_encode_and_verify", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_encode_and_verify_skips_pre_emptively_when_source_is_already_efficient", "to": "breadarrd_src_transcode_mod_encode_and_verify", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_pipeline_cycle", "to": "breadarrd_src_transcode_mod_encode_and_verify", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_backlogcandidate", "to": "breadarrd_src_transcode_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_claimedjob", "to": "breadarrd_src_transcode_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_effective_parallelism", "to": "breadarrd_src_transcode_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_enqueue", "to": "breadarrd_src_transcode_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_cycle", "to": "breadarrd_src_transcode_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_pipeline_cycle", "to": "breadarrd_src_transcode_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_should_enqueue", "to": "breadarrd_src_transcode_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_is_anime", "to": "breadarrd_src_transcode_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_is_anime_content", "to": "breadarrd_src_transcode_mod_is_anime", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_claim_pending_jobs", "to": "breadarrd_src_transcode_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_enqueue", "to": "breadarrd_src_transcode_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_finalize_job", "to": "breadarrd_src_transcode_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_find_backlog_candidates", "to": "breadarrd_src_transcode_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_find_oversized_av1_candidates", "to": "breadarrd_src_transcode_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_is_anime_content", "to": "breadarrd_src_transcode_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_reset_orphaned_running_jobs", "to": "breadarrd_src_transcode_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_cycle", "to": "breadarrd_src_transcode_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_pipeline_cycle", "to": "breadarrd_src_transcode_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_seed_file", "to": "breadarrd_src_transcode_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_find_backlog_candidates", "to": "breadarrd_src_transcode_mod_is_anime_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_find_oversized_av1_candidates", "to": "breadarrd_src_transcode_mod_is_anime_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_is_anime_content", "to": "breadarrd_src_transcode_mod_is_anime_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_find_backlog_candidates", "to": "breadarrd_src_transcode_mod_backlogcandidate", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_find_backlog_candidates_excludes_skipped_jobs", "to": "breadarrd_src_transcode_mod_find_backlog_candidates", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_find_oversized_av1_candidates", "to": "breadarrd_src_transcode_mod_backlogcandidate", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_claim_pending_jobs", "to": "breadarrd_src_transcode_mod_claimedjob", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_finalize_job", "to": "breadarrd_src_transcode_mod_claimedjob", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_claim_pending_jobs", "to": "mutex", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_claim_pending_jobs_claims_nothing_when_already_at_the_cap", "to": "breadarrd_src_transcode_mod_claim_pending_jobs", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_claim_pending_jobs_enforces_live_action_and_anime_caps_independently", "to": "breadarrd_src_transcode_mod_claim_pending_jobs", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_claim_pending_jobs_respects_already_running_jobs_as_a_global_cap", "to": "breadarrd_src_transcode_mod_claim_pending_jobs", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_pipeline_cycle", "to": "breadarrd_src_transcode_mod_claim_pending_jobs", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod", "to": "mutex", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod_appstate", "to": "mutex", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_finalize_job", "to": "mutex", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_cycle", "to": "mutex", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_pipeline_cycle", "to": "mutex", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_finalize_job", "to": "breadarrd_src_transcode_mod_finalizedjob", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_pipeline_cycle", "to": "breadarrd_src_transcode_mod_finalize_job", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_finalizedjob", "to": "breadarrd_src_transcode_mod_transcodeoutcome", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_cycle", "to": "breadarrd_src_transcode_mod_transcodecyclestats", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_pipeline_cycle", "to": "breadarrd_src_transcode_mod_transcodecyclestats", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_transcodecyclestats", "to": "breadarrd_src_transcode_mod_transcodecyclestats_merge", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_cycle", "to": "breadarrd_src_transcode_mod_transcodecyclestats_merge", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_transcodecyclestats_merge", "to": "breadarrd_src_transcode_mod_rs_self", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_effective_parallelism", "to": "breadarrd_src_transcode_mod_live_action_parallelism_for", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_effective_parallelism", "to": "breadarrd_src_transcode_mod_rs_jellyfinclient", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_pipeline_cycle", "to": "breadarrd_src_transcode_mod_effective_parallelism", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_cycle", "to": "breadarrd_src_transcode_mod_rs_jellyfinclient", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_pipeline_cycle", "to": "breadarrd_src_transcode_mod_rs_jellyfinclient", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_cycle_attributes_each_result_to_the_correct_job_even_out_of_claim_order", "to": "breadarrd_src_transcode_mod_run_cycle", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_encode_and_verify_anime_pipeline_shrinks_a_bloated_source", "to": "breadarrd_src_transcode_mod_cfg", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_encode_and_verify_force_reencode_bypasses_the_already_av1_short_circuit", "to": "breadarrd_src_transcode_mod_cfg", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_encode_and_verify_handles_a_source_with_a_mov_text_subtitle", "to": "breadarrd_src_transcode_mod_cfg", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_encode_and_verify_handles_a_source_with_attached_cover_art", "to": "breadarrd_src_transcode_mod_cfg", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_encode_and_verify_skips_a_file_that_is_already_av1", "to": "breadarrd_src_transcode_mod_cfg", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_encode_and_verify_skips_pre_emptively_when_source_is_already_efficient", "to": "breadarrd_src_transcode_mod_cfg", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_find_backlog_candidates_excludes_skipped_jobs", "to": "breadarrd_src_transcode_mod_cfg", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_is_anime_path_matches_configured_root_folders", "to": "breadarrd_src_transcode_mod_cfg", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_cycle_attributes_each_result_to_the_correct_job_even_out_of_claim_order", "to": "breadarrd_src_transcode_mod_cfg", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_should_enqueue_rejects_missing_codec_or_height", "to": "breadarrd_src_transcode_mod_cfg", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_target_bitrate_matches_reference_at_reference_resolution", "to": "breadarrd_src_transcode_mod_cfg", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_target_bitrate_scales_down_for_720p", "to": "breadarrd_src_transcode_mod_cfg", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_target_bitrate_scales_up_for_1440p", "to": "breadarrd_src_transcode_mod_cfg", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_claim_pending_jobs_claims_nothing_when_already_at_the_cap", "to": "breadarrd_src_transcode_mod_seed_file", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_claim_pending_jobs_enforces_live_action_and_anime_caps_independently", "to": "breadarrd_src_transcode_mod_seed_file", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_claim_pending_jobs_respects_already_running_jobs_as_a_global_cap", "to": "breadarrd_src_transcode_mod_seed_file", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_find_backlog_candidates_excludes_skipped_jobs", "to": "breadarrd_src_transcode_mod_seed_file", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_encode_and_verify_skips_a_file_that_is_already_av1", "to": "breadarrd_src_transcode_mod_generate_test_clip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_encode_and_verify_skips_pre_emptively_when_source_is_already_efficient", "to": "breadarrd_src_transcode_mod_generate_test_clip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_cycle_attributes_each_result_to_the_correct_job_even_out_of_claim_order", "to": "breadarrd_src_transcode_mod_generate_test_clip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_encode_and_verify_anime_pipeline_shrinks_a_bloated_source", "to": "breadarrd_src_transcode_mod_generate_lossless_test_clip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_run_cycle_attributes_each_result_to_the_correct_job_even_out_of_claim_order", "to": "breadarrd_src_transcode_mod_generate_lossless_test_clip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_encode_and_verify_handles_a_source_with_attached_cover_art", "to": "breadarrd_src_transcode_mod_generate_clip_with_attached_pic", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_transcode_mod_encode_and_verify_handles_a_source_with_a_mov_text_subtitle", "to": "breadarrd_src_transcode_mod_generate_clip_with_mov_text_subtitle", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod", "to": "breadarrd_src_api_mod_appstate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod", "to": "breadarrd_src_api_mod_backgroundrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod", "to": "breadarrd_src_api_mod_constant_time_eq", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod", "to": "breadarrd_src_api_mod_constant_time_eq_matches_identical_strings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod", "to": "breadarrd_src_api_mod_constant_time_eq_rejects_different_lengths", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod", "to": "breadarrd_src_api_mod_constant_time_eq_rejects_different_strings_of_the_same_length", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod", "to": "breadarrd_src_api_mod_constant_time_eq_treats_empty_strings_as_equal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod", "to": "breadarrd_src_api_mod_cyclerecord", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod", "to": "breadarrd_src_api_mod_cyclestatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod", "to": "breadarrd_src_api_mod_require_api_token", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod", "to": "breadarrd_src_api_mod_router", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod", "to": "breadarrd_src_api_mod_rs_connection", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod", "to": "breadarrd_src_api_mod_rs_qbitclient", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod", "to": "breadarrd_src_scheduler_searchcyclestats", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod", "to": "response", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod", "to": "statuscode", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod", "to": "tmdbclient", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod", "to": "tvdbclient", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod_appstate", "to": "breadarrd_src_api_mod_backgroundrequest", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod_appstate", "to": "breadarrd_src_api_mod_cyclestatus", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod_appstate", "to": "breadarrd_src_api_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod_appstate", "to": "breadarrd_src_api_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod_appstate", "to": "breadarrd_src_api_mod_rs_qbitclient", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod_appstate", "to": "breadarrd_src_api_mod_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod_appstate", "to": "sender", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod_appstate", "to": "tmdbclient", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod_appstate", "to": "tvdbclient", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod_require_api_token", "to": "breadarrd_src_api_mod_appstate", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod_router", "to": "breadarrd_src_api_mod_appstate", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review", "to": "breadarrd_src_api_mod_appstate", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review_approve", "to": "breadarrd_src_api_mod_appstate", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review_list", "to": "breadarrd_src_api_mod_appstate", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review_reject", "to": "breadarrd_src_api_mod_appstate", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod_backgroundrequest", "to": "breadarrd_src_api_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod_cyclestatus", "to": "breadarrd_src_api_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod_backgroundrequest", "to": "breadarrd_src_api_mod_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod_cyclerecord", "to": "breadarrd_src_api_mod_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod_backgroundrequest", "to": "sender", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod_backgroundrequest", "to": "breadarrd_src_api_mod_rs_releasecandidate", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod_backgroundrequest", "to": "breadarrd_src_api_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod_backgroundrequest", "to": "breadarrd_src_api_mod_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod_backgroundrequest", "to": "breadarrd_src_scheduler_searchcyclestats", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod_cyclestatus", "to": "breadarrd_src_api_mod_cyclerecord", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod_cyclerecord", "to": "datetime", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod_cyclerecord", "to": "utc", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod_require_api_token", "to": "breadarrd_src_api_mod_constant_time_eq", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod_require_api_token", "to": "breadarrd_src_api_mod_rs_state", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod_require_api_token", "to": "next", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod_require_api_token", "to": "request", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_mod_require_api_token", "to": "response", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review", "to": "breadarrd_src_api_routes_review_approve", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review", "to": "breadarrd_src_api_routes_review_internal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review", "to": "breadarrd_src_api_routes_review_list", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review", "to": "breadarrd_src_api_routes_review_reject", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review", "to": "breadarrd_src_scheduler", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review", "to": "json", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review", "to": "reviewqueueentry", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review", "to": "statuscode", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review_list", "to": "breadarrd_src_api_routes_review_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review_list", "to": "breadarrd_src_api_routes_review_rs_state", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review_list", "to": "breadarrd_src_api_routes_review_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review_list", "to": "breadarrd_src_api_routes_review_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review_list", "to": "json", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review_list", "to": "reviewqueueentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review_list", "to": "statuscode", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review_approve", "to": "breadarrd_src_api_routes_review_rs_state", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review_reject", "to": "breadarrd_src_api_routes_review_rs_state", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review_approve", "to": "breadarrd_src_api_routes_review_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review_reject", "to": "breadarrd_src_api_routes_review_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review_approve", "to": "statuscode", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review_internal", "to": "statuscode", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review_reject", "to": "statuscode", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review_approve", "to": "breadarrd_src_api_routes_review_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review_internal", "to": "breadarrd_src_api_routes_review_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review_reject", "to": "breadarrd_src_api_routes_review_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review_approve", "to": "breadarrd_src_api_routes_review_internal", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review_approve", "to": "breadarrd_src_api_routes_review_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review_reject", "to": "breadarrd_src_api_routes_review_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_api_routes_review_internal", "to": "e", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod", "to": "breadarrd_src_matcher_mod_download", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod", "to": "breadarrd_src_matcher_mod_empty_input_has_zero_overlap", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod", "to": "breadarrd_src_matcher_mod_ensure_model", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod", "to": "breadarrd_src_matcher_mod_identical_titles_fully_overlap", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod", "to": "breadarrd_src_matcher_mod_matchcandidate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod", "to": "breadarrd_src_matcher_mod_matchoutcome", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod", "to": "breadarrd_src_matcher_mod_queue_for_review", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod", "to": "breadarrd_src_matcher_mod_rs_path", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod", "to": "breadarrd_src_matcher_mod_shared_particle_alone_is_not_real_overlap", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod", "to": "breadarrd_src_matcher_mod_short_alias_contained_in_longer_title_fully_overlaps", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod", "to": "breadarrd_src_matcher_mod_titlematcher", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod", "to": "breadarrd_src_matcher_mod_token_overlap_ratio", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod", "to": "breadarrd_src_matcher_mod_unrelated_titles_have_no_overlap", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod", "to": "hashmap", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_ensure_model", "to": "breadarrd_src_matcher_mod_download", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_ensure_model", "to": "breadarrd_src_matcher_mod_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_ensure_model", "to": "breadarrd_src_matcher_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_ensure_model", "to": "pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_titlematcher_load", "to": "breadarrd_src_matcher_mod_rs_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_download", "to": "breadarrd_src_matcher_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_queue_for_review", "to": "breadarrd_src_matcher_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_titlematcher_best_match_index", "to": "breadarrd_src_matcher_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_titlematcher_embed_cached", "to": "breadarrd_src_matcher_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_titlematcher_embed_query", "to": "breadarrd_src_matcher_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_titlematcher_load", "to": "breadarrd_src_matcher_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_titlematcher_match_title", "to": "breadarrd_src_matcher_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_download", "to": "pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_matchcandidate", "to": "breadarrd_src_matcher_mod_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_matchoutcome", "to": "breadarrd_src_matcher_mod_matchcandidate", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_queue_for_review", "to": "breadarrd_src_matcher_mod_matchcandidate", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_titlematcher", "to": "breadarrd_src_matcher_mod_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_titlematcher_best_match_index", "to": "breadarrd_src_matcher_mod_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_titlematcher_match_title", "to": "breadarrd_src_matcher_mod_matchoutcome", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_titlematcher", "to": "breadarrd_src_matcher_mod_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_titlematcher", "to": "breadarrd_src_matcher_mod_titlematcher_best_match_index", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_titlematcher", "to": "breadarrd_src_matcher_mod_titlematcher_embed_cached", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_titlematcher", "to": "breadarrd_src_matcher_mod_titlematcher_embed_query", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_titlematcher", "to": "breadarrd_src_matcher_mod_titlematcher_load", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_titlematcher", "to": "breadarrd_src_matcher_mod_titlematcher_match_title", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_titlematcher", "to": "hashmap", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_titlematcher", "to": "ortembedder", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_execute_search_targets", "to": "breadarrd_src_matcher_mod_titlematcher", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_process_item", "to": "breadarrd_src_matcher_mod_titlematcher", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_run_grab_cycle", "to": "breadarrd_src_matcher_mod_titlematcher", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_run_search_cycle", "to": "breadarrd_src_matcher_mod_titlematcher", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_run_upgrade_cycle", "to": "breadarrd_src_matcher_mod_titlematcher", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_titlematcher_embed_cached", "to": "breadarrd_src_matcher_mod_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_titlematcher_embed_query", "to": "breadarrd_src_matcher_mod_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_titlematcher_load", "to": "breadarrd_src_matcher_mod_rs_self", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_titlematcher_best_match_index", "to": "breadarrd_src_matcher_mod_titlematcher_embed_cached", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_titlematcher_match_title", "to": "breadarrd_src_matcher_mod_titlematcher_embed_cached", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_titlematcher_best_match_index", "to": "breadarrd_src_matcher_mod_titlematcher_embed_query", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_titlematcher_match_title", "to": "breadarrd_src_matcher_mod_titlematcher_embed_query", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_titlematcher_best_match_index", "to": "breadarrd_src_matcher_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_queue_for_review", "to": "breadarrd_src_matcher_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_titlematcher_match_title", "to": "breadarrd_src_matcher_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_titlematcher_match_title", "to": "breadarrd_src_matcher_mod_token_overlap_ratio", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_queue_for_review", "to": "breadarrd_src_matcher_mod_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_short_alias_contained_in_longer_title_fully_overlaps", "to": "breadarrd_src_matcher_mod_token_overlap_ratio", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_matcher_mod_unrelated_titles_have_no_overlap", "to": "breadarrd_src_matcher_mod_token_overlap_ratio", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod", "to": "breadarrd_src_parser_mod_a_genuine_season_only_pack_with_no_dash_episode_still_has_no_episode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod", "to": "breadarrd_src_parser_mod_brackets_still_take_priority_over_a_coincidental_bare_year", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod", "to": "breadarrd_src_parser_mod_codec", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod", "to": "breadarrd_src_parser_mod_does_not_mistake_a_year_titled_movie_for_a_bare_year", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod", "to": "breadarrd_src_parser_mod_does_not_mistake_a_yyyy_mm_dd_date_for_an_episode_range", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod", "to": "breadarrd_src_parser_mod_does_not_panic_on_real_corpus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod", "to": "breadarrd_src_parser_mod_does_not_panic_on_unparsable_manga_release", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod", "to": "breadarrd_src_parser_mod_extracts_a_bare_year_from_a_scene_style_movie_name", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod", "to": "breadarrd_src_parser_mod_parse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod", "to": "breadarrd_src_parser_mod_parsedrelease", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod", "to": "breadarrd_src_parser_mod_parses_a_season_marker_followed_by_a_dash_episode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod", "to": "breadarrd_src_parser_mod_parses_erai_raws_bracket_quality_block", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod", "to": "breadarrd_src_parser_mod_parses_lolihouse_webrip_hevc_10bit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod", "to": "breadarrd_src_parser_mod_parses_season_pack_no_episode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod", "to": "breadarrd_src_parser_mod_parses_season_pack_shapes_without_literal_parens", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod", "to": "breadarrd_src_parser_mod_parses_standard_sxxexx_with_group_and_quality_chain", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod", "to": "breadarrd_src_parser_mod_parses_subsplease_dash_episode_with_group_and_hash", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod", "to": "breadarrd_src_parser_mod_parses_sxxexx_with_a_trailing_fansub_revision_tag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod", "to": "breadarrd_src_parser_mod_parses_yameii_dash_sxxexx_with_english_dub_tag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod", "to": "breadarrd_src_parser_mod_parses_year_and_bare_episode_number", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod", "to": "breadarrd_src_parser_mod_refuses_to_resolve_a_bracketed_batch_range_to_one_episode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod", "to": "breadarrd_src_parser_mod_refuses_to_resolve_a_dash_prefixed_batch_range_to_one_episode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod", "to": "breadarrd_src_parser_mod_refuses_to_resolve_an_sxxexx_range_to_one_episode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod", "to": "breadarrd_src_parser_mod_single_episode_dash_titles_are_unaffected_by_range_detection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod", "to": "breadarrd_src_parser_mod_source", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod_parsedrelease", "to": "breadarrd_src_parser_mod_source", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens_extract_source", "to": "breadarrd_src_parser_mod_source", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod_parsedrelease", "to": "breadarrd_src_parser_mod_codec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens_extract_codec", "to": "breadarrd_src_parser_mod_codec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod_parse", "to": "breadarrd_src_parser_mod_parsedrelease", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod_parsedrelease", "to": "breadarrd_src_parser_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod_parsedrelease", "to": "breadarrd_src_parser_mod_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_looks_like_episode", "to": "breadarrd_src_parser_mod_parsedrelease", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_looks_like_season_pack", "to": "breadarrd_src_parser_mod_parsedrelease", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_resolve_episode", "to": "breadarrd_src_parser_mod_parsedrelease", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod_a_genuine_season_only_pack_with_no_dash_episode_still_has_no_episode", "to": "breadarrd_src_parser_mod_parse", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod_brackets_still_take_priority_over_a_coincidental_bare_year", "to": "breadarrd_src_parser_mod_parse", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod_does_not_mistake_a_year_titled_movie_for_a_bare_year", "to": "breadarrd_src_parser_mod_parse", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod_does_not_mistake_a_yyyy_mm_dd_date_for_an_episode_range", "to": "breadarrd_src_parser_mod_parse", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod_does_not_panic_on_real_corpus", "to": "breadarrd_src_parser_mod_parse", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod_does_not_panic_on_unparsable_manga_release", "to": "breadarrd_src_parser_mod_parse", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod_extracts_a_bare_year_from_a_scene_style_movie_name", "to": "breadarrd_src_parser_mod_parse", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod_parses_a_season_marker_followed_by_a_dash_episode", "to": "breadarrd_src_parser_mod_parse", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod_parses_erai_raws_bracket_quality_block", "to": "breadarrd_src_parser_mod_parse", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod_parses_lolihouse_webrip_hevc_10bit", "to": "breadarrd_src_parser_mod_parse", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod_parses_season_pack_no_episode", "to": "breadarrd_src_parser_mod_parse", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod_parses_standard_sxxexx_with_group_and_quality_chain", "to": "breadarrd_src_parser_mod_parse", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod_parses_subsplease_dash_episode_with_group_and_hash", "to": "breadarrd_src_parser_mod_parse", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod_parses_sxxexx_with_a_trailing_fansub_revision_tag", "to": "breadarrd_src_parser_mod_parse", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod_parses_yameii_dash_sxxexx_with_english_dub_tag", "to": "breadarrd_src_parser_mod_parse", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod_parses_year_and_bare_episode_number", "to": "breadarrd_src_parser_mod_parse", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod_refuses_to_resolve_a_bracketed_batch_range_to_one_episode", "to": "breadarrd_src_parser_mod_parse", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod_refuses_to_resolve_a_dash_prefixed_batch_range_to_one_episode", "to": "breadarrd_src_parser_mod_parse", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod_refuses_to_resolve_an_sxxexx_range_to_one_episode", "to": "breadarrd_src_parser_mod_parse", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_mod_single_episode_dash_titles_are_unaffected_by_range_detection", "to": "breadarrd_src_parser_mod_parse", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens", "to": "breadarrd_src_parser_tokens_derive_title", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens", "to": "breadarrd_src_parser_tokens_extract_bit_depth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens", "to": "breadarrd_src_parser_tokens_extract_codec", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens", "to": "breadarrd_src_parser_tokens_extract_container", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens", "to": "breadarrd_src_parser_tokens_extract_episode_info", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens", "to": "breadarrd_src_parser_tokens_extract_group", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens", "to": "breadarrd_src_parser_tokens_extract_resolution", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens", "to": "breadarrd_src_parser_tokens_extract_source", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens", "to": "breadarrd_src_parser_tokens_extract_year", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens", "to": "breadarrd_src_parser_tokens_find_real_dash_episode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens", "to": "breadarrd_src_parser_tokens_first_quality_marker", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens", "to": "breadarrd_src_parser_tokens_looks_like_episode_range", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens", "to": "breadarrd_src_parser_tokens_overlaps_a_date", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens_find_real_dash_episode", "to": "breadarrd_src_parser_tokens_overlaps_a_date", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens_looks_like_episode_range", "to": "breadarrd_src_parser_tokens_overlaps_a_date", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens_extract_episode_info", "to": "breadarrd_src_parser_tokens_looks_like_episode_range", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens_extract_group", "to": "breadarrd_src_parser_tokens_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens_extract_group", "to": "breadarrd_src_parser_tokens_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens_extract_bit_depth", "to": "breadarrd_src_parser_tokens_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens_extract_codec", "to": "breadarrd_src_parser_tokens_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens_extract_container", "to": "breadarrd_src_parser_tokens_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens_extract_episode_info", "to": "breadarrd_src_parser_tokens_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens_extract_resolution", "to": "breadarrd_src_parser_tokens_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens_extract_source", "to": "breadarrd_src_parser_tokens_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens_extract_year", "to": "breadarrd_src_parser_tokens_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens_find_real_dash_episode", "to": "breadarrd_src_parser_tokens_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens_first_quality_marker", "to": "breadarrd_src_parser_tokens_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens_derive_title", "to": "breadarrd_src_parser_tokens_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens_extract_container", "to": "breadarrd_src_parser_tokens_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens_extract_episode_info", "to": "breadarrd_src_parser_tokens_find_real_dash_episode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens_find_real_dash_episode", "to": "captures", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_parser_tokens_extract_episode_info", "to": "breadarrd_src_parser_tokens_first_quality_marker", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_a_second_prepare_call_on_an_already_claimed_review_sees_not_pending", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_approvalprep", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_best_existing_movie_score", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_best_existing_score", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_best_existing_season_pack_score", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_build_movie_query", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_build_movie_query_appends_year_when_known", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_build_tv_query", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_build_tv_query_formats_season_episode_for_x1337", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_build_tv_query_is_title_only_for_tpb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_cadence_stays_backed_off_at_a_high_search_count_instead_of_overflowing", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_count_monitored_missing_episodes_in_season", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_count_monitored_missing_episodes_in_season_counts_correctly", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_does_not_find_an_unmonitored_or_already_have_episode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_enumerate_search_targets", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_enumerate_search_targets_excludes_owned_movies_includes_missing", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_enumerate_search_targets_excludes_unaired_inflight_and_anime", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_enumerate_search_targets_for_media_item", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_enumerate_search_targets_for_media_item_routes_anime_movie_via_tmdb_table", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_enumerate_search_targets_prioritizes_never_searched_first", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_enumerate_search_targets_respects_budget", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_enumerate_search_targets_routes_anime_movies_to_nyaa_search", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_enumerate_upgrade_targets", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_enumerate_upgrade_targets_excludes_an_upgrade_locked_episode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_enumerate_upgrade_targets_prioritizes_a_probe_flagged_episode_over_a_clean_one", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_enumerate_upgrade_targets_returns_both_when_budget_allows", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_execute_search_targets", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_fetch_candidates", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_finalize_review_approval", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_find_episode_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_find_episode_id_ignores_monitored_and_has_file_state", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_find_media_item_id_by_title", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_find_monitored_episode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_find_monitored_episode_ignores_has_file_but_still_requires_monitored", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_find_monitored_missing_episode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_finds_a_monitored_missing_episode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_get_media_item", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_get_review_row", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_grab_and_capture_hash", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_grab_candidate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_grab_prepared_approval", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_grabcyclestats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_infer_has_english_audio", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_infers_english_audio_present_by_default", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_infers_no_english_audio_for_vostfr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_insert_pending_review", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_is_anime", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_is_seen", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_load_quality_profile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_load_quality_profile_applies_a_stored_override", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_load_quality_profile_uses_defaults_for_the_seeded_empty_weights_row", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_looks_like_episode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_looks_like_episode_detects_any_episode_marker", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_looks_like_non_video_format", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_looks_like_non_video_format_catches_common_ebook_and_comic_markers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_looks_like_season_pack", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_looks_like_season_pack_detects_batch_releases", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_looks_like_season_pack_is_false_for_a_single_episode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_mark_seen", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_mediaitemrow", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_movie_does_not_need_grab_once_it_has_a_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_movie_does_not_need_grab_when_unmonitored", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_movie_does_not_need_grab_while_a_release_is_in_flight", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_movie_eligible_for_upgrade", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_movie_eligible_for_upgrade_is_false_once_upgrade_locked", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_movie_eligible_for_upgrade_is_false_when_unmonitored", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_movie_eligible_for_upgrade_is_false_while_a_release_is_in_flight", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_movie_eligible_for_upgrade_is_true_once_it_already_has_a_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_movie_needs_grab", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_movie_needs_grab_when_monitored_and_missing", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_movie_year_mismatch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_movie_year_mismatch_rejects_far_apart_years_only", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_passes_relevance_filter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_prepare_review_approval", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_preparedapproval", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_prepares_a_movie_review_approval_with_no_episode_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_process_item", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_processoutcome", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_record_grab", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_record_grab_still_logs_to_torrent_fetch_when_hash_capture_failed", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_record_grab_writes_both_a_release_row_and_a_torrent_fetch_audit_row", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_record_search_attempt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_record_search_attempt_is_due_again_only_after_cadence_elapses", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_record_search_attempt_upserts_rather_than_duplicating", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_record_target_attempt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_record_upgrade_attempt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_reject_review", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_rejects_a_movie_review_whose_title_looks_like_an_episode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_rejects_a_movie_review_with_a_mismatched_year", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_release_review_claim", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_release_review_claim_reverts_a_claimed_row_back_to_pending", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_release_sort_key", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_release_sort_key_falls_back_to_seeders_within_the_same_group", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_release_sort_key_prefers_a_season_pack_over_a_higher_seeded_episode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_relevance_filter_accepts_a_genuine_match", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_relevance_filter_lets_everything_through_for_titles_with_no_significant_words", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_relevance_filter_rejects_titles_missing_a_significant_word", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_resolve_episode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_resolves_absolute_episode_via_anime_map", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_resolves_direct_season_episode_without_anime_map", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_reviewqueuerow", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_rs_qbitclient", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_rs_result", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_run_grab_cycle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_run_search_cycle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_run_upgrade_cycle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_sanitize_query_text", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_sanitize_query_text_strips_punctuation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_search_enumeration_conn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_searchcyclestats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_searchroute", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_searchtarget", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_seeded_conn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_seeded_movie_conn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_seeded_upgrade_conn_with_one_flagged_episode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_should_grab", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_should_grab_repack_even_below_the_minimum_gain_threshold", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_should_grab_repack_even_if_not_higher_scored", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_should_grab_when_nothing_exists_yet", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_should_grab_when_strictly_better_score", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_should_not_grab_when_score_gain_is_below_the_minimum_threshold", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_should_not_grab_when_worse_or_equal_score", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_significant_words", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_significant_words_drops_short_and_punctuation_only_tokens", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler", "to": "breadarrd_src_scheduler_source_route_name", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_process_item", "to": "breadarrd_src_scheduler_processoutcome", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_processoutcome", "to": "breadarrd_src_scheduler_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_processoutcome", "to": "rejectreason", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_best_existing_movie_score", "to": "breadarrd_src_scheduler_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_best_existing_score", "to": "breadarrd_src_scheduler_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_best_existing_season_pack_score", "to": "breadarrd_src_scheduler_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_build_movie_query", "to": "breadarrd_src_scheduler_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_fetch_candidates", "to": "breadarrd_src_scheduler_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_finalize_review_approval", "to": "breadarrd_src_scheduler_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_find_episode_id", "to": "breadarrd_src_scheduler_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_find_media_item_id_by_title", "to": "breadarrd_src_scheduler_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_find_monitored_episode", "to": "breadarrd_src_scheduler_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_find_monitored_missing_episode", "to": "breadarrd_src_scheduler_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_grab_and_capture_hash", "to": "breadarrd_src_scheduler_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_grab_candidate", "to": "breadarrd_src_scheduler_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_grab_prepared_approval", "to": "breadarrd_src_scheduler_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_mediaitemrow", "to": "breadarrd_src_scheduler_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_movie_year_mismatch", "to": "breadarrd_src_scheduler_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_preparedapproval", "to": "breadarrd_src_scheduler_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_process_item", "to": "breadarrd_src_scheduler_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_record_grab", "to": "breadarrd_src_scheduler_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_record_search_attempt", "to": "breadarrd_src_scheduler_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_record_upgrade_attempt", "to": "breadarrd_src_scheduler_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_resolve_episode", "to": "breadarrd_src_scheduler_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_reviewqueuerow", "to": "breadarrd_src_scheduler_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_searchtarget", "to": "breadarrd_src_scheduler_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_should_grab", "to": "breadarrd_src_scheduler_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_get_media_item", "to": "breadarrd_src_scheduler_mediaitemrow", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_mediaitemrow", "to": "breadarrd_src_scheduler_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_build_movie_query", "to": "breadarrd_src_scheduler_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_build_tv_query", "to": "breadarrd_src_scheduler_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_grab_and_capture_hash", "to": "breadarrd_src_scheduler_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_grab_prepared_approval", "to": "breadarrd_src_scheduler_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_passes_relevance_filter", "to": "breadarrd_src_scheduler_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_preparedapproval", "to": "breadarrd_src_scheduler_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_reviewqueuerow", "to": "breadarrd_src_scheduler_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_sanitize_query_text", "to": "breadarrd_src_scheduler_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_searchtarget", "to": "breadarrd_src_scheduler_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_significant_words", "to": "breadarrd_src_scheduler_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_fetch_candidates", "to": "breadarrd_src_scheduler_get_media_item", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_get_media_item", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_get_media_item", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_grab_candidate", "to": "breadarrd_src_scheduler_get_media_item", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_prepare_review_approval", "to": "breadarrd_src_scheduler_get_media_item", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_process_item", "to": "breadarrd_src_scheduler_get_media_item", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_best_existing_movie_score", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_best_existing_score", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_best_existing_season_pack_score", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_count_monitored_missing_episodes_in_season", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_search_targets", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_search_targets_for_media_item", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_upgrade_targets", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_execute_search_targets", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_fetch_candidates", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_finalize_review_approval", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_find_episode_id", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_find_media_item_id_by_title", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_find_monitored_episode", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_find_monitored_missing_episode", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_get_review_row", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_grab_candidate", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_insert_pending_review", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_is_anime", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_is_seen", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_load_quality_profile", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_mark_seen", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_movie_eligible_for_upgrade", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_movie_needs_grab", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_prepare_review_approval", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_process_item", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_record_grab", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_record_search_attempt", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_record_target_attempt", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_record_upgrade_attempt", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_reject_review", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_release_review_claim", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_resolve_episode", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_run_grab_cycle", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_run_search_cycle", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_run_upgrade_cycle", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_search_enumeration_conn", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_seeded_conn", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_seeded_movie_conn", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_seeded_upgrade_conn_with_one_flagged_episode", "to": "breadarrd_src_scheduler_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_best_existing_movie_score", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_best_existing_score", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_best_existing_season_pack_score", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_count_monitored_missing_episodes_in_season", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_search_targets", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_search_targets_for_media_item", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_upgrade_targets", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_execute_search_targets", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_fetch_candidates", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_finalize_review_approval", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_find_episode_id", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_find_media_item_id_by_title", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_find_monitored_episode", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_find_monitored_missing_episode", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_get_review_row", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_grab_and_capture_hash", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_grab_candidate", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_grab_prepared_approval", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_is_anime", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_is_seen", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_load_quality_profile", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_mark_seen", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_movie_eligible_for_upgrade", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_movie_needs_grab", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_prepare_review_approval", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_process_item", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_record_grab", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_record_search_attempt", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_record_target_attempt", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_record_upgrade_attempt", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_reject_review", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_release_review_claim", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_resolve_episode", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_run_grab_cycle", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_run_search_cycle", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_run_upgrade_cycle", "to": "breadarrd_src_scheduler_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_fetch_candidates", "to": "breadarrd_src_scheduler_load_quality_profile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_grab_candidate", "to": "breadarrd_src_scheduler_load_quality_profile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_load_quality_profile", "to": "profilekind", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_load_quality_profile", "to": "qualityprofile", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_load_quality_profile_applies_a_stored_override", "to": "breadarrd_src_scheduler_load_quality_profile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_load_quality_profile_uses_defaults_for_the_seeded_empty_weights_row", "to": "breadarrd_src_scheduler_load_quality_profile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_prepare_review_approval", "to": "breadarrd_src_scheduler_load_quality_profile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_process_item", "to": "breadarrd_src_scheduler_load_quality_profile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_prepare_review_approval", "to": "breadarrd_src_scheduler_looks_like_episode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_process_item", "to": "breadarrd_src_scheduler_looks_like_episode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_fetch_candidates", "to": "breadarrd_src_scheduler_looks_like_season_pack", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_grab_candidate", "to": "breadarrd_src_scheduler_looks_like_season_pack", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_prepare_review_approval", "to": "breadarrd_src_scheduler_looks_like_season_pack", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_process_item", "to": "breadarrd_src_scheduler_looks_like_season_pack", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_release_sort_key", "to": "breadarrd_src_scheduler_looks_like_season_pack", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_release_sort_key", "to": "breadarrd_src_sources_mod_rawreleaseitem", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_release_sort_key", "to": "reverse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_fetch_candidates", "to": "reverse", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_process_item", "to": "breadarrd_src_scheduler_looks_like_non_video_format", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_prepare_review_approval", "to": "breadarrd_src_scheduler_movie_year_mismatch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_process_item", "to": "breadarrd_src_scheduler_movie_year_mismatch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_prepare_review_approval", "to": "breadarrd_src_scheduler_movie_needs_grab", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_process_item", "to": "breadarrd_src_scheduler_movie_needs_grab", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_process_item", "to": "breadarrd_src_scheduler_movie_eligible_for_upgrade", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_fetch_candidates", "to": "breadarrd_src_scheduler_is_anime", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_process_item", "to": "breadarrd_src_scheduler_is_anime", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_prepare_review_approval", "to": "breadarrd_src_scheduler_resolve_episode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_process_item", "to": "breadarrd_src_scheduler_resolve_episode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_finds_a_monitored_missing_episode", "to": "breadarrd_src_scheduler_find_monitored_missing_episode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_prepare_review_approval", "to": "breadarrd_src_scheduler_find_monitored_missing_episode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_process_item", "to": "breadarrd_src_scheduler_find_monitored_missing_episode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_process_item", "to": "breadarrd_src_scheduler_find_monitored_episode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_prepare_review_approval", "to": "breadarrd_src_scheduler_count_monitored_missing_episodes_in_season", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_process_item", "to": "breadarrd_src_scheduler_count_monitored_missing_episodes_in_season", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_fetch_candidates", "to": "breadarrd_src_scheduler_infer_has_english_audio", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_process_item", "to": "breadarrd_src_scheduler_infer_has_english_audio", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_process_item", "to": "breadarrd_src_scheduler_best_existing_score", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_process_item", "to": "breadarrd_src_scheduler_best_existing_movie_score", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_process_item", "to": "breadarrd_src_scheduler_best_existing_season_pack_score", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_process_item", "to": "breadarrd_src_scheduler_should_grab", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_finalize_review_approval", "to": "breadarrd_src_scheduler_record_grab", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_grab_candidate", "to": "breadarrd_src_scheduler_record_grab", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_process_item", "to": "breadarrd_src_scheduler_record_grab", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_record_grab_still_logs_to_torrent_fetch_when_hash_capture_failed", "to": "breadarrd_src_scheduler_record_grab", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_record_grab_writes_both_a_release_row_and_a_torrent_fetch_audit_row", "to": "breadarrd_src_scheduler_record_grab", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_execute_search_targets", "to": "breadarrd_src_scheduler_is_seen", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_run_grab_cycle", "to": "breadarrd_src_scheduler_is_seen", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_execute_search_targets", "to": "breadarrd_src_scheduler_mark_seen", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_run_grab_cycle", "to": "breadarrd_src_scheduler_mark_seen", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_execute_search_targets", "to": "breadarrd_src_scheduler_process_item", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_process_item", "to": "breadarrd_src_scheduler_grab_and_capture_hash", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_process_item", "to": "breadarrd_src_scheduler_rs_qbitclient", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_process_item", "to": "breadarrd_src_sources_mod_rawreleaseitem", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_run_grab_cycle", "to": "breadarrd_src_scheduler_process_item", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_execute_search_targets", "to": "breadarrd_src_scheduler_rs_qbitclient", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_grab_and_capture_hash", "to": "breadarrd_src_scheduler_rs_qbitclient", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_grab_candidate", "to": "breadarrd_src_scheduler_rs_qbitclient", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_grab_prepared_approval", "to": "breadarrd_src_scheduler_rs_qbitclient", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_run_grab_cycle", "to": "breadarrd_src_scheduler_rs_qbitclient", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_run_search_cycle", "to": "breadarrd_src_scheduler_rs_qbitclient", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_run_upgrade_cycle", "to": "breadarrd_src_scheduler_rs_qbitclient", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_grab_candidate", "to": "breadarrd_src_scheduler_grab_and_capture_hash", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_grab_prepared_approval", "to": "breadarrd_src_scheduler_grab_and_capture_hash", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_run_grab_cycle", "to": "breadarrd_src_scheduler_grabcyclestats", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_run_grab_cycle", "to": "breadarrd_src_sources_mod_releasesource", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_build_tv_query", "to": "breadarrd_src_scheduler_searchroute", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_searchtarget", "to": "breadarrd_src_scheduler_searchroute", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_source_route_name", "to": "breadarrd_src_scheduler_searchroute", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_search_targets", "to": "breadarrd_src_scheduler_searchtarget", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_search_targets_for_media_item", "to": "breadarrd_src_scheduler_searchtarget", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_upgrade_targets", "to": "breadarrd_src_scheduler_searchtarget", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_execute_search_targets", "to": "breadarrd_src_scheduler_searchtarget", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_record_target_attempt", "to": "breadarrd_src_scheduler_searchtarget", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_searchtarget", "to": "breadarrd_src_scheduler_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_search_targets", "to": "breadarrd_src_scheduler_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_search_targets_for_media_item", "to": "breadarrd_src_scheduler_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_upgrade_targets", "to": "breadarrd_src_scheduler_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_fetch_candidates", "to": "breadarrd_src_scheduler_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_significant_words", "to": "breadarrd_src_scheduler_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_search_targets", "to": "breadarrd_src_scheduler_significant_words", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_search_targets_for_media_item", "to": "breadarrd_src_scheduler_significant_words", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_upgrade_targets", "to": "breadarrd_src_scheduler_significant_words", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_relevance_filter_accepts_a_genuine_match", "to": "breadarrd_src_scheduler_significant_words", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_relevance_filter_rejects_titles_missing_a_significant_word", "to": "breadarrd_src_scheduler_significant_words", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_execute_search_targets", "to": "breadarrd_src_scheduler_passes_relevance_filter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_fetch_candidates", "to": "breadarrd_src_scheduler_passes_relevance_filter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_build_movie_query", "to": "breadarrd_src_scheduler_sanitize_query_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_build_tv_query", "to": "breadarrd_src_scheduler_sanitize_query_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_search_targets", "to": "breadarrd_src_scheduler_build_tv_query", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_search_targets_for_media_item", "to": "breadarrd_src_scheduler_build_tv_query", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_upgrade_targets", "to": "breadarrd_src_scheduler_build_tv_query", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_search_targets", "to": "breadarrd_src_scheduler_build_movie_query", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_upgrade_targets", "to": "breadarrd_src_scheduler_build_movie_query", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_cadence_stays_backed_off_at_a_high_search_count_instead_of_overflowing", "to": "breadarrd_src_scheduler_enumerate_search_targets", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_search_targets_excludes_owned_movies_includes_missing", "to": "breadarrd_src_scheduler_enumerate_search_targets", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_search_targets_excludes_unaired_inflight_and_anime", "to": "breadarrd_src_scheduler_enumerate_search_targets", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_search_targets_prioritizes_never_searched_first", "to": "breadarrd_src_scheduler_enumerate_search_targets", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_search_targets_respects_budget", "to": "breadarrd_src_scheduler_enumerate_search_targets", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_search_targets_routes_anime_movies_to_nyaa_search", "to": "breadarrd_src_scheduler_enumerate_search_targets", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_record_search_attempt_is_due_again_only_after_cadence_elapses", "to": "breadarrd_src_scheduler_enumerate_search_targets", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_run_search_cycle", "to": "breadarrd_src_scheduler_enumerate_search_targets", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_upgrade_targets_excludes_an_upgrade_locked_episode", "to": "breadarrd_src_scheduler_enumerate_upgrade_targets", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_upgrade_targets_prioritizes_a_probe_flagged_episode_over_a_clean_one", "to": "breadarrd_src_scheduler_enumerate_upgrade_targets", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_upgrade_targets_returns_both_when_budget_allows", "to": "breadarrd_src_scheduler_enumerate_upgrade_targets", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_run_upgrade_cycle", "to": "breadarrd_src_scheduler_enumerate_upgrade_targets", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_cadence_stays_backed_off_at_a_high_search_count_instead_of_overflowing", "to": "breadarrd_src_scheduler_record_search_attempt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_record_search_attempt_is_due_again_only_after_cadence_elapses", "to": "breadarrd_src_scheduler_record_search_attempt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_record_search_attempt_upserts_rather_than_duplicating", "to": "breadarrd_src_scheduler_record_search_attempt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_record_target_attempt", "to": "breadarrd_src_scheduler_record_search_attempt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_record_target_attempt", "to": "breadarrd_src_scheduler_record_upgrade_attempt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_execute_search_targets", "to": "breadarrd_src_scheduler_record_target_attempt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_execute_search_targets", "to": "breadarrd_src_scheduler_searchcyclestats", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_run_search_cycle", "to": "breadarrd_src_scheduler_searchcyclestats", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_run_upgrade_cycle", "to": "breadarrd_src_scheduler_searchcyclestats", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_run_search_cycle", "to": "breadarrd_src_scheduler_execute_search_targets", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_run_search_cycle", "to": "breadarrd_src_sources_rss_rsssource", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_run_search_cycle", "to": "breadarrd_src_sources_tpb_tpbsource", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_run_search_cycle", "to": "scrapesource", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_execute_search_targets", "to": "scrapesource", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_fetch_candidates", "to": "scrapesource", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_run_upgrade_cycle", "to": "scrapesource", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_run_upgrade_cycle", "to": "breadarrd_src_scheduler_execute_search_targets", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_run_upgrade_cycle", "to": "breadarrd_src_sources_rss_rsssource", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_run_upgrade_cycle", "to": "breadarrd_src_sources_tpb_tpbsource", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_search_targets_for_media_item_routes_anime_movie_via_tmdb_table", "to": "breadarrd_src_scheduler_enumerate_search_targets_for_media_item", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_fetch_candidates", "to": "breadarrd_src_scheduler_enumerate_search_targets_for_media_item", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_execute_search_targets", "to": "breadarrd_src_sources_rss_rsssource", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_execute_search_targets", "to": "breadarrd_src_sources_tpb_tpbsource", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_fetch_candidates", "to": "breadarrd_src_scheduler_source_route_name", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_fetch_candidates", "to": "breadarrd_src_scheduler_rs_releasecandidate", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_fetch_candidates", "to": "breadarrd_src_sources_rss_rsssource", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_fetch_candidates", "to": "breadarrd_src_sources_tpb_tpbsource", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_get_review_row", "to": "breadarrd_src_scheduler_reviewqueuerow", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_prepare_review_approval", "to": "breadarrd_src_scheduler_get_review_row", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_approvalprep", "to": "breadarrd_src_scheduler_preparedapproval", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_finalize_review_approval", "to": "breadarrd_src_scheduler_preparedapproval", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_grab_prepared_approval", "to": "breadarrd_src_scheduler_preparedapproval", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_prepare_review_approval", "to": "breadarrd_src_scheduler_approvalprep", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_prepares_a_movie_review_approval_with_no_episode_id", "to": "breadarrd_src_scheduler_prepare_review_approval", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_release_review_claim_reverts_a_claimed_row_back_to_pending", "to": "breadarrd_src_scheduler_release_review_claim", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_count_monitored_missing_episodes_in_season_counts_correctly", "to": "breadarrd_src_scheduler_seeded_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_does_not_find_an_unmonitored_or_already_have_episode", "to": "breadarrd_src_scheduler_seeded_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_find_episode_id_ignores_monitored_and_has_file_state", "to": "breadarrd_src_scheduler_seeded_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_finds_a_monitored_missing_episode", "to": "breadarrd_src_scheduler_seeded_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_record_grab_still_logs_to_torrent_fetch_when_hash_capture_failed", "to": "breadarrd_src_scheduler_seeded_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_record_grab_writes_both_a_release_row_and_a_torrent_fetch_audit_row", "to": "breadarrd_src_scheduler_seeded_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_resolves_absolute_episode_via_anime_map", "to": "breadarrd_src_scheduler_seeded_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_resolves_direct_season_episode_without_anime_map", "to": "breadarrd_src_scheduler_seeded_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_upgrade_targets_excludes_an_upgrade_locked_episode", "to": "breadarrd_src_scheduler_seeded_upgrade_conn_with_one_flagged_episode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_upgrade_targets_prioritizes_a_probe_flagged_episode_over_a_clean_one", "to": "breadarrd_src_scheduler_seeded_upgrade_conn_with_one_flagged_episode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_upgrade_targets_returns_both_when_budget_allows", "to": "breadarrd_src_scheduler_seeded_upgrade_conn_with_one_flagged_episode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_a_second_prepare_call_on_an_already_claimed_review_sees_not_pending", "to": "breadarrd_src_scheduler_insert_pending_review", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_prepares_a_movie_review_approval_with_no_episode_id", "to": "breadarrd_src_scheduler_insert_pending_review", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_rejects_a_movie_review_whose_title_looks_like_an_episode", "to": "breadarrd_src_scheduler_insert_pending_review", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_rejects_a_movie_review_with_a_mismatched_year", "to": "breadarrd_src_scheduler_insert_pending_review", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_release_review_claim_reverts_a_claimed_row_back_to_pending", "to": "breadarrd_src_scheduler_insert_pending_review", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_a_second_prepare_call_on_an_already_claimed_review_sees_not_pending", "to": "breadarrd_src_scheduler_seeded_movie_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_load_quality_profile_applies_a_stored_override", "to": "breadarrd_src_scheduler_seeded_movie_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_load_quality_profile_uses_defaults_for_the_seeded_empty_weights_row", "to": "breadarrd_src_scheduler_seeded_movie_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_movie_does_not_need_grab_once_it_has_a_file", "to": "breadarrd_src_scheduler_seeded_movie_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_movie_does_not_need_grab_when_unmonitored", "to": "breadarrd_src_scheduler_seeded_movie_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_movie_does_not_need_grab_while_a_release_is_in_flight", "to": "breadarrd_src_scheduler_seeded_movie_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_movie_eligible_for_upgrade_is_false_once_upgrade_locked", "to": "breadarrd_src_scheduler_seeded_movie_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_movie_eligible_for_upgrade_is_false_when_unmonitored", "to": "breadarrd_src_scheduler_seeded_movie_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_movie_eligible_for_upgrade_is_false_while_a_release_is_in_flight", "to": "breadarrd_src_scheduler_seeded_movie_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_movie_eligible_for_upgrade_is_true_once_it_already_has_a_file", "to": "breadarrd_src_scheduler_seeded_movie_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_movie_needs_grab_when_monitored_and_missing", "to": "breadarrd_src_scheduler_seeded_movie_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_prepares_a_movie_review_approval_with_no_episode_id", "to": "breadarrd_src_scheduler_seeded_movie_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_rejects_a_movie_review_whose_title_looks_like_an_episode", "to": "breadarrd_src_scheduler_seeded_movie_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_rejects_a_movie_review_with_a_mismatched_year", "to": "breadarrd_src_scheduler_seeded_movie_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_release_review_claim_reverts_a_claimed_row_back_to_pending", "to": "breadarrd_src_scheduler_seeded_movie_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_cadence_stays_backed_off_at_a_high_search_count_instead_of_overflowing", "to": "breadarrd_src_scheduler_search_enumeration_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_search_targets_excludes_owned_movies_includes_missing", "to": "breadarrd_src_scheduler_search_enumeration_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_search_targets_excludes_unaired_inflight_and_anime", "to": "breadarrd_src_scheduler_search_enumeration_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_search_targets_for_media_item_routes_anime_movie_via_tmdb_table", "to": "breadarrd_src_scheduler_search_enumeration_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_search_targets_prioritizes_never_searched_first", "to": "breadarrd_src_scheduler_search_enumeration_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_search_targets_respects_budget", "to": "breadarrd_src_scheduler_search_enumeration_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_enumerate_search_targets_routes_anime_movies_to_nyaa_search", "to": "breadarrd_src_scheduler_search_enumeration_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_record_search_attempt_is_due_again_only_after_cadence_elapses", "to": "breadarrd_src_scheduler_search_enumeration_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_scheduler_record_search_attempt_upserts_rather_than_duplicating", "to": "breadarrd_src_scheduler_search_enumeration_conn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_mod", "to": "breadarrd_src_sources_mod_parse_human_size", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_mod", "to": "breadarrd_src_sources_mod_parses_a_size_with_no_space_before_the_unit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_mod", "to": "breadarrd_src_sources_mod_parses_gib", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_mod", "to": "breadarrd_src_sources_mod_parses_mib", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_mod", "to": "breadarrd_src_sources_mod_rawreleaseitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_mod", "to": "breadarrd_src_sources_mod_rejects_unknown_unit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_mod", "to": "breadarrd_src_sources_mod_releasesource", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_mod", "to": "breadarrd_src_sources_mod_urlencode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_mod_rawreleaseitem", "to": "breadarrd_src_sources_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_mod_rawreleaseitem", "to": "breadarrd_src_sources_mod_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss_parse_nyaa_rss", "to": "breadarrd_src_sources_mod_rawreleaseitem", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss_rsssource_fetch", "to": "breadarrd_src_sources_mod_rawreleaseitem", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_tpb_tpbsource_fetch", "to": "breadarrd_src_sources_mod_rawreleaseitem", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_mod_urlencode", "to": "breadarrd_src_sources_mod_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_mod_parse_human_size", "to": "breadarrd_src_sources_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss_rsssource", "to": "breadarrd_src_sources_mod_releasesource", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_tpb_tpbsource", "to": "breadarrd_src_sources_mod_releasesource", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_tpb_build_magnet", "to": "breadarrd_src_sources_mod_urlencode", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "breadarrd_src_sources_rss_accumulate_field", "to": "breadarrd_src_sources_mod_parse_human_size", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "breadarrd_src_sources_rss", "to": "breadarrd_src_sources_rss_accumulate_field", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss", "to": "breadarrd_src_sources_rss_build_search_url", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss", "to": "breadarrd_src_sources_rss_build_search_url_appends_query_param", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss", "to": "breadarrd_src_sources_rss_build_search_url_handles_a_feed_url_with_no_existing_query_string", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss", "to": "breadarrd_src_sources_rss_build_search_url_is_unchanged_without_a_query", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss", "to": "breadarrd_src_sources_rss_itemfields", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss", "to": "breadarrd_src_sources_rss_parse_nyaa_rss", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss", "to": "breadarrd_src_sources_rss_parses_cdata_wrapped_fields", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss", "to": "breadarrd_src_sources_rss_parses_live_nyaa_feed", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss", "to": "breadarrd_src_sources_rss_parses_nyaa_item_with_custom_fields", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss", "to": "breadarrd_src_sources_rss_rs_result", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss", "to": "breadarrd_src_sources_rss_rsssource", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss_rsssource", "to": "breadarrd_src_sources_rss_rs_client", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss_rsssource", "to": "breadarrd_src_sources_rss_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss_rsssource", "to": "breadarrd_src_sources_rss_rsssource_fetch", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss_rsssource", "to": "breadarrd_src_sources_rss_rsssource_new", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss_build_search_url", "to": "breadarrd_src_sources_rss_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss_itemfields", "to": "breadarrd_src_sources_rss_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss_rsssource_new", "to": "breadarrd_src_sources_rss_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss_parse_nyaa_rss", "to": "breadarrd_src_sources_rss_rsssource_new", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss_parses_live_nyaa_feed", "to": "breadarrd_src_sources_rss_rsssource_new", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss_rsssource_new", "to": "breadarrd_src_sources_rss_rs_into", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss_rsssource_new", "to": "breadarrd_src_sources_rss_rs_self", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss_parses_live_nyaa_feed", "to": "breadarrd_src_sources_rss_rsssource_fetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss_rsssource_fetch", "to": "breadarrd_src_sources_rss_build_search_url", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss_rsssource_fetch", "to": "breadarrd_src_sources_rss_parse_nyaa_rss", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss_rsssource_fetch", "to": "breadarrd_src_sources_rss_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss_rsssource_fetch", "to": "breadarrd_src_sources_rss_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss_rsssource_fetch", "to": "breadarrd_src_sources_rss_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss_build_search_url", "to": "breadarrd_src_sources_rss_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss_itemfields", "to": "breadarrd_src_sources_rss_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss_parse_nyaa_rss", "to": "breadarrd_src_sources_rss_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss_parse_nyaa_rss", "to": "breadarrd_src_sources_rss_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss_accumulate_field", "to": "breadarrd_src_sources_rss_itemfields", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss_parse_nyaa_rss", "to": "breadarrd_src_sources_rss_accumulate_field", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss_parses_cdata_wrapped_fields", "to": "breadarrd_src_sources_rss_parse_nyaa_rss", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_rss_parses_nyaa_item_with_custom_fields", "to": "breadarrd_src_sources_rss_parse_nyaa_rss", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_tpb", "to": "breadarrd_src_sources_tpb_build_magnet", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_tpb", "to": "breadarrd_src_sources_tpb_build_magnet_includes_hash_name_and_trackers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_tpb", "to": "breadarrd_src_sources_tpb_filters_out_the_no_results_sentinel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_tpb", "to": "breadarrd_src_sources_tpb_is_valid_info_hash", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_tpb", "to": "breadarrd_src_sources_tpb_is_valid_info_hash_accepts_both_real_shapes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_tpb", "to": "breadarrd_src_sources_tpb_is_valid_info_hash_rejects_malformed_values", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_tpb", "to": "breadarrd_src_sources_tpb_parses_a_real_captured_response", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_tpb", "to": "breadarrd_src_sources_tpb_tpbresult", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_tpb", "to": "breadarrd_src_sources_tpb_tpbsource", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_tpb_filters_out_the_no_results_sentinel", "to": "breadarrd_src_sources_tpb_is_valid_info_hash", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_tpb_tpbsource_fetch", "to": "breadarrd_src_sources_tpb_is_valid_info_hash", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_tpb_tpbsource", "to": "breadarrd_src_sources_tpb_rs_client", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_tpb_tpbsource", "to": "breadarrd_src_sources_tpb_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_tpb_tpbsource", "to": "breadarrd_src_sources_tpb_tpbsource_fetch", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_tpb_tpbsource", "to": "breadarrd_src_sources_tpb_tpbsource_new", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_tpb_build_magnet", "to": "breadarrd_src_sources_tpb_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_tpb_tpbresult", "to": "breadarrd_src_sources_tpb_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_tpb_tpbsource_new", "to": "breadarrd_src_sources_tpb_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_tpb_build_magnet_includes_hash_name_and_trackers", "to": "breadarrd_src_sources_tpb_build_magnet", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_tpb_tpbsource_fetch", "to": "breadarrd_src_sources_tpb_build_magnet", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_tpb_tpbsource_new", "to": "breadarrd_src_sources_tpb_rs_into", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_tpb_tpbsource_new", "to": "breadarrd_src_sources_tpb_rs_self", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_tpb_tpbsource_fetch", "to": "breadarrd_src_sources_tpb_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_tpb_tpbsource_fetch", "to": "breadarrd_src_sources_tpb_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "breadarrd_src_sources_tpb_tpbsource_fetch", "to": "breadarrd_src_sources_tpb_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}];
|
|
const LEGEND = [{"cid": 0, "color": "#4E79A7", "label": "scheduler.rs", "count": 44}, {"cid": 1, "color": "#F28E2B", "label": "api/mod.rs", "count": 42}, {"cid": 2, "color": "#E15759", "label": "Connection", "count": 30}, {"cid": 3, "color": "#76B7B2", "label": "fetch_candidates", "count": 18}, {"cid": 4, "color": "#59A14F", "label": "enumerate_upgrade_targets", "count": 15}, {"cid": 5, "color": "#EDC948", "label": "rss.rs", "count": 46}, {"cid": 6, "color": "#B07AA1", "label": "TitleMatcher", "count": 28}, {"cid": 7, "color": "#FF9DA7", "label": "parser/mod.rs", "count": 45}, {"cid": 8, "color": "#9C755F", "label": "config.rs", "count": 69}, {"cid": 9, "color": "#BAB0AC", "label": "transcode/mod.rs", "count": 67}, {"cid": 10, "color": "#4E79A7", "label": "ffprobe.rs", "count": 36}, {"cid": 11, "color": "#F28E2B", "label": "importer/mod.rs", "count": 36}, {"cid": 12, "color": "#E15759", "label": "Result", "count": 25}, {"cid": 13, "color": "#76B7B2", "label": "process_pending_grabs", "count": 18}, {"cid": 14, "color": "#59A14F", "label": "Connection", "count": 16}, {"cid": 15, "color": "#EDC948", "label": "import_one", "count": 14}, {"cid": 16, "color": "#B07AA1", "label": "find_relinkable_episode_files", "count": 14}, {"cid": 17, "color": "#FF9DA7", "label": "main.rs", "count": 37}, {"cid": 18, "color": "#9C755F", "label": "import_season_pack", "count": 7}, {"cid": 19, "color": "#BAB0AC", "label": "QbitClient", "count": 33}, {"cid": 20, "color": "#4E79A7", "label": "db.rs", "count": 19}, {"cid": 21, "color": "#F28E2B", "label": "String", "count": 13}, {"cid": 22, "color": "#E15759", "label": "enumerate_search_targets", "count": 11}, {"cid": 23, "color": "#76B7B2", "label": "seeded_conn", "count": 10}];
|
|
|
|
// HTML-escape helper — prevents XSS when injecting graph data into innerHTML
|
|
function esc(s) {
|
|
return String(s).replace(/&/g,'&').replace(/</g,'<').replace(/>/g,'>').replace(/"/g,'"').replace(/'/g,''');
|
|
}
|
|
|
|
// Build vis datasets
|
|
const nodesDS = new vis.DataSet(RAW_NODES.map(n => ({
|
|
id: n.id, label: n.label, color: n.color, size: n.size,
|
|
font: n.font, title: n.title,
|
|
_community: n.community, _community_name: n.community_name,
|
|
_source_file: n.source_file, _file_type: n.file_type, _degree: n.degree,
|
|
})));
|
|
|
|
const edgesDS = new vis.DataSet(RAW_EDGES.map((e, i) => ({
|
|
id: i, from: e.from, to: e.to,
|
|
label: '',
|
|
title: e.title,
|
|
dashes: e.dashes,
|
|
width: e.width,
|
|
color: e.color,
|
|
arrows: { to: { enabled: true, scaleFactor: 0.5 } },
|
|
})));
|
|
|
|
const container = document.getElementById('graph');
|
|
const network = new vis.Network(container, { nodes: nodesDS, edges: edgesDS }, {
|
|
physics: {
|
|
enabled: true,
|
|
solver: 'forceAtlas2Based',
|
|
forceAtlas2Based: {
|
|
gravitationalConstant: -60,
|
|
centralGravity: 0.005,
|
|
springLength: 120,
|
|
springConstant: 0.08,
|
|
damping: 0.4,
|
|
avoidOverlap: 0.8,
|
|
},
|
|
stabilization: { iterations: 200, fit: true },
|
|
},
|
|
interaction: {
|
|
hover: true,
|
|
tooltipDelay: 100,
|
|
hideEdgesOnDrag: true,
|
|
navigationButtons: false,
|
|
keyboard: false,
|
|
},
|
|
nodes: { shape: 'dot', borderWidth: 1.5 },
|
|
edges: { smooth: { type: 'continuous', roundness: 0.2 }, selectionWidth: 3 },
|
|
});
|
|
|
|
network.once('stabilizationIterationsDone', () => {
|
|
network.setOptions({ physics: { enabled: false } });
|
|
});
|
|
|
|
function showInfo(nodeId) {
|
|
const n = nodesDS.get(nodeId);
|
|
if (!n) return;
|
|
const neighborIds = network.getConnectedNodes(nodeId);
|
|
const neighborItems = neighborIds.map(nid => {
|
|
const nb = nodesDS.get(nid);
|
|
const color = nb ? nb.color.background : '#555';
|
|
return `<span class="neighbor-link" style="border-left-color:${esc(color)}" data-nid="${esc(nid)}">${esc(nb ? nb.label : nid)}</span>`;
|
|
}).join('');
|
|
document.getElementById('info-content').innerHTML = `
|
|
<div class="field"><b>${esc(n.label)}</b></div>
|
|
<div class="field">Type: ${esc(n._file_type || 'unknown')}</div>
|
|
<div class="field">Community: ${esc(n._community_name)}</div>
|
|
<div class="field">Source: ${esc(n._source_file || '-')}</div>
|
|
<div class="field">Degree: ${n._degree}</div>
|
|
${neighborIds.length ? `<div class="field" style="margin-top:8px;color:#aaa;font-size:11px">Neighbors (${neighborIds.length})</div><div id="neighbors-list">${neighborItems}</div>` : ''}
|
|
`;
|
|
}
|
|
|
|
function focusNode(nodeId) {
|
|
network.focus(nodeId, { scale: 1.4, animation: true });
|
|
network.selectNodes([nodeId]);
|
|
showInfo(nodeId);
|
|
}
|
|
|
|
// Neighbor links use a data attribute + one delegated listener rather than an
|
|
// inline onclick. A node id/label sourced from a document or a scraped URL
|
|
// (graphify add) can contain a double-quote; dropping the stringified id
|
|
// unescaped into a quoted onclick both broke every link and allowed a hostile
|
|
// source to inject an event handler into the local report (stored XSS, #1838).
|
|
// esc() on data-nid keeps the value inside the attribute; the listener reads it
|
|
// back verbatim. Bound to document so it survives the innerHTML rebuild that
|
|
// recreates #neighbors-list on each showInfo().
|
|
document.addEventListener('click', e => {
|
|
const el = e.target.closest('.neighbor-link');
|
|
if (el && el.dataset.nid !== undefined) focusNode(el.dataset.nid);
|
|
});
|
|
|
|
// Track hovered node — hover detection is more reliable than click params
|
|
let hoveredNodeId = null;
|
|
network.on('hoverNode', params => {
|
|
hoveredNodeId = params.node;
|
|
container.style.cursor = 'pointer';
|
|
});
|
|
network.on('blurNode', () => {
|
|
hoveredNodeId = null;
|
|
container.style.cursor = 'default';
|
|
});
|
|
container.addEventListener('click', () => {
|
|
if (hoveredNodeId !== null) {
|
|
showInfo(hoveredNodeId);
|
|
network.selectNodes([hoveredNodeId]);
|
|
}
|
|
});
|
|
network.on('click', params => {
|
|
if (params.nodes.length > 0) {
|
|
showInfo(params.nodes[0]);
|
|
} else if (hoveredNodeId === null) {
|
|
document.getElementById('info-content').innerHTML = '<span class="empty">Click a node to inspect it</span>';
|
|
}
|
|
});
|
|
|
|
const searchInput = document.getElementById('search');
|
|
const searchResults = document.getElementById('search-results');
|
|
searchInput.addEventListener('input', () => {
|
|
const q = searchInput.value.toLowerCase().trim();
|
|
searchResults.innerHTML = '';
|
|
if (!q) { searchResults.style.display = 'none'; return; }
|
|
const matches = RAW_NODES.filter(n => n.label.toLowerCase().includes(q)).slice(0, 20);
|
|
if (!matches.length) { searchResults.style.display = 'none'; return; }
|
|
searchResults.style.display = 'block';
|
|
matches.forEach(n => {
|
|
const el = document.createElement('div');
|
|
el.className = 'search-item';
|
|
el.textContent = n.label;
|
|
el.style.borderLeft = `3px solid ${n.color.background}`;
|
|
el.style.paddingLeft = '8px';
|
|
el.onclick = () => {
|
|
network.focus(n.id, { scale: 1.5, animation: true });
|
|
network.selectNodes([n.id]);
|
|
showInfo(n.id);
|
|
searchResults.style.display = 'none';
|
|
searchInput.value = '';
|
|
};
|
|
searchResults.appendChild(el);
|
|
});
|
|
});
|
|
document.addEventListener('click', e => {
|
|
if (!searchResults.contains(e.target) && e.target !== searchInput)
|
|
searchResults.style.display = 'none';
|
|
});
|
|
|
|
const hiddenCommunities = new Set();
|
|
|
|
const selectAllCb = document.getElementById('select-all-cb');
|
|
|
|
function updateSelectAllState() {
|
|
const total = LEGEND.length;
|
|
const hidden = hiddenCommunities.size;
|
|
selectAllCb.checked = hidden === 0;
|
|
selectAllCb.indeterminate = hidden > 0 && hidden < total;
|
|
}
|
|
|
|
function toggleAllCommunities(hide) {
|
|
document.querySelectorAll('.legend-item').forEach(item => {
|
|
hide ? item.classList.add('dimmed') : item.classList.remove('dimmed');
|
|
});
|
|
document.querySelectorAll('.legend-cb').forEach(cb => {
|
|
cb.checked = !hide;
|
|
});
|
|
LEGEND.forEach(c => {
|
|
if (hide) hiddenCommunities.add(c.cid); else hiddenCommunities.delete(c.cid);
|
|
});
|
|
const updates = RAW_NODES.map(n => ({ id: n.id, hidden: hide }));
|
|
nodesDS.update(updates);
|
|
updateSelectAllState();
|
|
}
|
|
|
|
const legendEl = document.getElementById('legend');
|
|
LEGEND.forEach(c => {
|
|
const item = document.createElement('div');
|
|
item.className = 'legend-item';
|
|
const cb = document.createElement('input');
|
|
cb.type = 'checkbox';
|
|
cb.className = 'legend-cb';
|
|
cb.checked = true;
|
|
cb.addEventListener('change', (e) => {
|
|
e.stopPropagation();
|
|
if (cb.checked) {
|
|
hiddenCommunities.delete(c.cid);
|
|
item.classList.remove('dimmed');
|
|
} else {
|
|
hiddenCommunities.add(c.cid);
|
|
item.classList.add('dimmed');
|
|
}
|
|
const updates = RAW_NODES
|
|
.filter(n => n.community === c.cid)
|
|
.map(n => ({ id: n.id, hidden: !cb.checked }));
|
|
nodesDS.update(updates);
|
|
updateSelectAllState();
|
|
});
|
|
item.innerHTML = `<div class="legend-dot" style="background:${c.color}"></div>
|
|
<span class="legend-label">${c.label}</span>
|
|
<span class="legend-count">${c.count}</span>`;
|
|
item.prepend(cb);
|
|
item.onclick = (e) => {
|
|
if (e.target === cb) return;
|
|
cb.checked = !cb.checked;
|
|
cb.dispatchEvent(new Event('change'));
|
|
};
|
|
legendEl.appendChild(item);
|
|
});
|
|
</script>
|
|
<script>
|
|
// Render hyperedges as shaded regions
|
|
const hyperedges = [];
|
|
// afterDrawing passes ctx already transformed to network coordinate space.
|
|
// Draw node positions raw — no manual pan/zoom/DPR math needed.
|
|
network.on('afterDrawing', function(ctx) {
|
|
hyperedges.forEach(h => {
|
|
const positions = h.nodes
|
|
.map(nid => network.getPositions([nid])[nid])
|
|
.filter(p => p !== undefined);
|
|
if (positions.length < 2) return;
|
|
ctx.save();
|
|
ctx.globalAlpha = 0.12;
|
|
ctx.fillStyle = '#6366f1';
|
|
ctx.strokeStyle = '#6366f1';
|
|
ctx.lineWidth = 2;
|
|
ctx.beginPath();
|
|
// Centroid and expanded hull in network coordinates
|
|
const cx = positions.reduce((s, p) => s + p.x, 0) / positions.length;
|
|
const cy = positions.reduce((s, p) => s + p.y, 0) / positions.length;
|
|
const expanded = positions.map(p => ({
|
|
x: cx + (p.x - cx) * 1.15,
|
|
y: cy + (p.y - cy) * 1.15
|
|
}));
|
|
ctx.moveTo(expanded[0].x, expanded[0].y);
|
|
expanded.slice(1).forEach(p => ctx.lineTo(p.x, p.y));
|
|
ctx.closePath();
|
|
ctx.fill();
|
|
ctx.globalAlpha = 0.4;
|
|
ctx.stroke();
|
|
// Label
|
|
ctx.globalAlpha = 0.8;
|
|
ctx.fillStyle = '#4f46e5';
|
|
ctx.font = 'bold 11px sans-serif';
|
|
ctx.textAlign = 'center';
|
|
ctx.fillText(h.label, cx, cy - 5);
|
|
ctx.restore();
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |