├── .air.toml ├── .env.example ├── .github └── workflows │ ├── dependabot.yml │ ├── go.yml │ └── release-cd.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _tools ├── get_ship_icons.py ├── import.sh └── import_pcap.py ├── answer ├── activities.go ├── ask_mail_body.go ├── auth_confirm.go ├── build_finish.go ├── build_quick_finish.go ├── change_selected_skin.go ├── change_ship_lock_state.go ├── charge_command_answer.go ├── chat_room_change.go ├── cheater_mark.go ├── commander_collection.go ├── commander_commissions_fleet.go ├── commander_dock.go ├── commander_fleet.go ├── commander_friend_list.go ├── commander_guild_chat.go ├── commander_guild_data.go ├── commander_guild_technologies.go ├── commander_missions.go ├── commander_owned_skins.go ├── commander_story_progress.go ├── confirm_ship.go ├── delete_archived_mail.go ├── dorm_data.go ├── equiped_special_weapons.go ├── equipped_weapon_skin.go ├── event_data.go ├── exchange_ship.go ├── exercise_enemies.go ├── fetch_secondary_password_command_response.go ├── fleet_commit.go ├── fleet_energy_recover_time.go ├── fleet_rename.go ├── forge_10803.go ├── game_notices.go ├── get_collection_mail_list.go ├── get_guild_requests_command_response.go ├── get_meta_progress.go ├── get_meta_ships_points_response.go ├── get_my_assault_fleet_command_response.go ├── get_ship_discuss.go ├── give_item.go ├── give_resources.go ├── guild_get_activation_event_command_response.go ├── guild_get_assault_fleet_command_response.go ├── guild_get_user_info_command.go ├── handle_mail_deal_cmd.go ├── join_server.go ├── juustagram_data.go ├── last_login.go ├── last_online_info.go ├── mailbox.go ├── meowfficers.go ├── meta_character_tactics_info_request_command_response.go ├── ongoing_builds.go ├── owned_items.go ├── permanent_activites.go ├── player_buffs.go ├── player_dock.go ├── player_exist.go ├── player_info.go ├── propose_ship.go ├── receive_chat_message.go ├── rename_proposed_ship.go ├── resources_info.go ├── retire_ship.go ├── send_heartbeat.go ├── send_mail_list.go ├── send_player_ship_count.go ├── server_state_checker.go ├── servers.go ├── set_favorite_ship.go ├── ship_build.go ├── shipyard_data.go ├── shop_data.go ├── shopping_command_answer.go ├── technology_nation_proxy.go ├── unk_12026.go ├── unk_13002.go ├── unk_13506.go ├── unk_16105.go ├── unk_17204.go ├── unk_24021.go ├── unk_25027.go ├── unk_26102.go ├── unk_27001.go ├── unk_33001.go ├── unk_33114.go ├── unk_34502.go ├── unk_63000.go ├── update_common_flag_command.go ├── update_packet.go ├── update_secretaries.go ├── update_ship_like.go └── weekly_missions.go ├── connection ├── client.go └── server.go ├── consts ├── disconnect_reasons.go ├── drop_types.go ├── fleet.go ├── mail_deal_cmds.go ├── notice.go ├── region_ids.go └── update_data.go ├── debug ├── adb_watcher.go └── insert_packet.go ├── docker-compose.yml ├── go.mod ├── go.sum ├── logger └── event.go ├── main.go ├── misc ├── game_update.go ├── get_packet_fields.go ├── get_specified_region.go ├── git_hash.go ├── latest_commits.go ├── proto_to_json.go └── update_data.go ├── orm ├── buff.go ├── build.go ├── chat.go ├── commander.go ├── database.go ├── debug.go ├── fleet.go ├── item.go ├── likes.go ├── mail.go ├── notice.go ├── owned_items.go ├── owned_ship.go ├── punishment.go ├── rarity.go ├── resource.go ├── server.go ├── ship.go ├── shop.go ├── skin.go └── yostarus.go ├── packets ├── handler.go └── magic.go ├── protobuf ├── ACHIEVEMENT_INFO.pb.go ├── ACTIVITYINFO.pb.go ├── ACT_GOODS_BUY.pb.go ├── ACT_GOODS_INFO.pb.go ├── ACT_TASK.pb.go ├── ACT_TASK_INIT_LIST.pb.go ├── ACT_TASK_LIST.pb.go ├── AD_ARG.pb.go ├── AI_ACT.pb.go ├── APARTMENT_FURNITURE.pb.go ├── APARTMENT_GIFT.pb.go ├── APARTMENT_GIFT_SHOP.pb.go ├── APARTMENT_GIVE_GIFT.pb.go ├── APARTMENT_SHIP.pb.go ├── APPRECIATIONINFO.pb.go ├── ARENARANK.pb.go ├── ARENASHOP.pb.go ├── ATTACHMENT.pb.go ├── ATTIRE_INFO.pb.go ├── ATTRINFO.pb.go ├── AWARDINFO.pb.go ├── BATTLE_BONUS.pb.go ├── BENEFITBUFF.pb.go ├── BLUPRINTINFO.pb.go ├── BOSSEVENTFLEET.pb.go ├── BUFF_INFO.pb.go ├── BUFF_SLOT.pb.go ├── BUILDINFO.pb.go ├── BUILD_INFO.pb.go ├── CAPITAL_LOG.pb.go ├── CARDBUNDLE.pb.go ├── CARDINFO.pb.go ├── CELLFLAG.pb.go ├── CELLSINFO.pb.go ├── CHALLENGEINFO.pb.go ├── CHAPTERAWARDINFO.pb.go ├── CHAPTERCELLINFO.pb.go ├── CHAPTERCELLPOS.pb.go ├── CHAPTERINFO.pb.go ├── CHILDINFO.pb.go ├── CHILD_ATTR.pb.go ├── CHILD_BUFF.pb.go ├── CHILD_DROP.pb.go ├── CHILD_FAVOR.pb.go ├── CHILD_INFO.pb.go ├── CHILD_ITEM.pb.go ├── CHILD_OPTION_RECORD.pb.go ├── CHILD_PLAN_CELL.pb.go ├── CHILD_PLAN_HISTORY.pb.go ├── CHILD_PLAN_RESULT.pb.go ├── CHILD_PLAN_VAL.pb.go ├── CHILD_POLAROID.pb.go ├── CHILD_PROGRESS.pb.go ├── CHILD_SHOP_DATA.pb.go ├── CHILD_SHOP_GOODS.pb.go ├── CHILD_SITE_OPTION.pb.go ├── CHILD_TASK.pb.go ├── CHILD_TIME.pb.go ├── CMDCOLLECTION.pb.go ├── COLLECTIONINFO.pb.go ├── COLORINFO.pb.go ├── COMMANDERBOXINFO.pb.go ├── COMMANDERHOMESLOT.pb.go ├── COMMANDERINCHALLENGE.pb.go ├── COMMANDERINFO.pb.go ├── COMMANDERSINFO.pb.go ├── COMMANDER_EXP.pb.go ├── COOLDOWN.pb.go ├── COUNTINFO.pb.go ├── CS_10001.pb.go ├── CS_10018.pb.go ├── CS_10020.pb.go ├── CS_10022.pb.go ├── CS_10024.pb.go ├── CS_10026.pb.go ├── CS_10100.pb.go ├── CS_10700.pb.go ├── CS_10800.pb.go ├── CS_10802.pb.go ├── CS_10802_CN_JP_KR_TW.pb.go ├── CS_10992.pb.go ├── CS_10993.pb.go ├── CS_10994.pb.go ├── CS_10996.pb.go ├── CS_11001.pb.go ├── CS_11005.pb.go ├── CS_11007.pb.go ├── CS_11009.pb.go ├── CS_11011.pb.go ├── CS_11013.pb.go ├── CS_11016.pb.go ├── CS_11017.pb.go ├── CS_11019.pb.go ├── CS_11021.pb.go ├── CS_11023.pb.go ├── CS_11025.pb.go ├── CS_11027.pb.go ├── CS_11029.pb.go ├── CS_11030.pb.go ├── CS_11100.pb.go ├── CS_11202.pb.go ├── CS_11204.pb.go ├── CS_11206.pb.go ├── CS_11208.pb.go ├── CS_11212.pb.go ├── CS_11401.pb.go ├── CS_11501.pb.go ├── CS_11504.pb.go ├── CS_11506.pb.go ├── CS_11508.pb.go ├── CS_11510.pb.go ├── CS_11513.pb.go ├── CS_11601.pb.go ├── CS_11603.pb.go ├── CS_11605.pb.go ├── CS_11607.pb.go ├── CS_11609.pb.go ├── CS_11701.pb.go ├── CS_11703.pb.go ├── CS_11751.pb.go ├── CS_11753.pb.go ├── CS_11755.pb.go ├── CS_11800.pb.go ├── CS_12002.pb.go ├── CS_12004.pb.go ├── CS_12006.pb.go ├── CS_12008.pb.go ├── CS_12011.pb.go ├── CS_12017.pb.go ├── CS_12020.pb.go ├── CS_12022.pb.go ├── CS_12025.pb.go ├── CS_12027.pb.go ├── CS_12029.pb.go ├── CS_12032.pb.go ├── CS_12034.pb.go ├── CS_12036.pb.go ├── CS_12038.pb.go ├── CS_12040.pb.go ├── CS_12043.pb.go ├── CS_12045.pb.go ├── CS_12047.pb.go ├── CS_12102.pb.go ├── CS_12104.pb.go ├── CS_12202.pb.go ├── CS_12204.pb.go ├── CS_12206.pb.go ├── CS_12208.pb.go ├── CS_12299.pb.go ├── CS_12301.pb.go ├── CS_13003.pb.go ├── CS_13005.pb.go ├── CS_13007.pb.go ├── CS_13009.pb.go ├── CS_13101.pb.go ├── CS_13103.pb.go ├── CS_13106.pb.go ├── CS_13107.pb.go ├── CS_13109.pb.go ├── CS_13111.pb.go ├── CS_13301.pb.go ├── CS_13401.pb.go ├── CS_13403.pb.go ├── CS_13501.pb.go ├── CS_13503.pb.go ├── CS_13505.pb.go ├── CS_13507.pb.go ├── CS_14002.pb.go ├── CS_14004.pb.go ├── CS_14006.pb.go ├── CS_14008.pb.go ├── CS_14010.pb.go ├── CS_14013.pb.go ├── CS_14015.pb.go ├── CS_14201.pb.go ├── CS_14203.pb.go ├── CS_14205.pb.go ├── CS_14207.pb.go ├── CS_14209.pb.go ├── CS_15002.pb.go ├── CS_15004.pb.go ├── CS_15006.pb.go ├── CS_15008.pb.go ├── CS_15010.pb.go ├── CS_15012.pb.go ├── CS_15300.pb.go ├── CS_16001.pb.go ├── CS_16100.pb.go ├── CS_16104.pb.go ├── CS_16106.pb.go ├── CS_16108.pb.go ├── CS_16201.pb.go ├── CS_16203.pb.go ├── CS_16205.pb.go ├── CS_17005.pb.go ├── CS_17101.pb.go ├── CS_17103.pb.go ├── CS_17105.pb.go ├── CS_17107.pb.go ├── CS_17109.pb.go ├── CS_17201.pb.go ├── CS_17203.pb.go ├── CS_17301.pb.go ├── CS_17401.pb.go ├── CS_17501.pb.go ├── CS_17503.pb.go ├── CS_17505.pb.go ├── CS_17507.pb.go ├── CS_17509.pb.go ├── CS_17511.pb.go ├── CS_17601.pb.go ├── CS_17603.pb.go ├── CS_17605.pb.go ├── CS_17607.pb.go ├── CS_18001.pb.go ├── CS_18003.pb.go ├── CS_18006.pb.go ├── CS_18008.pb.go ├── CS_18100.pb.go ├── CS_18102.pb.go ├── CS_18104.pb.go ├── CS_18201.pb.go ├── CS_18203.pb.go ├── CS_19002.pb.go ├── CS_19004.pb.go ├── CS_19006.pb.go ├── CS_19008.pb.go ├── CS_19011.pb.go ├── CS_19013.pb.go ├── CS_19015.pb.go ├── CS_19016.pb.go ├── CS_19018.pb.go ├── CS_19020.pb.go ├── CS_19022.pb.go ├── CS_19024.pb.go ├── CS_19101.pb.go ├── CS_19103.pb.go ├── CS_19105.pb.go ├── CS_19107.pb.go ├── CS_19109.pb.go ├── CS_19111.pb.go ├── CS_19113.pb.go ├── CS_19115.pb.go ├── CS_19117.pb.go ├── CS_19119.pb.go ├── CS_19121.pb.go ├── CS_19123.pb.go ├── CS_19125.pb.go ├── CS_19127.pb.go ├── CS_19129.pb.go ├── CS_19131.pb.go ├── CS_20005.pb.go ├── CS_20007.pb.go ├── CS_20009.pb.go ├── CS_20011.pb.go ├── CS_20013.pb.go ├── CS_20106.pb.go ├── CS_20108.pb.go ├── CS_20110.pb.go ├── CS_20205.pb.go ├── CS_20207.pb.go ├── CS_22009.pb.go ├── CS_22011.pb.go ├── CS_22014.pb.go ├── CS_22101.pb.go ├── CS_22201.pb.go ├── CS_22203.pb.go ├── CS_24002.pb.go ├── CS_24004.pb.go ├── CS_24011.pb.go ├── CS_24020.pb.go ├── CS_24022.pb.go ├── CS_25002.pb.go ├── CS_25004.pb.go ├── CS_25006.pb.go ├── CS_25008.pb.go ├── CS_25010.pb.go ├── CS_25012.pb.go ├── CS_25014.pb.go ├── CS_25016.pb.go ├── CS_25018.pb.go ├── CS_25020.pb.go ├── CS_25022.pb.go ├── CS_25024.pb.go ├── CS_25026.pb.go ├── CS_25028.pb.go ├── CS_25030.pb.go ├── CS_25032.pb.go ├── CS_25034.pb.go ├── CS_25036.pb.go ├── CS_25037.pb.go ├── CS_26002.pb.go ├── CS_26004.pb.go ├── CS_26006.pb.go ├── CS_26008.pb.go ├── CS_26021.pb.go ├── CS_26031.pb.go ├── CS_26041.pb.go ├── CS_26043.pb.go ├── CS_26051.pb.go ├── CS_26053.pb.go ├── CS_26055.pb.go ├── CS_26101.pb.go ├── CS_26103.pb.go ├── CS_26105.pb.go ├── CS_26106.pb.go ├── CS_26108.pb.go ├── CS_26110.pb.go ├── CS_26111.pb.go ├── CS_26122.pb.go ├── CS_26124.pb.go ├── CS_26126.pb.go ├── CS_26128.pb.go ├── CS_26150.pb.go ├── CS_26152.pb.go ├── CS_26154.pb.go ├── CS_26156.pb.go ├── CS_26158.pb.go ├── CS_26160.pb.go ├── CS_27000.pb.go ├── CS_27002.pb.go ├── CS_27004.pb.go ├── CS_27006.pb.go ├── CS_27008.pb.go ├── CS_27010.pb.go ├── CS_27012.pb.go ├── CS_27014.pb.go ├── CS_27016.pb.go ├── CS_27018.pb.go ├── CS_27019.pb.go ├── CS_27020.pb.go ├── CS_27022.pb.go ├── CS_27023.pb.go ├── CS_27024.pb.go ├── CS_27026.pb.go ├── CS_27027.pb.go ├── CS_27028.pb.go ├── CS_27029.pb.go ├── CS_27030.pb.go ├── CS_27031.pb.go ├── CS_27033.pb.go ├── CS_27035.pb.go ├── CS_27037.pb.go ├── CS_27039.pb.go ├── CS_27041.pb.go ├── CS_27043.pb.go ├── CS_27045.pb.go ├── CS_27047.pb.go ├── CS_28001.pb.go ├── CS_28003.pb.go ├── CS_28005.pb.go ├── CS_28007.pb.go ├── CS_28009.pb.go ├── CS_28011.pb.go ├── CS_28013.pb.go ├── CS_28015.pb.go ├── CS_28090.pb.go ├── CS_30002.pb.go ├── CS_30004.pb.go ├── CS_30006.pb.go ├── CS_30008.pb.go ├── CS_30010.pb.go ├── CS_30012.pb.go ├── CS_30014.pb.go ├── CS_30016.pb.go ├── CS_30018.pb.go ├── CS_30102.pb.go ├── CS_30104.pb.go ├── CS_33000.pb.go ├── CS_33101.pb.go ├── CS_33103.pb.go ├── CS_33106.pb.go ├── CS_33108.pb.go ├── CS_33110.pb.go ├── CS_33112.pb.go ├── CS_33205.pb.go ├── CS_33207.pb.go ├── CS_33301.pb.go ├── CS_33401.pb.go ├── CS_33403.pb.go ├── CS_33405.pb.go ├── CS_33407.pb.go ├── CS_33409.pb.go ├── CS_33413.pb.go ├── CS_33415.pb.go ├── CS_33509.pb.go ├── CS_33602.pb.go ├── CS_34001.pb.go ├── CS_34003.pb.go ├── CS_34501.pb.go ├── CS_34503.pb.go ├── CS_34505.pb.go ├── CS_34509.pb.go ├── CS_34511.pb.go ├── CS_34513.pb.go ├── CS_34515.pb.go ├── CS_34517.pb.go ├── CS_34519.pb.go ├── CS_34521.pb.go ├── CS_34523.pb.go ├── CS_34525.pb.go ├── CS_34527.pb.go ├── CS_40001.pb.go ├── CS_40003.pb.go ├── CS_40005.pb.go ├── CS_40007.pb.go ├── CS_50001.pb.go ├── CS_50003.pb.go ├── CS_50006.pb.go ├── CS_50009.pb.go ├── CS_50011.pb.go ├── CS_50014.pb.go ├── CS_50016.pb.go ├── CS_50102.pb.go ├── CS_50105.pb.go ├── CS_50107.pb.go ├── CS_50109.pb.go ├── CS_50111.pb.go ├── CS_50113.pb.go ├── CS_60001.pb.go ├── CS_60003.pb.go ├── CS_60005.pb.go ├── CS_60007.pb.go ├── CS_60010.pb.go ├── CS_60012.pb.go ├── CS_60014.pb.go ├── CS_60016.pb.go ├── CS_60018.pb.go ├── CS_60020.pb.go ├── CS_60022.pb.go ├── CS_60024.pb.go ├── CS_60026.pb.go ├── CS_60028.pb.go ├── CS_60033.pb.go ├── CS_60035.pb.go ├── CS_60037.pb.go ├── CS_60100.pb.go ├── CS_60102.pb.go ├── CS_61001.pb.go ├── CS_61003.pb.go ├── CS_61005.pb.go ├── CS_61007.pb.go ├── CS_61009.pb.go ├── CS_61011.pb.go ├── CS_61013.pb.go ├── CS_61015.pb.go ├── CS_61017.pb.go ├── CS_61019.pb.go ├── CS_61023.pb.go ├── CS_61025.pb.go ├── CS_61027.pb.go ├── CS_61029.pb.go ├── CS_61031.pb.go ├── CS_61033.pb.go ├── CS_61035.pb.go ├── CS_61037.pb.go ├── CS_62002.pb.go ├── CS_62007.pb.go ├── CS_62009.pb.go ├── CS_62011.pb.go ├── CS_62013.pb.go ├── CS_62015.pb.go ├── CS_62020.pb.go ├── CS_62022.pb.go ├── CS_62024.pb.go ├── CS_62029.pb.go ├── CS_62100.pb.go ├── CS_63001.pb.go ├── CS_63003.pb.go ├── CS_63005.pb.go ├── CS_63007.pb.go ├── CS_63009.pb.go ├── CS_63011.pb.go ├── CS_63013.pb.go ├── CS_63015.pb.go ├── CS_63200.pb.go ├── CS_63202.pb.go ├── CS_63204.pb.go ├── CS_63206.pb.go ├── CS_63208.pb.go ├── CS_63210.pb.go ├── CS_63212.pb.go ├── CS_63214.pb.go ├── CS_63301.pb.go ├── CS_63303.pb.go ├── CS_63305.pb.go ├── CS_63307.pb.go ├── CS_63309.pb.go ├── CS_63311.pb.go ├── CS_63313.pb.go ├── CS_63317.pb.go ├── CS_63319.pb.go ├── CS_64001.pb.go ├── CS_64003.pb.go ├── CS_64005.pb.go ├── CS_64007.pb.go ├── CS_64009.pb.go ├── CS_70001.pb.go ├── CS_70003.pb.go ├── CS_70005.pb.go ├── CURRENTCHAPTERINFO.pb.go ├── CURRENT_OPERATION.pb.go ├── DETAIL_INFO.pb.go ├── DISCUSS_INFO.pb.go ├── DISPLAYINFO.pb.go ├── DORMTHEME.pb.go ├── DORMTHEME_PROFILE.pb.go ├── DROPINFO.pb.go ├── DROPPERFORMANCE.pb.go ├── DR_NUMBER.pb.go ├── ELITEFLEETINFO.pb.go ├── ENEMYINFO.pb.go ├── EQCODE_SHARE_INFO.pb.go ├── EQUIPINFO.pb.go ├── EQUIPSKININFO.pb.go ├── EQUIPSKIN_INFO.pb.go ├── ESCORT_INFO.pb.go ├── ESCORT_POS.pb.go ├── EVENT_BASE.pb.go ├── EVENT_BASE_COMPLETED.pb.go ├── EVENT_BOSS.pb.go ├── EVENT_NODE.pb.go ├── EVENT_PERFORMANCE.pb.go ├── EXPEDITION_DAILY_COUNT.pb.go ├── FINISH_TASK.pb.go ├── FLEETDUTYKEYVALUEPAIR.pb.go ├── FLEETINFO.pb.go ├── FLEETTECH.pb.go ├── FLEET_CHANGE.pb.go ├── FLEET_INFO.pb.go ├── FRIENDSCORE.pb.go ├── FRIEND_INFO.pb.go ├── FURFLOORPUTINFO.pb.go ├── FURNITUREINFO.pb.go ├── FURNITUREPUTINFO.pb.go ├── GAMEROOM.pb.go ├── GOODS_INFO.pb.go ├── GROUPCMDCOLLECTION.pb.go ├── GROUPINCHAPTER.pb.go ├── GROUPINFO.pb.go ├── GROUPINFOINCHALLENGE.pb.go ├── GROUPINFOUPDATE.pb.go ├── GUIDE_CHAT.pb.go ├── GUILD_BASE_INFO.pb.go ├── GUILD_EXPANSION_INFO.pb.go ├── GUILD_INFO.pb.go ├── GUILD_SHOP_INFO.pb.go ├── GUILD_SIMPLE_INFO.pb.go ├── GUILD_TECHNOLOGY.pb.go ├── HPDROPINFO.pb.go ├── IDTIMEINFO.pb.go ├── INS_MESSAGE.pb.go ├── INS_NPC.pb.go ├── INS_PLAYER.pb.go ├── ITEMINFO.pb.go ├── ITEMMISC.pb.go ├── ITEM_INFO.pb.go ├── KEYVALUE.pb.go ├── KEYVALUELIST.pb.go ├── KEYVALUELIST_CN_EN_JP_TW.pb.go ├── KEYVALUELIST_KR.pb.go ├── KEYVALUE_CN_EN_JP_TW.pb.go ├── KEYVALUE_KR.pb.go ├── KVDATA.pb.go ├── KVDATA2.pb.go ├── LANDINFO.pb.go ├── LIVINGAREA_COVER.pb.go ├── LOGIN_ADDR.pb.go ├── LOG_INFO.pb.go ├── MAIL_DETAIL.pb.go ├── MAIL_INFO.pb.go ├── MAIL_SIGLE.pb.go ├── MAIL_SIMPLE_INFO.pb.go ├── MAIL_TITLE.pb.go ├── MAPINFO.pb.go ├── MAP_VISION.pb.go ├── MATCH_EXPRESSION.pb.go ├── MEMBER_INFO.pb.go ├── METACHARINFO.pb.go ├── META_SHIP_INFO.pb.go ├── META_SKILL_SIMPLE_INFO.pb.go ├── MINIGAMEDATA.pb.go ├── MINIGAMEHUB.pb.go ├── MSG_INFO.pb.go ├── MULKEYVALUE.pb.go ├── NAVALACADEMY_CLASS.pb.go ├── NAVALACADEMY_STUDENT.pb.go ├── NOTICEINFO.pb.go ├── NOTICEINFO_CN_EN_JP_TW.pb.go ├── NOTICEINFO_KR.pb.go ├── OTHERSHIPID.pb.go ├── PB_ACTIVITY_ITEM.pb.go ├── PB_ISLAND_NODE.pb.go ├── PB_ROGUE.pb.go ├── PERSON_SHIP_IN_PAGE.pb.go ├── PLAYER_INFO.pb.go ├── POP_INFO.pb.go ├── PORT_INFO.pb.go ├── PRESETFLEET.pb.go ├── PRO_CHAPTER_SUBMARINE.pb.go ├── P_PARTY_ROLE.pb.go ├── P_SPECIAL_ROLE.pb.go ├── QUICK_REWARD.pb.go ├── RANK_INFO.pb.go ├── RANK_USER_INFO.pb.go ├── REACTCHAPTER_INFO.pb.go ├── REFUND_SHOPINFO.pb.go ├── REMAPCOUNT.pb.go ├── REPORT.pb.go ├── REPORT_NODE.pb.go ├── RESOURCE.pb.go ├── RETURN_USER_INFO.pb.go ├── ROGUECARD.pb.go ├── ROGUEMAP.pb.go ├── ROGUENODE.pb.go ├── ROGUETREASURE.pb.go ├── ROGUE_DROPINFO.pb.go ├── ROGUE_NODE_ARRAY.pb.go ├── ROGUE_UPDATE_NODE.pb.go ├── SC_10002.pb.go ├── SC_10019.pb.go ├── SC_10021.pb.go ├── SC_10023.pb.go ├── SC_10025.pb.go ├── SC_10027.pb.go ├── SC_10101.pb.go ├── SC_10701.pb.go ├── SC_10801.pb.go ├── SC_10803.pb.go ├── SC_10803_CN_JP_KR_TW.pb.go ├── SC_10995.pb.go ├── SC_10997.pb.go ├── SC_10998.pb.go ├── SC_10999.pb.go ├── SC_11000.pb.go ├── SC_11002.pb.go ├── SC_11003.pb.go ├── SC_11003_CN_EN_JP.pb.go ├── SC_11003_KR.pb.go ├── SC_11003_TW.pb.go ├── SC_11004.pb.go ├── SC_11006.pb.go ├── SC_11008.pb.go ├── SC_11010.pb.go ├── SC_11012.pb.go ├── SC_11014.pb.go ├── SC_11015.pb.go ├── SC_11018.pb.go ├── SC_11020.pb.go ├── SC_11022.pb.go ├── SC_11024.pb.go ├── SC_11026.pb.go ├── SC_11028.pb.go ├── SC_11031.pb.go ├── SC_11101.pb.go ├── SC_11200.pb.go ├── SC_11201.pb.go ├── SC_11203.pb.go ├── SC_11205.pb.go ├── SC_11207.pb.go ├── SC_11209.pb.go ├── SC_11210.pb.go ├── SC_11300.pb.go ├── SC_11402.pb.go ├── SC_11502.pb.go ├── SC_11503.pb.go ├── SC_11505.pb.go ├── SC_11507.pb.go ├── SC_11509.pb.go ├── SC_11511.pb.go ├── SC_11514.pb.go ├── SC_11602.pb.go ├── SC_11604.pb.go ├── SC_11606.pb.go ├── SC_11608.pb.go ├── SC_11610.pb.go ├── SC_11700.pb.go ├── SC_11702.pb.go ├── SC_11704.pb.go ├── SC_11752.pb.go ├── SC_11754.pb.go ├── SC_11756.pb.go ├── SC_11801.pb.go ├── SC_11802.pb.go ├── SC_12001.pb.go ├── SC_12003.pb.go ├── SC_12005.pb.go ├── SC_12007.pb.go ├── SC_12009.pb.go ├── SC_12010.pb.go ├── SC_12012.pb.go ├── SC_12018.pb.go ├── SC_12019.pb.go ├── SC_12021.pb.go ├── SC_12023.pb.go ├── SC_12024.pb.go ├── SC_12026.pb.go ├── SC_12028.pb.go ├── SC_12030.pb.go ├── SC_12031.pb.go ├── SC_12033.pb.go ├── SC_12035.pb.go ├── SC_12037.pb.go ├── SC_12039.pb.go ├── SC_12041.pb.go ├── SC_12042.pb.go ├── SC_12044.pb.go ├── SC_12046.pb.go ├── SC_12048.pb.go ├── SC_12101.pb.go ├── SC_12103.pb.go ├── SC_12105.pb.go ├── SC_12106.pb.go ├── SC_12201.pb.go ├── SC_12203.pb.go ├── SC_12205.pb.go ├── SC_12207.pb.go ├── SC_12209.pb.go ├── SC_12302.pb.go ├── SC_13001.pb.go ├── SC_13002.pb.go ├── SC_13004.pb.go ├── SC_13006.pb.go ├── SC_13008.pb.go ├── SC_13010.pb.go ├── SC_13011.pb.go ├── SC_13102.pb.go ├── SC_13104.pb.go ├── SC_13105.pb.go ├── SC_13108.pb.go ├── SC_13110.pb.go ├── SC_13112.pb.go ├── SC_13201.pb.go ├── SC_13302.pb.go ├── SC_13402.pb.go ├── SC_13404.pb.go ├── SC_13502.pb.go ├── SC_13504.pb.go ├── SC_13506.pb.go ├── SC_13508.pb.go ├── SC_14001.pb.go ├── SC_14003.pb.go ├── SC_14005.pb.go ├── SC_14007.pb.go ├── SC_14009.pb.go ├── SC_14011.pb.go ├── SC_14014.pb.go ├── SC_14016.pb.go ├── SC_14101.pb.go ├── SC_14200.pb.go ├── SC_14202.pb.go ├── SC_14204.pb.go ├── SC_14206.pb.go ├── SC_14208.pb.go ├── SC_14210.pb.go ├── SC_15001.pb.go ├── SC_15003.pb.go ├── SC_15005.pb.go ├── SC_15007.pb.go ├── SC_15009.pb.go ├── SC_15011.pb.go ├── SC_15013.pb.go ├── SC_16002.pb.go ├── SC_16101.pb.go ├── SC_16105.pb.go ├── SC_16107.pb.go ├── SC_16109.pb.go ├── SC_16200.pb.go ├── SC_16202.pb.go ├── SC_16204.pb.go ├── SC_16206.pb.go ├── SC_17001.pb.go ├── SC_17002.pb.go ├── SC_17003.pb.go ├── SC_17004.pb.go ├── SC_17006.pb.go ├── SC_17102.pb.go ├── SC_17104.pb.go ├── SC_17104_CN_EN_JP_TW.pb.go ├── SC_17104_KR.pb.go ├── SC_17106.pb.go ├── SC_17108.pb.go ├── SC_17110.pb.go ├── SC_17202.pb.go ├── SC_17204.pb.go ├── SC_17302.pb.go ├── SC_17402.pb.go ├── SC_17502.pb.go ├── SC_17504.pb.go ├── SC_17506.pb.go ├── SC_17508.pb.go ├── SC_17510.pb.go ├── SC_17512.pb.go ├── SC_17602.pb.go ├── SC_17604.pb.go ├── SC_17606.pb.go ├── SC_17608.pb.go ├── SC_18002.pb.go ├── SC_18004.pb.go ├── SC_18005.pb.go ├── SC_18007.pb.go ├── SC_18009.pb.go ├── SC_18101.pb.go ├── SC_18103.pb.go ├── SC_18105.pb.go ├── SC_18202.pb.go ├── SC_18204.pb.go ├── SC_19001.pb.go ├── SC_19003.pb.go ├── SC_19005.pb.go ├── SC_19007.pb.go ├── SC_19009.pb.go ├── SC_19010.pb.go ├── SC_19012.pb.go ├── SC_19014.pb.go ├── SC_19017.pb.go ├── SC_19019.pb.go ├── SC_19021.pb.go ├── SC_19023.pb.go ├── SC_19025.pb.go ├── SC_19102.pb.go ├── SC_19104.pb.go ├── SC_19106.pb.go ├── SC_19108.pb.go ├── SC_19110.pb.go ├── SC_19112.pb.go ├── SC_19114.pb.go ├── SC_19116.pb.go ├── SC_19118.pb.go ├── SC_19120.pb.go ├── SC_19122.pb.go ├── SC_19124.pb.go ├── SC_19126.pb.go ├── SC_19128.pb.go ├── SC_19130.pb.go ├── SC_19132.pb.go ├── SC_20001.pb.go ├── SC_20002.pb.go ├── SC_20003.pb.go ├── SC_20004.pb.go ├── SC_20006.pb.go ├── SC_20008.pb.go ├── SC_20010.pb.go ├── SC_20012.pb.go ├── SC_20014.pb.go ├── SC_20015.pb.go ├── SC_20101.pb.go ├── SC_20102.pb.go ├── SC_20103.pb.go ├── SC_20104.pb.go ├── SC_20105.pb.go ├── SC_20107.pb.go ├── SC_20109.pb.go ├── SC_20111.pb.go ├── SC_20201.pb.go ├── SC_20202.pb.go ├── SC_20203.pb.go ├── SC_20204.pb.go ├── SC_20206.pb.go ├── SC_20208.pb.go ├── SC_22001.pb.go ├── SC_22010.pb.go ├── SC_22012.pb.go ├── SC_22013.pb.go ├── SC_22015.pb.go ├── SC_22102.pb.go ├── SC_22202.pb.go ├── SC_22204.pb.go ├── SC_24003.pb.go ├── SC_24005.pb.go ├── SC_24010.pb.go ├── SC_24012.pb.go ├── SC_24021.pb.go ├── SC_24023.pb.go ├── SC_24100.pb.go ├── SC_25001.pb.go ├── SC_25003.pb.go ├── SC_25005.pb.go ├── SC_25007.pb.go ├── SC_25009.pb.go ├── SC_25011.pb.go ├── SC_25013.pb.go ├── SC_25015.pb.go ├── SC_25017.pb.go ├── SC_25019.pb.go ├── SC_25021.pb.go ├── SC_25023.pb.go ├── SC_25025.pb.go ├── SC_25027.pb.go ├── SC_25029.pb.go ├── SC_25031.pb.go ├── SC_25033.pb.go ├── SC_25035.pb.go ├── SC_25038.pb.go ├── SC_25039.pb.go ├── SC_26001.pb.go ├── SC_26003.pb.go ├── SC_26005.pb.go ├── SC_26007.pb.go ├── SC_26022.pb.go ├── SC_26032.pb.go ├── SC_26033.pb.go ├── SC_26042.pb.go ├── SC_26044.pb.go ├── SC_26052.pb.go ├── SC_26054.pb.go ├── SC_26056.pb.go ├── SC_26102.pb.go ├── SC_26104.pb.go ├── SC_26107.pb.go ├── SC_26109.pb.go ├── SC_26112.pb.go ├── SC_26120.pb.go ├── SC_26123.pb.go ├── SC_26125.pb.go ├── SC_26127.pb.go ├── SC_26129.pb.go ├── SC_26151.pb.go ├── SC_26153.pb.go ├── SC_26155.pb.go ├── SC_26157.pb.go ├── SC_26159.pb.go ├── SC_26161.pb.go ├── SC_27001.pb.go ├── SC_27003.pb.go ├── SC_27005.pb.go ├── SC_27007.pb.go ├── SC_27009.pb.go ├── SC_27011.pb.go ├── SC_27013.pb.go ├── SC_27015.pb.go ├── SC_27017.pb.go ├── SC_27019.pb.go ├── SC_27020.pb.go ├── SC_27021.pb.go ├── SC_27022.pb.go ├── SC_27023.pb.go ├── SC_27024.pb.go ├── SC_27025.pb.go ├── SC_27027.pb.go ├── SC_27028.pb.go ├── SC_27029.pb.go ├── SC_27030.pb.go ├── SC_27031.pb.go ├── SC_27032.pb.go ├── SC_27034.pb.go ├── SC_27036.pb.go ├── SC_27038.pb.go ├── SC_27040.pb.go ├── SC_27042.pb.go ├── SC_27044.pb.go ├── SC_27046.pb.go ├── SC_27048.pb.go ├── SC_28000.pb.go ├── SC_28000_CN.pb.go ├── SC_28000_EN_JP_KR_TW.pb.go ├── SC_28002.pb.go ├── SC_28004.pb.go ├── SC_28006.pb.go ├── SC_28006_CN.pb.go ├── SC_28006_EN_JP_KR_TW.pb.go ├── SC_28008.pb.go ├── SC_28010.pb.go ├── SC_28012.pb.go ├── SC_28014.pb.go ├── SC_28016.pb.go ├── SC_30001.pb.go ├── SC_30003.pb.go ├── SC_30005.pb.go ├── SC_30007.pb.go ├── SC_30009.pb.go ├── SC_30011.pb.go ├── SC_30013.pb.go ├── SC_30015.pb.go ├── SC_30017.pb.go ├── SC_30019.pb.go ├── SC_30101.pb.go ├── SC_30103.pb.go ├── SC_30105.pb.go ├── SC_33001.pb.go ├── SC_33102.pb.go ├── SC_33104.pb.go ├── SC_33105.pb.go ├── SC_33107.pb.go ├── SC_33109.pb.go ├── SC_33111.pb.go ├── SC_33113.pb.go ├── SC_33114.pb.go ├── SC_33202.pb.go ├── SC_33203.pb.go ├── SC_33204.pb.go ├── SC_33206.pb.go ├── SC_33208.pb.go ├── SC_33302.pb.go ├── SC_33402.pb.go ├── SC_33404.pb.go ├── SC_33406.pb.go ├── SC_33408.pb.go ├── SC_33410.pb.go ├── SC_33414.pb.go ├── SC_33416.pb.go ├── SC_33508.pb.go ├── SC_33510.pb.go ├── SC_33601.pb.go ├── SC_33603.pb.go ├── SC_34002.pb.go ├── SC_34004.pb.go ├── SC_34502.pb.go ├── SC_34504.pb.go ├── SC_34506.pb.go ├── SC_34507.pb.go ├── SC_34508.pb.go ├── SC_34510.pb.go ├── SC_34512.pb.go ├── SC_34514.pb.go ├── SC_34516.pb.go ├── SC_34518.pb.go ├── SC_34520.pb.go ├── SC_34522.pb.go ├── SC_34524.pb.go ├── SC_34526.pb.go ├── SC_34528.pb.go ├── SC_40002.pb.go ├── SC_40004.pb.go ├── SC_40006.pb.go ├── SC_40008.pb.go ├── SC_40009.pb.go ├── SC_50000.pb.go ├── SC_50002.pb.go ├── SC_50004.pb.go ├── SC_50005.pb.go ├── SC_50007.pb.go ├── SC_50008.pb.go ├── SC_50010.pb.go ├── SC_50012.pb.go ├── SC_50013.pb.go ├── SC_50015.pb.go ├── SC_50017.pb.go ├── SC_50101.pb.go ├── SC_50103.pb.go ├── SC_50104.pb.go ├── SC_50106.pb.go ├── SC_50108.pb.go ├── SC_50110.pb.go ├── SC_50112.pb.go ├── SC_50114.pb.go ├── SC_60000.pb.go ├── SC_60002.pb.go ├── SC_60004.pb.go ├── SC_60006.pb.go ├── SC_60008.pb.go ├── SC_60009.pb.go ├── SC_60011.pb.go ├── SC_60013.pb.go ├── SC_60015.pb.go ├── SC_60017.pb.go ├── SC_60019.pb.go ├── SC_60021.pb.go ├── SC_60023.pb.go ├── SC_60025.pb.go ├── SC_60027.pb.go ├── SC_60029.pb.go ├── SC_60030.pb.go ├── SC_60031.pb.go ├── SC_60032.pb.go ├── SC_60034.pb.go ├── SC_60036.pb.go ├── SC_60101.pb.go ├── SC_60103.pb.go ├── SC_61002.pb.go ├── SC_61004.pb.go ├── SC_61006.pb.go ├── SC_61008.pb.go ├── SC_61010.pb.go ├── SC_61012.pb.go ├── SC_61014.pb.go ├── SC_61016.pb.go ├── SC_61018.pb.go ├── SC_61020.pb.go ├── SC_61021.pb.go ├── SC_61022.pb.go ├── SC_61024.pb.go ├── SC_61026.pb.go ├── SC_61028.pb.go ├── SC_61030.pb.go ├── SC_61032.pb.go ├── SC_61034.pb.go ├── SC_61036.pb.go ├── SC_61038.pb.go ├── SC_62003.pb.go ├── SC_62004.pb.go ├── SC_62005.pb.go ├── SC_62006.pb.go ├── SC_62008.pb.go ├── SC_62010.pb.go ├── SC_62012.pb.go ├── SC_62014.pb.go ├── SC_62016.pb.go ├── SC_62017.pb.go ├── SC_62018.pb.go ├── SC_62019.pb.go ├── SC_62021.pb.go ├── SC_62023.pb.go ├── SC_62025.pb.go ├── SC_62030.pb.go ├── SC_62031.pb.go ├── SC_62101.pb.go ├── SC_63000.pb.go ├── SC_63002.pb.go ├── SC_63004.pb.go ├── SC_63006.pb.go ├── SC_63008.pb.go ├── SC_63010.pb.go ├── SC_63012.pb.go ├── SC_63014.pb.go ├── SC_63016.pb.go ├── SC_63100.pb.go ├── SC_63201.pb.go ├── SC_63203.pb.go ├── SC_63205.pb.go ├── SC_63207.pb.go ├── SC_63209.pb.go ├── SC_63211.pb.go ├── SC_63213.pb.go ├── SC_63215.pb.go ├── SC_63300.pb.go ├── SC_63302.pb.go ├── SC_63304.pb.go ├── SC_63306.pb.go ├── SC_63308.pb.go ├── SC_63310.pb.go ├── SC_63312.pb.go ├── SC_63314.pb.go ├── SC_63315.pb.go ├── SC_63316.pb.go ├── SC_63318.pb.go ├── SC_63320.pb.go ├── SC_64000.pb.go ├── SC_64002.pb.go ├── SC_64004.pb.go ├── SC_64006.pb.go ├── SC_64008.pb.go ├── SC_64010.pb.go ├── SC_70000.pb.go ├── SC_70002.pb.go ├── SC_70004.pb.go ├── SC_70006.pb.go ├── SELECTED_INFO.pb.go ├── SELECT_INFO.pb.go ├── SERVERINFO.pb.go ├── SHIPCOREINFO.pb.go ├── SHIPGROUPPOS.pb.go ├── SHIPID_POS.pb.go ├── SHIPID_POS_INFO.pb.go ├── SHIPINCHALLENGE.pb.go ├── SHIPINCHAPTER.pb.go ├── SHIPINFO.pb.go ├── SHIPMODELINFO.pb.go ├── SHIPSKILL.pb.go ├── SHIPSTATE.pb.go ├── SHIP_DISCUSS_INFO.pb.go ├── SHIP_EXP.pb.go ├── SHIP_IN_DROM.pb.go ├── SHIP_IN_EVENT.pb.go ├── SHIP_STATISTICS_AWARD.pb.go ├── SHIP_STATISTICS_INFO.pb.go ├── SHIP_TAKING_DATA.pb.go ├── SHOPINFO.pb.go ├── SHOPPINGSTREET.pb.go ├── SHOP_INFO.pb.go ├── SKILLINFO.pb.go ├── SKILL_CLASS.pb.go ├── SKILL_EXP.pb.go ├── SKILL_INFO.pb.go ├── SPWEAPONINFO.pb.go ├── STATISTICSINFO.pb.go ├── STRATEGYINFO.pb.go ├── STREETGOODS.pb.go ├── STRENGTH_INFO.pb.go ├── TARGETINFO.pb.go ├── TASKINFO.pb.go ├── TASK_ADD.pb.go ├── TASK_INFO.pb.go ├── TASK_PROGRESS.pb.go ├── TASK_UPDATE.pb.go ├── TEAM_CELL.pb.go ├── TEAM_CHUNK.pb.go ├── TECHNOLOGYCATCHUP.pb.go ├── TECHNOLOGYDROP.pb.go ├── TECHNOLOGYINFO.pb.go ├── TECHNOLOGYREFRESH.pb.go ├── TECHPURSUING.pb.go ├── TECHSET.pb.go ├── THEME_MD5.pb.go ├── TIME_REWARD_INFO.pb.go ├── TRANSFORM_INFO.pb.go ├── USERCHALLENGEINFO.pb.go ├── USERSIMPLEINFO.pb.go ├── USER_GUILD_INFO.pb.go ├── VISITOR.pb.go ├── VOTEINFO.pb.go ├── WEEKLY_INFO.pb.go ├── WEEKLY_TASK.pb.go ├── WORLDBOSS_INFO.pb.go ├── WORLDBOSS_RANK.pb.go ├── WORLDBOSS_SIMPLE.pb.go ├── WORLDINFO.pb.go ├── WORLDITEMINFO.pb.go ├── WORLDMAPID.pb.go ├── WORLDPOSINFO.pb.go ├── WORLDTARGET.pb.go ├── WORLDTARGET_FETCH.pb.go ├── WORLDTARGET_PROCESS.pb.go └── WORLD_ITEM_INFO.pb.go ├── tests └── commander_test.go └── web ├── dto ├── dto.announce.go ├── dto.build.go ├── dto.commander.go ├── dto.frame.go ├── dto.item.go ├── dto.player.go ├── dto.resources.go ├── dto.server.go ├── dto.ship.go └── validator.go ├── main.go ├── routes ├── builds.go ├── depot.go ├── dock.go ├── frames.go ├── index.go ├── players.go ├── resources.go └── servers.go ├── src ├── package.json ├── tailwind.config.js └── tw.css ├── static ├── _hyperscript.min.js ├── al_faces │ ├── 22.png │ ├── 33.png │ ├── Abercrombie.png │ ├── Abukuma.png │ ├── Acasta.png │ ├── Achilles.png │ ├── Admiral Graf Spee.png │ ├── Admiral Hipper μ.png │ ├── Admiral Hipper.png │ ├── Adventure Galley.png │ ├── Agano.png │ ├── Ajax.png │ ├── Akagi μ.png │ ├── Akagi.png │ ├── Akane Shinjo.png │ ├── Akashi.png │ ├── Akatsuki.png │ ├── Alabama.png │ ├── Albacore μ.png │ ├── Albacore.png │ ├── Albion.png │ ├── Alfredo Oriani.png │ ├── Algérie META.png │ ├── Algérie.png │ ├── Allen M. Sumner.png │ ├── Alsace.png │ ├── Amagi.png │ ├── Amazon.png │ ├── Ami Futami.png │ ├── An Shan.png │ ├── Anchorage.png │ ├── Andrea Doria.png │ ├── Anniversary Kizuna AI.png │ ├── Aoba.png │ ├── Aquila.png │ ├── Arashio.png │ ├── Archerfish.png │ ├── Ardent.png │ ├── Arethusa.png │ ├── Argus.png │ ├── Ariake.png │ ├── Arizona META.png │ ├── Arizona.png │ ├── Ark Royal META.png │ ├── Ark Royal.png │ ├── Arkhangelsk.png │ ├── Asanagi.png │ ├── Asashio.png │ ├── Ashigara.png │ ├── Astoria.png │ ├── Asuka.png │ ├── Atago.png │ ├── Atlanta.png │ ├── Attilio Regolo.png │ ├── August von Parseval.png │ ├── Aulick.png │ ├── Aurora.png │ ├── Avrora.png │ ├── Ayanami.png │ ├── Aylwin.png │ ├── Azuma.png │ ├── Azusa Miura.png │ ├── Bache.png │ ├── Bailey.png │ ├── Baltimore μ.png │ ├── Baltimore.png │ ├── Bataan.png │ ├── Beagle.png │ ├── Belfast.png │ ├── Bellona.png │ ├── Benson.png │ ├── Biloxi.png │ ├── Birmingham.png │ ├── Bismarck Zwei.png │ ├── Bismarck.png │ ├── Black Heart.png │ ├── Black Prince.png │ ├── Blanc.png │ ├── Bluegill.png │ ├── Blücher.png │ ├── Bogue.png │ ├── Boise μ.png │ ├── Boise.png │ ├── Bolzano.png │ ├── Bremerton.png │ ├── Brennus.png │ ├── Brest.png │ ├── Bristol.png │ ├── Brooklyn.png │ ├── Brünhilde.png │ ├── Bulldog.png │ ├── Bunker Hill.png │ ├── Bush.png │ ├── Béarn META.png │ ├── Béarn.png │ ├── California.png │ ├── Carabiniere.png │ ├── Casablanca.png │ ├── Cassin.png │ ├── Cavalla.png │ ├── Centaur.png │ ├── Champagne.png │ ├── Chang Chun.png │ ├── Chao Ho.png │ ├── Chapayev.png │ ├── Charles Ausburne.png │ ├── Charybdis.png │ ├── Chaser.png │ ├── Chen Hai.png │ ├── Cheshire.png │ ├── Chi An.png │ ├── Chicago.png │ ├── Chihaya Kisaragi.png │ ├── Chikuma.png │ ├── Chise Asukagawa.png │ ├── Chitose.png │ ├── Chiyoda.png │ ├── Chkalov.png │ ├── Choukai.png │ ├── Clemenceau.png │ ├── Cleveland μ.png │ ├── Cleveland.png │ ├── Colorado.png │ ├── Columbia.png │ ├── Comet.png │ ├── Concord.png │ ├── Constellation.png │ ├── Conte di Cavour.png │ ├── Cooper.png │ ├── Craven.png │ ├── Crescent.png │ ├── Curacoa.png │ ├── Curlew.png │ ├── Cygnet.png │ ├── Dace.png │ ├── Denver.png │ ├── Deutschland.png │ ├── Devonshire.png │ ├── Dewey.png │ ├── Dido μ.png │ ├── Dido.png │ ├── Dorsetshire.png │ ├── Downes.png │ ├── Drake.png │ ├── Duca degli Abruzzi.png │ ├── Duke of York.png │ ├── Dunkerque.png │ ├── Eagle.png │ ├── Echo.png │ ├── Edinburgh.png │ ├── Elbe.png │ ├── Elbing.png │ ├── Eldridge.png │ ├── Elegant Kizuna AI.png │ ├── Emanuele Pessagno.png │ ├── Emden.png │ ├── Enterprise (Royal Navy).png │ ├── Enterprise.png │ ├── Erebus META.png │ ├── Erebus.png │ ├── Eskimo.png │ ├── Essex.png │ ├── Exeter.png │ ├── Fei Yuen.png │ ├── Felix Schultz.png │ ├── Fiji.png │ ├── Flandre.png │ ├── Flasher.png │ ├── Fletcher.png │ ├── Fleuret.png │ ├── Foch META.png │ ├── Foch.png │ ├── Foote.png │ ├── Forbin.png │ ├── Formidable μ.png │ ├── Formidable.png │ ├── Fortune META.png │ ├── Fortune.png │ ├── Foxhound.png │ ├── Friedrich Carl.png │ ├── Friedrich der Große.png │ ├── Fu Shun.png │ ├── Fubuki (Senran Kagura).png │ ├── Fubuki.png │ ├── Fumiruiru.png │ ├── Fumizuki.png │ ├── Furutaka.png │ ├── Fusou META.png │ ├── Fusou.png │ ├── Galatea.png │ ├── Gangut.png │ ├── Gascogne μ.png │ ├── Gascogne.png │ ├── Georgia.png │ ├── Giulio Cesare.png │ ├── Giuseppe Garibaldi.png │ ├── Glasgow.png │ ├── Glorious.png │ ├── Gloucester.png │ ├── Glowworm.png │ ├── Gneisenau META.png │ ├── Gneisenau.png │ ├── Golden Hind.png │ ├── Gorizia.png │ ├── Graf Zeppelin.png │ ├── Green Heart.png │ ├── Gremyashchy.png │ ├── Grenville.png │ ├── Gridley.png │ ├── Gromky.png │ ├── Grozny.png │ ├── Guam.png │ ├── Guichen.png │ ├── Haguro.png │ ├── Hai Chi.png │ ├── Hai Tien.png │ ├── Hakuryuu.png │ ├── Halsey Powell.png │ ├── Hamakaze.png │ ├── Hammann II.png │ ├── Hammann.png │ ├── Hanazuki.png │ ├── Harbin.png │ ├── Hardy.png │ ├── Haruka Amami.png │ ├── Haruna.png │ ├── Harutsuki.png │ ├── Hass.png │ ├── Hatakaze META.png │ ├── Hatakaze.png │ ├── Hatsuharu.png │ ├── Hatsushimo.png │ ├── Hatsuzuki.png │ ├── Hazelwood.png │ ├── Helena META.png │ ├── Helena.png │ ├── Hermes.png │ ├── Hermione.png │ ├── Hero.png │ ├── Hibiki.png │ ├── Hiei.png │ ├── Hindenburg.png │ ├── Hiryuu META.png │ ├── Hiryuu.png │ ├── Hiyou META.png │ ├── Hiyou.png │ ├── Hobby.png │ ├── Homura.png │ ├── Honoka.png │ ├── Honolulu.png │ ├── Hood.png │ ├── Hornet II.png │ ├── Hornet.png │ ├── Houshou.png │ ├── Houston II.png │ ├── Houston.png │ ├── Howe.png │ ├── Hu Pen.png │ ├── Huan Ch'ang.png │ ├── Hunter META.png │ ├── Hunter.png │ ├── Hwah Jah.png │ ├── Hyuuga.png │ ├── I-13.png │ ├── I-168.png │ ├── I-19.png │ ├── I-25.png │ ├── I-26.png │ ├── I-56.png │ ├── I-58.png │ ├── Ibuki.png │ ├── Icarus.png │ ├── Ikaruga.png │ ├── Ikazuchi.png │ ├── Illustrious μ.png │ ├── Illustrious.png │ ├── Impero.png │ ├── Implacable.png │ ├── Inazuma.png │ ├── Independence.png │ ├── Indianapolis.png │ ├── Indomitable.png │ ├── Ingraham.png │ ├── Intrepid.png │ ├── Iori Minase.png │ ├── Ise.png │ ├── Isokaze.png │ ├── Isuzu.png │ ├── Izumo.png │ ├── Jade.png │ ├── Jamaica.png │ ├── Janus.png │ ├── Javelin.png │ ├── Jean Bart.png │ ├── Jeanne d'Arc.png │ ├── Jenkins.png │ ├── Jersey.png │ ├── Jervis.png │ ├── Jintsuu META.png │ ├── Jintsuu.png │ ├── Joffre.png │ ├── Juneau.png │ ├── Juno.png │ ├── Junyou META.png │ ├── Junyou.png │ ├── Jupiter.png │ ├── Kaga (Battleship).png │ ├── Kaga.png │ ├── Kagerou.png │ ├── Kako.png │ ├── Kala Ideas.png │ ├── Kalk.png │ ├── Kamikaze.png │ ├── Karlsruhe.png │ ├── Kashino.png │ ├── Kasumi (Venus Vacation).png │ ├── Kasumi.png │ ├── Katsuragi.png │ ├── Kawakaze.png │ ├── Kazagumo.png │ ├── Kearsarge.png │ ├── Kent.png │ ├── Kersaint.png │ ├── Kiev.png │ ├── Kii.png │ ├── Kimberly META.png │ ├── Kimberly.png │ ├── King George V.png │ ├── Kinu.png │ ├── Kinugasa.png │ ├── Kirishima.png │ ├── Kirov META.png │ ├── Kirov.png │ ├── Kisaragi.png │ ├── Kitakaze.png │ ├── Kiyonami.png │ ├── Kizuna AI.png │ ├── Klaudia Valentz.png │ ├── Kongou μ.png │ ├── Kongou.png │ ├── Kronshtadt.png │ ├── Kumano.png │ ├── Kuon.png │ ├── Kuroshio.png │ ├── Kursk.png │ ├── Kuybyshev.png │ ├── Köln.png │ ├── Königsberg.png │ ├── L'Indomptable.png │ ├── L'Opiniâtre.png │ ├── La Galissonnière META.png │ ├── La Galissonnière.png │ ├── Laffey II.png │ ├── Laffey.png │ ├── Langley II.png │ ├── Langley.png │ ├── Le Malin μ.png │ ├── Le Malin.png │ ├── Le Mars.png │ ├── Le Terrible.png │ ├── Le Triomphant.png │ ├── Le Téméraire μ.png │ ├── Le Téméraire.png │ ├── Leander.png │ ├── Leipzig.png │ ├── Leonardo da Vinci.png │ ├── Lexington.png │ ├── Libeccio.png │ ├── Lila Decyrus.png │ ├── Littorio.png │ ├── Liverpool.png │ ├── London.png │ ├── Long Island.png │ ├── Louisville.png │ ├── Luna.png │ ├── Lung Wu.png │ ├── Lyon.png │ ├── Lützow.png │ ├── Maestrale.png │ ├── Magdeburg.png │ ├── Maillé Brézé.png │ ├── Mainz.png │ ├── Makinami.png │ ├── Mami Futami.png │ ├── Manchester.png │ ├── Marblehead.png │ ├── Marco Polo.png │ ├── Marie Rose.png │ ├── Marseillaise.png │ ├── Mary Celeste.png │ ├── Maryland.png │ ├── Massachusetts.png │ ├── Matchless.png │ ├── Matsukaze.png │ ├── Maury.png │ ├── Maya.png │ ├── McCall.png │ ├── Memphis META.png │ ├── Memphis.png │ ├── Michishio.png │ ├── Mikasa.png │ ├── Mikazuki.png │ ├── Mikuma.png │ ├── Minato Aqua.png │ ├── Minazuki.png │ ├── Minneapolis.png │ ├── Minsk.png │ ├── Misaki.png │ ├── Miyuki.png │ ├── Mogador.png │ ├── Mogami.png │ ├── Monarch.png │ ├── Monica.png │ ├── Montpelier.png │ ├── Morrison.png │ ├── Mujina.png │ ├── Mullany.png │ ├── Murasaki Shion.png │ ├── Murasaki.png │ ├── Murmansk.png │ ├── Musashi.png │ ├── Musketeer.png │ ├── Mutsu.png │ ├── Mutsuki.png │ ├── Myoukou.png │ ├── Nachi.png │ ├── Naganami.png │ ├── Nagara.png │ ├── Nagato.png │ ├── Nagatsuki.png │ ├── Nagisa.png │ ├── Naka.png │ ├── Nakiri Ayame.png │ ├── Namiko.png │ ├── Natori.png │ ├── Natsuiro Matsuri.png │ ├── Nautilus.png │ ├── Nekone.png │ ├── Nelson.png │ ├── Neptune (Neptunia).png │ ├── Neptune.png │ ├── Nevada.png │ ├── New Jersey.png │ ├── New Orleans.png │ ├── Newcastle.png │ ├── Nicholas.png │ ├── Nicoloso da Recco.png │ ├── Niizuki.png │ ├── Ning Hai.png │ ├── Noire.png │ ├── Norfolk.png │ ├── North Carolina.png │ ├── Northampton II.png │ ├── Northampton.png │ ├── Noshiro μ.png │ ├── Noshiro.png │ ├── Nowaki.png │ ├── Nubian.png │ ├── Nyotengu.png │ ├── Nürnberg.png │ ├── Odin.png │ ├── Ognevoy.png │ ├── Oite.png │ ├── Oklahoma.png │ ├── Omaha.png │ ├── Ookami Mio.png │ ├── Ooshio.png │ ├── Otto von Alvensleben.png │ ├── Owari.png │ ├── Oyashio.png │ ├── Painlevé.png │ ├── Pamiat Merkuria.png │ ├── Pamiat' Merkuria META.png │ ├── Pamiat' Merkuria.png │ ├── Patricia Abelheim.png │ ├── Penelope.png │ ├── Pennsylvania.png │ ├── Pensacola.png │ ├── Perseus.png │ ├── Peter Strasser.png │ ├── Phoenix.png │ ├── Ping Hai.png │ ├── Plymouth.png │ ├── Pola.png │ ├── Poltava.png │ ├── Pompeo Magno.png │ ├── Portland.png │ ├── Prince of Wales.png │ ├── Princess Hime.png │ ├── Princeton META.png │ ├── Princeton.png │ ├── Prinz Adalbert.png │ ├── Prinz Eugen μ.png │ ├── Prinz Eugen.png │ ├── Prinz Heinrich.png │ ├── Prinz Rupprecht.png │ ├── Prototype Bulin MKII.png │ ├── Purple Heart.png │ ├── Queen Elizabeth META.png │ ├── Queen Elizabeth.png │ ├── Quincy.png │ ├── Radford.png │ ├── Raleigh.png │ ├── Ranger.png │ ├── Regensburg.png │ ├── Reisalin Stout.png │ ├── Reno.png │ ├── Renown META.png │ ├── Renown.png │ ├── Repulse META.png │ ├── Repulse.png │ ├── Revenge.png │ ├── Richelieu.png │ ├── Richmond.png │ ├── Rikka Takarada.png │ ├── Ritsuko Akizuki.png │ ├── Rodney META.png │ ├── Rodney.png │ ├── Roma.png │ ├── Roon μ.png │ ├── Roon.png │ ├── Royal Fortune.png │ ├── Royal Oak.png │ ├── Rurutie.png │ ├── Ryuuhou.png │ ├── Ryuujou.png │ ├── Saint Louis.png │ ├── Sakawa.png │ ├── Salt Lake City.png │ ├── San Diego.png │ ├── San Francisco.png │ ├── San Jacinto.png │ ├── San Juan.png │ ├── Saraana.png │ ├── Saratoga.png │ ├── Scharnhorst META.png │ ├── Scharnhorst.png │ ├── Scylla.png │ ├── Seattle.png │ ├── Sendai.png │ ├── Serri Glaus.png │ ├── Sevastopol.png │ ├── Seydlitz.png │ ├── Shangri-La.png │ ├── Sheffield META.png │ ├── Sheffield μ.png │ ├── Sheffield.png │ ├── Shigure.png │ ├── Shimakaze.png │ ├── Shimanto.png │ ├── Shinano.png │ ├── Shirakami Fubuki.png │ ├── Shiranui.png │ ├── Shiratsuyu.png │ ├── Shirayuki.png │ ├── Shouhou.png │ ├── Shoukaku.png │ ├── Shropshire.png │ ├── Sims.png │ ├── Sirius.png │ ├── Smalley.png │ ├── Soobrazitelny.png │ ├── Souryuu META.png │ ├── Souryuu.png │ ├── South Dakota.png │ ├── Southampton.png │ ├── Sovetskaya Belorussiya.png │ ├── Sovetskaya Rossiya.png │ ├── Sovetsky Soyuz.png │ ├── Specialized Bulin Custom MKIII.png │ ├── Spence.png │ ├── St. Louis.png │ ├── Stanly.png │ ├── Stephen Potter.png │ ├── Stremitelny.png │ ├── Suffolk.png │ ├── Suffren.png │ ├── Super Gamer Kizuna AI.png │ ├── Surcouf.png │ ├── Suruga.png │ ├── Sussex.png │ ├── Suzutsuki.png │ ├── Suzuya.png │ ├── Svirepy.png │ ├── Swiftsure.png │ ├── São Martinho.png │ ├── Tai Yuan.png │ ├── Taihou μ.png │ ├── Taihou.png │ ├── Takao.png │ ├── Tallinn.png │ ├── Tamaki.png │ ├── Tanikaze.png │ ├── Tartu.png │ ├── Tashkent μ.png │ ├── Tashkent.png │ ├── Tennessee.png │ ├── Terror.png │ ├── Thatcher.png │ ├── The 2nd.png │ ├── Theseus.png │ ├── Thüringen.png │ ├── Ticonderoga.png │ ├── Ting An.png │ ├── Tirpitz.png │ ├── Tokino Sora.png │ ├── Torricelli.png │ ├── Tosa.png │ ├── Trento META.png │ ├── Trento.png │ ├── Trieste.png │ ├── U-101.png │ ├── U-110.png │ ├── U-1206.png │ ├── U-37.png │ ├── U-410.png │ ├── U-47.png │ ├── U-522.png │ ├── U-556 META.png │ ├── U-556.png │ ├── U-557.png │ ├── U-73.png │ ├── U-81.png │ ├── U-96.png │ ├── Ulrich von Hutten.png │ ├── Umikaze.png │ ├── Unicorn.png │ ├── Universal Bulin.png │ ├── Unzen.png │ ├── Urakaze.png │ ├── Uranami.png │ ├── Uruuru.png │ ├── Uzuki.png │ ├── Valiant.png │ ├── Vampire META.png │ ├── Vampire.png │ ├── Vanguard.png │ ├── Vauquelin.png │ ├── Vert.png │ ├── Vestal META.png │ ├── Vestal.png │ ├── Victorious.png │ ├── Vincennes.png │ ├── Vincenzo Gioberti.png │ ├── Vittorio Veneto.png │ ├── Volga.png │ ├── Voroshilov.png │ ├── Wakaba.png │ ├── Wakatsuki.png │ ├── Warspite.png │ ├── Washington.png │ ├── Wasp.png │ ├── Weser.png │ ├── West Virginia.png │ ├── White Heart.png │ ├── Whydah.png │ ├── Wichita.png │ ├── Yamakaze.png │ ├── Yamashiro META.png │ ├── Yamashiro.png │ ├── Yat Sen.png │ ├── Ying Swei.png │ ├── Yoizuki.png │ ├── Yorck.png │ ├── York.png │ ├── Yorktown II.png │ ├── Yorktown.png │ ├── Yukikaze.png │ ├── Yume Minami.png │ ├── Yumi.png │ ├── Yura.png │ ├── Yuubari.png │ ├── Yuudachi.png │ ├── Yuugure.png │ ├── Yūyaki.png │ ├── Z1.png │ ├── Z16.png │ ├── Z18.png │ ├── Z19.png │ ├── Z2.png │ ├── Z20.png │ ├── Z21.png │ ├── Z23.png │ ├── Z24.png │ ├── Z25.png │ ├── Z26.png │ ├── Z28.png │ ├── Z35.png │ ├── Z36.png │ ├── Z46.png │ ├── Zara.png │ ├── Zuikaku.png │ ├── Ägir.png │ ├── Émile Bertin.png │ └── Épée.png ├── bootstrap-icons.min.css ├── custom.min.css ├── fonts │ ├── BerkeleyMono-Bold.woff2 │ ├── BerkeleyMono-BoldItalic.woff2 │ ├── BerkeleyMono-Italic.woff2 │ ├── BerkeleyMono-Regular.woff2 │ └── bootstrap-icons.woff2 ├── highlight.min.js ├── htmx.min.js ├── items │ └── Wisdom Cube.png ├── main.css ├── main.js └── response-targets.js ├── utils ├── account_status_badge.go ├── human_readable_size.go ├── iso_timestamp.go ├── repeat_string.go ├── return_alert.go ├── return_toast.go ├── seconds_left.go ├── tab_color.go ├── time_format.go ├── time_left.go ├── time_span.go └── trim_string.go └── views ├── builds.html ├── components ├── alerts │ ├── default │ │ ├── alert_error.html │ │ ├── alert_success.html │ │ └── alert_warning.html │ └── ephemeral │ │ ├── ephemeral_alert_error.html │ │ ├── ephemeral_alert_success.html │ │ └── ephemeral_alert_warning.html ├── builds │ ├── card.html │ ├── modal.html │ └── new_modal.html ├── builds_content.html ├── commander_select.html ├── depot_content.html ├── dock_content.html ├── editable_player_row.html ├── editable_server_row.html ├── frame_dissection.html ├── frame_selector.html ├── item │ ├── card.html │ ├── modal.html │ └── new_modal.html ├── navbar.html ├── player_row.html ├── resources │ ├── card.html │ ├── modal.html │ └── new_modal.html ├── resources_content.html ├── server_row.html ├── ship │ ├── card.html │ ├── modal.html │ ├── new_modal.html │ └── skins_options.html └── toasts │ ├── default │ ├── toast_error.html │ ├── toast_success.html │ └── toast_warning.html │ └── ephemeral │ ├── ephemeral_toast_error.html │ ├── ephemeral_toast_success.html │ └── ephemeral_toast_warning.html ├── debug.html ├── depot.html ├── dock.html ├── index.html ├── layouts └── main.html ├── players.html ├── resources.html └── servers.html /.air.toml: -------------------------------------------------------------------------------- 1 | # .air.toml 2 | root = "." 3 | tmp_dir = "tmp" 4 | [build] 5 | cmd = "go build -o ./tmp/main ." 6 | bin = "./tmp/main" 7 | delay = 1000 # ms 8 | exclude_dir = ["assets", "tmp", "vendor", "src/node_modules"] 9 | include_ext = ["go"] 10 | exclude_regex = ["_test\\.go"] -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | POSTGRES_PASSWORD=your_super_secret_password 2 | POSTGRES_USER=belfast 3 | POSTGRES_HOST=localhost 4 | POSTGRES_PORT=5432 5 | POSTGRES_DB=belfast 6 | POSTGRES_HOST_AUTH_METHOD=trust 7 | # China, Overseas, Japan, Korea, Taiwan 8 | AL_REGION={CN,EN,JP,KR,TW} -------------------------------------------------------------------------------- /.github/workflows/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "github-actions" 4 | directory: "/" 5 | schedule: 6 | interval: "daily" 7 | - package-ecosystem: "gomod" 8 | directory: "/" 9 | schedule: 10 | interval: "daily" 11 | -------------------------------------------------------------------------------- /answer/activities.go: -------------------------------------------------------------------------------- 1 | package answer 2 | 3 | import ( 4 | "github.com/ggmolly/belfast/connection" 5 | 6 | "github.com/ggmolly/belfast/protobuf" 7 | ) 8 | 9 | func Activities(buffer *[]byte, client *connection.Client) (int, int, error) { 10 | var response protobuf.SC_11200 11 | return client.SendMessage(11200, &response) 12 | } 13 | -------------------------------------------------------------------------------- /answer/commander_friend_list.go: -------------------------------------------------------------------------------- 1 | package answer 2 | 3 | import ( 4 | "github.com/ggmolly/belfast/connection" 5 | "github.com/ggmolly/belfast/protobuf" 6 | ) 7 | 8 | func CommanderFriendList(buffer *[]byte, client *connection.Client) (int, int, error) { 9 | var response protobuf.SC_50000 // Create an empty FriendList / RequestList 10 | return client.SendMessage(50000, &response) 11 | } 12 | -------------------------------------------------------------------------------- /answer/commander_guild_chat.go: -------------------------------------------------------------------------------- 1 | package answer 2 | 3 | import ( 4 | "github.com/ggmolly/belfast/connection" 5 | 6 | "github.com/ggmolly/belfast/protobuf" 7 | ) 8 | 9 | func CommanderGuildChat(buffer *[]byte, client *connection.Client) (int, int, error) { 10 | var response protobuf.SC_60101 11 | return client.SendMessage(60101, &response) 12 | } 13 | -------------------------------------------------------------------------------- /answer/commander_guild_technologies.go: -------------------------------------------------------------------------------- 1 | package answer 2 | 3 | import ( 4 | "github.com/ggmolly/belfast/connection" 5 | 6 | "github.com/ggmolly/belfast/protobuf" 7 | ) 8 | 9 | func CommanderGuildTechnologies(buffer *[]byte, client *connection.Client) (int, int, error) { 10 | var response protobuf.SC_62101 11 | return client.SendMessage(62101, &response) 12 | } 13 | -------------------------------------------------------------------------------- /answer/commander_missions.go: -------------------------------------------------------------------------------- 1 | package answer 2 | 3 | import ( 4 | "github.com/ggmolly/belfast/connection" 5 | "github.com/ggmolly/belfast/protobuf" 6 | ) 7 | 8 | func CommanderMissions(buffer *[]byte, client *connection.Client) (int, int, error) { 9 | var response protobuf.SC_20001 10 | return client.SendMessage(20001, &response) 11 | } 12 | -------------------------------------------------------------------------------- /answer/confirm_ship.go: -------------------------------------------------------------------------------- 1 | package answer 2 | 3 | import ( 4 | "github.com/ggmolly/belfast/connection" 5 | 6 | "github.com/ggmolly/belfast/protobuf" 7 | "google.golang.org/protobuf/proto" 8 | ) 9 | 10 | func ConfirmShip(buffer *[]byte, client *connection.Client) (int, int, error) { 11 | return client.SendMessage(12046, &protobuf.SC_12046{ 12 | Result: proto.Uint32(0), 13 | }) 14 | } 15 | -------------------------------------------------------------------------------- /answer/equipped_weapon_skin.go: -------------------------------------------------------------------------------- 1 | package answer 2 | 3 | import ( 4 | "github.com/ggmolly/belfast/connection" 5 | 6 | "github.com/ggmolly/belfast/protobuf" 7 | ) 8 | 9 | func EquippedWeaponSkin(buffer *[]byte, client *connection.Client) (int, int, error) { 10 | var response protobuf.SC_14101 11 | return client.SendMessage(14101, &response) 12 | } 13 | -------------------------------------------------------------------------------- /answer/get_meta_ships_points_response.go: -------------------------------------------------------------------------------- 1 | package answer 2 | 3 | import ( 4 | "github.com/ggmolly/belfast/connection" 5 | 6 | "github.com/ggmolly/belfast/protobuf" 7 | ) 8 | 9 | func GetMetaShipsPointsResponse(buffer *[]byte, client *connection.Client) (int, int, error) { 10 | var response protobuf.SC_34002 11 | return client.SendMessage(34002, &response) 12 | } 13 | -------------------------------------------------------------------------------- /answer/juustagram_data.go: -------------------------------------------------------------------------------- 1 | package answer 2 | 3 | import ( 4 | "github.com/ggmolly/belfast/connection" 5 | 6 | "github.com/ggmolly/belfast/protobuf" 7 | ) 8 | 9 | func JuustagramData(buffer *[]byte, client *connection.Client) (int, int, error) { 10 | var response protobuf.SC_11700 11 | return client.SendMessage(11700, &response) 12 | } 13 | -------------------------------------------------------------------------------- /answer/technology_nation_proxy.go: -------------------------------------------------------------------------------- 1 | package answer 2 | 3 | import ( 4 | "github.com/ggmolly/belfast/connection" 5 | 6 | "github.com/ggmolly/belfast/protobuf" 7 | ) 8 | 9 | func TechnologyNationProxy(buffer *[]byte, client *connection.Client) (int, int, error) { 10 | var response protobuf.SC_64000 11 | return client.SendMessage(64000, &response) 12 | } 13 | -------------------------------------------------------------------------------- /answer/unk_16105.go: -------------------------------------------------------------------------------- 1 | package answer 2 | 3 | import ( 4 | "github.com/ggmolly/belfast/connection" 5 | 6 | "github.com/ggmolly/belfast/protobuf" 7 | ) 8 | 9 | func UNK_16105(buffer *[]byte, client *connection.Client) (int, int, error) { 10 | var response protobuf.SC_16105 11 | return client.SendMessage(16105, &response) 12 | } 13 | -------------------------------------------------------------------------------- /consts/fleet.go: -------------------------------------------------------------------------------- 1 | package consts 2 | 3 | const ( 4 | REGULAR_FLEET_ID = 1 5 | REGULAR_FLEET_NUMS = 6 6 | SUBMARINE_FLEET_ID = 11 7 | SUBMARINE_FLEET_NUMS = 4 8 | PVP_FLEET_ID = 101 9 | CHALLENGE_FLEET_ID = 102 10 | CHALLENGE_SUB_FLEET_ID = 103 11 | ) 12 | -------------------------------------------------------------------------------- /consts/mail_deal_cmds.go: -------------------------------------------------------------------------------- 1 | package consts 2 | 3 | const ( 4 | MAIL_DEAL_CMDS_READ = 1 5 | MAIL_DEAL_CMDS_IMPORTANT = 2 6 | MAIL_DEAL_CMDS_UNIMPORTANT = 3 7 | MAIL_DEAL_CMDS_DELETE = 4 8 | MAIL_DEAL_CMDS_ATTACHMENT = 5 9 | MAIL_DEAL_CMDS_OVERFLOW = 6 10 | MAIL_DEAL_CMDS_MOVE = 7 11 | ) 12 | -------------------------------------------------------------------------------- /consts/region_ids.go: -------------------------------------------------------------------------------- 1 | package consts 2 | 3 | const ( 4 | // Used to store auth arguments 5 | REGION_EN = uint8(1) 6 | REGION_JP = uint8(2) 7 | REGION_KR = uint8(3) 8 | REGION_CN = uint8(4) 9 | REGION_TW = uint8(5) 10 | ) 11 | -------------------------------------------------------------------------------- /misc/get_specified_region.go: -------------------------------------------------------------------------------- 1 | package misc 2 | 3 | import "os" 4 | 5 | // GetSpecifiedRegion returns the value of the environment variable AL_REGION 6 | // it is needed for the web UI to highlight the correct region since we cannot call os.Getenv 7 | // from the web template engine ¯\_(ツ)_/¯ 8 | func GetSpecifiedRegion() string { 9 | return os.Getenv("AL_REGION") 10 | } 11 | -------------------------------------------------------------------------------- /orm/buff.go: -------------------------------------------------------------------------------- 1 | package orm 2 | 3 | type Buff struct { 4 | ID uint32 `gorm:"primary_key" json:"id"` 5 | Name string `gorm:"size:50" json:"name"` 6 | Description string `gorm:"size:170" json:"desc"` 7 | MaxTime int `gorm:"default:0;not_null" json:"max_time"` 8 | BenefitType string `gorm:"size:50;not_null" json:"benefit_type"` 9 | } 10 | -------------------------------------------------------------------------------- /orm/likes.go: -------------------------------------------------------------------------------- 1 | package orm 2 | 3 | import "time" 4 | 5 | type Like struct { 6 | GroupID uint32 `gorm:"primary_key;index:idx_likes_group_id_liker_id"` 7 | LikerID uint32 `gorm:"not_null;primary_key;index:idx_likes_group_id_liker_id"` 8 | CreatedAt time.Time 9 | 10 | Liker Commander `gorm:"foreignkey:LikerID;references:CommanderID"` 11 | } 12 | -------------------------------------------------------------------------------- /orm/rarity.go: -------------------------------------------------------------------------------- 1 | package orm 2 | 3 | type Rarity struct { 4 | ID uint32 `gorm:"primary_key"` 5 | Name string `gorm:"size:12"` 6 | } 7 | -------------------------------------------------------------------------------- /web/dto/validator.go: -------------------------------------------------------------------------------- 1 | package dto 2 | 3 | import "github.com/go-playground/validator/v10" 4 | 5 | var ( 6 | Validate = validator.New() 7 | ) 8 | -------------------------------------------------------------------------------- /web/src/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "devDependencies": { 3 | "daisyui": "^4.4.19" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /web/static/al_faces/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/22.png -------------------------------------------------------------------------------- /web/static/al_faces/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/33.png -------------------------------------------------------------------------------- /web/static/al_faces/Abercrombie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Abercrombie.png -------------------------------------------------------------------------------- /web/static/al_faces/Abukuma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Abukuma.png -------------------------------------------------------------------------------- /web/static/al_faces/Acasta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Acasta.png -------------------------------------------------------------------------------- /web/static/al_faces/Achilles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Achilles.png -------------------------------------------------------------------------------- /web/static/al_faces/Admiral Graf Spee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Admiral Graf Spee.png -------------------------------------------------------------------------------- /web/static/al_faces/Admiral Hipper μ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Admiral Hipper μ.png -------------------------------------------------------------------------------- /web/static/al_faces/Admiral Hipper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Admiral Hipper.png -------------------------------------------------------------------------------- /web/static/al_faces/Adventure Galley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Adventure Galley.png -------------------------------------------------------------------------------- /web/static/al_faces/Agano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Agano.png -------------------------------------------------------------------------------- /web/static/al_faces/Ajax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Ajax.png -------------------------------------------------------------------------------- /web/static/al_faces/Akagi μ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Akagi μ.png -------------------------------------------------------------------------------- /web/static/al_faces/Akagi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Akagi.png -------------------------------------------------------------------------------- /web/static/al_faces/Akane Shinjo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Akane Shinjo.png -------------------------------------------------------------------------------- /web/static/al_faces/Akashi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Akashi.png -------------------------------------------------------------------------------- /web/static/al_faces/Akatsuki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Akatsuki.png -------------------------------------------------------------------------------- /web/static/al_faces/Alabama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Alabama.png -------------------------------------------------------------------------------- /web/static/al_faces/Albacore μ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Albacore μ.png -------------------------------------------------------------------------------- /web/static/al_faces/Albacore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Albacore.png -------------------------------------------------------------------------------- /web/static/al_faces/Albion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Albion.png -------------------------------------------------------------------------------- /web/static/al_faces/Alfredo Oriani.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Alfredo Oriani.png -------------------------------------------------------------------------------- /web/static/al_faces/Algérie META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Algérie META.png -------------------------------------------------------------------------------- /web/static/al_faces/Algérie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Algérie.png -------------------------------------------------------------------------------- /web/static/al_faces/Allen M. Sumner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Allen M. Sumner.png -------------------------------------------------------------------------------- /web/static/al_faces/Alsace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Alsace.png -------------------------------------------------------------------------------- /web/static/al_faces/Amagi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Amagi.png -------------------------------------------------------------------------------- /web/static/al_faces/Amazon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Amazon.png -------------------------------------------------------------------------------- /web/static/al_faces/Ami Futami.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Ami Futami.png -------------------------------------------------------------------------------- /web/static/al_faces/An Shan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/An Shan.png -------------------------------------------------------------------------------- /web/static/al_faces/Anchorage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Anchorage.png -------------------------------------------------------------------------------- /web/static/al_faces/Andrea Doria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Andrea Doria.png -------------------------------------------------------------------------------- /web/static/al_faces/Anniversary Kizuna AI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Anniversary Kizuna AI.png -------------------------------------------------------------------------------- /web/static/al_faces/Aoba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Aoba.png -------------------------------------------------------------------------------- /web/static/al_faces/Aquila.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Aquila.png -------------------------------------------------------------------------------- /web/static/al_faces/Arashio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Arashio.png -------------------------------------------------------------------------------- /web/static/al_faces/Archerfish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Archerfish.png -------------------------------------------------------------------------------- /web/static/al_faces/Ardent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Ardent.png -------------------------------------------------------------------------------- /web/static/al_faces/Arethusa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Arethusa.png -------------------------------------------------------------------------------- /web/static/al_faces/Argus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Argus.png -------------------------------------------------------------------------------- /web/static/al_faces/Ariake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Ariake.png -------------------------------------------------------------------------------- /web/static/al_faces/Arizona META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Arizona META.png -------------------------------------------------------------------------------- /web/static/al_faces/Arizona.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Arizona.png -------------------------------------------------------------------------------- /web/static/al_faces/Ark Royal META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Ark Royal META.png -------------------------------------------------------------------------------- /web/static/al_faces/Ark Royal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Ark Royal.png -------------------------------------------------------------------------------- /web/static/al_faces/Arkhangelsk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Arkhangelsk.png -------------------------------------------------------------------------------- /web/static/al_faces/Asanagi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Asanagi.png -------------------------------------------------------------------------------- /web/static/al_faces/Asashio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Asashio.png -------------------------------------------------------------------------------- /web/static/al_faces/Ashigara.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Ashigara.png -------------------------------------------------------------------------------- /web/static/al_faces/Astoria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Astoria.png -------------------------------------------------------------------------------- /web/static/al_faces/Asuka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Asuka.png -------------------------------------------------------------------------------- /web/static/al_faces/Atago.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Atago.png -------------------------------------------------------------------------------- /web/static/al_faces/Atlanta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Atlanta.png -------------------------------------------------------------------------------- /web/static/al_faces/Attilio Regolo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Attilio Regolo.png -------------------------------------------------------------------------------- /web/static/al_faces/August von Parseval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/August von Parseval.png -------------------------------------------------------------------------------- /web/static/al_faces/Aulick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Aulick.png -------------------------------------------------------------------------------- /web/static/al_faces/Aurora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Aurora.png -------------------------------------------------------------------------------- /web/static/al_faces/Avrora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Avrora.png -------------------------------------------------------------------------------- /web/static/al_faces/Ayanami.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Ayanami.png -------------------------------------------------------------------------------- /web/static/al_faces/Aylwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Aylwin.png -------------------------------------------------------------------------------- /web/static/al_faces/Azuma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Azuma.png -------------------------------------------------------------------------------- /web/static/al_faces/Azusa Miura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Azusa Miura.png -------------------------------------------------------------------------------- /web/static/al_faces/Bache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Bache.png -------------------------------------------------------------------------------- /web/static/al_faces/Bailey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Bailey.png -------------------------------------------------------------------------------- /web/static/al_faces/Baltimore μ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Baltimore μ.png -------------------------------------------------------------------------------- /web/static/al_faces/Baltimore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Baltimore.png -------------------------------------------------------------------------------- /web/static/al_faces/Bataan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Bataan.png -------------------------------------------------------------------------------- /web/static/al_faces/Beagle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Beagle.png -------------------------------------------------------------------------------- /web/static/al_faces/Belfast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Belfast.png -------------------------------------------------------------------------------- /web/static/al_faces/Bellona.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Bellona.png -------------------------------------------------------------------------------- /web/static/al_faces/Benson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Benson.png -------------------------------------------------------------------------------- /web/static/al_faces/Biloxi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Biloxi.png -------------------------------------------------------------------------------- /web/static/al_faces/Birmingham.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Birmingham.png -------------------------------------------------------------------------------- /web/static/al_faces/Bismarck Zwei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Bismarck Zwei.png -------------------------------------------------------------------------------- /web/static/al_faces/Bismarck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Bismarck.png -------------------------------------------------------------------------------- /web/static/al_faces/Black Heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Black Heart.png -------------------------------------------------------------------------------- /web/static/al_faces/Black Prince.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Black Prince.png -------------------------------------------------------------------------------- /web/static/al_faces/Blanc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Blanc.png -------------------------------------------------------------------------------- /web/static/al_faces/Bluegill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Bluegill.png -------------------------------------------------------------------------------- /web/static/al_faces/Blücher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Blücher.png -------------------------------------------------------------------------------- /web/static/al_faces/Bogue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Bogue.png -------------------------------------------------------------------------------- /web/static/al_faces/Boise μ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Boise μ.png -------------------------------------------------------------------------------- /web/static/al_faces/Boise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Boise.png -------------------------------------------------------------------------------- /web/static/al_faces/Bolzano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Bolzano.png -------------------------------------------------------------------------------- /web/static/al_faces/Bremerton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Bremerton.png -------------------------------------------------------------------------------- /web/static/al_faces/Brennus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Brennus.png -------------------------------------------------------------------------------- /web/static/al_faces/Brest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Brest.png -------------------------------------------------------------------------------- /web/static/al_faces/Bristol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Bristol.png -------------------------------------------------------------------------------- /web/static/al_faces/Brooklyn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Brooklyn.png -------------------------------------------------------------------------------- /web/static/al_faces/Brünhilde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Brünhilde.png -------------------------------------------------------------------------------- /web/static/al_faces/Bulldog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Bulldog.png -------------------------------------------------------------------------------- /web/static/al_faces/Bunker Hill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Bunker Hill.png -------------------------------------------------------------------------------- /web/static/al_faces/Bush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Bush.png -------------------------------------------------------------------------------- /web/static/al_faces/Béarn META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Béarn META.png -------------------------------------------------------------------------------- /web/static/al_faces/Béarn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Béarn.png -------------------------------------------------------------------------------- /web/static/al_faces/California.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/California.png -------------------------------------------------------------------------------- /web/static/al_faces/Carabiniere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Carabiniere.png -------------------------------------------------------------------------------- /web/static/al_faces/Casablanca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Casablanca.png -------------------------------------------------------------------------------- /web/static/al_faces/Cassin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Cassin.png -------------------------------------------------------------------------------- /web/static/al_faces/Cavalla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Cavalla.png -------------------------------------------------------------------------------- /web/static/al_faces/Centaur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Centaur.png -------------------------------------------------------------------------------- /web/static/al_faces/Champagne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Champagne.png -------------------------------------------------------------------------------- /web/static/al_faces/Chang Chun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Chang Chun.png -------------------------------------------------------------------------------- /web/static/al_faces/Chao Ho.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Chao Ho.png -------------------------------------------------------------------------------- /web/static/al_faces/Chapayev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Chapayev.png -------------------------------------------------------------------------------- /web/static/al_faces/Charles Ausburne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Charles Ausburne.png -------------------------------------------------------------------------------- /web/static/al_faces/Charybdis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Charybdis.png -------------------------------------------------------------------------------- /web/static/al_faces/Chaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Chaser.png -------------------------------------------------------------------------------- /web/static/al_faces/Chen Hai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Chen Hai.png -------------------------------------------------------------------------------- /web/static/al_faces/Cheshire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Cheshire.png -------------------------------------------------------------------------------- /web/static/al_faces/Chi An.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Chi An.png -------------------------------------------------------------------------------- /web/static/al_faces/Chicago.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Chicago.png -------------------------------------------------------------------------------- /web/static/al_faces/Chihaya Kisaragi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Chihaya Kisaragi.png -------------------------------------------------------------------------------- /web/static/al_faces/Chikuma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Chikuma.png -------------------------------------------------------------------------------- /web/static/al_faces/Chise Asukagawa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Chise Asukagawa.png -------------------------------------------------------------------------------- /web/static/al_faces/Chitose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Chitose.png -------------------------------------------------------------------------------- /web/static/al_faces/Chiyoda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Chiyoda.png -------------------------------------------------------------------------------- /web/static/al_faces/Chkalov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Chkalov.png -------------------------------------------------------------------------------- /web/static/al_faces/Choukai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Choukai.png -------------------------------------------------------------------------------- /web/static/al_faces/Clemenceau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Clemenceau.png -------------------------------------------------------------------------------- /web/static/al_faces/Cleveland μ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Cleveland μ.png -------------------------------------------------------------------------------- /web/static/al_faces/Cleveland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Cleveland.png -------------------------------------------------------------------------------- /web/static/al_faces/Colorado.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Colorado.png -------------------------------------------------------------------------------- /web/static/al_faces/Columbia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Columbia.png -------------------------------------------------------------------------------- /web/static/al_faces/Comet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Comet.png -------------------------------------------------------------------------------- /web/static/al_faces/Concord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Concord.png -------------------------------------------------------------------------------- /web/static/al_faces/Constellation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Constellation.png -------------------------------------------------------------------------------- /web/static/al_faces/Conte di Cavour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Conte di Cavour.png -------------------------------------------------------------------------------- /web/static/al_faces/Cooper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Cooper.png -------------------------------------------------------------------------------- /web/static/al_faces/Craven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Craven.png -------------------------------------------------------------------------------- /web/static/al_faces/Crescent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Crescent.png -------------------------------------------------------------------------------- /web/static/al_faces/Curacoa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Curacoa.png -------------------------------------------------------------------------------- /web/static/al_faces/Curlew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Curlew.png -------------------------------------------------------------------------------- /web/static/al_faces/Cygnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Cygnet.png -------------------------------------------------------------------------------- /web/static/al_faces/Dace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Dace.png -------------------------------------------------------------------------------- /web/static/al_faces/Denver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Denver.png -------------------------------------------------------------------------------- /web/static/al_faces/Deutschland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Deutschland.png -------------------------------------------------------------------------------- /web/static/al_faces/Devonshire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Devonshire.png -------------------------------------------------------------------------------- /web/static/al_faces/Dewey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Dewey.png -------------------------------------------------------------------------------- /web/static/al_faces/Dido μ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Dido μ.png -------------------------------------------------------------------------------- /web/static/al_faces/Dido.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Dido.png -------------------------------------------------------------------------------- /web/static/al_faces/Dorsetshire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Dorsetshire.png -------------------------------------------------------------------------------- /web/static/al_faces/Downes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Downes.png -------------------------------------------------------------------------------- /web/static/al_faces/Drake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Drake.png -------------------------------------------------------------------------------- /web/static/al_faces/Duca degli Abruzzi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Duca degli Abruzzi.png -------------------------------------------------------------------------------- /web/static/al_faces/Duke of York.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Duke of York.png -------------------------------------------------------------------------------- /web/static/al_faces/Dunkerque.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Dunkerque.png -------------------------------------------------------------------------------- /web/static/al_faces/Eagle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Eagle.png -------------------------------------------------------------------------------- /web/static/al_faces/Echo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Echo.png -------------------------------------------------------------------------------- /web/static/al_faces/Edinburgh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Edinburgh.png -------------------------------------------------------------------------------- /web/static/al_faces/Elbe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Elbe.png -------------------------------------------------------------------------------- /web/static/al_faces/Elbing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Elbing.png -------------------------------------------------------------------------------- /web/static/al_faces/Eldridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Eldridge.png -------------------------------------------------------------------------------- /web/static/al_faces/Elegant Kizuna AI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Elegant Kizuna AI.png -------------------------------------------------------------------------------- /web/static/al_faces/Emanuele Pessagno.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Emanuele Pessagno.png -------------------------------------------------------------------------------- /web/static/al_faces/Emden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Emden.png -------------------------------------------------------------------------------- /web/static/al_faces/Enterprise (Royal Navy).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Enterprise (Royal Navy).png -------------------------------------------------------------------------------- /web/static/al_faces/Enterprise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Enterprise.png -------------------------------------------------------------------------------- /web/static/al_faces/Erebus META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Erebus META.png -------------------------------------------------------------------------------- /web/static/al_faces/Erebus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Erebus.png -------------------------------------------------------------------------------- /web/static/al_faces/Eskimo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Eskimo.png -------------------------------------------------------------------------------- /web/static/al_faces/Essex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Essex.png -------------------------------------------------------------------------------- /web/static/al_faces/Exeter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Exeter.png -------------------------------------------------------------------------------- /web/static/al_faces/Fei Yuen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Fei Yuen.png -------------------------------------------------------------------------------- /web/static/al_faces/Felix Schultz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Felix Schultz.png -------------------------------------------------------------------------------- /web/static/al_faces/Fiji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Fiji.png -------------------------------------------------------------------------------- /web/static/al_faces/Flandre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Flandre.png -------------------------------------------------------------------------------- /web/static/al_faces/Flasher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Flasher.png -------------------------------------------------------------------------------- /web/static/al_faces/Fletcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Fletcher.png -------------------------------------------------------------------------------- /web/static/al_faces/Fleuret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Fleuret.png -------------------------------------------------------------------------------- /web/static/al_faces/Foch META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Foch META.png -------------------------------------------------------------------------------- /web/static/al_faces/Foch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Foch.png -------------------------------------------------------------------------------- /web/static/al_faces/Foote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Foote.png -------------------------------------------------------------------------------- /web/static/al_faces/Forbin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Forbin.png -------------------------------------------------------------------------------- /web/static/al_faces/Formidable μ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Formidable μ.png -------------------------------------------------------------------------------- /web/static/al_faces/Formidable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Formidable.png -------------------------------------------------------------------------------- /web/static/al_faces/Fortune META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Fortune META.png -------------------------------------------------------------------------------- /web/static/al_faces/Fortune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Fortune.png -------------------------------------------------------------------------------- /web/static/al_faces/Foxhound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Foxhound.png -------------------------------------------------------------------------------- /web/static/al_faces/Friedrich Carl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Friedrich Carl.png -------------------------------------------------------------------------------- /web/static/al_faces/Friedrich der Große.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Friedrich der Große.png -------------------------------------------------------------------------------- /web/static/al_faces/Fu Shun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Fu Shun.png -------------------------------------------------------------------------------- /web/static/al_faces/Fubuki (Senran Kagura).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Fubuki (Senran Kagura).png -------------------------------------------------------------------------------- /web/static/al_faces/Fubuki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Fubuki.png -------------------------------------------------------------------------------- /web/static/al_faces/Fumiruiru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Fumiruiru.png -------------------------------------------------------------------------------- /web/static/al_faces/Fumizuki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Fumizuki.png -------------------------------------------------------------------------------- /web/static/al_faces/Furutaka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Furutaka.png -------------------------------------------------------------------------------- /web/static/al_faces/Fusou META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Fusou META.png -------------------------------------------------------------------------------- /web/static/al_faces/Fusou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Fusou.png -------------------------------------------------------------------------------- /web/static/al_faces/Galatea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Galatea.png -------------------------------------------------------------------------------- /web/static/al_faces/Gangut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Gangut.png -------------------------------------------------------------------------------- /web/static/al_faces/Gascogne μ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Gascogne μ.png -------------------------------------------------------------------------------- /web/static/al_faces/Gascogne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Gascogne.png -------------------------------------------------------------------------------- /web/static/al_faces/Georgia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Georgia.png -------------------------------------------------------------------------------- /web/static/al_faces/Giulio Cesare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Giulio Cesare.png -------------------------------------------------------------------------------- /web/static/al_faces/Giuseppe Garibaldi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Giuseppe Garibaldi.png -------------------------------------------------------------------------------- /web/static/al_faces/Glasgow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Glasgow.png -------------------------------------------------------------------------------- /web/static/al_faces/Glorious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Glorious.png -------------------------------------------------------------------------------- /web/static/al_faces/Gloucester.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Gloucester.png -------------------------------------------------------------------------------- /web/static/al_faces/Glowworm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Glowworm.png -------------------------------------------------------------------------------- /web/static/al_faces/Gneisenau META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Gneisenau META.png -------------------------------------------------------------------------------- /web/static/al_faces/Gneisenau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Gneisenau.png -------------------------------------------------------------------------------- /web/static/al_faces/Golden Hind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Golden Hind.png -------------------------------------------------------------------------------- /web/static/al_faces/Gorizia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Gorizia.png -------------------------------------------------------------------------------- /web/static/al_faces/Graf Zeppelin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Graf Zeppelin.png -------------------------------------------------------------------------------- /web/static/al_faces/Green Heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Green Heart.png -------------------------------------------------------------------------------- /web/static/al_faces/Gremyashchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Gremyashchy.png -------------------------------------------------------------------------------- /web/static/al_faces/Grenville.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Grenville.png -------------------------------------------------------------------------------- /web/static/al_faces/Gridley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Gridley.png -------------------------------------------------------------------------------- /web/static/al_faces/Gromky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Gromky.png -------------------------------------------------------------------------------- /web/static/al_faces/Grozny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Grozny.png -------------------------------------------------------------------------------- /web/static/al_faces/Guam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Guam.png -------------------------------------------------------------------------------- /web/static/al_faces/Guichen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Guichen.png -------------------------------------------------------------------------------- /web/static/al_faces/Haguro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Haguro.png -------------------------------------------------------------------------------- /web/static/al_faces/Hai Chi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hai Chi.png -------------------------------------------------------------------------------- /web/static/al_faces/Hai Tien.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hai Tien.png -------------------------------------------------------------------------------- /web/static/al_faces/Hakuryuu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hakuryuu.png -------------------------------------------------------------------------------- /web/static/al_faces/Halsey Powell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Halsey Powell.png -------------------------------------------------------------------------------- /web/static/al_faces/Hamakaze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hamakaze.png -------------------------------------------------------------------------------- /web/static/al_faces/Hammann II.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hammann II.png -------------------------------------------------------------------------------- /web/static/al_faces/Hammann.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hammann.png -------------------------------------------------------------------------------- /web/static/al_faces/Hanazuki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hanazuki.png -------------------------------------------------------------------------------- /web/static/al_faces/Harbin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Harbin.png -------------------------------------------------------------------------------- /web/static/al_faces/Hardy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hardy.png -------------------------------------------------------------------------------- /web/static/al_faces/Haruka Amami.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Haruka Amami.png -------------------------------------------------------------------------------- /web/static/al_faces/Haruna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Haruna.png -------------------------------------------------------------------------------- /web/static/al_faces/Harutsuki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Harutsuki.png -------------------------------------------------------------------------------- /web/static/al_faces/Hass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hass.png -------------------------------------------------------------------------------- /web/static/al_faces/Hatakaze META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hatakaze META.png -------------------------------------------------------------------------------- /web/static/al_faces/Hatakaze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hatakaze.png -------------------------------------------------------------------------------- /web/static/al_faces/Hatsuharu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hatsuharu.png -------------------------------------------------------------------------------- /web/static/al_faces/Hatsushimo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hatsushimo.png -------------------------------------------------------------------------------- /web/static/al_faces/Hatsuzuki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hatsuzuki.png -------------------------------------------------------------------------------- /web/static/al_faces/Hazelwood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hazelwood.png -------------------------------------------------------------------------------- /web/static/al_faces/Helena META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Helena META.png -------------------------------------------------------------------------------- /web/static/al_faces/Helena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Helena.png -------------------------------------------------------------------------------- /web/static/al_faces/Hermes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hermes.png -------------------------------------------------------------------------------- /web/static/al_faces/Hermione.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hermione.png -------------------------------------------------------------------------------- /web/static/al_faces/Hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hero.png -------------------------------------------------------------------------------- /web/static/al_faces/Hibiki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hibiki.png -------------------------------------------------------------------------------- /web/static/al_faces/Hiei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hiei.png -------------------------------------------------------------------------------- /web/static/al_faces/Hindenburg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hindenburg.png -------------------------------------------------------------------------------- /web/static/al_faces/Hiryuu META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hiryuu META.png -------------------------------------------------------------------------------- /web/static/al_faces/Hiryuu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hiryuu.png -------------------------------------------------------------------------------- /web/static/al_faces/Hiyou META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hiyou META.png -------------------------------------------------------------------------------- /web/static/al_faces/Hiyou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hiyou.png -------------------------------------------------------------------------------- /web/static/al_faces/Hobby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hobby.png -------------------------------------------------------------------------------- /web/static/al_faces/Homura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Homura.png -------------------------------------------------------------------------------- /web/static/al_faces/Honoka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Honoka.png -------------------------------------------------------------------------------- /web/static/al_faces/Honolulu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Honolulu.png -------------------------------------------------------------------------------- /web/static/al_faces/Hood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hood.png -------------------------------------------------------------------------------- /web/static/al_faces/Hornet II.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hornet II.png -------------------------------------------------------------------------------- /web/static/al_faces/Hornet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hornet.png -------------------------------------------------------------------------------- /web/static/al_faces/Houshou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Houshou.png -------------------------------------------------------------------------------- /web/static/al_faces/Houston II.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Houston II.png -------------------------------------------------------------------------------- /web/static/al_faces/Houston.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Houston.png -------------------------------------------------------------------------------- /web/static/al_faces/Howe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Howe.png -------------------------------------------------------------------------------- /web/static/al_faces/Hu Pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hu Pen.png -------------------------------------------------------------------------------- /web/static/al_faces/Huan Ch'ang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Huan Ch'ang.png -------------------------------------------------------------------------------- /web/static/al_faces/Hunter META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hunter META.png -------------------------------------------------------------------------------- /web/static/al_faces/Hunter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hunter.png -------------------------------------------------------------------------------- /web/static/al_faces/Hwah Jah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hwah Jah.png -------------------------------------------------------------------------------- /web/static/al_faces/Hyuuga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Hyuuga.png -------------------------------------------------------------------------------- /web/static/al_faces/I-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/I-13.png -------------------------------------------------------------------------------- /web/static/al_faces/I-168.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/I-168.png -------------------------------------------------------------------------------- /web/static/al_faces/I-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/I-19.png -------------------------------------------------------------------------------- /web/static/al_faces/I-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/I-25.png -------------------------------------------------------------------------------- /web/static/al_faces/I-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/I-26.png -------------------------------------------------------------------------------- /web/static/al_faces/I-56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/I-56.png -------------------------------------------------------------------------------- /web/static/al_faces/I-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/I-58.png -------------------------------------------------------------------------------- /web/static/al_faces/Ibuki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Ibuki.png -------------------------------------------------------------------------------- /web/static/al_faces/Icarus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Icarus.png -------------------------------------------------------------------------------- /web/static/al_faces/Ikaruga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Ikaruga.png -------------------------------------------------------------------------------- /web/static/al_faces/Ikazuchi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Ikazuchi.png -------------------------------------------------------------------------------- /web/static/al_faces/Illustrious μ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Illustrious μ.png -------------------------------------------------------------------------------- /web/static/al_faces/Illustrious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Illustrious.png -------------------------------------------------------------------------------- /web/static/al_faces/Impero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Impero.png -------------------------------------------------------------------------------- /web/static/al_faces/Implacable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Implacable.png -------------------------------------------------------------------------------- /web/static/al_faces/Inazuma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Inazuma.png -------------------------------------------------------------------------------- /web/static/al_faces/Independence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Independence.png -------------------------------------------------------------------------------- /web/static/al_faces/Indianapolis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Indianapolis.png -------------------------------------------------------------------------------- /web/static/al_faces/Indomitable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Indomitable.png -------------------------------------------------------------------------------- /web/static/al_faces/Ingraham.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Ingraham.png -------------------------------------------------------------------------------- /web/static/al_faces/Intrepid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Intrepid.png -------------------------------------------------------------------------------- /web/static/al_faces/Iori Minase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Iori Minase.png -------------------------------------------------------------------------------- /web/static/al_faces/Ise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Ise.png -------------------------------------------------------------------------------- /web/static/al_faces/Isokaze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Isokaze.png -------------------------------------------------------------------------------- /web/static/al_faces/Isuzu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Isuzu.png -------------------------------------------------------------------------------- /web/static/al_faces/Izumo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Izumo.png -------------------------------------------------------------------------------- /web/static/al_faces/Jade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Jade.png -------------------------------------------------------------------------------- /web/static/al_faces/Jamaica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Jamaica.png -------------------------------------------------------------------------------- /web/static/al_faces/Janus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Janus.png -------------------------------------------------------------------------------- /web/static/al_faces/Javelin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Javelin.png -------------------------------------------------------------------------------- /web/static/al_faces/Jean Bart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Jean Bart.png -------------------------------------------------------------------------------- /web/static/al_faces/Jeanne d'Arc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Jeanne d'Arc.png -------------------------------------------------------------------------------- /web/static/al_faces/Jenkins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Jenkins.png -------------------------------------------------------------------------------- /web/static/al_faces/Jersey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Jersey.png -------------------------------------------------------------------------------- /web/static/al_faces/Jervis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Jervis.png -------------------------------------------------------------------------------- /web/static/al_faces/Jintsuu META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Jintsuu META.png -------------------------------------------------------------------------------- /web/static/al_faces/Jintsuu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Jintsuu.png -------------------------------------------------------------------------------- /web/static/al_faces/Joffre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Joffre.png -------------------------------------------------------------------------------- /web/static/al_faces/Juneau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Juneau.png -------------------------------------------------------------------------------- /web/static/al_faces/Juno.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Juno.png -------------------------------------------------------------------------------- /web/static/al_faces/Junyou META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Junyou META.png -------------------------------------------------------------------------------- /web/static/al_faces/Junyou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Junyou.png -------------------------------------------------------------------------------- /web/static/al_faces/Jupiter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Jupiter.png -------------------------------------------------------------------------------- /web/static/al_faces/Kaga (Battleship).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kaga (Battleship).png -------------------------------------------------------------------------------- /web/static/al_faces/Kaga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kaga.png -------------------------------------------------------------------------------- /web/static/al_faces/Kagerou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kagerou.png -------------------------------------------------------------------------------- /web/static/al_faces/Kako.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kako.png -------------------------------------------------------------------------------- /web/static/al_faces/Kala Ideas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kala Ideas.png -------------------------------------------------------------------------------- /web/static/al_faces/Kalk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kalk.png -------------------------------------------------------------------------------- /web/static/al_faces/Kamikaze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kamikaze.png -------------------------------------------------------------------------------- /web/static/al_faces/Karlsruhe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Karlsruhe.png -------------------------------------------------------------------------------- /web/static/al_faces/Kashino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kashino.png -------------------------------------------------------------------------------- /web/static/al_faces/Kasumi (Venus Vacation).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kasumi (Venus Vacation).png -------------------------------------------------------------------------------- /web/static/al_faces/Kasumi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kasumi.png -------------------------------------------------------------------------------- /web/static/al_faces/Katsuragi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Katsuragi.png -------------------------------------------------------------------------------- /web/static/al_faces/Kawakaze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kawakaze.png -------------------------------------------------------------------------------- /web/static/al_faces/Kazagumo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kazagumo.png -------------------------------------------------------------------------------- /web/static/al_faces/Kearsarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kearsarge.png -------------------------------------------------------------------------------- /web/static/al_faces/Kent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kent.png -------------------------------------------------------------------------------- /web/static/al_faces/Kersaint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kersaint.png -------------------------------------------------------------------------------- /web/static/al_faces/Kiev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kiev.png -------------------------------------------------------------------------------- /web/static/al_faces/Kii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kii.png -------------------------------------------------------------------------------- /web/static/al_faces/Kimberly META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kimberly META.png -------------------------------------------------------------------------------- /web/static/al_faces/Kimberly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kimberly.png -------------------------------------------------------------------------------- /web/static/al_faces/King George V.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/King George V.png -------------------------------------------------------------------------------- /web/static/al_faces/Kinu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kinu.png -------------------------------------------------------------------------------- /web/static/al_faces/Kinugasa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kinugasa.png -------------------------------------------------------------------------------- /web/static/al_faces/Kirishima.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kirishima.png -------------------------------------------------------------------------------- /web/static/al_faces/Kirov META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kirov META.png -------------------------------------------------------------------------------- /web/static/al_faces/Kirov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kirov.png -------------------------------------------------------------------------------- /web/static/al_faces/Kisaragi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kisaragi.png -------------------------------------------------------------------------------- /web/static/al_faces/Kitakaze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kitakaze.png -------------------------------------------------------------------------------- /web/static/al_faces/Kiyonami.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kiyonami.png -------------------------------------------------------------------------------- /web/static/al_faces/Kizuna AI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kizuna AI.png -------------------------------------------------------------------------------- /web/static/al_faces/Klaudia Valentz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Klaudia Valentz.png -------------------------------------------------------------------------------- /web/static/al_faces/Kongou μ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kongou μ.png -------------------------------------------------------------------------------- /web/static/al_faces/Kongou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kongou.png -------------------------------------------------------------------------------- /web/static/al_faces/Kronshtadt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kronshtadt.png -------------------------------------------------------------------------------- /web/static/al_faces/Kumano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kumano.png -------------------------------------------------------------------------------- /web/static/al_faces/Kuon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kuon.png -------------------------------------------------------------------------------- /web/static/al_faces/Kuroshio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kuroshio.png -------------------------------------------------------------------------------- /web/static/al_faces/Kursk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kursk.png -------------------------------------------------------------------------------- /web/static/al_faces/Kuybyshev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Kuybyshev.png -------------------------------------------------------------------------------- /web/static/al_faces/Köln.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Köln.png -------------------------------------------------------------------------------- /web/static/al_faces/Königsberg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Königsberg.png -------------------------------------------------------------------------------- /web/static/al_faces/L'Indomptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/L'Indomptable.png -------------------------------------------------------------------------------- /web/static/al_faces/L'Opiniâtre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/L'Opiniâtre.png -------------------------------------------------------------------------------- /web/static/al_faces/La Galissonnière META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/La Galissonnière META.png -------------------------------------------------------------------------------- /web/static/al_faces/La Galissonnière.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/La Galissonnière.png -------------------------------------------------------------------------------- /web/static/al_faces/Laffey II.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Laffey II.png -------------------------------------------------------------------------------- /web/static/al_faces/Laffey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Laffey.png -------------------------------------------------------------------------------- /web/static/al_faces/Langley II.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Langley II.png -------------------------------------------------------------------------------- /web/static/al_faces/Langley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Langley.png -------------------------------------------------------------------------------- /web/static/al_faces/Le Malin μ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Le Malin μ.png -------------------------------------------------------------------------------- /web/static/al_faces/Le Malin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Le Malin.png -------------------------------------------------------------------------------- /web/static/al_faces/Le Mars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Le Mars.png -------------------------------------------------------------------------------- /web/static/al_faces/Le Terrible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Le Terrible.png -------------------------------------------------------------------------------- /web/static/al_faces/Le Triomphant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Le Triomphant.png -------------------------------------------------------------------------------- /web/static/al_faces/Le Téméraire μ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Le Téméraire μ.png -------------------------------------------------------------------------------- /web/static/al_faces/Le Téméraire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Le Téméraire.png -------------------------------------------------------------------------------- /web/static/al_faces/Leander.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Leander.png -------------------------------------------------------------------------------- /web/static/al_faces/Leipzig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Leipzig.png -------------------------------------------------------------------------------- /web/static/al_faces/Leonardo da Vinci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Leonardo da Vinci.png -------------------------------------------------------------------------------- /web/static/al_faces/Lexington.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Lexington.png -------------------------------------------------------------------------------- /web/static/al_faces/Libeccio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Libeccio.png -------------------------------------------------------------------------------- /web/static/al_faces/Lila Decyrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Lila Decyrus.png -------------------------------------------------------------------------------- /web/static/al_faces/Littorio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Littorio.png -------------------------------------------------------------------------------- /web/static/al_faces/Liverpool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Liverpool.png -------------------------------------------------------------------------------- /web/static/al_faces/London.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/London.png -------------------------------------------------------------------------------- /web/static/al_faces/Long Island.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Long Island.png -------------------------------------------------------------------------------- /web/static/al_faces/Louisville.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Louisville.png -------------------------------------------------------------------------------- /web/static/al_faces/Luna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Luna.png -------------------------------------------------------------------------------- /web/static/al_faces/Lung Wu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Lung Wu.png -------------------------------------------------------------------------------- /web/static/al_faces/Lyon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Lyon.png -------------------------------------------------------------------------------- /web/static/al_faces/Lützow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Lützow.png -------------------------------------------------------------------------------- /web/static/al_faces/Maestrale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Maestrale.png -------------------------------------------------------------------------------- /web/static/al_faces/Magdeburg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Magdeburg.png -------------------------------------------------------------------------------- /web/static/al_faces/Maillé Brézé.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Maillé Brézé.png -------------------------------------------------------------------------------- /web/static/al_faces/Mainz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Mainz.png -------------------------------------------------------------------------------- /web/static/al_faces/Makinami.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Makinami.png -------------------------------------------------------------------------------- /web/static/al_faces/Mami Futami.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Mami Futami.png -------------------------------------------------------------------------------- /web/static/al_faces/Manchester.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Manchester.png -------------------------------------------------------------------------------- /web/static/al_faces/Marblehead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Marblehead.png -------------------------------------------------------------------------------- /web/static/al_faces/Marco Polo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Marco Polo.png -------------------------------------------------------------------------------- /web/static/al_faces/Marie Rose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Marie Rose.png -------------------------------------------------------------------------------- /web/static/al_faces/Marseillaise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Marseillaise.png -------------------------------------------------------------------------------- /web/static/al_faces/Mary Celeste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Mary Celeste.png -------------------------------------------------------------------------------- /web/static/al_faces/Maryland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Maryland.png -------------------------------------------------------------------------------- /web/static/al_faces/Massachusetts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Massachusetts.png -------------------------------------------------------------------------------- /web/static/al_faces/Matchless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Matchless.png -------------------------------------------------------------------------------- /web/static/al_faces/Matsukaze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Matsukaze.png -------------------------------------------------------------------------------- /web/static/al_faces/Maury.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Maury.png -------------------------------------------------------------------------------- /web/static/al_faces/Maya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Maya.png -------------------------------------------------------------------------------- /web/static/al_faces/McCall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/McCall.png -------------------------------------------------------------------------------- /web/static/al_faces/Memphis META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Memphis META.png -------------------------------------------------------------------------------- /web/static/al_faces/Memphis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Memphis.png -------------------------------------------------------------------------------- /web/static/al_faces/Michishio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Michishio.png -------------------------------------------------------------------------------- /web/static/al_faces/Mikasa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Mikasa.png -------------------------------------------------------------------------------- /web/static/al_faces/Mikazuki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Mikazuki.png -------------------------------------------------------------------------------- /web/static/al_faces/Mikuma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Mikuma.png -------------------------------------------------------------------------------- /web/static/al_faces/Minato Aqua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Minato Aqua.png -------------------------------------------------------------------------------- /web/static/al_faces/Minazuki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Minazuki.png -------------------------------------------------------------------------------- /web/static/al_faces/Minneapolis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Minneapolis.png -------------------------------------------------------------------------------- /web/static/al_faces/Minsk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Minsk.png -------------------------------------------------------------------------------- /web/static/al_faces/Misaki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Misaki.png -------------------------------------------------------------------------------- /web/static/al_faces/Miyuki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Miyuki.png -------------------------------------------------------------------------------- /web/static/al_faces/Mogador.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Mogador.png -------------------------------------------------------------------------------- /web/static/al_faces/Mogami.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Mogami.png -------------------------------------------------------------------------------- /web/static/al_faces/Monarch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Monarch.png -------------------------------------------------------------------------------- /web/static/al_faces/Monica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Monica.png -------------------------------------------------------------------------------- /web/static/al_faces/Montpelier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Montpelier.png -------------------------------------------------------------------------------- /web/static/al_faces/Morrison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Morrison.png -------------------------------------------------------------------------------- /web/static/al_faces/Mujina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Mujina.png -------------------------------------------------------------------------------- /web/static/al_faces/Mullany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Mullany.png -------------------------------------------------------------------------------- /web/static/al_faces/Murasaki Shion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Murasaki Shion.png -------------------------------------------------------------------------------- /web/static/al_faces/Murasaki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Murasaki.png -------------------------------------------------------------------------------- /web/static/al_faces/Murmansk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Murmansk.png -------------------------------------------------------------------------------- /web/static/al_faces/Musashi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Musashi.png -------------------------------------------------------------------------------- /web/static/al_faces/Musketeer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Musketeer.png -------------------------------------------------------------------------------- /web/static/al_faces/Mutsu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Mutsu.png -------------------------------------------------------------------------------- /web/static/al_faces/Mutsuki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Mutsuki.png -------------------------------------------------------------------------------- /web/static/al_faces/Myoukou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Myoukou.png -------------------------------------------------------------------------------- /web/static/al_faces/Nachi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Nachi.png -------------------------------------------------------------------------------- /web/static/al_faces/Naganami.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Naganami.png -------------------------------------------------------------------------------- /web/static/al_faces/Nagara.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Nagara.png -------------------------------------------------------------------------------- /web/static/al_faces/Nagato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Nagato.png -------------------------------------------------------------------------------- /web/static/al_faces/Nagatsuki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Nagatsuki.png -------------------------------------------------------------------------------- /web/static/al_faces/Nagisa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Nagisa.png -------------------------------------------------------------------------------- /web/static/al_faces/Naka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Naka.png -------------------------------------------------------------------------------- /web/static/al_faces/Nakiri Ayame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Nakiri Ayame.png -------------------------------------------------------------------------------- /web/static/al_faces/Namiko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Namiko.png -------------------------------------------------------------------------------- /web/static/al_faces/Natori.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Natori.png -------------------------------------------------------------------------------- /web/static/al_faces/Natsuiro Matsuri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Natsuiro Matsuri.png -------------------------------------------------------------------------------- /web/static/al_faces/Nautilus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Nautilus.png -------------------------------------------------------------------------------- /web/static/al_faces/Nekone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Nekone.png -------------------------------------------------------------------------------- /web/static/al_faces/Nelson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Nelson.png -------------------------------------------------------------------------------- /web/static/al_faces/Neptune (Neptunia).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Neptune (Neptunia).png -------------------------------------------------------------------------------- /web/static/al_faces/Neptune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Neptune.png -------------------------------------------------------------------------------- /web/static/al_faces/Nevada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Nevada.png -------------------------------------------------------------------------------- /web/static/al_faces/New Jersey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/New Jersey.png -------------------------------------------------------------------------------- /web/static/al_faces/New Orleans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/New Orleans.png -------------------------------------------------------------------------------- /web/static/al_faces/Newcastle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Newcastle.png -------------------------------------------------------------------------------- /web/static/al_faces/Nicholas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Nicholas.png -------------------------------------------------------------------------------- /web/static/al_faces/Nicoloso da Recco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Nicoloso da Recco.png -------------------------------------------------------------------------------- /web/static/al_faces/Niizuki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Niizuki.png -------------------------------------------------------------------------------- /web/static/al_faces/Ning Hai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Ning Hai.png -------------------------------------------------------------------------------- /web/static/al_faces/Noire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Noire.png -------------------------------------------------------------------------------- /web/static/al_faces/Norfolk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Norfolk.png -------------------------------------------------------------------------------- /web/static/al_faces/North Carolina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/North Carolina.png -------------------------------------------------------------------------------- /web/static/al_faces/Northampton II.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Northampton II.png -------------------------------------------------------------------------------- /web/static/al_faces/Northampton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Northampton.png -------------------------------------------------------------------------------- /web/static/al_faces/Noshiro μ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Noshiro μ.png -------------------------------------------------------------------------------- /web/static/al_faces/Noshiro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Noshiro.png -------------------------------------------------------------------------------- /web/static/al_faces/Nowaki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Nowaki.png -------------------------------------------------------------------------------- /web/static/al_faces/Nubian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Nubian.png -------------------------------------------------------------------------------- /web/static/al_faces/Nyotengu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Nyotengu.png -------------------------------------------------------------------------------- /web/static/al_faces/Nürnberg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Nürnberg.png -------------------------------------------------------------------------------- /web/static/al_faces/Odin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Odin.png -------------------------------------------------------------------------------- /web/static/al_faces/Ognevoy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Ognevoy.png -------------------------------------------------------------------------------- /web/static/al_faces/Oite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Oite.png -------------------------------------------------------------------------------- /web/static/al_faces/Oklahoma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Oklahoma.png -------------------------------------------------------------------------------- /web/static/al_faces/Omaha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Omaha.png -------------------------------------------------------------------------------- /web/static/al_faces/Ookami Mio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Ookami Mio.png -------------------------------------------------------------------------------- /web/static/al_faces/Ooshio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Ooshio.png -------------------------------------------------------------------------------- /web/static/al_faces/Otto von Alvensleben.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Otto von Alvensleben.png -------------------------------------------------------------------------------- /web/static/al_faces/Owari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Owari.png -------------------------------------------------------------------------------- /web/static/al_faces/Oyashio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Oyashio.png -------------------------------------------------------------------------------- /web/static/al_faces/Painlevé.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Painlevé.png -------------------------------------------------------------------------------- /web/static/al_faces/Pamiat Merkuria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Pamiat Merkuria.png -------------------------------------------------------------------------------- /web/static/al_faces/Pamiat' Merkuria META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Pamiat' Merkuria META.png -------------------------------------------------------------------------------- /web/static/al_faces/Pamiat' Merkuria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Pamiat' Merkuria.png -------------------------------------------------------------------------------- /web/static/al_faces/Patricia Abelheim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Patricia Abelheim.png -------------------------------------------------------------------------------- /web/static/al_faces/Penelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Penelope.png -------------------------------------------------------------------------------- /web/static/al_faces/Pennsylvania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Pennsylvania.png -------------------------------------------------------------------------------- /web/static/al_faces/Pensacola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Pensacola.png -------------------------------------------------------------------------------- /web/static/al_faces/Perseus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Perseus.png -------------------------------------------------------------------------------- /web/static/al_faces/Peter Strasser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Peter Strasser.png -------------------------------------------------------------------------------- /web/static/al_faces/Phoenix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Phoenix.png -------------------------------------------------------------------------------- /web/static/al_faces/Ping Hai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Ping Hai.png -------------------------------------------------------------------------------- /web/static/al_faces/Plymouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Plymouth.png -------------------------------------------------------------------------------- /web/static/al_faces/Pola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Pola.png -------------------------------------------------------------------------------- /web/static/al_faces/Poltava.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Poltava.png -------------------------------------------------------------------------------- /web/static/al_faces/Pompeo Magno.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Pompeo Magno.png -------------------------------------------------------------------------------- /web/static/al_faces/Portland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Portland.png -------------------------------------------------------------------------------- /web/static/al_faces/Prince of Wales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Prince of Wales.png -------------------------------------------------------------------------------- /web/static/al_faces/Princess Hime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Princess Hime.png -------------------------------------------------------------------------------- /web/static/al_faces/Princeton META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Princeton META.png -------------------------------------------------------------------------------- /web/static/al_faces/Princeton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Princeton.png -------------------------------------------------------------------------------- /web/static/al_faces/Prinz Adalbert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Prinz Adalbert.png -------------------------------------------------------------------------------- /web/static/al_faces/Prinz Eugen μ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Prinz Eugen μ.png -------------------------------------------------------------------------------- /web/static/al_faces/Prinz Eugen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Prinz Eugen.png -------------------------------------------------------------------------------- /web/static/al_faces/Prinz Heinrich.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Prinz Heinrich.png -------------------------------------------------------------------------------- /web/static/al_faces/Prinz Rupprecht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Prinz Rupprecht.png -------------------------------------------------------------------------------- /web/static/al_faces/Prototype Bulin MKII.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Prototype Bulin MKII.png -------------------------------------------------------------------------------- /web/static/al_faces/Purple Heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Purple Heart.png -------------------------------------------------------------------------------- /web/static/al_faces/Queen Elizabeth META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Queen Elizabeth META.png -------------------------------------------------------------------------------- /web/static/al_faces/Queen Elizabeth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Queen Elizabeth.png -------------------------------------------------------------------------------- /web/static/al_faces/Quincy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Quincy.png -------------------------------------------------------------------------------- /web/static/al_faces/Radford.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Radford.png -------------------------------------------------------------------------------- /web/static/al_faces/Raleigh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Raleigh.png -------------------------------------------------------------------------------- /web/static/al_faces/Ranger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Ranger.png -------------------------------------------------------------------------------- /web/static/al_faces/Regensburg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Regensburg.png -------------------------------------------------------------------------------- /web/static/al_faces/Reisalin Stout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Reisalin Stout.png -------------------------------------------------------------------------------- /web/static/al_faces/Reno.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Reno.png -------------------------------------------------------------------------------- /web/static/al_faces/Renown META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Renown META.png -------------------------------------------------------------------------------- /web/static/al_faces/Renown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Renown.png -------------------------------------------------------------------------------- /web/static/al_faces/Repulse META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Repulse META.png -------------------------------------------------------------------------------- /web/static/al_faces/Repulse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Repulse.png -------------------------------------------------------------------------------- /web/static/al_faces/Revenge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Revenge.png -------------------------------------------------------------------------------- /web/static/al_faces/Richelieu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Richelieu.png -------------------------------------------------------------------------------- /web/static/al_faces/Richmond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Richmond.png -------------------------------------------------------------------------------- /web/static/al_faces/Rikka Takarada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Rikka Takarada.png -------------------------------------------------------------------------------- /web/static/al_faces/Ritsuko Akizuki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Ritsuko Akizuki.png -------------------------------------------------------------------------------- /web/static/al_faces/Rodney META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Rodney META.png -------------------------------------------------------------------------------- /web/static/al_faces/Rodney.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Rodney.png -------------------------------------------------------------------------------- /web/static/al_faces/Roma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Roma.png -------------------------------------------------------------------------------- /web/static/al_faces/Roon μ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Roon μ.png -------------------------------------------------------------------------------- /web/static/al_faces/Roon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Roon.png -------------------------------------------------------------------------------- /web/static/al_faces/Royal Fortune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Royal Fortune.png -------------------------------------------------------------------------------- /web/static/al_faces/Royal Oak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Royal Oak.png -------------------------------------------------------------------------------- /web/static/al_faces/Rurutie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Rurutie.png -------------------------------------------------------------------------------- /web/static/al_faces/Ryuuhou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Ryuuhou.png -------------------------------------------------------------------------------- /web/static/al_faces/Ryuujou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Ryuujou.png -------------------------------------------------------------------------------- /web/static/al_faces/Saint Louis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Saint Louis.png -------------------------------------------------------------------------------- /web/static/al_faces/Sakawa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Sakawa.png -------------------------------------------------------------------------------- /web/static/al_faces/Salt Lake City.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Salt Lake City.png -------------------------------------------------------------------------------- /web/static/al_faces/San Diego.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/San Diego.png -------------------------------------------------------------------------------- /web/static/al_faces/San Francisco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/San Francisco.png -------------------------------------------------------------------------------- /web/static/al_faces/San Jacinto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/San Jacinto.png -------------------------------------------------------------------------------- /web/static/al_faces/San Juan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/San Juan.png -------------------------------------------------------------------------------- /web/static/al_faces/Saraana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Saraana.png -------------------------------------------------------------------------------- /web/static/al_faces/Saratoga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Saratoga.png -------------------------------------------------------------------------------- /web/static/al_faces/Scharnhorst META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Scharnhorst META.png -------------------------------------------------------------------------------- /web/static/al_faces/Scharnhorst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Scharnhorst.png -------------------------------------------------------------------------------- /web/static/al_faces/Scylla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Scylla.png -------------------------------------------------------------------------------- /web/static/al_faces/Seattle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Seattle.png -------------------------------------------------------------------------------- /web/static/al_faces/Sendai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Sendai.png -------------------------------------------------------------------------------- /web/static/al_faces/Serri Glaus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Serri Glaus.png -------------------------------------------------------------------------------- /web/static/al_faces/Sevastopol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Sevastopol.png -------------------------------------------------------------------------------- /web/static/al_faces/Seydlitz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Seydlitz.png -------------------------------------------------------------------------------- /web/static/al_faces/Shangri-La.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Shangri-La.png -------------------------------------------------------------------------------- /web/static/al_faces/Sheffield META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Sheffield META.png -------------------------------------------------------------------------------- /web/static/al_faces/Sheffield μ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Sheffield μ.png -------------------------------------------------------------------------------- /web/static/al_faces/Sheffield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Sheffield.png -------------------------------------------------------------------------------- /web/static/al_faces/Shigure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Shigure.png -------------------------------------------------------------------------------- /web/static/al_faces/Shimakaze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Shimakaze.png -------------------------------------------------------------------------------- /web/static/al_faces/Shimanto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Shimanto.png -------------------------------------------------------------------------------- /web/static/al_faces/Shinano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Shinano.png -------------------------------------------------------------------------------- /web/static/al_faces/Shirakami Fubuki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Shirakami Fubuki.png -------------------------------------------------------------------------------- /web/static/al_faces/Shiranui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Shiranui.png -------------------------------------------------------------------------------- /web/static/al_faces/Shiratsuyu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Shiratsuyu.png -------------------------------------------------------------------------------- /web/static/al_faces/Shirayuki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Shirayuki.png -------------------------------------------------------------------------------- /web/static/al_faces/Shouhou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Shouhou.png -------------------------------------------------------------------------------- /web/static/al_faces/Shoukaku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Shoukaku.png -------------------------------------------------------------------------------- /web/static/al_faces/Shropshire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Shropshire.png -------------------------------------------------------------------------------- /web/static/al_faces/Sims.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Sims.png -------------------------------------------------------------------------------- /web/static/al_faces/Sirius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Sirius.png -------------------------------------------------------------------------------- /web/static/al_faces/Smalley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Smalley.png -------------------------------------------------------------------------------- /web/static/al_faces/Soobrazitelny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Soobrazitelny.png -------------------------------------------------------------------------------- /web/static/al_faces/Souryuu META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Souryuu META.png -------------------------------------------------------------------------------- /web/static/al_faces/Souryuu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Souryuu.png -------------------------------------------------------------------------------- /web/static/al_faces/South Dakota.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/South Dakota.png -------------------------------------------------------------------------------- /web/static/al_faces/Southampton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Southampton.png -------------------------------------------------------------------------------- /web/static/al_faces/Sovetskaya Belorussiya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Sovetskaya Belorussiya.png -------------------------------------------------------------------------------- /web/static/al_faces/Sovetskaya Rossiya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Sovetskaya Rossiya.png -------------------------------------------------------------------------------- /web/static/al_faces/Sovetsky Soyuz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Sovetsky Soyuz.png -------------------------------------------------------------------------------- /web/static/al_faces/Specialized Bulin Custom MKIII.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Specialized Bulin Custom MKIII.png -------------------------------------------------------------------------------- /web/static/al_faces/Spence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Spence.png -------------------------------------------------------------------------------- /web/static/al_faces/St. Louis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/St. Louis.png -------------------------------------------------------------------------------- /web/static/al_faces/Stanly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Stanly.png -------------------------------------------------------------------------------- /web/static/al_faces/Stephen Potter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Stephen Potter.png -------------------------------------------------------------------------------- /web/static/al_faces/Stremitelny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Stremitelny.png -------------------------------------------------------------------------------- /web/static/al_faces/Suffolk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Suffolk.png -------------------------------------------------------------------------------- /web/static/al_faces/Suffren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Suffren.png -------------------------------------------------------------------------------- /web/static/al_faces/Super Gamer Kizuna AI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Super Gamer Kizuna AI.png -------------------------------------------------------------------------------- /web/static/al_faces/Surcouf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Surcouf.png -------------------------------------------------------------------------------- /web/static/al_faces/Suruga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Suruga.png -------------------------------------------------------------------------------- /web/static/al_faces/Sussex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Sussex.png -------------------------------------------------------------------------------- /web/static/al_faces/Suzutsuki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Suzutsuki.png -------------------------------------------------------------------------------- /web/static/al_faces/Suzuya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Suzuya.png -------------------------------------------------------------------------------- /web/static/al_faces/Svirepy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Svirepy.png -------------------------------------------------------------------------------- /web/static/al_faces/Swiftsure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Swiftsure.png -------------------------------------------------------------------------------- /web/static/al_faces/São Martinho.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/São Martinho.png -------------------------------------------------------------------------------- /web/static/al_faces/Tai Yuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Tai Yuan.png -------------------------------------------------------------------------------- /web/static/al_faces/Taihou μ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Taihou μ.png -------------------------------------------------------------------------------- /web/static/al_faces/Taihou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Taihou.png -------------------------------------------------------------------------------- /web/static/al_faces/Takao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Takao.png -------------------------------------------------------------------------------- /web/static/al_faces/Tallinn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Tallinn.png -------------------------------------------------------------------------------- /web/static/al_faces/Tamaki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Tamaki.png -------------------------------------------------------------------------------- /web/static/al_faces/Tanikaze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Tanikaze.png -------------------------------------------------------------------------------- /web/static/al_faces/Tartu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Tartu.png -------------------------------------------------------------------------------- /web/static/al_faces/Tashkent μ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Tashkent μ.png -------------------------------------------------------------------------------- /web/static/al_faces/Tashkent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Tashkent.png -------------------------------------------------------------------------------- /web/static/al_faces/Tennessee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Tennessee.png -------------------------------------------------------------------------------- /web/static/al_faces/Terror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Terror.png -------------------------------------------------------------------------------- /web/static/al_faces/Thatcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Thatcher.png -------------------------------------------------------------------------------- /web/static/al_faces/The 2nd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/The 2nd.png -------------------------------------------------------------------------------- /web/static/al_faces/Theseus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Theseus.png -------------------------------------------------------------------------------- /web/static/al_faces/Thüringen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Thüringen.png -------------------------------------------------------------------------------- /web/static/al_faces/Ticonderoga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Ticonderoga.png -------------------------------------------------------------------------------- /web/static/al_faces/Ting An.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Ting An.png -------------------------------------------------------------------------------- /web/static/al_faces/Tirpitz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Tirpitz.png -------------------------------------------------------------------------------- /web/static/al_faces/Tokino Sora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Tokino Sora.png -------------------------------------------------------------------------------- /web/static/al_faces/Torricelli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Torricelli.png -------------------------------------------------------------------------------- /web/static/al_faces/Tosa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Tosa.png -------------------------------------------------------------------------------- /web/static/al_faces/Trento META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Trento META.png -------------------------------------------------------------------------------- /web/static/al_faces/Trento.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Trento.png -------------------------------------------------------------------------------- /web/static/al_faces/Trieste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Trieste.png -------------------------------------------------------------------------------- /web/static/al_faces/U-101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/U-101.png -------------------------------------------------------------------------------- /web/static/al_faces/U-110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/U-110.png -------------------------------------------------------------------------------- /web/static/al_faces/U-1206.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/U-1206.png -------------------------------------------------------------------------------- /web/static/al_faces/U-37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/U-37.png -------------------------------------------------------------------------------- /web/static/al_faces/U-410.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/U-410.png -------------------------------------------------------------------------------- /web/static/al_faces/U-47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/U-47.png -------------------------------------------------------------------------------- /web/static/al_faces/U-522.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/U-522.png -------------------------------------------------------------------------------- /web/static/al_faces/U-556 META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/U-556 META.png -------------------------------------------------------------------------------- /web/static/al_faces/U-556.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/U-556.png -------------------------------------------------------------------------------- /web/static/al_faces/U-557.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/U-557.png -------------------------------------------------------------------------------- /web/static/al_faces/U-73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/U-73.png -------------------------------------------------------------------------------- /web/static/al_faces/U-81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/U-81.png -------------------------------------------------------------------------------- /web/static/al_faces/U-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/U-96.png -------------------------------------------------------------------------------- /web/static/al_faces/Ulrich von Hutten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Ulrich von Hutten.png -------------------------------------------------------------------------------- /web/static/al_faces/Umikaze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Umikaze.png -------------------------------------------------------------------------------- /web/static/al_faces/Unicorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Unicorn.png -------------------------------------------------------------------------------- /web/static/al_faces/Universal Bulin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Universal Bulin.png -------------------------------------------------------------------------------- /web/static/al_faces/Unzen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Unzen.png -------------------------------------------------------------------------------- /web/static/al_faces/Urakaze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Urakaze.png -------------------------------------------------------------------------------- /web/static/al_faces/Uranami.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Uranami.png -------------------------------------------------------------------------------- /web/static/al_faces/Uruuru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Uruuru.png -------------------------------------------------------------------------------- /web/static/al_faces/Uzuki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Uzuki.png -------------------------------------------------------------------------------- /web/static/al_faces/Valiant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Valiant.png -------------------------------------------------------------------------------- /web/static/al_faces/Vampire META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Vampire META.png -------------------------------------------------------------------------------- /web/static/al_faces/Vampire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Vampire.png -------------------------------------------------------------------------------- /web/static/al_faces/Vanguard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Vanguard.png -------------------------------------------------------------------------------- /web/static/al_faces/Vauquelin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Vauquelin.png -------------------------------------------------------------------------------- /web/static/al_faces/Vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Vert.png -------------------------------------------------------------------------------- /web/static/al_faces/Vestal META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Vestal META.png -------------------------------------------------------------------------------- /web/static/al_faces/Vestal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Vestal.png -------------------------------------------------------------------------------- /web/static/al_faces/Victorious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Victorious.png -------------------------------------------------------------------------------- /web/static/al_faces/Vincennes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Vincennes.png -------------------------------------------------------------------------------- /web/static/al_faces/Vincenzo Gioberti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Vincenzo Gioberti.png -------------------------------------------------------------------------------- /web/static/al_faces/Vittorio Veneto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Vittorio Veneto.png -------------------------------------------------------------------------------- /web/static/al_faces/Volga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Volga.png -------------------------------------------------------------------------------- /web/static/al_faces/Voroshilov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Voroshilov.png -------------------------------------------------------------------------------- /web/static/al_faces/Wakaba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Wakaba.png -------------------------------------------------------------------------------- /web/static/al_faces/Wakatsuki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Wakatsuki.png -------------------------------------------------------------------------------- /web/static/al_faces/Warspite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Warspite.png -------------------------------------------------------------------------------- /web/static/al_faces/Washington.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Washington.png -------------------------------------------------------------------------------- /web/static/al_faces/Wasp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Wasp.png -------------------------------------------------------------------------------- /web/static/al_faces/Weser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Weser.png -------------------------------------------------------------------------------- /web/static/al_faces/West Virginia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/West Virginia.png -------------------------------------------------------------------------------- /web/static/al_faces/White Heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/White Heart.png -------------------------------------------------------------------------------- /web/static/al_faces/Whydah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Whydah.png -------------------------------------------------------------------------------- /web/static/al_faces/Wichita.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Wichita.png -------------------------------------------------------------------------------- /web/static/al_faces/Yamakaze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Yamakaze.png -------------------------------------------------------------------------------- /web/static/al_faces/Yamashiro META.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Yamashiro META.png -------------------------------------------------------------------------------- /web/static/al_faces/Yamashiro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Yamashiro.png -------------------------------------------------------------------------------- /web/static/al_faces/Yat Sen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Yat Sen.png -------------------------------------------------------------------------------- /web/static/al_faces/Ying Swei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Ying Swei.png -------------------------------------------------------------------------------- /web/static/al_faces/Yoizuki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Yoizuki.png -------------------------------------------------------------------------------- /web/static/al_faces/Yorck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Yorck.png -------------------------------------------------------------------------------- /web/static/al_faces/York.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/York.png -------------------------------------------------------------------------------- /web/static/al_faces/Yorktown II.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Yorktown II.png -------------------------------------------------------------------------------- /web/static/al_faces/Yorktown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Yorktown.png -------------------------------------------------------------------------------- /web/static/al_faces/Yukikaze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Yukikaze.png -------------------------------------------------------------------------------- /web/static/al_faces/Yume Minami.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Yume Minami.png -------------------------------------------------------------------------------- /web/static/al_faces/Yumi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Yumi.png -------------------------------------------------------------------------------- /web/static/al_faces/Yura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Yura.png -------------------------------------------------------------------------------- /web/static/al_faces/Yuubari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Yuubari.png -------------------------------------------------------------------------------- /web/static/al_faces/Yuudachi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Yuudachi.png -------------------------------------------------------------------------------- /web/static/al_faces/Yuugure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Yuugure.png -------------------------------------------------------------------------------- /web/static/al_faces/Yūyaki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Yūyaki.png -------------------------------------------------------------------------------- /web/static/al_faces/Z1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Z1.png -------------------------------------------------------------------------------- /web/static/al_faces/Z16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Z16.png -------------------------------------------------------------------------------- /web/static/al_faces/Z18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Z18.png -------------------------------------------------------------------------------- /web/static/al_faces/Z19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Z19.png -------------------------------------------------------------------------------- /web/static/al_faces/Z2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Z2.png -------------------------------------------------------------------------------- /web/static/al_faces/Z20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Z20.png -------------------------------------------------------------------------------- /web/static/al_faces/Z21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Z21.png -------------------------------------------------------------------------------- /web/static/al_faces/Z23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Z23.png -------------------------------------------------------------------------------- /web/static/al_faces/Z24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Z24.png -------------------------------------------------------------------------------- /web/static/al_faces/Z25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Z25.png -------------------------------------------------------------------------------- /web/static/al_faces/Z26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Z26.png -------------------------------------------------------------------------------- /web/static/al_faces/Z28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Z28.png -------------------------------------------------------------------------------- /web/static/al_faces/Z35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Z35.png -------------------------------------------------------------------------------- /web/static/al_faces/Z36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Z36.png -------------------------------------------------------------------------------- /web/static/al_faces/Z46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Z46.png -------------------------------------------------------------------------------- /web/static/al_faces/Zara.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Zara.png -------------------------------------------------------------------------------- /web/static/al_faces/Zuikaku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Zuikaku.png -------------------------------------------------------------------------------- /web/static/al_faces/Ägir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Ägir.png -------------------------------------------------------------------------------- /web/static/al_faces/Émile Bertin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Émile Bertin.png -------------------------------------------------------------------------------- /web/static/al_faces/Épée.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/al_faces/Épée.png -------------------------------------------------------------------------------- /web/static/fonts/BerkeleyMono-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/fonts/BerkeleyMono-Bold.woff2 -------------------------------------------------------------------------------- /web/static/fonts/BerkeleyMono-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/fonts/BerkeleyMono-BoldItalic.woff2 -------------------------------------------------------------------------------- /web/static/fonts/BerkeleyMono-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/fonts/BerkeleyMono-Italic.woff2 -------------------------------------------------------------------------------- /web/static/fonts/BerkeleyMono-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/fonts/BerkeleyMono-Regular.woff2 -------------------------------------------------------------------------------- /web/static/fonts/bootstrap-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/fonts/bootstrap-icons.woff2 -------------------------------------------------------------------------------- /web/static/items/Wisdom Cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggmolly/belfast/0c1dfce864acd0b5df7c8075ca68a5b1ddd0f665/web/static/items/Wisdom Cube.png -------------------------------------------------------------------------------- /web/static/main.js: -------------------------------------------------------------------------------- 1 | document.body.addEventListener('htmx:beforeOnLoad', function (evt) { 2 | if (evt.detail.xhr.status === 422) { 3 | evt.detail.shouldSwap = true; 4 | evt.detail.isError = false; 5 | } 6 | }); -------------------------------------------------------------------------------- /web/utils/human_readable_size.go: -------------------------------------------------------------------------------- 1 | package utils 2 | 3 | import "fmt" 4 | 5 | var ( 6 | units = []string{"B", "Kb", "Mb", "Gb", "Tb", "Pb"} 7 | ) 8 | 9 | func HumanReadableSize(n int) string { 10 | x := float32(n) 11 | i := 0 12 | for x >= 1024 { 13 | x /= 1024 14 | i++ 15 | } 16 | return fmt.Sprintf("%.2f %s", x, units[i]) 17 | } 18 | -------------------------------------------------------------------------------- /web/utils/seconds_left.go: -------------------------------------------------------------------------------- 1 | package utils 2 | 3 | import "time" 4 | 5 | // Returns the number of seconds left until the given time 6 | // returns 0 if the given time is in the past 7 | func SecondsLeft(t time.Time) int { 8 | seconds := int(time.Until(t).Seconds()) 9 | if seconds < 0 { 10 | return 0 11 | } 12 | return seconds 13 | } 14 | -------------------------------------------------------------------------------- /web/utils/tab_color.go: -------------------------------------------------------------------------------- 1 | package utils 2 | 3 | import "html/template" 4 | 5 | func TabColor(page, currentPage string) template.HTML { 6 | if page == currentPage { 7 | return template.HTML("text-primary") 8 | } 9 | return template.HTML("text-secondary") 10 | } 11 | -------------------------------------------------------------------------------- /web/utils/trim_string.go: -------------------------------------------------------------------------------- 1 | package utils 2 | 3 | import "strings" 4 | 5 | func TrimString(s string, n int) string { 6 | if len(s) > n { 7 | return strings.Trim(s[:n-3], " ") + "..." 8 | } 9 | return s 10 | } 11 | -------------------------------------------------------------------------------- /web/views/builds.html: -------------------------------------------------------------------------------- 1 |