├── .gitignore ├── LICENSE ├── Podfile ├── Podfile.lock ├── README.md ├── bither-ios WatchKit App ├── Base.lproj │ ├── Interface.storyboard │ └── infoPlist.strings ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── bither_iwatch_1024@1x.png │ │ ├── bither_iwatch_24@2x.png │ │ ├── bither_iwatch_27.5@2x.png │ │ ├── bither_iwatch_29@2x.png │ │ ├── bither_iwatch_29@3x.png │ │ ├── bither_iwatch_40@2x.png │ │ ├── bither_iwatch_44@2x.png │ │ ├── bither_iwatch_86@2x.png │ │ └── bither_iwatch_98@2x.png │ ├── symbol_bits_green_slim.imageset │ │ ├── Contents.json │ │ ├── symbol_bits_green_slim.png │ │ └── symbol_bits_green_slim@2x.png │ ├── symbol_bits_red_slim.imageset │ │ ├── Contents.json │ │ ├── symbol_bits_red_slim.png │ │ └── symbol_bits_red_slim@2x.png │ ├── symbol_bits_slim.imageset │ │ ├── Contents.json │ │ ├── symbol_bits_slim.png │ │ └── symbol_bits_slim@2x.png │ ├── symbol_btc_green_slim.imageset │ │ ├── Contents.json │ │ ├── symbol_btc_green_slim.png │ │ └── symbol_btc_green_slim@2x.png │ ├── symbol_btc_red_slim.imageset │ │ ├── Contents.json │ │ ├── symbol_btc_red_slim.png │ │ └── symbol_btc_red_slim@2x.png │ └── symbol_btc_slim.imageset │ │ ├── Contents.json │ │ ├── symbol_btc_slim.png │ │ └── symbol_btc_slim@2x.png ├── Info.plist ├── en.lproj │ └── Interface.strings ├── zh-Hans.lproj │ ├── Interface.strings │ └── infoPlist.strings └── zh-Hant.lproj │ ├── Interface.strings │ └── infoPlist.strings ├── bither-ios WatchKit Extension ├── Base.lproj │ ├── Localizable.strings │ └── infoPlist.strings ├── GlanceController.h ├── GlanceController.m ├── Images.xcassets │ ├── Contents.json │ └── README__ignoredByTemplate__ ├── Info.plist ├── InterfaceController.h ├── InterfaceController.m ├── MarketInterfaceController.h ├── MarketInterfaceController.m ├── NotificationController.h ├── NotificationController.m ├── PaymentInterfaceController.h ├── PaymentInterfaceController.m ├── PushNotificationPayload.apns ├── TotalBalance.h ├── TotalBalance.m ├── TotalBalanceDrawer.h ├── TotalBalanceDrawer.m ├── WatchApi.h ├── WatchApi.m ├── WatchMarket.h ├── WatchMarket.m ├── WatchMarketBgDrawer.h ├── WatchMarketBgDrawer.m ├── WatchPageConfiguration.h ├── WatchPageConfiguration.m ├── WatchStringUtil.h ├── WatchStringUtil.m ├── WatchTrendingGraphicData.h ├── WatchTrendingGraphicData.m ├── WatchTrendingGraphicDrawer.h ├── WatchTrendingGraphicDrawer.m ├── WatchUnitUtil.h ├── WatchUnitUtil.m ├── bither-ios WatchKit Extension.entitlements ├── zh-Hans.lproj │ ├── Localizable.strings │ └── infoPlist.strings └── zh-Hant.lproj │ ├── Localizable.strings │ └── infoPlist.strings ├── bither-ios.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── bither-ios.xccheckout ├── bither-ios.xcworkspace └── contents.xcworkspacedata ├── bither-ios ├── Ad │ ├── AdView.h │ └── AdView.m ├── Api │ ├── BTHDMBid+Api.h │ ├── BTHDMBid+Api.m │ ├── BaseApi.h │ ├── BaseApi.m │ ├── BitherApi.h │ ├── BitherApi.m │ ├── BitherEngine.h │ ├── BitherEngine.m │ ├── BlockchairQueryAddressUnspentApi.h │ ├── BlockchairQueryAddressUnspentApi.m │ ├── BlockchairQueryApi.h │ ├── BlockchairQueryApi.m │ ├── BlockchairUnspentTxsApi.h │ ├── BlockchairUnspentTxsApi.m │ ├── HDMApi.h │ ├── HDMApi.m │ ├── PushTxThirdParty.h │ ├── PushTxThirdParty.m │ ├── UploadAndDowloadFileFactory.h │ └── UploadAndDowloadFileFactory.m ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── MainStoryboard.storyboard │ └── MainStoryboard.strings ├── BitherSetting.h ├── BitherSetting.m ├── Cells │ ├── AddressDetailCell.h │ ├── AddressDetailCell.m │ ├── CheckPrivateKeyCell.h │ ├── CheckPrivateKeyCell.m │ ├── ColdAddressListCell.h │ ├── ColdAddressListCell.m │ ├── ColdAddressListHDCell.h │ ├── ColdAddressListHDCell.m │ ├── ColdAddressListHDMCell.h │ ├── ColdAddressListHDMCell.m │ ├── HotAddressListCell.h │ ├── HotAddressListCell.m │ ├── HotAddressListSectionHeader.h │ ├── HotAddressListSectionHeader.m │ ├── MarketListCell.h │ ├── MarketListCell.m │ ├── NetworkMonitor │ │ ├── BlockCell.h │ │ ├── BlockCell.m │ │ ├── PeerCell.h │ │ └── PeerCell.m │ ├── RCheckCell.h │ ├── RCheckCell.m │ ├── SettingListCell.h │ ├── SettingListCell.m │ ├── TransactionCell.h │ ├── TransactionCell.m │ ├── TrashCanCell.h │ ├── TrashCanCell.m │ ├── WorldListCell.h │ └── WorldListCell.m ├── Controllers │ ├── AdvanceViewController.h │ ├── AdvanceViewController.m │ ├── ChooseModeViewController.h │ ├── ChooseModeViewController.m │ ├── Cold │ │ ├── CheckViewController.h │ │ ├── CheckViewController.m │ │ ├── ColdAddressAddHDAccountViewController.h │ │ ├── ColdAddressAddHDAccountViewController.m │ │ ├── ColdAddressAddHDAccountViewViewController.h │ │ ├── ColdAddressAddHDAccountViewViewController.m │ │ ├── ColdAddressAddHDMViewController.h │ │ ├── ColdAddressAddHDMViewController.m │ │ ├── ColdAddressAddOtherViewController.h │ │ ├── ColdAddressAddOtherViewController.m │ │ ├── ColdAddressAddViewController.h │ │ ├── ColdAddressAddViewController.m │ │ ├── ColdAddressViewController.h │ │ ├── ColdAddressViewController.m │ │ ├── ColdViewController.h │ │ ├── ColdViewController.m │ │ ├── ImportHDMColdSeedController.h │ │ ├── ImportHDMColdSeedController.m │ │ ├── OptionColdViewController.h │ │ ├── OptionColdViewController.m │ │ ├── SignTransactionViewController.h │ │ └── SignTransactionViewController.m │ ├── GetForkCoinsController.h │ ├── GetForkCoinsController.m │ ├── Hot │ │ ├── AddHDMAddressViewController.h │ │ ├── AddHDMAddressViewController.m │ │ ├── AddressDetailViewController.h │ │ ├── AddressDetailViewController.m │ │ ├── HDAccountMonitoredSendViewController.h │ │ ├── HDAccountMonitoredSendViewController.m │ │ ├── HDAccountSendViewController.h │ │ ├── HDAccountSendViewController.m │ │ ├── HdmSendViewController.h │ │ ├── HdmSendViewController.m │ │ ├── HotAddressAddHDAccountViewController.h │ │ ├── HotAddressAddHDAccountViewController.m │ │ ├── HotAddressAddHDAccountViewViewController.h │ │ ├── HotAddressAddHDAccountViewViewController.m │ │ ├── HotAddressAddHDMViewController.h │ │ ├── HotAddressAddHDMViewController.m │ │ ├── HotAddressAddOtherViewController.h │ │ ├── HotAddressAddOtherViewController.m │ │ ├── HotAddressAddPrivateKeyViewController.h │ │ ├── HotAddressAddPrivateKeyViewController.m │ │ ├── HotAddressAddViewController.h │ │ ├── HotAddressAddViewController.m │ │ ├── HotAddressAddWatchOnlyViewController.h │ │ ├── HotAddressAddWatchOnlyViewController.m │ │ ├── HotAddressViewController.h │ │ ├── HotAddressViewController.m │ │ ├── HotCheckPrivateKeyViewController.h │ │ ├── HotCheckPrivateKeyViewController.m │ │ ├── HotViewController.h │ │ ├── HotViewController.m │ │ ├── ImportHDAccountSeedController.h │ │ ├── ImportHDAccountSeedController.m │ │ ├── MarketViewController.h │ │ ├── MarketViewController.m │ │ ├── MinerFeeSettingViewController.h │ │ ├── MinerFeeSettingViewController.m │ │ ├── MinerFeeSettingViewController.xib │ │ ├── NetworkCustomPeerViewController.h │ │ ├── NetworkCustomPeerViewController.m │ │ ├── NetworkCustomPeerViewController.xib │ │ ├── NetworkMonitor │ │ │ ├── BlockViewController.h │ │ │ ├── BlockViewController.m │ │ │ ├── NetworkMonitorViewController.h │ │ │ ├── NetworkMonitorViewController.m │ │ │ ├── PeerViewController.h │ │ │ └── PeerViewController.m │ │ ├── OptionHotViewController.h │ │ ├── OptionHotViewController.m │ │ ├── RCheckViewController.h │ │ ├── RCheckViewController.m │ │ ├── SelectViewController.h │ │ ├── SelectViewController.m │ │ ├── SendViewController.h │ │ ├── SendViewController.m │ │ ├── UnsignedTransactionViewController.h │ │ └── UnsignedTransactionViewController.m │ ├── ObtainBccDetailViewController.h │ ├── ObtainBccDetailViewController.m │ ├── ObtainBccMonitoredDetailViewController.h │ ├── ObtainBccMonitoredDetailViewController.m │ ├── ObtainBccViewController.h │ ├── ObtainBccViewController.m │ ├── SignMessageSelectAddressViewController.h │ ├── SignMessageSelectAddressViewController.m │ ├── SignMessageViewController.h │ ├── SignMessageViewController.m │ ├── TrashCanViewController.h │ ├── TrashCanViewController.m │ ├── VerifyMessageSignatureViewController.h │ └── VerifyMessageSignatureViewController.m ├── CrashLog │ ├── CrashLog.h │ ├── CrashLog.m │ ├── GCCrashInstallation.h │ ├── GCCrashInstallation.m │ ├── GCCrashReportFilterTrim.h │ ├── GCCrashReportFilterTrim.m │ ├── GCCrashReportSink.h │ └── GCCrashReportSink.m ├── FixedPeers.plist ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── bither_1024@1x.png │ │ ├── bither_20@2x.png │ │ ├── bither_20@3x.png │ │ ├── bither_29@2x.png │ │ ├── bither_29@3x.png │ │ ├── bither_40@2x.png │ │ ├── bither_40@3x.png │ │ ├── bither_60@2x.png │ │ ├── bither_60@3x.png │ │ ├── bither_ipad_20@1x.png │ │ ├── bither_ipad_20@2x.png │ │ ├── bither_ipad_29@1x.png │ │ ├── bither_ipad_29@2x.png │ │ ├── bither_ipad_40@1x.png │ │ ├── bither_ipad_40@2x.png │ │ ├── bither_ipad_76@1x.png │ │ └── bither_ipad_76@2x.png │ ├── Contents.json │ ├── LaunchImage.launchimage │ │ ├── Contents.json │ │ ├── LaunchImage-568@2x.png │ │ └── LaunchImage@2x.png │ ├── action_bar_black_bg_tile_horizontal.imageset │ │ ├── Contents.json │ │ ├── action_bar_black_bg_tile_horizontal.png │ │ └── action_bar_black_bg_tile_horizontal@2x.png │ ├── action_bar_dark_right_green_button_enabled.imageset │ │ ├── Contents.json │ │ ├── action_bar_dark_right_green_button_enabled.png │ │ └── action_bar_dark_right_green_button_enabled@2x.png │ ├── action_bar_dark_right_green_button_enabled_pressed.imageset │ │ ├── Contents.json │ │ ├── action_bar_dark_right_green_button_enabled_pressed.png │ │ └── action_bar_dark_right_green_button_enabled_pressed@2x.png │ ├── action_bar_glyph_cancel.imageset │ │ ├── Contents.json │ │ ├── action_bar_glyph_cancel.png │ │ └── action_bar_glyph_cancel@2x.png │ ├── action_bar_glyph_done.imageset │ │ ├── Contents.json │ │ ├── action_bar_glyph_done.png │ │ └── action_bar_glyph_done@2x.png │ ├── add_address_button_icon.imageset │ │ ├── Contents.json │ │ ├── add_finance_button_icon.png │ │ └── add_finance_button_icon@2x.png │ ├── add_address_button_icon_pressed.imageset │ │ ├── Contents.json │ │ ├── add_finance_button_icon_pressed.png │ │ └── add_finance_button_icon_pressed@2x.png │ ├── add_finance_top_bar_cancel_button_pressed.imageset │ │ ├── Contents.json │ │ └── add_finance_top_bar_cancel_button_pressed.png │ ├── add_finance_top_bar_confirm_button_normal.imageset │ │ ├── Contents.json │ │ ├── add_finance_top_bar_confirm_button_normal.png │ │ └── add_finance_top_bar_confirm_button_normal@2x.png │ ├── add_finance_top_bar_confirm_button_pressed.imageset │ │ ├── Contents.json │ │ ├── add_finance_top_bar_confirm_button_pressed.png │ │ └── add_finance_top_bar_confirm_button_pressed@2x.png │ ├── address_add_mode_bither_create.imageset │ │ ├── Contents.json │ │ ├── address_add_mode_bither_create.png │ │ ├── address_add_mode_bither_create@2x.png │ │ └── address_add_mode_bither_create@3x.png │ ├── address_add_mode_bither_create_press.imageset │ │ ├── Contents.json │ │ ├── address_add_mode_bither_create_press.png │ │ ├── address_add_mode_bither_create_press@2x.png │ │ └── address_add_mode_bither_create_press@3x.png │ ├── address_add_mode_clone.imageset │ │ ├── Contents.json │ │ ├── address_add_mode_clone.png │ │ ├── address_add_mode_clone@2x.png │ │ └── address_add_mode_clone@3x.png │ ├── address_add_mode_clone_press.imageset │ │ ├── Contents.json │ │ ├── address_add_mode_clone_press.png │ │ ├── address_add_mode_clone_press@2x.png │ │ └── address_add_mode_clone_press@3x.png │ ├── address_add_mode_import.imageset │ │ ├── Contents.json │ │ ├── address_add_mode_import.png │ │ ├── address_add_mode_import@2x.png │ │ └── address_add_mode_import@3x.png │ ├── address_add_mode_import_press.imageset │ │ ├── Contents.json │ │ ├── address_add_mode_import_press.png │ │ ├── address_add_mode_import_press@2x.png │ │ └── address_add_mode_import_press@3x.png │ ├── address_add_mode_other.imageset │ │ ├── Contents.json │ │ ├── address_add_mode_other.png │ │ ├── address_add_mode_other@2x.png │ │ └── address_add_mode_other@3x.png │ ├── address_add_mode_other_press.imageset │ │ ├── Contents.json │ │ ├── address_add_mode_other_press.png │ │ ├── address_add_mode_other_press@2x.png │ │ └── address_add_mode_other_press@3x.png │ ├── address_alias_default.imageset │ │ ├── Contents.json │ │ ├── address_alias_default.png │ │ └── address_alias_default@2x.png │ ├── address_alias_pressed.imageset │ │ ├── Contents.json │ │ ├── address_alias_pressed.png │ │ └── address_alias_pressed@2x.png │ ├── address_balance_full_show_button.imageset │ │ ├── Contents.json │ │ ├── address_balance_full_show_button.png │ │ └── address_balance_full_show_button@2x.png │ ├── address_full_show_button.imageset │ │ ├── Contents.json │ │ ├── address_full_show_button.png │ │ └── address_full_show_button@2x.png │ ├── address_type_hd.imageset │ │ ├── Contents.json │ │ ├── address_type_hd.png │ │ └── address_type_hd@2x.png │ ├── address_type_hd_pressed.imageset │ │ ├── Contents.json │ │ ├── address_type_hd_pressed.png │ │ └── address_type_hd_pressed@2x.png │ ├── address_type_hdm.imageset │ │ ├── Contents.json │ │ ├── address_type_hdm.png │ │ └── address_type_hdm@2x.png │ ├── address_type_hdm_pressed.imageset │ │ ├── Contents.json │ │ ├── address_type_hdm_pressed.png │ │ └── address_type_hdm_pressed@2x.png │ ├── address_type_private.imageset │ │ ├── Contents.json │ │ ├── address_type_private.png │ │ └── address_type_private@2x.png │ ├── address_type_watchonly.imageset │ │ ├── Contents.json │ │ ├── address_type_watchonly.png │ │ └── address_type_watchonly@2x.png │ ├── advance_button_icon.imageset │ │ ├── Contents.json │ │ ├── advance_button_icon.png │ │ └── advance_button_icon@2x.png │ ├── app_mode_cold_icon_normal.imageset │ │ ├── Contents.json │ │ ├── app_mode_cold_icon_normal.png │ │ └── app_mode_cold_icon_normal@2x.png │ ├── app_mode_cold_icon_pressed.imageset │ │ ├── Contents.json │ │ ├── app_mode_cold_icon_pressed.png │ │ └── app_mode_cold_icon_pressed@2x.png │ ├── app_mode_warm_icon_normal.imageset │ │ ├── Contents.json │ │ ├── app_mode_warm_icon_normal.png │ │ └── app_mode_warm_icon_normal@2x.png │ ├── app_mode_warm_icon_pressed.imageset │ │ ├── Contents.json │ │ ├── app_mode_warm_icon_pressed.png │ │ └── app_mode_warm_icon_pressed@2x.png │ ├── arrow_down.imageset │ │ ├── Contents.json │ │ ├── arrow_down.png │ │ └── arrow_down@2x.png │ ├── avatar_button_icon.imageset │ │ ├── Contents.json │ │ ├── avatar_button_icon.png │ │ └── avatar_button_icon@2x.png │ ├── avatar_button_icon_border.imageset │ │ ├── Contents.json │ │ ├── avatar_button_icon_border.png │ │ └── avatar_button_icon_border@2x.png │ ├── avatar_for_fancy_qr_code_overlay.imageset │ │ ├── Contents.json │ │ ├── avatar_for_fancy_qr_code_overlay.png │ │ └── avatar_for_fancy_qr_code_overlay@2x.png │ ├── avatar_for_fancy_qr_code_shape.imageset │ │ ├── Contents.json │ │ ├── avatar_for_fancy_qr_code_shape.png │ │ └── avatar_for_fancy_qr_code_shape@2x.png │ ├── border_bottom_right.imageset │ │ ├── Contents.json │ │ ├── border_bottom_right.png │ │ └── border_bottom_right@2x.png │ ├── border_top_left.imageset │ │ ├── Contents.json │ │ ├── border_top_left.png │ │ └── border_top_left@2x.png │ ├── btn_check_off_holo_light.imageset │ │ ├── Contents.json │ │ ├── btn_check_off_holo_light.png │ │ └── btn_check_off_holo_light@2x.png │ ├── btn_check_on_holo_light.imageset │ │ ├── Contents.json │ │ ├── btn_check_on_holo_light.png │ │ └── btn_check_on_holo_light@2x.png │ ├── btn_keyboard_key_gray_normal.imageset │ │ ├── Contents.json │ │ ├── btn_keyboard_key_gray_normal.png │ │ └── btn_keyboard_key_gray_normal@2x.png │ ├── btn_keyboard_key_gray_pressed.imageset │ │ ├── Contents.json │ │ ├── btn_keyboard_key_gray_pressed.png │ │ └── btn_keyboard_key_gray_pressed@2x.png │ ├── btn_keyboard_key_white_normal.imageset │ │ ├── Contents.json │ │ ├── btn_keyboard_key_white_normal.png │ │ └── btn_keyboard_key_white_normal@2x.png │ ├── btn_keyboard_key_white_pressed.imageset │ │ ├── Contents.json │ │ ├── btn_keyboard_key_white_pressed.png │ │ └── btn_keyboard_key_white_pressed@2x.png │ ├── button_check_bg_normal.imageset │ │ ├── Contents.json │ │ ├── button_check_bg_normal.png │ │ └── button_check_bg_normal@2x.png │ ├── button_check_bg_pressed.imageset │ │ ├── Contents.json │ │ ├── button_check_bg_pressed.png │ │ └── button_check_bg_pressed@2x.png │ ├── button_lightblue.imageset │ │ ├── Contents.json │ │ ├── button_lightblue.png │ │ └── button_lightblue@2x.png │ ├── button_lightblue_pressed.imageset │ │ ├── Contents.json │ │ ├── button_lightblue_pressed.png │ │ └── button_lightblue_pressed@2x.png │ ├── button_small_blue_normal.imageset │ │ ├── Contents.json │ │ ├── button_small_blue_normal.png │ │ └── button_small_blue_normal@2x.png │ ├── button_small_blue_pressed.imageset │ │ ├── Contents.json │ │ ├── button_small_blue_pressed.png │ │ └── button_small_blue_pressed@2x.png │ ├── button_small_green_normal.imageset │ │ ├── Contents.json │ │ ├── button_small_green_normal.png │ │ └── button_small_green_normal@2x.png │ ├── button_small_green_pressed.imageset │ │ ├── Contents.json │ │ ├── button_small_green_pressed.png │ │ └── button_small_green_pressed@2x.png │ ├── button_small_red_normal.imageset │ │ ├── Contents.json │ │ ├── button_small_red_normal.png │ │ └── button_small_red_normal@2x.png │ ├── button_small_red_pressed.imageset │ │ ├── Contents.json │ │ ├── button_small_red_pressed.png │ │ └── button_small_red_pressed@2x.png │ ├── card_foreground_pressed.imageset │ │ ├── Contents.json │ │ └── card_foreground_pressed.png │ ├── center_dialog_background.imageset │ │ ├── Contents.json │ │ ├── center_dialog_background.png │ │ └── center_dialog_background@2x.png │ ├── check_button_icon.imageset │ │ ├── Contents.json │ │ ├── check_button_icon.png │ │ └── check_button_icon@2x.png │ ├── check_failed.imageset │ │ ├── Contents.json │ │ ├── check_failed.png │ │ └── check_failed@2x.png │ ├── checking_progress_light.imageset │ │ ├── Contents.json │ │ ├── checking_progress_light.png │ │ └── checking_progress_light@2x.png │ ├── checkmark.imageset │ │ ├── Contents.json │ │ ├── checkmark.png │ │ └── checkmark@2x.png │ ├── detail_send_button_normal.imageset │ │ ├── Contents.json │ │ ├── detail_send_button_normal.png │ │ └── detail_send_button_normal@2x.png │ ├── detail_send_button_pressed.imageset │ │ ├── Contents.json │ │ ├── detail_send_button_pressed.png │ │ └── detail_send_button_pressed@2x.png │ ├── dialog_arrow_bottom.imageset │ │ ├── Contents.json │ │ ├── dialog_arrow_bottom.png │ │ └── dialog_arrow_bottom@2x.png │ ├── dialog_arrow_top.imageset │ │ ├── Contents.json │ │ ├── dialog_arrow_top.png │ │ └── dialog_arrow_top@2x.png │ ├── dialog_btn_bg_normal.imageset │ │ ├── Contents.json │ │ ├── dialog_btn_bg_normal.png │ │ └── dialog_btn_bg_normal@2x.png │ ├── dialog_sign_message_bg.imageset │ │ ├── Contents.json │ │ ├── dialog_sign_message_bg.png │ │ ├── dialog_sign_message_bg@2x.png │ │ └── dialog_sign_message_bg@3x.png │ ├── dialog_total_balance_dot.imageset │ │ ├── Contents.json │ │ ├── dialog_total_balance_dot.png │ │ └── dialog_total_balance_dot@2x.png │ ├── dialog_total_btc_pie_chart_logo.imageset │ │ ├── Contents.json │ │ ├── dialog_total_btc_pie_chart_logo.png │ │ └── dialog_total_btc_pie_chart_logo@2x.png │ ├── dice_large_1.imageset │ │ ├── Contents.json │ │ ├── dice_large_1.png │ │ └── dice_large_1@2x.png │ ├── dice_large_2.imageset │ │ ├── Contents.json │ │ ├── dice_large_2.png │ │ └── dice_large_2@2x.png │ ├── dice_large_3.imageset │ │ ├── Contents.json │ │ ├── dice_large_3.png │ │ └── dice_large_3@2x.png │ ├── dice_large_4.imageset │ │ ├── Contents.json │ │ ├── dice_large_4.png │ │ └── dice_large_4@2x.png │ ├── dice_large_5.imageset │ │ ├── Contents.json │ │ ├── dice_large_5.png │ │ └── dice_large_5@2x.png │ ├── dice_large_6.imageset │ │ ├── Contents.json │ │ ├── dice_large_6.png │ │ └── dice_large_6@2x.png │ ├── donate_button_icon.imageset │ │ ├── Contents.json │ │ ├── donate_button_icon.png │ │ └── donate_button_icon@2x.png │ ├── dropdown_ic_arrow_normal_holo_light.imageset │ │ ├── Contents.json │ │ ├── dropdown_ic_arrow_normal_holo_light.png │ │ └── dropdown_ic_arrow_normal_holo_light@2x.png │ ├── dropdown_ic_arrow_pressed_holo_light.imageset │ │ ├── Contents.json │ │ ├── dropdown_ic_arrow_pressed_holo_light.png │ │ └── dropdown_ic_arrow_pressed_holo_light@2x.png │ ├── edit_password_button_icon.imageset │ │ ├── Contents.json │ │ ├── edit_password_button_icon.png │ │ └── edit_password_button_icon@2x.png │ ├── fancy_qr_code_save_normal.imageset │ │ ├── Contents.json │ │ ├── fancy_qr_code_save_normal.png │ │ └── fancy_qr_code_save_normal@2x.png │ ├── fancy_qr_code_save_pressed.imageset │ │ ├── Contents.json │ │ ├── fancy_qr_code_save_pressed.png │ │ └── fancy_qr_code_save_pressed@2x.png │ ├── fancy_qr_code_share_normal.imageset │ │ ├── Contents.json │ │ ├── fancy_qr_code_share_normal.png │ │ └── fancy_qr_code_share_normal@2x.png │ ├── fancy_qr_code_share_pressed.imageset │ │ ├── Contents.json │ │ ├── fancy_qr_code_share_pressed.png │ │ └── fancy_qr_code_share_pressed@2x.png │ ├── first_run_dialog_dot.imageset │ │ ├── Contents.json │ │ ├── first_run_dialog_dot.png │ │ └── first_run_dialog_dot@2x.png │ ├── first_run_dialog_icon.imageset │ │ ├── Contents.json │ │ ├── first_run_dialog_icon.png │ │ └── first_run_dialog_icon@2x.png │ ├── flash_off.imageset │ │ ├── Contents.json │ │ ├── flash_off.png │ │ └── flash_off@2x.png │ ├── flash_on.imageset │ │ ├── Contents.json │ │ ├── flash_on.png │ │ └── flash_on@2x.png │ ├── global_shadow_down.imageset │ │ ├── Contents.json │ │ ├── global_shadow_down.png │ │ └── global_shadow_down@2x.png │ ├── hdm_button_add_address_normal.imageset │ │ ├── Contents.json │ │ ├── hdm_button_add_address_normal.png │ │ └── hdm_button_add_address_normal@2x.png │ ├── hdm_button_add_address_pressed.imageset │ │ ├── Contents.json │ │ ├── hdm_button_add_address_pressed.png │ │ └── hdm_button_add_address_pressed@2x.png │ ├── hdm_button_qr_code_normal.imageset │ │ ├── Contents.json │ │ ├── hdm_button_qr_code_normal.png │ │ └── hdm_button_qr_code_normal@2x.png │ ├── hdm_button_qr_code_pressed.imageset │ │ ├── Contents.json │ │ ├── hdm_button_qr_code_pressed.png │ │ └── hdm_button_qr_code_pressed@2x.png │ ├── hdm_button_seed_normal.imageset │ │ ├── Contents.json │ │ ├── hdm_button_seed_normal.png │ │ └── hdm_button_seed_normal@2x.png │ ├── hdm_button_seed_pressed.imageset │ │ ├── Contents.json │ │ ├── hdm_button_seed_pressed.png │ │ └── hdm_button_seed_pressed@2x.png │ ├── hdm_keychain_add_cold_completed.imageset │ │ ├── Contents.json │ │ ├── hdm_keychain_add_cold_completed.png │ │ └── hdm_keychain_add_cold_completed@2x.png │ ├── hdm_keychain_add_cold_disable_uncompleted.imageset │ │ ├── Contents.json │ │ ├── hdm_keychain_add_cold_disable_uncompleted.png │ │ └── hdm_keychain_add_cold_disable_uncompleted@2x.png │ ├── hdm_keychain_add_cold_pressed.imageset │ │ ├── Contents.json │ │ ├── hdm_keychain_add_cold_pressed.png │ │ └── hdm_keychain_add_cold_pressed@2x.png │ ├── hdm_keychain_add_hot_completed.imageset │ │ ├── Contents.json │ │ ├── hdm_keychain_add_hot_completed.png │ │ └── hdm_keychain_add_hot_completed@2x.png │ ├── hdm_keychain_add_hot_disable_uncompleted.imageset │ │ ├── Contents.json │ │ ├── hdm_keychain_add_hot_disable_uncompleted.png │ │ └── hdm_keychain_add_hot_disable_uncompleted@2x.png │ ├── hdm_keychain_add_hot_pressed.imageset │ │ ├── Contents.json │ │ ├── hdm_keychain_add_hot_pressed.png │ │ └── hdm_keychain_add_hot_pressed@2x.png │ ├── hdm_keychain_add_one_part_enabled_light.imageset │ │ ├── Contents.json │ │ ├── hdm_keychain_add_one_part_enabled_light.png │ │ └── hdm_keychain_add_one_part_enabled_light@2x.png │ ├── hdm_keychain_add_server_completed.imageset │ │ ├── Contents.json │ │ ├── hdm_keychain_add_server_completed.png │ │ └── hdm_keychain_add_server_completed@2x.png │ ├── hdm_keychain_add_server_disable_uncompleted.imageset │ │ ├── Contents.json │ │ ├── hdm_keychain_add_server_disable_uncompleted.png │ │ └── hdm_keychain_add_server_disable_uncompleted@2x.png │ ├── hdm_keychain_add_server_pressed.imageset │ │ ├── Contents.json │ │ ├── hdm_keychain_add_server_pressed.png │ │ └── hdm_keychain_add_server_pressed@2x.png │ ├── hdm_keychain_cold_small.imageset │ │ ├── Contents.json │ │ ├── hdm_keychain_cold_small.png │ │ └── hdm_keychain_cold_small@2x.png │ ├── hdm_keychain_hot_small.imageset │ │ ├── Contents.json │ │ ├── hdm_keychain_hot_small.png │ │ └── hdm_keychain_hot_small@2x.png │ ├── hdm_keychain_server_small.imageset │ │ ├── Contents.json │ │ ├── hdm_keychain_server_small.png │ │ └── hdm_keychain_server_small@2x.png │ ├── hdm_label.imageset │ │ ├── Contents.json │ │ ├── hdm_label.png │ │ └── hdm_label@2x.png │ ├── hdm_label_pressed.imageset │ │ ├── Contents.json │ │ ├── hdm_label_pressed.png │ │ └── hdm_label_pressed@2x.png │ ├── ic_input_delete.imageset │ │ ├── Contents.json │ │ ├── ic_input_delete.png │ │ └── ic_input_delete@2x.png │ ├── icon_arrow.imageset │ │ ├── Contents.json │ │ ├── icon_arrow.png │ │ ├── icon_arrow@2x.png │ │ └── icon_arrow@3x.png │ ├── icon_arrow_press.imageset │ │ ├── Contents.json │ │ ├── icon_arrow_press.png │ │ ├── icon_arrow_press@2x.png │ │ └── icon_arrow_press@3x.png │ ├── icon_bither_logo.imageset │ │ ├── Contents.json │ │ ├── icon_bither_logo.png │ │ ├── icon_bither_logo@2x.png │ │ └── icon_bither_logo@3x.png │ ├── icon_frame_normal.imageset │ │ ├── Contents.json │ │ ├── icon_frame_normal.png │ │ ├── icon_frame_normal@2x.png │ │ └── icon_frame_normal@3x.png │ ├── icon_frame_press.imageset │ │ ├── Contents.json │ │ ├── icon_frame_press.png │ │ ├── icon_frame_press@2x.png │ │ └── icon_frame_press@3x.png │ ├── icon_question.imageset │ │ ├── Contents.json │ │ ├── icon_question.png │ │ ├── icon_question@2x.png │ │ └── icon_question@3x.png │ ├── list_item_address_group_indicator.imageset │ │ ├── Contents.json │ │ ├── list_item_address_group_indicator.png │ │ └── list_item_address_group_indicator@2x.png │ ├── list_item_card_corner_bottom_left.imageset │ │ ├── Contents.json │ │ ├── list_item_card_corner_bottom_left.png │ │ └── list_item_card_corner_bottom_left@2x.png │ ├── list_item_card_corner_bottom_right.imageset │ │ ├── Contents.json │ │ ├── list_item_card_corner_bottom_right.png │ │ └── list_item_card_corner_bottom_right@2x.png │ ├── list_item_card_corner_top_left.imageset │ │ ├── Contents.json │ │ ├── list_item_card_corner_top_left.png │ │ └── list_item_card_corner_top_left@2x.png │ ├── list_item_card_corner_top_right.imageset │ │ ├── Contents.json │ │ ├── list_item_card_corner_top_right.png │ │ └── list_item_card_corner_top_right@2x.png │ ├── list_item_card_shadow_bottom.imageset │ │ ├── Contents.json │ │ ├── list_item_card_shadow_bottom.png │ │ └── list_item_card_shadow_bottom@2x.png │ ├── list_item_card_shadow_top.imageset │ │ ├── Contents.json │ │ ├── list_item_card_shadow_top.png │ │ └── list_item_card_shadow_top@2x.png │ ├── no_address_image.imageset │ │ ├── Contents.json │ │ ├── no_address_image.png │ │ └── no_address_image@2x.png │ ├── pie_mask.imageset │ │ ├── Contents.json │ │ ├── pie_mask.png │ │ └── pie_mask@2x.png │ ├── pin_code_water_mark.imageset │ │ ├── Contents.json │ │ ├── pin_code_water_mark.png │ │ └── pin_code_water_mark@2x.png │ ├── qr_code_button_icon.imageset │ │ ├── Contents.json │ │ ├── qr_code_button_icon.png │ │ └── qr_code_button_icon@2x.png │ ├── qrcode_frame_default.imageset │ │ ├── Contents.json │ │ ├── qrcode_frame_default.png │ │ └── qrcode_frame_default@2x.png │ ├── qrcode_frame_focused.imageset │ │ ├── Contents.json │ │ ├── qrcode_frame_focused.png │ │ └── qrcode_frame_focused@2x.png │ ├── qrcode_frame_pressed.imageset │ │ ├── Contents.json │ │ ├── qrcode_frame_pressed.png │ │ └── qrcode_frame_pressed@2x.png │ ├── rcheck_button_icon.imageset │ │ ├── Contents.json │ │ ├── rcheck_button_icon.png │ │ └── rcheck_button_icon@2x.png │ ├── rcheck_check_button.imageset │ │ ├── Contents.json │ │ ├── rcheck_check_button.png │ │ └── rcheck_check_button@2x.png │ ├── rcheck_info_logo.imageset │ │ ├── Contents.json │ │ ├── rcheck_info_logo.png │ │ └── rcheck_info_logo@2x.png │ ├── scan_button_icon.imageset │ │ ├── Contents.json │ │ ├── scan_button_icon.png │ │ └── scan_button_icon@2x.png │ ├── scan_button_normal.imageset │ │ ├── Contents.json │ │ ├── scan_button_normal.png │ │ └── scan_button_normal@2x.png │ ├── scan_button_pressed.imageset │ │ ├── Contents.json │ │ ├── scan_button_pressed.png │ │ └── scan_button_pressed@2x.png │ ├── scan_button_resizable_normal.imageset │ │ ├── Contents.json │ │ ├── scan_button_resizable_normal.png │ │ └── scan_button_resizable_normal@2x.png │ ├── scan_button_resizable_pressed.imageset │ │ ├── Contents.json │ │ ├── scan_button_resizable_pressed.png │ │ └── scan_button_resizable_pressed@2x.png │ ├── scan_cancel.imageset │ │ ├── Contents.json │ │ ├── scan_cancel.png │ │ └── scan_cancel@2x.png │ ├── scan_cancel_pressed.imageset │ │ ├── Contents.json │ │ ├── scan_cancel_pressed.png │ │ └── scan_cancel_pressed@2x.png │ ├── scan_from_gallery.imageset │ │ ├── Contents.json │ │ ├── scan_from_gallery.png │ │ └── scan_from_gallery@2x.png │ ├── scan_overlay_button.imageset │ │ ├── Contents.json │ │ ├── scan_overlay_button.png │ │ └── scan_overlay_button@2x.png │ ├── scan_overlay_button_pressed.imageset │ │ ├── Contents.json │ │ ├── scan_overlay_button_pressed.png │ │ └── scan_overlay_button_pressed@2x.png │ ├── setting_footer_logo.imageset │ │ ├── Contents.json │ │ ├── setting_footer_logo.png │ │ └── setting_footer_logo@2x.png │ ├── sym_keyboard_delete_holo_dark.imageset │ │ ├── Contents.json │ │ ├── sym_keyboard_delete_holo_dark.png │ │ └── sym_keyboard_delete_holo_dark@2x.png │ ├── symbol_bits.imageset │ │ ├── Contents.json │ │ ├── symbol_bits.png │ │ └── symbol_bits@2x.png │ ├── symbol_bits_slim.imageset │ │ ├── Contents.json │ │ ├── symbol_bits_slim.png │ │ └── symbol_bits_slim@2x.png │ ├── symbol_bits_slim_black.imageset │ │ ├── Contents.json │ │ ├── symbol_bits_slim_black.png │ │ └── symbol_bits_slim_black@2x.png │ ├── symbol_btc.imageset │ │ ├── Contents.json │ │ ├── symbol_btc.png │ │ └── symbol_btc@2x.png │ ├── symbol_btc_slim.imageset │ │ ├── Contents.json │ │ ├── symbol_btc_slim.png │ │ └── symbol_btc_slim@2x.png │ ├── symbol_btc_slim_black.imageset │ │ ├── Contents.json │ │ ├── symbol_btc_slim_black.png │ │ └── symbol_btc_slim_black@2x.png │ ├── sync_progress_foreground.imageset │ │ ├── Contents.json │ │ ├── sync_progress_foreground.png │ │ └── sync_progress_foreground@2x.png │ ├── tab_arrow_down_checked.imageset │ │ ├── Contents.json │ │ ├── tab_arrow_down_checked.png │ │ └── tab_arrow_down_checked@2x.png │ ├── tab_arrow_down_unchecked.imageset │ │ ├── Contents.json │ │ ├── tab_arrow_down_unchecked.png │ │ └── tab_arrow_down_unchecked@2x.png │ ├── tab_arrow_up_checked.imageset │ │ ├── Contents.json │ │ ├── tab_arrow_up_checked.png │ │ └── tab_arrow_up_checked@2x.png │ ├── tab_arrow_up_unchecked.imageset │ │ ├── Contents.json │ │ ├── tab_arrow_up_unchecked.png │ │ └── tab_arrow_up_unchecked@2x.png │ ├── tab_guard.imageset │ │ ├── Contents.json │ │ ├── tab_guard.png │ │ └── tab_guard@2x.png │ ├── tab_guard_checked.imageset │ │ ├── Contents.json │ │ ├── tab_guard_checked.png │ │ └── tab_guard_checked@2x.png │ ├── tab_main.imageset │ │ ├── Contents.json │ │ ├── tab_main.png │ │ └── tab_main@2x.png │ ├── tab_main_bits.imageset │ │ ├── Contents.json │ │ ├── tab_main_bits.png │ │ └── tab_main_bits@2x.png │ ├── tab_main_bits_checked.imageset │ │ ├── Contents.json │ │ ├── tab_main_bits_checked.png │ │ └── tab_main_bits_checked@2x.png │ ├── tab_main_checked.imageset │ │ ├── Contents.json │ │ ├── tab_main_checked.png │ │ └── tab_main_checked@2x.png │ ├── tab_market.imageset │ │ ├── Contents.json │ │ ├── tab_market.png │ │ └── tab_market@2x.png │ ├── tab_market_checked.imageset │ │ ├── Contents.json │ │ ├── tab_market_checked.png │ │ └── tab_market_checked@2x.png │ ├── tab_option.imageset │ │ ├── Contents.json │ │ ├── tab_option.png │ │ └── tab_option@2x.png │ ├── tab_option_checked.imageset │ │ ├── Contents.json │ │ ├── tab_option_checked.png │ │ └── tab_option_checked@2x.png │ ├── textarea_background.imageset │ │ ├── Contents.json │ │ ├── textarea_background.png │ │ └── textarea_background@2x.png │ ├── textarea_background_pressed.imageset │ │ ├── Contents.json │ │ ├── textarea_background_pressed.png │ │ └── textarea_background_pressed@2x.png │ ├── textfield_activated_holo_light.imageset │ │ ├── Contents.json │ │ ├── textfield_activated_holo_light.png │ │ └── textfield_activated_holo_light@2x.png │ ├── title_bar_back.imageset │ │ ├── Contents.json │ │ ├── title_bar_back.png │ │ └── title_bar_back@2x.png │ ├── title_bar_option_icon.imageset │ │ ├── Contents.json │ │ ├── title_bar_option_icon.png │ │ └── title_bar_option_icon@2x.png │ ├── title_bar_seperator.imageset │ │ ├── Contents.json │ │ ├── title_bar_seperator.png │ │ └── title_bar_seperator@2x.png │ ├── topnav_divider.imageset │ │ ├── Contents.json │ │ ├── topnav_divider.png │ │ └── topnav_divider@2x.png │ ├── topnav_overlay_pressed.imageset │ │ ├── Contents.json │ │ ├── topnav_overlay_pressed.png │ │ └── topnav_overlay_pressed@2x.png │ ├── topnav_tab_bar.imageset │ │ ├── Contents.json │ │ ├── topnav_tab_bar.png │ │ └── topnav_tab_bar@2x.png │ ├── transaction_confirmation_icon_0.imageset │ │ ├── Contents.json │ │ ├── transaction_confirmation_icon_0.png │ │ └── transaction_confirmation_icon_0@2x.png │ ├── transaction_confirmation_icon_1.imageset │ │ ├── Contents.json │ │ ├── transaction_confirmation_icon_1.png │ │ └── transaction_confirmation_icon_1@2x.png │ ├── transaction_confirmation_icon_100.imageset │ │ ├── Contents.json │ │ ├── transaction_confirmation_icon_100.png │ │ └── transaction_confirmation_icon_100@2x.png │ ├── transaction_confirmation_icon_2.imageset │ │ ├── Contents.json │ │ ├── transaction_confirmation_icon_2.png │ │ └── transaction_confirmation_icon_2@2x.png │ ├── transaction_confirmation_icon_3.imageset │ │ ├── Contents.json │ │ ├── transaction_confirmation_icon_3.png │ │ └── transaction_confirmation_icon_3@2x.png │ ├── transaction_confirmation_icon_4.imageset │ │ ├── Contents.json │ │ ├── transaction_confirmation_icon_4.png │ │ └── transaction_confirmation_icon_4@2x.png │ ├── transaction_confirmation_icon_5.imageset │ │ ├── Contents.json │ │ ├── transaction_confirmation_icon_5.png │ │ └── transaction_confirmation_icon_5@2x.png │ ├── transaction_confirmation_icon_6.imageset │ │ ├── Contents.json │ │ ├── transaction_confirmation_icon_6.png │ │ └── transaction_confirmation_icon_6@2x.png │ ├── transaction_icon_small.imageset │ │ ├── Contents.json │ │ ├── transaction_icon_small.png │ │ └── transaction_icon_small@2x.png │ ├── trash_can_button_icon.imageset │ │ ├── Contents.json │ │ ├── trash_can_button_icon.png │ │ └── trash_can_button_icon@2x.png │ ├── trash_can_restore.imageset │ │ ├── Contents.json │ │ ├── trash_can_restore.png │ │ └── trash_can_restore@2x.png │ ├── ui_topnav_titlebar_background.imageset │ │ ├── Contents.json │ │ ├── ui_topnav_titlebar_background.png │ │ └── ui_topnav_titlebar_background@2x.png │ ├── unsigned_transaction_button_icon.imageset │ │ ├── Contents.json │ │ ├── unsigned_transaction_button_icon.png │ │ └── unsigned_transaction_button_icon@2x.png │ ├── xrandom_address_label_normal.imageset │ │ ├── Contents.json │ │ ├── xrandom_address_label_normal.png │ │ └── xrandom_address_label_normal@2x.png │ ├── xrandom_address_label_pressed.imageset │ │ ├── Contents.json │ │ ├── xrandom_address_label_pressed.png │ │ └── xrandom_address_label_pressed@2x.png │ ├── xrandom_checkbox_checked.imageset │ │ ├── Contents.json │ │ ├── xrandom_checkbox_checked.png │ │ └── xrandom_checkbox_checked@2x.png │ ├── xrandom_checkbox_normal.imageset │ │ ├── Contents.json │ │ ├── xrandom_checkbox_normal.png │ │ └── xrandom_checkbox_normal@2x.png │ ├── xrandom_info_icon_normal.imageset │ │ ├── Contents.json │ │ ├── xrandom_info_icon_normal.png │ │ └── xrandom_info_icon_normal@2x.png │ ├── xrandom_info_icon_pressed.imageset │ │ ├── Contents.json │ │ ├── xrandom_info_icon_pressed.png │ │ └── xrandom_info_icon_pressed@2x.png │ ├── xrandom_info_logo.imageset │ │ ├── Contents.json │ │ ├── xrandom_info_logo.png │ │ └── xrandom_info_logo@2x.png │ ├── xrandom_overlay_line_down.imageset │ │ ├── Contents.json │ │ ├── xrandom_overlay_line_down.png │ │ └── xrandom_overlay_line_down@2x.png │ ├── xrandom_overlay_line_up.imageset │ │ ├── Contents.json │ │ ├── xrandom_overlay_line_up.png │ │ └── xrandom_overlay_line_up@2x.png │ ├── xrandom_overlay_logo.imageset │ │ ├── Contents.json │ │ ├── xrandom_overlay_logo.png │ │ └── xrandom_overlay_logo@2x.png │ ├── xrandom_overlay_logo_bottom.imageset │ │ ├── Contents.json │ │ ├── xrandom_overlay_logo_bottom.png │ │ └── xrandom_overlay_logo_bottom@2x.png │ ├── xrandom_overlay_logo_top.imageset │ │ ├── Contents.json │ │ ├── xrandom_overlay_logo_top.png │ │ └── xrandom_overlay_logo_top@2x.png │ ├── xrandom_overlay_tile.imageset │ │ ├── Contents.json │ │ ├── xrandom_overlay_tile.png │ │ └── xrandom_overlay_tile@2x.png │ ├── xrandom_sensor_accelerometer.imageset │ │ ├── Contents.json │ │ ├── xrandom_sensor_accelerometer.png │ │ └── xrandom_sensor_accelerometer@2x.png │ ├── xrandom_sensor_gravity.imageset │ │ ├── Contents.json │ │ ├── xrandom_sensor_gravity.png │ │ └── xrandom_sensor_gravity@2x.png │ ├── xrandom_sensor_light.imageset │ │ ├── Contents.json │ │ ├── xrandom_sensor_light.png │ │ └── xrandom_sensor_light@2x.png │ ├── xrandom_sensor_magnetic.imageset │ │ ├── Contents.json │ │ ├── xrandom_sensor_magnetic.png │ │ └── xrandom_sensor_magnetic@2x.png │ └── xrandom_sensor_mic.imageset │ │ ├── Contents.json │ │ ├── xrandom_sensor_mic.png │ │ └── xrandom_sensor_mic@2x.png ├── KeyboardControl │ ├── KeyboardController.h │ └── KeyboardController.m ├── Launch Screen.storyboard ├── Lib │ └── MKNetworkKit │ │ ├── MKNetworkKit │ │ ├── Categories │ │ │ ├── NSData+MKBase64.h │ │ │ ├── NSData+MKBase64.m │ │ │ ├── NSDate+RFC1123.h │ │ │ ├── NSDate+RFC1123.m │ │ │ ├── NSDictionary+RequestEncoding.h │ │ │ ├── NSDictionary+RequestEncoding.m │ │ │ ├── NSString+MKNetworkKitAdditions.h │ │ │ ├── NSString+MKNetworkKitAdditions.m │ │ │ ├── UIAlertView+MKNetworkKitAdditions.h │ │ │ └── UIAlertView+MKNetworkKitAdditions.m │ │ ├── MKNetworkEngine.h │ │ ├── MKNetworkEngine.m │ │ ├── MKNetworkKit.h │ │ ├── MKNetworkOperation.h │ │ └── MKNetworkOperation.m │ │ └── README.mdown ├── MinerFeeSettingCell.h ├── MinerFeeSettingCell.m ├── MinerFeeSettingCell.xib ├── Model │ ├── ApiConfig.h │ ├── AvatarSetting.h │ ├── AvatarSetting.m │ ├── CloneQrCodeSetting.h │ ├── CloneQrCodeSetting.m │ ├── ColdWalletCloneSetting.h │ ├── ColdWalletCloneSetting.m │ ├── Depth.h │ ├── Depth.m │ ├── DonationSetting.h │ ├── DonationSetting.m │ ├── GetSplitSetting.h │ ├── GetSplitSetting.m │ ├── HDMRecoverSetting.h │ ├── HDMRecoverSetting.m │ ├── ImportBip38PrivateKeySetting.h │ ├── ImportBip38PrivateKeySetting.m │ ├── ImportHDMCold.h │ ├── ImportHDMCold.m │ ├── ImportPrivateKey.h │ ├── ImportPrivateKey.m │ ├── ImportPrivateKeySetting.h │ ├── ImportPrivateKeySetting.m │ ├── KeychainSetting.h │ ├── KeychainSetting.m │ ├── Market.h │ ├── Market.m │ ├── MessageSigningSetting.h │ ├── MessageSigningSetting.m │ ├── MinerFeeModeModel.h │ ├── MinerFeeModeModel.m │ ├── MonitorHDAccountSetting.h │ ├── MonitorHDAccountSetting.m │ ├── MonitorSetting.h │ ├── MonitorSetting.m │ ├── PaymentAddressSetting.h │ ├── PaymentAddressSetting.m │ ├── PinCodeSetting.h │ ├── PinCodeSetting.m │ ├── ReloadTxSetting.h │ ├── ReloadTxSetting.m │ ├── Setting.h │ ├── Setting.m │ ├── SettingUtil.h │ ├── SettingUtil.m │ ├── SignTransactionScanSetting.h │ ├── SignTransactionScanSetting.m │ ├── Ticker.h │ ├── Ticker.m │ ├── TrendingGraphicData.h │ └── TrendingGraphicData.m ├── ObtainBccCell.h ├── ObtainBccCell.m ├── RawPrivateKey │ ├── RawDataBinaryView.h │ ├── RawDataBinaryView.m │ ├── RawDataDiceView.h │ ├── RawDataDiceView.m │ ├── RawPrivateKeyBinaryViewController.h │ ├── RawPrivateKeyBinaryViewController.m │ ├── RawPrivateKeyDiceViewController.h │ ├── RawPrivateKeyDiceViewController.m │ ├── RawPrivateKeyViewController.h │ └── RawPrivateKeyViewController.m ├── Resouces │ ├── BIP39EnglishWords.plist │ ├── BIP39ZhCNWords.plist │ ├── BIP39ZhTWWords.plist │ ├── Sound │ │ ├── coins_received.wav │ │ ├── qr_code_scanned.mp3 │ │ ├── xrandom_close_sound.mp3 │ │ └── xrandom_open_sound.mp3 │ └── hdm.bither.net.cer ├── SelectListCell.h ├── SelectListCell.m ├── SignMessageSelectAddressCell.h ├── SignMessageSelectAddressCell.m ├── UIBase │ ├── AddressAliasView.h │ ├── AddressAliasView.m │ ├── AmountButton.h │ ├── AmountButton.m │ ├── BackgroundTransitionView.h │ ├── BackgroundTransitionView.m │ ├── BalanceButton.h │ ├── BalanceButton.m │ ├── CheckScoreAndBgAnimatableView.h │ ├── CheckScoreAndBgAnimatableView.m │ ├── ColdModeCheckConnectionView.h │ ├── ColdModeCheckConnectionView.m │ ├── CropImagePicker │ │ ├── CropImageViewController.h │ │ ├── CropImageViewController.m │ │ ├── ImageCropView.h │ │ ├── ImageCropView.m │ │ ├── ImagePickerFromCameraViewController.h │ │ ├── ImagePickerFromCameraViewController.m │ │ ├── ImagePickerFromGalleryViewController.h │ │ ├── ImagePickerFromGalleryViewController.m │ │ ├── ImageScrollView.h │ │ ├── ImageScrollView.m │ │ ├── UIImage_Extensions.h │ │ └── UIImage_Extensions.m │ ├── CurrencyCalculatorLink.h │ ├── CurrencyCalculatorLink.m │ ├── Dialog │ │ ├── DialogAddressAlias.h │ │ ├── DialogAddressAlias.m │ │ ├── DialogAddressAliasInput.h │ │ ├── DialogAddressAliasInput.m │ │ ├── DialogAddressFull.h │ │ ├── DialogAddressFull.m │ │ ├── DialogAddressLongPressOptions.h │ │ ├── DialogAddressLongPressOptions.m │ │ ├── DialogAddressOptions.h │ │ ├── DialogAddressOptions.m │ │ ├── DialogAddressQrCode.h │ │ ├── DialogAddressQrCode.m │ │ ├── DialogAddressQrCopy.h │ │ ├── DialogAddressQrCopy.m │ │ ├── DialogAlert.h │ │ ├── DialogAlert.m │ │ ├── DialogBalanceDetail.h │ │ ├── DialogBalanceDetail.m │ │ ├── DialogBlackQrCode.h │ │ ├── DialogBlackQrCode.m │ │ ├── DialogCentered.h │ │ ├── DialogCentered.m │ │ ├── DialogEditPassword.h │ │ ├── DialogEditPassword.m │ │ ├── DialogEditVanityLength.h │ │ ├── DialogEditVanityLength.m │ │ ├── DialogFirstRunWarning.h │ │ ├── DialogFirstRunWarning.m │ │ ├── DialogHDAccountOptions.h │ │ ├── DialogHDAccountOptions.m │ │ ├── DialogHDMAddressOptions.h │ │ ├── DialogHDMAddressOptions.m │ │ ├── DialogHDMInfo.h │ │ ├── DialogHDMInfo.m │ │ ├── DialogHDMKeychainAddHot.h │ │ ├── DialogHDMKeychainAddHot.m │ │ ├── DialogHDMSeedWordList.h │ │ ├── DialogHDMSeedWordList.m │ │ ├── DialogHDMServerUnsignedQRCode.h │ │ ├── DialogHDMServerUnsignedQRCode.m │ │ ├── DialogHDMSingularColdSeed.h │ │ ├── DialogHDMSingularColdSeed.m │ │ ├── DialogHDMSingularColdSeedChildQrViewController.h │ │ ├── DialogHDMSingularColdSeedChildQrViewController.m │ │ ├── DialogHDMSingularColdSeedChildWordsViewController.h │ │ ├── DialogHDMSingularColdSeedChildWordsViewController.m │ │ ├── DialogHDMSingularModeInfo.h │ │ ├── DialogHDMSingularModeInfo.m │ │ ├── DialogHDMonitorFirstAddressValidation.h │ │ ├── DialogHDMonitorFirstAddressValidation.m │ │ ├── DialogHDSendTxConfirm.h │ │ ├── DialogHDSendTxConfirm.m │ │ ├── DialogImportHdAccountSeedQrCodeSelectLanguage.h │ │ ├── DialogImportHdAccountSeedQrCodeSelectLanguage.m │ │ ├── DialogImportKeyDelegate.h │ │ ├── DialogImportPrivateKey.h │ │ ├── DialogImportPrivateKey.m │ │ ├── DialogImportPrivateKeyAddressValidation.h │ │ ├── DialogImportPrivateKeyAddressValidation.m │ │ ├── DialogKeychainBackupDiff.h │ │ ├── DialogKeychainBackupDiff.m │ │ ├── DialogMonitorAddressValidation.h │ │ ├── DialogMonitorAddressValidation.m │ │ ├── DialogNetworkCustomPeerOption.h │ │ ├── DialogNetworkCustomPeerOption.m │ │ ├── DialogNetworkMonitorOption.h │ │ ├── DialogNetworkMonitorOption.m │ │ ├── DialogOldAddressesOfHDAccount.h │ │ ├── DialogOldAddressesOfHDAccount.m │ │ ├── DialogOperationWorld.h │ │ ├── DialogOperationWorld.m │ │ ├── DialogPassword.h │ │ ├── DialogPassword.m │ │ ├── DialogPrivateKeyDecryptedQrCode.h │ │ ├── DialogPrivateKeyDecryptedQrCode.m │ │ ├── DialogPrivateKeyEncryptedQrCode.h │ │ ├── DialogPrivateKeyEncryptedQrCode.m │ │ ├── DialogPrivateKeyText.h │ │ ├── DialogPrivateKeyText.m │ │ ├── DialogProgress.h │ │ ├── DialogProgress.m │ │ ├── DialogProgressChangable.h │ │ ├── DialogProgressChangable.m │ │ ├── DialogRCheckInfo.h │ │ ├── DialogRCheckInfo.m │ │ ├── DialogReplaceWorld.h │ │ ├── DialogReplaceWorld.m │ │ ├── DialogSelectChangeAddress.h │ │ ├── DialogSelectChangeAddress.m │ │ ├── DialogSendOption.h │ │ ├── DialogSendOption.m │ │ ├── DialogSendTxConfirm.h │ │ ├── DialogSendTxConfirm.m │ │ ├── DialogShowAddressOnNet.h │ │ ├── DialogShowAddressOnNet.m │ │ ├── DialogSignMessageOutput.h │ │ ├── DialogSignMessageOutput.m │ │ ├── DialogSignMessageSelectAddress.h │ │ ├── DialogSignMessageSelectAddress.m │ │ ├── DialogSwitchQRCode.h │ │ ├── DialogSwitchQRCode.m │ │ ├── DialogTotalBalance.h │ │ ├── DialogTotalBalance.m │ │ ├── DialogTxConfirmation.h │ │ ├── DialogTxConfirmation.m │ │ ├── DialogWithActions.h │ │ ├── DialogWithActions.m │ │ ├── DialogWithArrow.h │ │ ├── DialogWithArrow.m │ │ ├── DialogXrandomInfo.h │ │ └── DialogXrandomInfo.m │ ├── HDMTriangleBgView.h │ ├── HDMTriangleBgView.m │ ├── HotAddressTabButton.h │ ├── HotAddressTabButton.m │ ├── IOS7ContainerViewController.h │ ├── IOS7ContainerViewController.m │ ├── PiPageViewController.h │ ├── PiPageViewController.m │ ├── PieChartView.h │ ├── PieChartView.m │ ├── RotateImageView.h │ ├── RotateImageView.m │ ├── Scrollable.h │ ├── StatusBarNotificationWindow.h │ ├── StatusBarNotificationWindow.m │ ├── TabButton.h │ ├── TabButton.m │ ├── TabButtonPressedDelegate.h │ ├── TransactionConfidenceView.h │ ├── TransactionConfidenceView.m │ ├── TrendingGraphicView.h │ ├── TrendingGraphicView.m │ ├── UIBaseUtil.h │ ├── UIBaseUtil.m │ ├── UIColor+Util.h │ ├── UIColor+Util.m │ ├── UIViewController+ConfigureTableView.h │ ├── UIViewController+ConfigureTableView.m │ ├── UIViewController+PiShowBanner.h │ ├── UIViewController+PiShowBanner.m │ ├── UIViewController+SwipeRightToPop.h │ └── UIViewController+SwipeRightToPop.m ├── Utils │ ├── AdUtil.h │ ├── AdUtil.m │ ├── AddressAddModeUtil.h │ ├── AddressAddModeUtil.m │ ├── AddressTypeUtil.h │ ├── AddressTypeUtil.m │ ├── BitherTime.h │ ├── BitherTime.m │ ├── BlockUtil.h │ ├── BlockUtil.m │ ├── CacheUtil.h │ ├── CacheUtil.m │ ├── DataCheckUtil.h │ ├── DataCheckUtil.m │ ├── DateUtil.h │ ├── DateUtil.m │ ├── ExchangeUtil.h │ ├── ExchangeUtil.m │ ├── FileUtil.h │ ├── FileUtil.m │ ├── GroupFileUtil.h │ ├── GroupFileUtil.m │ ├── GroupUserDefaultUtil.h │ ├── GroupUserDefaultUtil.m │ ├── GroupUtil.h │ ├── GroupUtil.m │ ├── HDMHotAddUtil.h │ ├── HDMHotAddUtil.m │ ├── HDMKeychainRecoverUtil.h │ ├── HDMKeychainRecoverUtil.m │ ├── HDMResetServerPasswordUtil.h │ ├── HDMResetServerPasswordUtil.m │ ├── HDMSingular.h │ ├── HDMSingular.m │ ├── JRSwizzle.h │ ├── JRSwizzle.m │ ├── KeyUtil.h │ ├── KeyUtil.m │ ├── KeychainBackupUtil.h │ ├── KeychainBackupUtil.m │ ├── MarketUtil.h │ ├── MarketUtil.m │ ├── NSAttributedString+Size.h │ ├── NSAttributedString+Size.m │ ├── NSError+HDMHttpErrorMessage.h │ ├── NSError+HDMHttpErrorMessage.m │ ├── NSString+Size.h │ ├── NSString+Size.m │ ├── NetworkUtil.h │ ├── NetworkUtil.m │ ├── NotificationUtil.h │ ├── NotificationUtil.m │ ├── PasswordGetter.h │ ├── PasswordGetter.m │ ├── PasswordStrengthUtil.h │ ├── PasswordStrengthUtil.m │ ├── PeerUtil.h │ ├── PeerUtil.m │ ├── PlaySoundUtil.h │ ├── PlaySoundUtil.m │ ├── SendUtil.h │ ├── SendUtil.m │ ├── SplitCoinUtil.h │ ├── SplitCoinUtil.m │ ├── StringUtil.h │ ├── StringUtil.m │ ├── SystemUtil.h │ ├── SystemUtil.m │ ├── TotalBalanceHideUtil.h │ ├── TotalBalanceHideUtil.m │ ├── TransactionsUtil.h │ ├── TransactionsUtil.m │ ├── UIImage+ImageRenderToColor.h │ ├── UIImage+ImageRenderToColor.m │ ├── UIImage+ImageWithColor.h │ ├── UIImage+ImageWithColor.m │ ├── UIImageExt.h │ ├── UIImageExt.m │ ├── UIView+Extension.h │ ├── UIView+Extension.m │ ├── UnitUtil.h │ ├── UnitUtil.m │ ├── UpgradeUtil.h │ ├── UpgradeUtil.m │ ├── UserDefaultsUtil.h │ └── UserDefaultsUtil.m ├── XRandom │ ├── AudioVisualizerView.h │ ├── AudioVisualizerView.m │ ├── SensorVisualizerView.h │ ├── SensorVisualizerView.m │ ├── UEntropyAnimatedTransition.h │ ├── UEntropyAnimatedTransition.m │ ├── UEntropyCamera.h │ ├── UEntropyCamera.m │ ├── UEntropyCollector.h │ ├── UEntropyCollector.m │ ├── UEntropyMic.h │ ├── UEntropyMic.m │ ├── UEntropySensor.h │ ├── UEntropySensor.m │ ├── UEntropyViewController.h │ ├── UEntropyViewController.m │ ├── XRandom.h │ └── XRandom.m ├── bither-ios-Info.plist ├── bither-ios-Prefix.pch ├── bither-ios.entitlements ├── en.lproj │ ├── InfoPlist.strings │ ├── Localizable.strings │ └── MainStoryboard.strings ├── main.m ├── pin │ ├── PinCodeChangeViewController.h │ ├── PinCodeChangeViewController.m │ ├── PinCodeDisableViewController.h │ ├── PinCodeDisableViewController.m │ ├── PinCodeDotsView.h │ ├── PinCodeDotsView.m │ ├── PinCodeEnableViewController.h │ ├── PinCodeEnableViewController.m │ ├── PinCodeEnterView.h │ ├── PinCodeEnterView.m │ ├── PinCodeUtil.h │ ├── PinCodeUtil.m │ ├── PinCodeViewController.h │ ├── PinCodeViewController.m │ ├── TouchIdIntegration.h │ └── TouchIdIntegration.m ├── qrcode │ ├── QRCodeThemeUtil.h │ ├── QRCodeThemeUtil.m │ ├── QRCodeTransportPage.h │ ├── QRCodeTransportPage.m │ ├── QRCodeTxTransport.h │ ├── QRCodeTxTransport.m │ ├── QrCodeViewController.h │ ├── QrCodeViewController.m │ ├── ScanQrCodeTransportViewController.h │ ├── ScanQrCodeTransportViewController.m │ ├── ScanQrCodeViewController.h │ └── ScanQrCodeViewController.m ├── zh-Hans.lproj │ ├── InfoPlist.strings │ ├── Localizable.strings │ └── MainStoryboard.strings └── zh-Hant.lproj │ ├── InfoPlist.strings │ ├── Localizable.strings │ └── MainStoryboard.strings └── bither-iosTests ├── BlockUtilTest.m ├── HDMApiTest.m ├── NSConditionTest.m ├── PushTxThirdPartyTest.m ├── QRCodeTest.m ├── StringUtilTest.m ├── WalletUtilTest.m ├── bither-iosTests-Info.plist ├── bither_iosTests.m ├── en.lproj ├── InfoPlist.strings └── MainStoryboard.strings ├── zh-Hans.lproj ├── InfoPlist.strings └── MainStoryboard.strings └── zh-Hant.lproj ├── InfoPlist.strings └── MainStoryboard.strings /.gitignore: -------------------------------------------------------------------------------- 1 | */xcuserdata/* 2 | */xcshareddata/* 3 | Pods/* 4 | .idea 5 | -------------------------------------------------------------------------------- /bither-ios WatchKit App/Base.lproj/infoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | { 4 | CFBundleDisplayName = "Bither"; 5 | CFBundleName = "Bither"; 6 | } -------------------------------------------------------------------------------- /bither-ios WatchKit App/Images.xcassets/AppIcon.appiconset/bither_iwatch_1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios WatchKit App/Images.xcassets/AppIcon.appiconset/bither_iwatch_1024@1x.png -------------------------------------------------------------------------------- /bither-ios WatchKit App/Images.xcassets/AppIcon.appiconset/bither_iwatch_24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios WatchKit App/Images.xcassets/AppIcon.appiconset/bither_iwatch_24@2x.png -------------------------------------------------------------------------------- /bither-ios WatchKit App/Images.xcassets/AppIcon.appiconset/bither_iwatch_27.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios WatchKit App/Images.xcassets/AppIcon.appiconset/bither_iwatch_27.5@2x.png -------------------------------------------------------------------------------- /bither-ios WatchKit App/Images.xcassets/AppIcon.appiconset/bither_iwatch_29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios WatchKit App/Images.xcassets/AppIcon.appiconset/bither_iwatch_29@2x.png -------------------------------------------------------------------------------- /bither-ios WatchKit App/Images.xcassets/AppIcon.appiconset/bither_iwatch_29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios WatchKit App/Images.xcassets/AppIcon.appiconset/bither_iwatch_29@3x.png -------------------------------------------------------------------------------- /bither-ios WatchKit App/Images.xcassets/AppIcon.appiconset/bither_iwatch_40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios WatchKit App/Images.xcassets/AppIcon.appiconset/bither_iwatch_40@2x.png -------------------------------------------------------------------------------- /bither-ios WatchKit App/Images.xcassets/AppIcon.appiconset/bither_iwatch_44@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios WatchKit App/Images.xcassets/AppIcon.appiconset/bither_iwatch_44@2x.png -------------------------------------------------------------------------------- /bither-ios WatchKit App/Images.xcassets/AppIcon.appiconset/bither_iwatch_86@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios WatchKit App/Images.xcassets/AppIcon.appiconset/bither_iwatch_86@2x.png -------------------------------------------------------------------------------- /bither-ios WatchKit App/Images.xcassets/AppIcon.appiconset/bither_iwatch_98@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios WatchKit App/Images.xcassets/AppIcon.appiconset/bither_iwatch_98@2x.png -------------------------------------------------------------------------------- /bither-ios WatchKit App/Images.xcassets/symbol_bits_green_slim.imageset/symbol_bits_green_slim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios WatchKit App/Images.xcassets/symbol_bits_green_slim.imageset/symbol_bits_green_slim.png -------------------------------------------------------------------------------- /bither-ios WatchKit App/Images.xcassets/symbol_bits_green_slim.imageset/symbol_bits_green_slim@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios WatchKit App/Images.xcassets/symbol_bits_green_slim.imageset/symbol_bits_green_slim@2x.png -------------------------------------------------------------------------------- /bither-ios WatchKit App/Images.xcassets/symbol_bits_red_slim.imageset/symbol_bits_red_slim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios WatchKit App/Images.xcassets/symbol_bits_red_slim.imageset/symbol_bits_red_slim.png -------------------------------------------------------------------------------- /bither-ios WatchKit App/Images.xcassets/symbol_bits_red_slim.imageset/symbol_bits_red_slim@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios WatchKit App/Images.xcassets/symbol_bits_red_slim.imageset/symbol_bits_red_slim@2x.png -------------------------------------------------------------------------------- /bither-ios WatchKit App/Images.xcassets/symbol_bits_slim.imageset/symbol_bits_slim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios WatchKit App/Images.xcassets/symbol_bits_slim.imageset/symbol_bits_slim.png -------------------------------------------------------------------------------- /bither-ios WatchKit App/Images.xcassets/symbol_bits_slim.imageset/symbol_bits_slim@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios WatchKit App/Images.xcassets/symbol_bits_slim.imageset/symbol_bits_slim@2x.png -------------------------------------------------------------------------------- /bither-ios WatchKit App/Images.xcassets/symbol_btc_green_slim.imageset/symbol_btc_green_slim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios WatchKit App/Images.xcassets/symbol_btc_green_slim.imageset/symbol_btc_green_slim.png -------------------------------------------------------------------------------- /bither-ios WatchKit App/Images.xcassets/symbol_btc_green_slim.imageset/symbol_btc_green_slim@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios WatchKit App/Images.xcassets/symbol_btc_green_slim.imageset/symbol_btc_green_slim@2x.png -------------------------------------------------------------------------------- /bither-ios WatchKit App/Images.xcassets/symbol_btc_red_slim.imageset/symbol_btc_red_slim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios WatchKit App/Images.xcassets/symbol_btc_red_slim.imageset/symbol_btc_red_slim.png -------------------------------------------------------------------------------- /bither-ios WatchKit App/Images.xcassets/symbol_btc_red_slim.imageset/symbol_btc_red_slim@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios WatchKit App/Images.xcassets/symbol_btc_red_slim.imageset/symbol_btc_red_slim@2x.png -------------------------------------------------------------------------------- /bither-ios WatchKit App/Images.xcassets/symbol_btc_slim.imageset/symbol_btc_slim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios WatchKit App/Images.xcassets/symbol_btc_slim.imageset/symbol_btc_slim.png -------------------------------------------------------------------------------- /bither-ios WatchKit App/Images.xcassets/symbol_btc_slim.imageset/symbol_btc_slim@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios WatchKit App/Images.xcassets/symbol_btc_slim.imageset/symbol_btc_slim@2x.png -------------------------------------------------------------------------------- /bither-ios WatchKit App/zh-Hans.lproj/infoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | { 4 | CFBundleDisplayName = "比太"; 5 | CFBundleName = "比太"; 6 | } -------------------------------------------------------------------------------- /bither-ios WatchKit App/zh-Hant.lproj/infoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | { 4 | CFBundleDisplayName = "比太"; 5 | CFBundleName = "比太"; 6 | } -------------------------------------------------------------------------------- /bither-ios WatchKit Extension/Base.lproj/infoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | { 4 | CFBundleDisplayName = "Bither"; 5 | CFBundleName = "Bither"; 6 | } -------------------------------------------------------------------------------- /bither-ios WatchKit Extension/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /bither-ios WatchKit Extension/Images.xcassets/README__ignoredByTemplate__: -------------------------------------------------------------------------------- 1 | Did you know that git does not support storing empty directories? 2 | -------------------------------------------------------------------------------- /bither-ios WatchKit Extension/PushNotificationPayload.apns: -------------------------------------------------------------------------------- 1 | { 2 | "aps": { 3 | "alert": { 4 | "body": "Test message", 5 | "title": "Optional title" 6 | }, 7 | "category": "Transaction" 8 | }, 9 | 10 | "address": "1Nc9oEokW91HUohUpHt4Y7DisQXLuEBi77", 11 | "diff": 1000 12 | } 13 | -------------------------------------------------------------------------------- /bither-ios WatchKit Extension/bither-ios WatchKit Extension.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.application-groups 6 | 7 | group.bither.net 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /bither-ios WatchKit Extension/zh-Hans.lproj/infoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | { 4 | CFBundleDisplayName = "比太"; 5 | CFBundleName = "比太"; 6 | } -------------------------------------------------------------------------------- /bither-ios WatchKit Extension/zh-Hant.lproj/infoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | { 4 | CFBundleDisplayName = "比太"; 5 | CFBundleName = "比太"; 6 | } -------------------------------------------------------------------------------- /bither-ios.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /bither-ios.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /bither-ios/Ad/AdView.h: -------------------------------------------------------------------------------- 1 | // 2 | // AdView.h 3 | // bither-ios 4 | // 5 | // Created by 韩珍 on 2016/10/25. 6 | // Copyright © 2016年 Bither. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AdView : UIView 12 | 13 | @property (nonatomic, copy) dispatch_block_t done; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /bither-ios/Api/PushTxThirdParty.h: -------------------------------------------------------------------------------- 1 | // 2 | // PushTxThirdParty.h 3 | // bither-ios 4 | // 5 | // Created by 宋辰文 on 16/5/10. 6 | // Copyright © 2016年 Bither. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "Bitheri/BTTx.h" 11 | 12 | @interface PushTxThirdParty : NSObject 13 | 14 | +(instancetype) instance; 15 | 16 | -(void)pushTx:(BTTx*) tx; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /bither-ios/Cells/ColdAddressListHDCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // ColdAddressListHDCell.h 3 | // bither-ios 4 | // 5 | // Created by 宋辰文 on 15/7/16. 6 | // Copyright (c) 2015年 Bither. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @interface ColdAddressListHDCell : UITableViewCell 13 | @property BTHDAccountCold *account; 14 | @end 15 | -------------------------------------------------------------------------------- /bither-ios/Cells/ColdAddressListHDMCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // ColdAddressListHDMCell.h 3 | // bither-ios 4 | // 5 | // Created by 宋辰文 on 15/1/30. 6 | // Copyright (c) 2015年 宋辰文. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "BTHDMKeychain.h" 11 | 12 | @interface ColdAddressListHDMCell : UITableViewCell 13 | @property BTHDMKeychain *keychain; 14 | @end 15 | -------------------------------------------------------------------------------- /bither-ios/Cells/WorldListCell.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "DialogOperationWorld.h" 3 | 4 | @interface WorldListCell : UICollectionViewCell 5 | 6 | - (void)setWorld:(NSString *)world index:(NSInteger)index; 7 | 8 | @property(weak) NSObject *delegate; 9 | @end 10 | -------------------------------------------------------------------------------- /bither-ios/Controllers/Cold/ColdAddressAddHDAccountViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ColdAddressAddHDAccountViewController.h 3 | // bither-ios 4 | // 5 | // Created by 宋辰文 on 15/7/15. 6 | // Copyright (c) 2015年 Bither. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ColdAddressAddHDAccountViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /bither-ios/Controllers/Cold/ColdAddressAddHDAccountViewViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ColdAddressAddHDAccountViewViewController.h 3 | // bither-ios 4 | // 5 | // Created by 宋辰文 on 15/7/15. 6 | // Copyright (c) 2015年 Bither. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ColdAddressAddHDAccountViewViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /bither-ios/Controllers/Cold/ColdAddressAddHDMViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ColdAddressAddHDMViewController.h 3 | // bither-ios 4 | // 5 | // Created by 宋辰文 on 15/1/29. 6 | // Copyright (c) 2015年 宋辰文. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ColdAddressAddHDMViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /bither-ios/Controllers/Cold/ColdAddressAddOtherViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ColdAddressAddOtherViewController.h 3 | // bither-ios 4 | // 5 | // Created by 宋辰文 on 15/7/15. 6 | // Copyright (c) 2015年 Bither. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ColdAddressAddOtherViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /bither-ios/Controllers/Cold/ImportHDMColdSeedController.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface ImportHDMColdSeedController : UIViewController 5 | 6 | @end -------------------------------------------------------------------------------- /bither-ios/Controllers/Hot/HotAddressAddOtherViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // HotAddressAddOtherViewController.h 3 | // bither-ios 4 | // 5 | // Created by 宋辰文 on 15/4/24. 6 | // Copyright (c) 2015年 Bither. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface HotAddressAddOtherViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /bither-ios/Controllers/Hot/NetworkCustomPeerViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // NetworkCustomPeerViewController.h 3 | // bither-ios 4 | // 5 | // Created by 韩珍珍 on 2022/6/2. 6 | // Copyright © 2022 Bither. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | NS_ASSUME_NONNULL_BEGIN 12 | 13 | @interface NetworkCustomPeerViewController : UIViewController 14 | 15 | @end 16 | 17 | NS_ASSUME_NONNULL_END 18 | -------------------------------------------------------------------------------- /bither-ios/Controllers/ObtainBccViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ObtainBccViewController.h 3 | // bither-ios 4 | // 5 | // Created by 韩珍 on 2017/7/26. 6 | // Copyright © 2017年 Bither. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "SplitCoinUtil.h" 11 | 12 | @interface ObtainBccViewController : UIViewController 13 | 14 | @property(nonatomic) SplitCoin splitCoin; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /bither-ios/Controllers/TrashCanViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // TrashCanViewController.h 3 | // bither-ios 4 | // 5 | // Created by noname on 14-11-19. 6 | // Copyright (c) 2014年 noname. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface TrashCanViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /bither-ios/Controllers/VerifyMessageSignatureViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // VerifyMessageSignatureViewController.h 3 | // bither-ios 4 | // 5 | // Created by 宋辰文 on 14/12/24. 6 | // Copyright (c) 2014年 宋辰文. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface VerifyMessageSignatureViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/AppIcon.appiconset/bither_1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/AppIcon.appiconset/bither_1024@1x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/AppIcon.appiconset/bither_20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/AppIcon.appiconset/bither_20@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/AppIcon.appiconset/bither_20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/AppIcon.appiconset/bither_20@3x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/AppIcon.appiconset/bither_29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/AppIcon.appiconset/bither_29@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/AppIcon.appiconset/bither_29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/AppIcon.appiconset/bither_29@3x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/AppIcon.appiconset/bither_40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/AppIcon.appiconset/bither_40@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/AppIcon.appiconset/bither_40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/AppIcon.appiconset/bither_40@3x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/AppIcon.appiconset/bither_60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/AppIcon.appiconset/bither_60@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/AppIcon.appiconset/bither_60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/AppIcon.appiconset/bither_60@3x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/AppIcon.appiconset/bither_ipad_20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/AppIcon.appiconset/bither_ipad_20@1x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/AppIcon.appiconset/bither_ipad_20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/AppIcon.appiconset/bither_ipad_20@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/AppIcon.appiconset/bither_ipad_29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/AppIcon.appiconset/bither_ipad_29@1x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/AppIcon.appiconset/bither_ipad_29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/AppIcon.appiconset/bither_ipad_29@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/AppIcon.appiconset/bither_ipad_40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/AppIcon.appiconset/bither_ipad_40@1x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/AppIcon.appiconset/bither_ipad_40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/AppIcon.appiconset/bither_ipad_40@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/AppIcon.appiconset/bither_ipad_76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/AppIcon.appiconset/bither_ipad_76@1x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/AppIcon.appiconset/bither_ipad_76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/AppIcon.appiconset/bither_ipad_76@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/LaunchImage.launchimage/LaunchImage-568@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/LaunchImage.launchimage/LaunchImage-568@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/LaunchImage.launchimage/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/LaunchImage.launchimage/LaunchImage@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/action_bar_black_bg_tile_horizontal.imageset/action_bar_black_bg_tile_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/action_bar_black_bg_tile_horizontal.imageset/action_bar_black_bg_tile_horizontal.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/action_bar_black_bg_tile_horizontal.imageset/action_bar_black_bg_tile_horizontal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/action_bar_black_bg_tile_horizontal.imageset/action_bar_black_bg_tile_horizontal@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/action_bar_dark_right_green_button_enabled.imageset/action_bar_dark_right_green_button_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/action_bar_dark_right_green_button_enabled.imageset/action_bar_dark_right_green_button_enabled.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/action_bar_dark_right_green_button_enabled.imageset/action_bar_dark_right_green_button_enabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/action_bar_dark_right_green_button_enabled.imageset/action_bar_dark_right_green_button_enabled@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/action_bar_dark_right_green_button_enabled_pressed.imageset/action_bar_dark_right_green_button_enabled_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/action_bar_dark_right_green_button_enabled_pressed.imageset/action_bar_dark_right_green_button_enabled_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/action_bar_dark_right_green_button_enabled_pressed.imageset/action_bar_dark_right_green_button_enabled_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/action_bar_dark_right_green_button_enabled_pressed.imageset/action_bar_dark_right_green_button_enabled_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/action_bar_glyph_cancel.imageset/action_bar_glyph_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/action_bar_glyph_cancel.imageset/action_bar_glyph_cancel.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/action_bar_glyph_cancel.imageset/action_bar_glyph_cancel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/action_bar_glyph_cancel.imageset/action_bar_glyph_cancel@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/action_bar_glyph_done.imageset/action_bar_glyph_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/action_bar_glyph_done.imageset/action_bar_glyph_done.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/action_bar_glyph_done.imageset/action_bar_glyph_done@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/action_bar_glyph_done.imageset/action_bar_glyph_done@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/add_address_button_icon.imageset/add_finance_button_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/add_address_button_icon.imageset/add_finance_button_icon.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/add_address_button_icon.imageset/add_finance_button_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/add_address_button_icon.imageset/add_finance_button_icon@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/add_address_button_icon_pressed.imageset/add_finance_button_icon_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/add_address_button_icon_pressed.imageset/add_finance_button_icon_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/add_address_button_icon_pressed.imageset/add_finance_button_icon_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/add_address_button_icon_pressed.imageset/add_finance_button_icon_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/add_finance_top_bar_cancel_button_pressed.imageset/add_finance_top_bar_cancel_button_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/add_finance_top_bar_cancel_button_pressed.imageset/add_finance_top_bar_cancel_button_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/add_finance_top_bar_confirm_button_normal.imageset/add_finance_top_bar_confirm_button_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/add_finance_top_bar_confirm_button_normal.imageset/add_finance_top_bar_confirm_button_normal.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/add_finance_top_bar_confirm_button_normal.imageset/add_finance_top_bar_confirm_button_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/add_finance_top_bar_confirm_button_normal.imageset/add_finance_top_bar_confirm_button_normal@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/add_finance_top_bar_confirm_button_pressed.imageset/add_finance_top_bar_confirm_button_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/add_finance_top_bar_confirm_button_pressed.imageset/add_finance_top_bar_confirm_button_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/add_finance_top_bar_confirm_button_pressed.imageset/add_finance_top_bar_confirm_button_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/add_finance_top_bar_confirm_button_pressed.imageset/add_finance_top_bar_confirm_button_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_add_mode_bither_create.imageset/address_add_mode_bither_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_add_mode_bither_create.imageset/address_add_mode_bither_create.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_add_mode_bither_create.imageset/address_add_mode_bither_create@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_add_mode_bither_create.imageset/address_add_mode_bither_create@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_add_mode_bither_create.imageset/address_add_mode_bither_create@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_add_mode_bither_create.imageset/address_add_mode_bither_create@3x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_add_mode_bither_create_press.imageset/address_add_mode_bither_create_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_add_mode_bither_create_press.imageset/address_add_mode_bither_create_press.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_add_mode_bither_create_press.imageset/address_add_mode_bither_create_press@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_add_mode_bither_create_press.imageset/address_add_mode_bither_create_press@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_add_mode_bither_create_press.imageset/address_add_mode_bither_create_press@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_add_mode_bither_create_press.imageset/address_add_mode_bither_create_press@3x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_add_mode_clone.imageset/address_add_mode_clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_add_mode_clone.imageset/address_add_mode_clone.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_add_mode_clone.imageset/address_add_mode_clone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_add_mode_clone.imageset/address_add_mode_clone@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_add_mode_clone.imageset/address_add_mode_clone@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_add_mode_clone.imageset/address_add_mode_clone@3x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_add_mode_clone_press.imageset/address_add_mode_clone_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_add_mode_clone_press.imageset/address_add_mode_clone_press.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_add_mode_clone_press.imageset/address_add_mode_clone_press@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_add_mode_clone_press.imageset/address_add_mode_clone_press@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_add_mode_clone_press.imageset/address_add_mode_clone_press@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_add_mode_clone_press.imageset/address_add_mode_clone_press@3x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_add_mode_import.imageset/address_add_mode_import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_add_mode_import.imageset/address_add_mode_import.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_add_mode_import.imageset/address_add_mode_import@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_add_mode_import.imageset/address_add_mode_import@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_add_mode_import.imageset/address_add_mode_import@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_add_mode_import.imageset/address_add_mode_import@3x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_add_mode_import_press.imageset/address_add_mode_import_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_add_mode_import_press.imageset/address_add_mode_import_press.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_add_mode_import_press.imageset/address_add_mode_import_press@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_add_mode_import_press.imageset/address_add_mode_import_press@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_add_mode_import_press.imageset/address_add_mode_import_press@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_add_mode_import_press.imageset/address_add_mode_import_press@3x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_add_mode_other.imageset/address_add_mode_other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_add_mode_other.imageset/address_add_mode_other.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_add_mode_other.imageset/address_add_mode_other@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_add_mode_other.imageset/address_add_mode_other@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_add_mode_other.imageset/address_add_mode_other@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_add_mode_other.imageset/address_add_mode_other@3x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_add_mode_other_press.imageset/address_add_mode_other_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_add_mode_other_press.imageset/address_add_mode_other_press.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_add_mode_other_press.imageset/address_add_mode_other_press@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_add_mode_other_press.imageset/address_add_mode_other_press@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_add_mode_other_press.imageset/address_add_mode_other_press@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_add_mode_other_press.imageset/address_add_mode_other_press@3x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_alias_default.imageset/address_alias_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_alias_default.imageset/address_alias_default.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_alias_default.imageset/address_alias_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_alias_default.imageset/address_alias_default@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_alias_pressed.imageset/address_alias_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_alias_pressed.imageset/address_alias_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_alias_pressed.imageset/address_alias_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_alias_pressed.imageset/address_alias_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_balance_full_show_button.imageset/address_balance_full_show_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_balance_full_show_button.imageset/address_balance_full_show_button.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_balance_full_show_button.imageset/address_balance_full_show_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_balance_full_show_button.imageset/address_balance_full_show_button@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_full_show_button.imageset/address_full_show_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_full_show_button.imageset/address_full_show_button.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_full_show_button.imageset/address_full_show_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_full_show_button.imageset/address_full_show_button@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_type_hd.imageset/address_type_hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_type_hd.imageset/address_type_hd.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_type_hd.imageset/address_type_hd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_type_hd.imageset/address_type_hd@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_type_hd_pressed.imageset/address_type_hd_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_type_hd_pressed.imageset/address_type_hd_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_type_hd_pressed.imageset/address_type_hd_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_type_hd_pressed.imageset/address_type_hd_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_type_hdm.imageset/address_type_hdm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_type_hdm.imageset/address_type_hdm.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_type_hdm.imageset/address_type_hdm@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_type_hdm.imageset/address_type_hdm@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_type_hdm_pressed.imageset/address_type_hdm_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_type_hdm_pressed.imageset/address_type_hdm_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_type_hdm_pressed.imageset/address_type_hdm_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_type_hdm_pressed.imageset/address_type_hdm_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_type_private.imageset/address_type_private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_type_private.imageset/address_type_private.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_type_private.imageset/address_type_private@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_type_private.imageset/address_type_private@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_type_watchonly.imageset/address_type_watchonly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_type_watchonly.imageset/address_type_watchonly.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/address_type_watchonly.imageset/address_type_watchonly@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/address_type_watchonly.imageset/address_type_watchonly@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/advance_button_icon.imageset/advance_button_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/advance_button_icon.imageset/advance_button_icon.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/advance_button_icon.imageset/advance_button_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/advance_button_icon.imageset/advance_button_icon@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/app_mode_cold_icon_normal.imageset/app_mode_cold_icon_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/app_mode_cold_icon_normal.imageset/app_mode_cold_icon_normal.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/app_mode_cold_icon_normal.imageset/app_mode_cold_icon_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/app_mode_cold_icon_normal.imageset/app_mode_cold_icon_normal@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/app_mode_cold_icon_pressed.imageset/app_mode_cold_icon_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/app_mode_cold_icon_pressed.imageset/app_mode_cold_icon_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/app_mode_cold_icon_pressed.imageset/app_mode_cold_icon_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/app_mode_cold_icon_pressed.imageset/app_mode_cold_icon_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/app_mode_warm_icon_normal.imageset/app_mode_warm_icon_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/app_mode_warm_icon_normal.imageset/app_mode_warm_icon_normal.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/app_mode_warm_icon_normal.imageset/app_mode_warm_icon_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/app_mode_warm_icon_normal.imageset/app_mode_warm_icon_normal@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/app_mode_warm_icon_pressed.imageset/app_mode_warm_icon_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/app_mode_warm_icon_pressed.imageset/app_mode_warm_icon_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/app_mode_warm_icon_pressed.imageset/app_mode_warm_icon_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/app_mode_warm_icon_pressed.imageset/app_mode_warm_icon_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/arrow_down.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "idiom": "universal", 5 | "scale": "1x", 6 | "filename": "arrow_down.png" 7 | }, 8 | { 9 | "idiom": "universal", 10 | "scale": "2x", 11 | "filename": "arrow_down@2x.png" 12 | }, 13 | { 14 | "idiom": "universal", 15 | "scale": "3x" 16 | } 17 | ], 18 | "info": { 19 | "version": 1, 20 | "author": "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/arrow_down.imageset/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/arrow_down.imageset/arrow_down.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/arrow_down.imageset/arrow_down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/arrow_down.imageset/arrow_down@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/avatar_button_icon.imageset/avatar_button_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/avatar_button_icon.imageset/avatar_button_icon.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/avatar_button_icon.imageset/avatar_button_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/avatar_button_icon.imageset/avatar_button_icon@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/avatar_button_icon_border.imageset/avatar_button_icon_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/avatar_button_icon_border.imageset/avatar_button_icon_border.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/avatar_button_icon_border.imageset/avatar_button_icon_border@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/avatar_button_icon_border.imageset/avatar_button_icon_border@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/avatar_for_fancy_qr_code_overlay.imageset/avatar_for_fancy_qr_code_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/avatar_for_fancy_qr_code_overlay.imageset/avatar_for_fancy_qr_code_overlay.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/avatar_for_fancy_qr_code_overlay.imageset/avatar_for_fancy_qr_code_overlay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/avatar_for_fancy_qr_code_overlay.imageset/avatar_for_fancy_qr_code_overlay@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/avatar_for_fancy_qr_code_shape.imageset/avatar_for_fancy_qr_code_shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/avatar_for_fancy_qr_code_shape.imageset/avatar_for_fancy_qr_code_shape.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/avatar_for_fancy_qr_code_shape.imageset/avatar_for_fancy_qr_code_shape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/avatar_for_fancy_qr_code_shape.imageset/avatar_for_fancy_qr_code_shape@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/border_bottom_right.imageset/border_bottom_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/border_bottom_right.imageset/border_bottom_right.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/border_bottom_right.imageset/border_bottom_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/border_bottom_right.imageset/border_bottom_right@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/border_top_left.imageset/border_top_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/border_top_left.imageset/border_top_left.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/border_top_left.imageset/border_top_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/border_top_left.imageset/border_top_left@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/btn_check_off_holo_light.imageset/btn_check_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/btn_check_off_holo_light.imageset/btn_check_off_holo_light.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/btn_check_off_holo_light.imageset/btn_check_off_holo_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/btn_check_off_holo_light.imageset/btn_check_off_holo_light@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/btn_check_on_holo_light.imageset/btn_check_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/btn_check_on_holo_light.imageset/btn_check_on_holo_light.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/btn_check_on_holo_light.imageset/btn_check_on_holo_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/btn_check_on_holo_light.imageset/btn_check_on_holo_light@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/btn_keyboard_key_gray_normal.imageset/btn_keyboard_key_gray_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/btn_keyboard_key_gray_normal.imageset/btn_keyboard_key_gray_normal.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/btn_keyboard_key_gray_normal.imageset/btn_keyboard_key_gray_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/btn_keyboard_key_gray_normal.imageset/btn_keyboard_key_gray_normal@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/btn_keyboard_key_gray_pressed.imageset/btn_keyboard_key_gray_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/btn_keyboard_key_gray_pressed.imageset/btn_keyboard_key_gray_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/btn_keyboard_key_gray_pressed.imageset/btn_keyboard_key_gray_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/btn_keyboard_key_gray_pressed.imageset/btn_keyboard_key_gray_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/btn_keyboard_key_white_normal.imageset/btn_keyboard_key_white_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/btn_keyboard_key_white_normal.imageset/btn_keyboard_key_white_normal.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/btn_keyboard_key_white_normal.imageset/btn_keyboard_key_white_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/btn_keyboard_key_white_normal.imageset/btn_keyboard_key_white_normal@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/btn_keyboard_key_white_pressed.imageset/btn_keyboard_key_white_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/btn_keyboard_key_white_pressed.imageset/btn_keyboard_key_white_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/btn_keyboard_key_white_pressed.imageset/btn_keyboard_key_white_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/btn_keyboard_key_white_pressed.imageset/btn_keyboard_key_white_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/button_check_bg_normal.imageset/button_check_bg_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/button_check_bg_normal.imageset/button_check_bg_normal.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/button_check_bg_normal.imageset/button_check_bg_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/button_check_bg_normal.imageset/button_check_bg_normal@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/button_check_bg_pressed.imageset/button_check_bg_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/button_check_bg_pressed.imageset/button_check_bg_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/button_check_bg_pressed.imageset/button_check_bg_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/button_check_bg_pressed.imageset/button_check_bg_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/button_lightblue.imageset/button_lightblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/button_lightblue.imageset/button_lightblue.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/button_lightblue.imageset/button_lightblue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/button_lightblue.imageset/button_lightblue@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/button_lightblue_pressed.imageset/button_lightblue_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/button_lightblue_pressed.imageset/button_lightblue_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/button_lightblue_pressed.imageset/button_lightblue_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/button_lightblue_pressed.imageset/button_lightblue_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/button_small_blue_normal.imageset/button_small_blue_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/button_small_blue_normal.imageset/button_small_blue_normal.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/button_small_blue_normal.imageset/button_small_blue_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/button_small_blue_normal.imageset/button_small_blue_normal@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/button_small_blue_pressed.imageset/button_small_blue_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/button_small_blue_pressed.imageset/button_small_blue_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/button_small_blue_pressed.imageset/button_small_blue_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/button_small_blue_pressed.imageset/button_small_blue_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/button_small_green_normal.imageset/button_small_green_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/button_small_green_normal.imageset/button_small_green_normal.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/button_small_green_normal.imageset/button_small_green_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/button_small_green_normal.imageset/button_small_green_normal@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/button_small_green_pressed.imageset/button_small_green_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/button_small_green_pressed.imageset/button_small_green_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/button_small_green_pressed.imageset/button_small_green_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/button_small_green_pressed.imageset/button_small_green_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/button_small_red_normal.imageset/button_small_red_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/button_small_red_normal.imageset/button_small_red_normal.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/button_small_red_normal.imageset/button_small_red_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/button_small_red_normal.imageset/button_small_red_normal@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/button_small_red_pressed.imageset/button_small_red_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/button_small_red_pressed.imageset/button_small_red_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/button_small_red_pressed.imageset/button_small_red_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/button_small_red_pressed.imageset/button_small_red_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/card_foreground_pressed.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "idiom": "universal", 5 | "scale": "1x", 6 | "filename": "card_foreground_pressed.png" 7 | }, 8 | { 9 | "idiom": "universal", 10 | "scale": "2x" 11 | }, 12 | { 13 | "idiom": "universal", 14 | "scale": "3x" 15 | } 16 | ], 17 | "info": { 18 | "version": 1, 19 | "author": "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/card_foreground_pressed.imageset/card_foreground_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/card_foreground_pressed.imageset/card_foreground_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/center_dialog_background.imageset/center_dialog_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/center_dialog_background.imageset/center_dialog_background.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/center_dialog_background.imageset/center_dialog_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/center_dialog_background.imageset/center_dialog_background@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/check_button_icon.imageset/check_button_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/check_button_icon.imageset/check_button_icon.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/check_button_icon.imageset/check_button_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/check_button_icon.imageset/check_button_icon@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/check_failed.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "idiom": "universal", 5 | "scale": "1x", 6 | "filename": "check_failed.png" 7 | }, 8 | { 9 | "idiom": "universal", 10 | "scale": "2x", 11 | "filename": "check_failed@2x.png" 12 | }, 13 | { 14 | "idiom": "universal", 15 | "scale": "3x" 16 | } 17 | ], 18 | "info": { 19 | "version": 1, 20 | "author": "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/check_failed.imageset/check_failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/check_failed.imageset/check_failed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/check_failed.imageset/check_failed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/check_failed.imageset/check_failed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/checking_progress_light.imageset/checking_progress_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/checking_progress_light.imageset/checking_progress_light.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/checking_progress_light.imageset/checking_progress_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/checking_progress_light.imageset/checking_progress_light@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/checkmark.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "idiom": "universal", 5 | "scale": "1x", 6 | "filename": "checkmark.png" 7 | }, 8 | { 9 | "idiom": "universal", 10 | "scale": "2x", 11 | "filename": "checkmark@2x.png" 12 | }, 13 | { 14 | "idiom": "universal", 15 | "scale": "3x" 16 | } 17 | ], 18 | "info": { 19 | "version": 1, 20 | "author": "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/checkmark.imageset/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/checkmark.imageset/checkmark.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/checkmark.imageset/checkmark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/checkmark.imageset/checkmark@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/detail_send_button_normal.imageset/detail_send_button_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/detail_send_button_normal.imageset/detail_send_button_normal.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/detail_send_button_normal.imageset/detail_send_button_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/detail_send_button_normal.imageset/detail_send_button_normal@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/detail_send_button_pressed.imageset/detail_send_button_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/detail_send_button_pressed.imageset/detail_send_button_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/detail_send_button_pressed.imageset/detail_send_button_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/detail_send_button_pressed.imageset/detail_send_button_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dialog_arrow_bottom.imageset/dialog_arrow_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/dialog_arrow_bottom.imageset/dialog_arrow_bottom.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dialog_arrow_bottom.imageset/dialog_arrow_bottom@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/dialog_arrow_bottom.imageset/dialog_arrow_bottom@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dialog_arrow_top.imageset/dialog_arrow_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/dialog_arrow_top.imageset/dialog_arrow_top.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dialog_arrow_top.imageset/dialog_arrow_top@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/dialog_arrow_top.imageset/dialog_arrow_top@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dialog_btn_bg_normal.imageset/dialog_btn_bg_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/dialog_btn_bg_normal.imageset/dialog_btn_bg_normal.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dialog_btn_bg_normal.imageset/dialog_btn_bg_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/dialog_btn_bg_normal.imageset/dialog_btn_bg_normal@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dialog_sign_message_bg.imageset/dialog_sign_message_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/dialog_sign_message_bg.imageset/dialog_sign_message_bg.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dialog_sign_message_bg.imageset/dialog_sign_message_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/dialog_sign_message_bg.imageset/dialog_sign_message_bg@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dialog_sign_message_bg.imageset/dialog_sign_message_bg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/dialog_sign_message_bg.imageset/dialog_sign_message_bg@3x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dialog_total_balance_dot.imageset/dialog_total_balance_dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/dialog_total_balance_dot.imageset/dialog_total_balance_dot.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dialog_total_balance_dot.imageset/dialog_total_balance_dot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/dialog_total_balance_dot.imageset/dialog_total_balance_dot@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dialog_total_btc_pie_chart_logo.imageset/dialog_total_btc_pie_chart_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/dialog_total_btc_pie_chart_logo.imageset/dialog_total_btc_pie_chart_logo.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dialog_total_btc_pie_chart_logo.imageset/dialog_total_btc_pie_chart_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/dialog_total_btc_pie_chart_logo.imageset/dialog_total_btc_pie_chart_logo@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dice_large_1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "idiom": "universal", 5 | "scale": "1x", 6 | "filename": "dice_large_1.png" 7 | }, 8 | { 9 | "idiom": "universal", 10 | "scale": "2x", 11 | "filename": "dice_large_1@2x.png" 12 | }, 13 | { 14 | "idiom": "universal", 15 | "scale": "3x" 16 | } 17 | ], 18 | "info": { 19 | "version": 1, 20 | "author": "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dice_large_1.imageset/dice_large_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/dice_large_1.imageset/dice_large_1.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dice_large_1.imageset/dice_large_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/dice_large_1.imageset/dice_large_1@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dice_large_2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "idiom": "universal", 5 | "scale": "1x", 6 | "filename": "dice_large_2.png" 7 | }, 8 | { 9 | "idiom": "universal", 10 | "scale": "2x", 11 | "filename": "dice_large_2@2x.png" 12 | }, 13 | { 14 | "idiom": "universal", 15 | "scale": "3x" 16 | } 17 | ], 18 | "info": { 19 | "version": 1, 20 | "author": "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dice_large_2.imageset/dice_large_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/dice_large_2.imageset/dice_large_2.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dice_large_2.imageset/dice_large_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/dice_large_2.imageset/dice_large_2@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dice_large_3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "idiom": "universal", 5 | "scale": "1x", 6 | "filename": "dice_large_3.png" 7 | }, 8 | { 9 | "idiom": "universal", 10 | "scale": "2x", 11 | "filename": "dice_large_3@2x.png" 12 | }, 13 | { 14 | "idiom": "universal", 15 | "scale": "3x" 16 | } 17 | ], 18 | "info": { 19 | "version": 1, 20 | "author": "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dice_large_3.imageset/dice_large_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/dice_large_3.imageset/dice_large_3.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dice_large_3.imageset/dice_large_3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/dice_large_3.imageset/dice_large_3@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dice_large_4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "idiom": "universal", 5 | "scale": "1x", 6 | "filename": "dice_large_4.png" 7 | }, 8 | { 9 | "idiom": "universal", 10 | "scale": "2x", 11 | "filename": "dice_large_4@2x.png" 12 | }, 13 | { 14 | "idiom": "universal", 15 | "scale": "3x" 16 | } 17 | ], 18 | "info": { 19 | "version": 1, 20 | "author": "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dice_large_4.imageset/dice_large_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/dice_large_4.imageset/dice_large_4.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dice_large_4.imageset/dice_large_4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/dice_large_4.imageset/dice_large_4@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dice_large_5.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "idiom": "universal", 5 | "scale": "1x", 6 | "filename": "dice_large_5.png" 7 | }, 8 | { 9 | "idiom": "universal", 10 | "scale": "2x", 11 | "filename": "dice_large_5@2x.png" 12 | }, 13 | { 14 | "idiom": "universal", 15 | "scale": "3x" 16 | } 17 | ], 18 | "info": { 19 | "version": 1, 20 | "author": "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dice_large_5.imageset/dice_large_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/dice_large_5.imageset/dice_large_5.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dice_large_5.imageset/dice_large_5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/dice_large_5.imageset/dice_large_5@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dice_large_6.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "idiom": "universal", 5 | "scale": "1x", 6 | "filename": "dice_large_6.png" 7 | }, 8 | { 9 | "idiom": "universal", 10 | "scale": "2x", 11 | "filename": "dice_large_6@2x.png" 12 | }, 13 | { 14 | "idiom": "universal", 15 | "scale": "3x" 16 | } 17 | ], 18 | "info": { 19 | "version": 1, 20 | "author": "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dice_large_6.imageset/dice_large_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/dice_large_6.imageset/dice_large_6.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dice_large_6.imageset/dice_large_6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/dice_large_6.imageset/dice_large_6@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/donate_button_icon.imageset/donate_button_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/donate_button_icon.imageset/donate_button_icon.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/donate_button_icon.imageset/donate_button_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/donate_button_icon.imageset/donate_button_icon@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dropdown_ic_arrow_normal_holo_light.imageset/dropdown_ic_arrow_normal_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/dropdown_ic_arrow_normal_holo_light.imageset/dropdown_ic_arrow_normal_holo_light.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dropdown_ic_arrow_normal_holo_light.imageset/dropdown_ic_arrow_normal_holo_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/dropdown_ic_arrow_normal_holo_light.imageset/dropdown_ic_arrow_normal_holo_light@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dropdown_ic_arrow_pressed_holo_light.imageset/dropdown_ic_arrow_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/dropdown_ic_arrow_pressed_holo_light.imageset/dropdown_ic_arrow_pressed_holo_light.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/dropdown_ic_arrow_pressed_holo_light.imageset/dropdown_ic_arrow_pressed_holo_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/dropdown_ic_arrow_pressed_holo_light.imageset/dropdown_ic_arrow_pressed_holo_light@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/edit_password_button_icon.imageset/edit_password_button_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/edit_password_button_icon.imageset/edit_password_button_icon.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/edit_password_button_icon.imageset/edit_password_button_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/edit_password_button_icon.imageset/edit_password_button_icon@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/fancy_qr_code_save_normal.imageset/fancy_qr_code_save_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/fancy_qr_code_save_normal.imageset/fancy_qr_code_save_normal.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/fancy_qr_code_save_normal.imageset/fancy_qr_code_save_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/fancy_qr_code_save_normal.imageset/fancy_qr_code_save_normal@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/fancy_qr_code_save_pressed.imageset/fancy_qr_code_save_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/fancy_qr_code_save_pressed.imageset/fancy_qr_code_save_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/fancy_qr_code_save_pressed.imageset/fancy_qr_code_save_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/fancy_qr_code_save_pressed.imageset/fancy_qr_code_save_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/fancy_qr_code_share_normal.imageset/fancy_qr_code_share_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/fancy_qr_code_share_normal.imageset/fancy_qr_code_share_normal.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/fancy_qr_code_share_normal.imageset/fancy_qr_code_share_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/fancy_qr_code_share_normal.imageset/fancy_qr_code_share_normal@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/fancy_qr_code_share_pressed.imageset/fancy_qr_code_share_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/fancy_qr_code_share_pressed.imageset/fancy_qr_code_share_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/fancy_qr_code_share_pressed.imageset/fancy_qr_code_share_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/fancy_qr_code_share_pressed.imageset/fancy_qr_code_share_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/first_run_dialog_dot.imageset/first_run_dialog_dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/first_run_dialog_dot.imageset/first_run_dialog_dot.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/first_run_dialog_dot.imageset/first_run_dialog_dot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/first_run_dialog_dot.imageset/first_run_dialog_dot@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/first_run_dialog_icon.imageset/first_run_dialog_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/first_run_dialog_icon.imageset/first_run_dialog_icon.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/first_run_dialog_icon.imageset/first_run_dialog_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/first_run_dialog_icon.imageset/first_run_dialog_icon@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/flash_off.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "idiom": "universal", 5 | "scale": "1x", 6 | "filename": "flash_off.png" 7 | }, 8 | { 9 | "idiom": "universal", 10 | "scale": "2x", 11 | "filename": "flash_off@2x.png" 12 | }, 13 | { 14 | "idiom": "universal", 15 | "scale": "3x" 16 | } 17 | ], 18 | "info": { 19 | "version": 1, 20 | "author": "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/flash_off.imageset/flash_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/flash_off.imageset/flash_off.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/flash_off.imageset/flash_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/flash_off.imageset/flash_off@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/flash_on.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "idiom": "universal", 5 | "scale": "1x", 6 | "filename": "flash_on.png" 7 | }, 8 | { 9 | "idiom": "universal", 10 | "scale": "2x", 11 | "filename": "flash_on@2x.png" 12 | }, 13 | { 14 | "idiom": "universal", 15 | "scale": "3x" 16 | } 17 | ], 18 | "info": { 19 | "version": 1, 20 | "author": "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/flash_on.imageset/flash_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/flash_on.imageset/flash_on.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/flash_on.imageset/flash_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/flash_on.imageset/flash_on@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/global_shadow_down.imageset/global_shadow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/global_shadow_down.imageset/global_shadow_down.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/global_shadow_down.imageset/global_shadow_down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/global_shadow_down.imageset/global_shadow_down@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_button_add_address_normal.imageset/hdm_button_add_address_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_button_add_address_normal.imageset/hdm_button_add_address_normal.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_button_add_address_normal.imageset/hdm_button_add_address_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_button_add_address_normal.imageset/hdm_button_add_address_normal@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_button_add_address_pressed.imageset/hdm_button_add_address_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_button_add_address_pressed.imageset/hdm_button_add_address_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_button_add_address_pressed.imageset/hdm_button_add_address_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_button_add_address_pressed.imageset/hdm_button_add_address_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_button_qr_code_normal.imageset/hdm_button_qr_code_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_button_qr_code_normal.imageset/hdm_button_qr_code_normal.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_button_qr_code_normal.imageset/hdm_button_qr_code_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_button_qr_code_normal.imageset/hdm_button_qr_code_normal@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_button_qr_code_pressed.imageset/hdm_button_qr_code_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_button_qr_code_pressed.imageset/hdm_button_qr_code_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_button_qr_code_pressed.imageset/hdm_button_qr_code_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_button_qr_code_pressed.imageset/hdm_button_qr_code_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_button_seed_normal.imageset/hdm_button_seed_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_button_seed_normal.imageset/hdm_button_seed_normal.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_button_seed_normal.imageset/hdm_button_seed_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_button_seed_normal.imageset/hdm_button_seed_normal@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_button_seed_pressed.imageset/hdm_button_seed_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_button_seed_pressed.imageset/hdm_button_seed_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_button_seed_pressed.imageset/hdm_button_seed_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_button_seed_pressed.imageset/hdm_button_seed_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_keychain_add_cold_completed.imageset/hdm_keychain_add_cold_completed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_keychain_add_cold_completed.imageset/hdm_keychain_add_cold_completed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_keychain_add_cold_completed.imageset/hdm_keychain_add_cold_completed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_keychain_add_cold_completed.imageset/hdm_keychain_add_cold_completed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_keychain_add_cold_disable_uncompleted.imageset/hdm_keychain_add_cold_disable_uncompleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_keychain_add_cold_disable_uncompleted.imageset/hdm_keychain_add_cold_disable_uncompleted.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_keychain_add_cold_disable_uncompleted.imageset/hdm_keychain_add_cold_disable_uncompleted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_keychain_add_cold_disable_uncompleted.imageset/hdm_keychain_add_cold_disable_uncompleted@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_keychain_add_cold_pressed.imageset/hdm_keychain_add_cold_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_keychain_add_cold_pressed.imageset/hdm_keychain_add_cold_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_keychain_add_cold_pressed.imageset/hdm_keychain_add_cold_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_keychain_add_cold_pressed.imageset/hdm_keychain_add_cold_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_keychain_add_hot_completed.imageset/hdm_keychain_add_hot_completed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_keychain_add_hot_completed.imageset/hdm_keychain_add_hot_completed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_keychain_add_hot_completed.imageset/hdm_keychain_add_hot_completed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_keychain_add_hot_completed.imageset/hdm_keychain_add_hot_completed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_keychain_add_hot_disable_uncompleted.imageset/hdm_keychain_add_hot_disable_uncompleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_keychain_add_hot_disable_uncompleted.imageset/hdm_keychain_add_hot_disable_uncompleted.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_keychain_add_hot_disable_uncompleted.imageset/hdm_keychain_add_hot_disable_uncompleted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_keychain_add_hot_disable_uncompleted.imageset/hdm_keychain_add_hot_disable_uncompleted@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_keychain_add_hot_pressed.imageset/hdm_keychain_add_hot_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_keychain_add_hot_pressed.imageset/hdm_keychain_add_hot_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_keychain_add_hot_pressed.imageset/hdm_keychain_add_hot_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_keychain_add_hot_pressed.imageset/hdm_keychain_add_hot_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_keychain_add_one_part_enabled_light.imageset/hdm_keychain_add_one_part_enabled_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_keychain_add_one_part_enabled_light.imageset/hdm_keychain_add_one_part_enabled_light.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_keychain_add_one_part_enabled_light.imageset/hdm_keychain_add_one_part_enabled_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_keychain_add_one_part_enabled_light.imageset/hdm_keychain_add_one_part_enabled_light@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_keychain_add_server_completed.imageset/hdm_keychain_add_server_completed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_keychain_add_server_completed.imageset/hdm_keychain_add_server_completed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_keychain_add_server_completed.imageset/hdm_keychain_add_server_completed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_keychain_add_server_completed.imageset/hdm_keychain_add_server_completed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_keychain_add_server_disable_uncompleted.imageset/hdm_keychain_add_server_disable_uncompleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_keychain_add_server_disable_uncompleted.imageset/hdm_keychain_add_server_disable_uncompleted.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_keychain_add_server_disable_uncompleted.imageset/hdm_keychain_add_server_disable_uncompleted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_keychain_add_server_disable_uncompleted.imageset/hdm_keychain_add_server_disable_uncompleted@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_keychain_add_server_pressed.imageset/hdm_keychain_add_server_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_keychain_add_server_pressed.imageset/hdm_keychain_add_server_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_keychain_add_server_pressed.imageset/hdm_keychain_add_server_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_keychain_add_server_pressed.imageset/hdm_keychain_add_server_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_keychain_cold_small.imageset/hdm_keychain_cold_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_keychain_cold_small.imageset/hdm_keychain_cold_small.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_keychain_cold_small.imageset/hdm_keychain_cold_small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_keychain_cold_small.imageset/hdm_keychain_cold_small@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_keychain_hot_small.imageset/hdm_keychain_hot_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_keychain_hot_small.imageset/hdm_keychain_hot_small.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_keychain_hot_small.imageset/hdm_keychain_hot_small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_keychain_hot_small.imageset/hdm_keychain_hot_small@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_keychain_server_small.imageset/hdm_keychain_server_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_keychain_server_small.imageset/hdm_keychain_server_small.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_keychain_server_small.imageset/hdm_keychain_server_small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_keychain_server_small.imageset/hdm_keychain_server_small@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_label.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "idiom": "universal", 5 | "scale": "1x", 6 | "filename": "hdm_label.png" 7 | }, 8 | { 9 | "idiom": "universal", 10 | "scale": "2x", 11 | "filename": "hdm_label@2x.png" 12 | }, 13 | { 14 | "idiom": "universal", 15 | "scale": "3x" 16 | } 17 | ], 18 | "info": { 19 | "version": 1, 20 | "author": "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_label.imageset/hdm_label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_label.imageset/hdm_label.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_label.imageset/hdm_label@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_label.imageset/hdm_label@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_label_pressed.imageset/hdm_label_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_label_pressed.imageset/hdm_label_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/hdm_label_pressed.imageset/hdm_label_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/hdm_label_pressed.imageset/hdm_label_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/ic_input_delete.imageset/ic_input_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/ic_input_delete.imageset/ic_input_delete.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/ic_input_delete.imageset/ic_input_delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/ic_input_delete.imageset/ic_input_delete@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/icon_arrow.imageset/icon_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/icon_arrow.imageset/icon_arrow.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/icon_arrow.imageset/icon_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/icon_arrow.imageset/icon_arrow@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/icon_arrow.imageset/icon_arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/icon_arrow.imageset/icon_arrow@3x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/icon_arrow_press.imageset/icon_arrow_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/icon_arrow_press.imageset/icon_arrow_press.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/icon_arrow_press.imageset/icon_arrow_press@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/icon_arrow_press.imageset/icon_arrow_press@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/icon_arrow_press.imageset/icon_arrow_press@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/icon_arrow_press.imageset/icon_arrow_press@3x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/icon_bither_logo.imageset/icon_bither_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/icon_bither_logo.imageset/icon_bither_logo.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/icon_bither_logo.imageset/icon_bither_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/icon_bither_logo.imageset/icon_bither_logo@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/icon_bither_logo.imageset/icon_bither_logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/icon_bither_logo.imageset/icon_bither_logo@3x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/icon_frame_normal.imageset/icon_frame_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/icon_frame_normal.imageset/icon_frame_normal.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/icon_frame_normal.imageset/icon_frame_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/icon_frame_normal.imageset/icon_frame_normal@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/icon_frame_normal.imageset/icon_frame_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/icon_frame_normal.imageset/icon_frame_normal@3x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/icon_frame_press.imageset/icon_frame_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/icon_frame_press.imageset/icon_frame_press.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/icon_frame_press.imageset/icon_frame_press@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/icon_frame_press.imageset/icon_frame_press@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/icon_frame_press.imageset/icon_frame_press@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/icon_frame_press.imageset/icon_frame_press@3x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/icon_question.imageset/icon_question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/icon_question.imageset/icon_question.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/icon_question.imageset/icon_question@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/icon_question.imageset/icon_question@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/icon_question.imageset/icon_question@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/icon_question.imageset/icon_question@3x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/list_item_address_group_indicator.imageset/list_item_address_group_indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/list_item_address_group_indicator.imageset/list_item_address_group_indicator.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/list_item_address_group_indicator.imageset/list_item_address_group_indicator@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/list_item_address_group_indicator.imageset/list_item_address_group_indicator@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/list_item_card_corner_bottom_left.imageset/list_item_card_corner_bottom_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/list_item_card_corner_bottom_left.imageset/list_item_card_corner_bottom_left.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/list_item_card_corner_bottom_left.imageset/list_item_card_corner_bottom_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/list_item_card_corner_bottom_left.imageset/list_item_card_corner_bottom_left@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/list_item_card_corner_bottom_right.imageset/list_item_card_corner_bottom_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/list_item_card_corner_bottom_right.imageset/list_item_card_corner_bottom_right.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/list_item_card_corner_bottom_right.imageset/list_item_card_corner_bottom_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/list_item_card_corner_bottom_right.imageset/list_item_card_corner_bottom_right@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/list_item_card_corner_top_left.imageset/list_item_card_corner_top_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/list_item_card_corner_top_left.imageset/list_item_card_corner_top_left.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/list_item_card_corner_top_left.imageset/list_item_card_corner_top_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/list_item_card_corner_top_left.imageset/list_item_card_corner_top_left@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/list_item_card_corner_top_right.imageset/list_item_card_corner_top_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/list_item_card_corner_top_right.imageset/list_item_card_corner_top_right.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/list_item_card_corner_top_right.imageset/list_item_card_corner_top_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/list_item_card_corner_top_right.imageset/list_item_card_corner_top_right@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/list_item_card_shadow_bottom.imageset/list_item_card_shadow_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/list_item_card_shadow_bottom.imageset/list_item_card_shadow_bottom.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/list_item_card_shadow_bottom.imageset/list_item_card_shadow_bottom@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/list_item_card_shadow_bottom.imageset/list_item_card_shadow_bottom@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/list_item_card_shadow_top.imageset/list_item_card_shadow_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/list_item_card_shadow_top.imageset/list_item_card_shadow_top.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/list_item_card_shadow_top.imageset/list_item_card_shadow_top@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/list_item_card_shadow_top.imageset/list_item_card_shadow_top@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/no_address_image.imageset/no_address_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/no_address_image.imageset/no_address_image.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/no_address_image.imageset/no_address_image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/no_address_image.imageset/no_address_image@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/pie_mask.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "idiom": "universal", 5 | "scale": "1x", 6 | "filename": "pie_mask.png" 7 | }, 8 | { 9 | "idiom": "universal", 10 | "scale": "2x", 11 | "filename": "pie_mask@2x.png" 12 | }, 13 | { 14 | "idiom": "universal", 15 | "scale": "3x" 16 | } 17 | ], 18 | "info": { 19 | "version": 1, 20 | "author": "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/pie_mask.imageset/pie_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/pie_mask.imageset/pie_mask.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/pie_mask.imageset/pie_mask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/pie_mask.imageset/pie_mask@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/pin_code_water_mark.imageset/pin_code_water_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/pin_code_water_mark.imageset/pin_code_water_mark.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/pin_code_water_mark.imageset/pin_code_water_mark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/pin_code_water_mark.imageset/pin_code_water_mark@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/qr_code_button_icon.imageset/qr_code_button_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/qr_code_button_icon.imageset/qr_code_button_icon.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/qr_code_button_icon.imageset/qr_code_button_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/qr_code_button_icon.imageset/qr_code_button_icon@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/qrcode_frame_default.imageset/qrcode_frame_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/qrcode_frame_default.imageset/qrcode_frame_default.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/qrcode_frame_default.imageset/qrcode_frame_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/qrcode_frame_default.imageset/qrcode_frame_default@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/qrcode_frame_focused.imageset/qrcode_frame_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/qrcode_frame_focused.imageset/qrcode_frame_focused.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/qrcode_frame_focused.imageset/qrcode_frame_focused@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/qrcode_frame_focused.imageset/qrcode_frame_focused@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/qrcode_frame_pressed.imageset/qrcode_frame_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/qrcode_frame_pressed.imageset/qrcode_frame_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/qrcode_frame_pressed.imageset/qrcode_frame_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/qrcode_frame_pressed.imageset/qrcode_frame_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/rcheck_button_icon.imageset/rcheck_button_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/rcheck_button_icon.imageset/rcheck_button_icon.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/rcheck_button_icon.imageset/rcheck_button_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/rcheck_button_icon.imageset/rcheck_button_icon@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/rcheck_check_button.imageset/rcheck_check_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/rcheck_check_button.imageset/rcheck_check_button.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/rcheck_check_button.imageset/rcheck_check_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/rcheck_check_button.imageset/rcheck_check_button@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/rcheck_info_logo.imageset/rcheck_info_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/rcheck_info_logo.imageset/rcheck_info_logo.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/rcheck_info_logo.imageset/rcheck_info_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/rcheck_info_logo.imageset/rcheck_info_logo@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/scan_button_icon.imageset/scan_button_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/scan_button_icon.imageset/scan_button_icon.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/scan_button_icon.imageset/scan_button_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/scan_button_icon.imageset/scan_button_icon@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/scan_button_normal.imageset/scan_button_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/scan_button_normal.imageset/scan_button_normal.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/scan_button_normal.imageset/scan_button_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/scan_button_normal.imageset/scan_button_normal@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/scan_button_pressed.imageset/scan_button_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/scan_button_pressed.imageset/scan_button_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/scan_button_pressed.imageset/scan_button_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/scan_button_pressed.imageset/scan_button_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/scan_button_resizable_normal.imageset/scan_button_resizable_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/scan_button_resizable_normal.imageset/scan_button_resizable_normal.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/scan_button_resizable_normal.imageset/scan_button_resizable_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/scan_button_resizable_normal.imageset/scan_button_resizable_normal@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/scan_button_resizable_pressed.imageset/scan_button_resizable_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/scan_button_resizable_pressed.imageset/scan_button_resizable_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/scan_button_resizable_pressed.imageset/scan_button_resizable_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/scan_button_resizable_pressed.imageset/scan_button_resizable_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/scan_cancel.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "idiom": "universal", 5 | "scale": "1x", 6 | "filename": "scan_cancel.png" 7 | }, 8 | { 9 | "idiom": "universal", 10 | "scale": "2x", 11 | "filename": "scan_cancel@2x.png" 12 | }, 13 | { 14 | "idiom": "universal", 15 | "scale": "3x" 16 | } 17 | ], 18 | "info": { 19 | "version": 1, 20 | "author": "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/scan_cancel.imageset/scan_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/scan_cancel.imageset/scan_cancel.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/scan_cancel.imageset/scan_cancel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/scan_cancel.imageset/scan_cancel@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/scan_cancel_pressed.imageset/scan_cancel_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/scan_cancel_pressed.imageset/scan_cancel_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/scan_cancel_pressed.imageset/scan_cancel_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/scan_cancel_pressed.imageset/scan_cancel_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/scan_from_gallery.imageset/scan_from_gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/scan_from_gallery.imageset/scan_from_gallery.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/scan_from_gallery.imageset/scan_from_gallery@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/scan_from_gallery.imageset/scan_from_gallery@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/scan_overlay_button.imageset/scan_overlay_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/scan_overlay_button.imageset/scan_overlay_button.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/scan_overlay_button.imageset/scan_overlay_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/scan_overlay_button.imageset/scan_overlay_button@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/scan_overlay_button_pressed.imageset/scan_overlay_button_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/scan_overlay_button_pressed.imageset/scan_overlay_button_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/scan_overlay_button_pressed.imageset/scan_overlay_button_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/scan_overlay_button_pressed.imageset/scan_overlay_button_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/setting_footer_logo.imageset/setting_footer_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/setting_footer_logo.imageset/setting_footer_logo.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/setting_footer_logo.imageset/setting_footer_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/setting_footer_logo.imageset/setting_footer_logo@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/sym_keyboard_delete_holo_dark.imageset/sym_keyboard_delete_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/sym_keyboard_delete_holo_dark.imageset/sym_keyboard_delete_holo_dark.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/sym_keyboard_delete_holo_dark.imageset/sym_keyboard_delete_holo_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/sym_keyboard_delete_holo_dark.imageset/sym_keyboard_delete_holo_dark@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/symbol_bits.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "idiom": "universal", 5 | "scale": "1x", 6 | "filename": "symbol_bits.png" 7 | }, 8 | { 9 | "idiom": "universal", 10 | "scale": "2x", 11 | "filename": "symbol_bits@2x.png" 12 | }, 13 | { 14 | "idiom": "universal", 15 | "scale": "3x" 16 | } 17 | ], 18 | "info": { 19 | "version": 1, 20 | "author": "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/symbol_bits.imageset/symbol_bits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/symbol_bits.imageset/symbol_bits.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/symbol_bits.imageset/symbol_bits@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/symbol_bits.imageset/symbol_bits@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/symbol_bits_slim.imageset/symbol_bits_slim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/symbol_bits_slim.imageset/symbol_bits_slim.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/symbol_bits_slim.imageset/symbol_bits_slim@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/symbol_bits_slim.imageset/symbol_bits_slim@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/symbol_bits_slim_black.imageset/symbol_bits_slim_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/symbol_bits_slim_black.imageset/symbol_bits_slim_black.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/symbol_bits_slim_black.imageset/symbol_bits_slim_black@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/symbol_bits_slim_black.imageset/symbol_bits_slim_black@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/symbol_btc.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "idiom": "universal", 5 | "scale": "1x", 6 | "filename": "symbol_btc.png" 7 | }, 8 | { 9 | "idiom": "universal", 10 | "scale": "2x", 11 | "filename": "symbol_btc@2x.png" 12 | }, 13 | { 14 | "idiom": "universal", 15 | "scale": "3x" 16 | } 17 | ], 18 | "info": { 19 | "version": 1, 20 | "author": "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/symbol_btc.imageset/symbol_btc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/symbol_btc.imageset/symbol_btc.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/symbol_btc.imageset/symbol_btc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/symbol_btc.imageset/symbol_btc@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/symbol_btc_slim.imageset/symbol_btc_slim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/symbol_btc_slim.imageset/symbol_btc_slim.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/symbol_btc_slim.imageset/symbol_btc_slim@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/symbol_btc_slim.imageset/symbol_btc_slim@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/symbol_btc_slim_black.imageset/symbol_btc_slim_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/symbol_btc_slim_black.imageset/symbol_btc_slim_black.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/symbol_btc_slim_black.imageset/symbol_btc_slim_black@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/symbol_btc_slim_black.imageset/symbol_btc_slim_black@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/sync_progress_foreground.imageset/sync_progress_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/sync_progress_foreground.imageset/sync_progress_foreground.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/sync_progress_foreground.imageset/sync_progress_foreground@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/sync_progress_foreground.imageset/sync_progress_foreground@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_arrow_down_checked.imageset/tab_arrow_down_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/tab_arrow_down_checked.imageset/tab_arrow_down_checked.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_arrow_down_checked.imageset/tab_arrow_down_checked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/tab_arrow_down_checked.imageset/tab_arrow_down_checked@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_arrow_down_unchecked.imageset/tab_arrow_down_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/tab_arrow_down_unchecked.imageset/tab_arrow_down_unchecked.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_arrow_down_unchecked.imageset/tab_arrow_down_unchecked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/tab_arrow_down_unchecked.imageset/tab_arrow_down_unchecked@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_arrow_up_checked.imageset/tab_arrow_up_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/tab_arrow_up_checked.imageset/tab_arrow_up_checked.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_arrow_up_checked.imageset/tab_arrow_up_checked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/tab_arrow_up_checked.imageset/tab_arrow_up_checked@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_arrow_up_unchecked.imageset/tab_arrow_up_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/tab_arrow_up_unchecked.imageset/tab_arrow_up_unchecked.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_arrow_up_unchecked.imageset/tab_arrow_up_unchecked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/tab_arrow_up_unchecked.imageset/tab_arrow_up_unchecked@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_guard.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "idiom": "universal", 5 | "scale": "1x", 6 | "filename": "tab_guard.png" 7 | }, 8 | { 9 | "idiom": "universal", 10 | "scale": "2x", 11 | "filename": "tab_guard@2x.png" 12 | }, 13 | { 14 | "idiom": "universal", 15 | "scale": "3x" 16 | } 17 | ], 18 | "info": { 19 | "version": 1, 20 | "author": "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_guard.imageset/tab_guard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/tab_guard.imageset/tab_guard.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_guard.imageset/tab_guard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/tab_guard.imageset/tab_guard@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_guard_checked.imageset/tab_guard_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/tab_guard_checked.imageset/tab_guard_checked.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_guard_checked.imageset/tab_guard_checked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/tab_guard_checked.imageset/tab_guard_checked@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_main.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "idiom": "universal", 5 | "scale": "1x", 6 | "filename": "tab_main.png" 7 | }, 8 | { 9 | "idiom": "universal", 10 | "scale": "2x", 11 | "filename": "tab_main@2x.png" 12 | }, 13 | { 14 | "idiom": "universal", 15 | "scale": "3x" 16 | } 17 | ], 18 | "info": { 19 | "version": 1, 20 | "author": "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_main.imageset/tab_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/tab_main.imageset/tab_main.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_main.imageset/tab_main@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/tab_main.imageset/tab_main@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_main_bits.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "idiom": "universal", 5 | "scale": "1x", 6 | "filename": "tab_main_bits.png" 7 | }, 8 | { 9 | "idiom": "universal", 10 | "scale": "2x", 11 | "filename": "tab_main_bits@2x.png" 12 | }, 13 | { 14 | "idiom": "universal", 15 | "scale": "3x" 16 | } 17 | ], 18 | "info": { 19 | "version": 1, 20 | "author": "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_main_bits.imageset/tab_main_bits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/tab_main_bits.imageset/tab_main_bits.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_main_bits.imageset/tab_main_bits@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/tab_main_bits.imageset/tab_main_bits@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_main_bits_checked.imageset/tab_main_bits_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/tab_main_bits_checked.imageset/tab_main_bits_checked.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_main_bits_checked.imageset/tab_main_bits_checked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/tab_main_bits_checked.imageset/tab_main_bits_checked@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_main_checked.imageset/tab_main_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/tab_main_checked.imageset/tab_main_checked.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_main_checked.imageset/tab_main_checked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/tab_main_checked.imageset/tab_main_checked@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_market.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "idiom": "universal", 5 | "scale": "1x", 6 | "filename": "tab_market.png" 7 | }, 8 | { 9 | "idiom": "universal", 10 | "scale": "2x", 11 | "filename": "tab_market@2x.png" 12 | }, 13 | { 14 | "idiom": "universal", 15 | "scale": "3x" 16 | } 17 | ], 18 | "info": { 19 | "version": 1, 20 | "author": "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_market.imageset/tab_market.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/tab_market.imageset/tab_market.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_market.imageset/tab_market@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/tab_market.imageset/tab_market@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_market_checked.imageset/tab_market_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/tab_market_checked.imageset/tab_market_checked.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_market_checked.imageset/tab_market_checked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/tab_market_checked.imageset/tab_market_checked@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_option.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "idiom": "universal", 5 | "scale": "1x", 6 | "filename": "tab_option.png" 7 | }, 8 | { 9 | "idiom": "universal", 10 | "scale": "2x", 11 | "filename": "tab_option@2x.png" 12 | }, 13 | { 14 | "idiom": "universal", 15 | "scale": "3x" 16 | } 17 | ], 18 | "info": { 19 | "version": 1, 20 | "author": "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_option.imageset/tab_option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/tab_option.imageset/tab_option.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_option.imageset/tab_option@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/tab_option.imageset/tab_option@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_option_checked.imageset/tab_option_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/tab_option_checked.imageset/tab_option_checked.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/tab_option_checked.imageset/tab_option_checked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/tab_option_checked.imageset/tab_option_checked@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/textarea_background.imageset/textarea_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/textarea_background.imageset/textarea_background.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/textarea_background.imageset/textarea_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/textarea_background.imageset/textarea_background@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/textarea_background_pressed.imageset/textarea_background_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/textarea_background_pressed.imageset/textarea_background_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/textarea_background_pressed.imageset/textarea_background_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/textarea_background_pressed.imageset/textarea_background_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/textfield_activated_holo_light.imageset/textfield_activated_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/textfield_activated_holo_light.imageset/textfield_activated_holo_light.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/textfield_activated_holo_light.imageset/textfield_activated_holo_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/textfield_activated_holo_light.imageset/textfield_activated_holo_light@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/title_bar_back.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "idiom": "universal", 5 | "scale": "1x", 6 | "filename": "title_bar_back.png" 7 | }, 8 | { 9 | "idiom": "universal", 10 | "scale": "2x", 11 | "filename": "title_bar_back@2x.png" 12 | }, 13 | { 14 | "idiom": "universal", 15 | "scale": "3x" 16 | } 17 | ], 18 | "info": { 19 | "version": 1, 20 | "author": "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/title_bar_back.imageset/title_bar_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/title_bar_back.imageset/title_bar_back.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/title_bar_back.imageset/title_bar_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/title_bar_back.imageset/title_bar_back@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/title_bar_option_icon.imageset/title_bar_option_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/title_bar_option_icon.imageset/title_bar_option_icon.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/title_bar_option_icon.imageset/title_bar_option_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/title_bar_option_icon.imageset/title_bar_option_icon@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/title_bar_seperator.imageset/title_bar_seperator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/title_bar_seperator.imageset/title_bar_seperator.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/title_bar_seperator.imageset/title_bar_seperator@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/title_bar_seperator.imageset/title_bar_seperator@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/topnav_divider.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "idiom": "universal", 5 | "scale": "1x", 6 | "filename": "topnav_divider.png" 7 | }, 8 | { 9 | "idiom": "universal", 10 | "scale": "2x", 11 | "filename": "topnav_divider@2x.png" 12 | }, 13 | { 14 | "idiom": "universal", 15 | "scale": "3x" 16 | } 17 | ], 18 | "info": { 19 | "version": 1, 20 | "author": "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/topnav_divider.imageset/topnav_divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/topnav_divider.imageset/topnav_divider.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/topnav_divider.imageset/topnav_divider@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/topnav_divider.imageset/topnav_divider@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/topnav_overlay_pressed.imageset/topnav_overlay_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/topnav_overlay_pressed.imageset/topnav_overlay_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/topnav_overlay_pressed.imageset/topnav_overlay_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/topnav_overlay_pressed.imageset/topnav_overlay_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/topnav_tab_bar.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "idiom": "universal", 5 | "scale": "1x", 6 | "filename": "topnav_tab_bar.png" 7 | }, 8 | { 9 | "idiom": "universal", 10 | "scale": "2x", 11 | "filename": "topnav_tab_bar@2x.png" 12 | }, 13 | { 14 | "idiom": "universal", 15 | "scale": "3x" 16 | } 17 | ], 18 | "info": { 19 | "version": 1, 20 | "author": "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/topnav_tab_bar.imageset/topnav_tab_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/topnav_tab_bar.imageset/topnav_tab_bar.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/topnav_tab_bar.imageset/topnav_tab_bar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/topnav_tab_bar.imageset/topnav_tab_bar@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/transaction_confirmation_icon_0.imageset/transaction_confirmation_icon_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/transaction_confirmation_icon_0.imageset/transaction_confirmation_icon_0.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/transaction_confirmation_icon_0.imageset/transaction_confirmation_icon_0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/transaction_confirmation_icon_0.imageset/transaction_confirmation_icon_0@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/transaction_confirmation_icon_1.imageset/transaction_confirmation_icon_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/transaction_confirmation_icon_1.imageset/transaction_confirmation_icon_1.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/transaction_confirmation_icon_1.imageset/transaction_confirmation_icon_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/transaction_confirmation_icon_1.imageset/transaction_confirmation_icon_1@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/transaction_confirmation_icon_100.imageset/transaction_confirmation_icon_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/transaction_confirmation_icon_100.imageset/transaction_confirmation_icon_100.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/transaction_confirmation_icon_100.imageset/transaction_confirmation_icon_100@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/transaction_confirmation_icon_100.imageset/transaction_confirmation_icon_100@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/transaction_confirmation_icon_2.imageset/transaction_confirmation_icon_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/transaction_confirmation_icon_2.imageset/transaction_confirmation_icon_2.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/transaction_confirmation_icon_2.imageset/transaction_confirmation_icon_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/transaction_confirmation_icon_2.imageset/transaction_confirmation_icon_2@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/transaction_confirmation_icon_3.imageset/transaction_confirmation_icon_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/transaction_confirmation_icon_3.imageset/transaction_confirmation_icon_3.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/transaction_confirmation_icon_3.imageset/transaction_confirmation_icon_3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/transaction_confirmation_icon_3.imageset/transaction_confirmation_icon_3@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/transaction_confirmation_icon_4.imageset/transaction_confirmation_icon_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/transaction_confirmation_icon_4.imageset/transaction_confirmation_icon_4.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/transaction_confirmation_icon_4.imageset/transaction_confirmation_icon_4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/transaction_confirmation_icon_4.imageset/transaction_confirmation_icon_4@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/transaction_confirmation_icon_5.imageset/transaction_confirmation_icon_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/transaction_confirmation_icon_5.imageset/transaction_confirmation_icon_5.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/transaction_confirmation_icon_5.imageset/transaction_confirmation_icon_5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/transaction_confirmation_icon_5.imageset/transaction_confirmation_icon_5@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/transaction_confirmation_icon_6.imageset/transaction_confirmation_icon_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/transaction_confirmation_icon_6.imageset/transaction_confirmation_icon_6.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/transaction_confirmation_icon_6.imageset/transaction_confirmation_icon_6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/transaction_confirmation_icon_6.imageset/transaction_confirmation_icon_6@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/transaction_icon_small.imageset/transaction_icon_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/transaction_icon_small.imageset/transaction_icon_small.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/transaction_icon_small.imageset/transaction_icon_small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/transaction_icon_small.imageset/transaction_icon_small@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/trash_can_button_icon.imageset/trash_can_button_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/trash_can_button_icon.imageset/trash_can_button_icon.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/trash_can_button_icon.imageset/trash_can_button_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/trash_can_button_icon.imageset/trash_can_button_icon@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/trash_can_restore.imageset/trash_can_restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/trash_can_restore.imageset/trash_can_restore.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/trash_can_restore.imageset/trash_can_restore@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/trash_can_restore.imageset/trash_can_restore@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/ui_topnav_titlebar_background.imageset/ui_topnav_titlebar_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/ui_topnav_titlebar_background.imageset/ui_topnav_titlebar_background.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/ui_topnav_titlebar_background.imageset/ui_topnav_titlebar_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/ui_topnav_titlebar_background.imageset/ui_topnav_titlebar_background@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/unsigned_transaction_button_icon.imageset/unsigned_transaction_button_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/unsigned_transaction_button_icon.imageset/unsigned_transaction_button_icon.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/unsigned_transaction_button_icon.imageset/unsigned_transaction_button_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/unsigned_transaction_button_icon.imageset/unsigned_transaction_button_icon@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_address_label_normal.imageset/xrandom_address_label_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_address_label_normal.imageset/xrandom_address_label_normal.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_address_label_normal.imageset/xrandom_address_label_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_address_label_normal.imageset/xrandom_address_label_normal@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_address_label_pressed.imageset/xrandom_address_label_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_address_label_pressed.imageset/xrandom_address_label_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_address_label_pressed.imageset/xrandom_address_label_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_address_label_pressed.imageset/xrandom_address_label_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_checkbox_checked.imageset/xrandom_checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_checkbox_checked.imageset/xrandom_checkbox_checked.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_checkbox_checked.imageset/xrandom_checkbox_checked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_checkbox_checked.imageset/xrandom_checkbox_checked@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_checkbox_normal.imageset/xrandom_checkbox_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_checkbox_normal.imageset/xrandom_checkbox_normal.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_checkbox_normal.imageset/xrandom_checkbox_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_checkbox_normal.imageset/xrandom_checkbox_normal@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_info_icon_normal.imageset/xrandom_info_icon_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_info_icon_normal.imageset/xrandom_info_icon_normal.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_info_icon_normal.imageset/xrandom_info_icon_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_info_icon_normal.imageset/xrandom_info_icon_normal@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_info_icon_pressed.imageset/xrandom_info_icon_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_info_icon_pressed.imageset/xrandom_info_icon_pressed.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_info_icon_pressed.imageset/xrandom_info_icon_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_info_icon_pressed.imageset/xrandom_info_icon_pressed@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_info_logo.imageset/xrandom_info_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_info_logo.imageset/xrandom_info_logo.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_info_logo.imageset/xrandom_info_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_info_logo.imageset/xrandom_info_logo@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_overlay_line_down.imageset/xrandom_overlay_line_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_overlay_line_down.imageset/xrandom_overlay_line_down.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_overlay_line_down.imageset/xrandom_overlay_line_down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_overlay_line_down.imageset/xrandom_overlay_line_down@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_overlay_line_up.imageset/xrandom_overlay_line_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_overlay_line_up.imageset/xrandom_overlay_line_up.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_overlay_line_up.imageset/xrandom_overlay_line_up@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_overlay_line_up.imageset/xrandom_overlay_line_up@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_overlay_logo.imageset/xrandom_overlay_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_overlay_logo.imageset/xrandom_overlay_logo.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_overlay_logo.imageset/xrandom_overlay_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_overlay_logo.imageset/xrandom_overlay_logo@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_overlay_logo_bottom.imageset/xrandom_overlay_logo_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_overlay_logo_bottom.imageset/xrandom_overlay_logo_bottom.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_overlay_logo_bottom.imageset/xrandom_overlay_logo_bottom@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_overlay_logo_bottom.imageset/xrandom_overlay_logo_bottom@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_overlay_logo_top.imageset/xrandom_overlay_logo_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_overlay_logo_top.imageset/xrandom_overlay_logo_top.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_overlay_logo_top.imageset/xrandom_overlay_logo_top@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_overlay_logo_top.imageset/xrandom_overlay_logo_top@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_overlay_tile.imageset/xrandom_overlay_tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_overlay_tile.imageset/xrandom_overlay_tile.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_overlay_tile.imageset/xrandom_overlay_tile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_overlay_tile.imageset/xrandom_overlay_tile@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_sensor_accelerometer.imageset/xrandom_sensor_accelerometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_sensor_accelerometer.imageset/xrandom_sensor_accelerometer.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_sensor_accelerometer.imageset/xrandom_sensor_accelerometer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_sensor_accelerometer.imageset/xrandom_sensor_accelerometer@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_sensor_gravity.imageset/xrandom_sensor_gravity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_sensor_gravity.imageset/xrandom_sensor_gravity.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_sensor_gravity.imageset/xrandom_sensor_gravity@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_sensor_gravity.imageset/xrandom_sensor_gravity@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_sensor_light.imageset/xrandom_sensor_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_sensor_light.imageset/xrandom_sensor_light.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_sensor_light.imageset/xrandom_sensor_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_sensor_light.imageset/xrandom_sensor_light@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_sensor_magnetic.imageset/xrandom_sensor_magnetic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_sensor_magnetic.imageset/xrandom_sensor_magnetic.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_sensor_magnetic.imageset/xrandom_sensor_magnetic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_sensor_magnetic.imageset/xrandom_sensor_magnetic@2x.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_sensor_mic.imageset/xrandom_sensor_mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_sensor_mic.imageset/xrandom_sensor_mic.png -------------------------------------------------------------------------------- /bither-ios/Images.xcassets/xrandom_sensor_mic.imageset/xrandom_sensor_mic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Images.xcassets/xrandom_sensor_mic.imageset/xrandom_sensor_mic@2x.png -------------------------------------------------------------------------------- /bither-ios/Model/ApiConfig.h: -------------------------------------------------------------------------------- 1 | // 2 | // ApiConfig.h 3 | // bither-ios 4 | // 5 | // Created by 宋辰文 on 16/5/26. 6 | // Copyright © 2016年 Bither. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | typedef enum { 12 | ApiConfigBither = 0, ApiConfigBlockchainInfo = 1 13 | } ApiConfig; 14 | -------------------------------------------------------------------------------- /bither-ios/Model/GetSplitSetting.h: -------------------------------------------------------------------------------- 1 | // 2 | // GetSplitSetting.h 3 | // bither-ios 4 | // 5 | // Created by 张陆军 on 2018/1/18. 6 | // Copyright © 2018年 Bither. All rights reserved. 7 | // 8 | 9 | #import "Setting.h" 10 | #import "SplitCoinUtil.h" 11 | 12 | @interface GetSplitSetting : Setting 13 | @property(nonatomic) SplitCoin splitCoin; 14 | 15 | + (GetSplitSetting *)getSplitSetting:(SplitCoin)splitCoin; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /bither-ios/Model/HDMRecoverSetting.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "Setting.h" 3 | 4 | 5 | @interface HDMRecoverSetting : Setting 6 | 7 | @property(weak) UIViewController *controller; 8 | 9 | + (Setting *)getHDMRecoverSetting; 10 | 11 | @end -------------------------------------------------------------------------------- /bither-ios/Model/ImportHDMCold.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | typedef enum { 5 | HDMColdSeedQRCode, HDMColdPhrase 6 | } ImportHDSeedType; 7 | 8 | @interface ImportHDMCold : NSObject 9 | 10 | - (instancetype)initWithController:(UIViewController *)controller content:(NSString *)content worldList:(NSArray *)array passwrod:(NSString *)passwrod importHDSeedType:(ImportHDSeedType)importHDSeedType; 11 | 12 | - (void)importHDSeed; 13 | @end -------------------------------------------------------------------------------- /bither-ios/Model/MessageSigningSetting.h: -------------------------------------------------------------------------------- 1 | // 2 | // MessageSigningSetting.h 3 | // bither-ios 4 | // 5 | // Created by 宋辰文 on 14/12/26. 6 | // Copyright (c) 2014年 宋辰文. All rights reserved. 7 | // 8 | 9 | #import "Setting.h" 10 | 11 | @interface MessageSigningSetting : Setting 12 | + (MessageSigningSetting *)getMessageSigningSetting; 13 | @end 14 | -------------------------------------------------------------------------------- /bither-ios/Resouces/Sound/coins_received.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Resouces/Sound/coins_received.wav -------------------------------------------------------------------------------- /bither-ios/Resouces/Sound/qr_code_scanned.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Resouces/Sound/qr_code_scanned.mp3 -------------------------------------------------------------------------------- /bither-ios/Resouces/Sound/xrandom_close_sound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Resouces/Sound/xrandom_close_sound.mp3 -------------------------------------------------------------------------------- /bither-ios/Resouces/Sound/xrandom_open_sound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Resouces/Sound/xrandom_open_sound.mp3 -------------------------------------------------------------------------------- /bither-ios/Resouces/hdm.bither.net.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/Resouces/hdm.bither.net.cer -------------------------------------------------------------------------------- /bither-ios/UIBase/Dialog/DialogAddressQrCopy.h: -------------------------------------------------------------------------------- 1 | // 2 | // DialogAddressQrCopy.h 3 | // bither-ios 4 | // 5 | // Created by 宋辰文 on 2016/11/3. 6 | // Copyright © 2016年 Bither. All rights reserved. 7 | // 8 | 9 | #import "DialogCentered.h" 10 | 11 | @interface DialogAddressQrCopy : DialogCentered 12 | 13 | - (instancetype)initWithAddress:(NSString *)address andTitle:(NSString*) title; 14 | @end 15 | -------------------------------------------------------------------------------- /bither-ios/UIBase/Dialog/DialogHDMKeychainAddHot.h: -------------------------------------------------------------------------------- 1 | // 2 | // DialogHDMKeychainAddHot.h 3 | // bither-ios 4 | // 5 | // Created by 宋辰文 on 15/2/2. 6 | // Copyright (c) 2015年 宋辰文. All rights reserved. 7 | // 8 | 9 | #import "DialogCentered.h" 10 | 11 | @interface DialogHDMKeychainAddHot : DialogCentered 12 | - (instancetype)initWithBlock:(void (^)(BOOL))block; 13 | @end 14 | -------------------------------------------------------------------------------- /bither-ios/UIBase/Dialog/DialogHDMSeedWordList.h: -------------------------------------------------------------------------------- 1 | // 2 | // DialogHDMSeedWordList.h 3 | // bither-ios 4 | // 5 | // Created by 宋辰文 on 15/1/30. 6 | // Copyright (c) 2015年 宋辰文. All rights reserved. 7 | // 8 | 9 | #import "DialogCentered.h" 10 | 11 | @interface DialogHDMSeedWordList : DialogCentered 12 | - (instancetype)initWithWords:(NSArray *)words; 13 | @end 14 | -------------------------------------------------------------------------------- /bither-ios/UIBase/Dialog/DialogMonitorAddressValidation.h: -------------------------------------------------------------------------------- 1 | // 2 | // DialogMonitorAddressValidation.h 3 | // bither-ios 4 | // 5 | // Created by 宋辰文 on 16/6/13. 6 | // Copyright © 2016年 Bither. All rights reserved. 7 | // 8 | 9 | #import "DialogCentered.h" 10 | 11 | @interface DialogMonitorAddressValidation : DialogCentered 12 | -(instancetype)initWithAddresses:(NSArray*)addresses target:(id)target andOkSelector:(SEL)okSelector; 13 | @end 14 | -------------------------------------------------------------------------------- /bither-ios/UIBase/Dialog/DialogShowAddressOnNet.h: -------------------------------------------------------------------------------- 1 | // 2 | // DialogShowAddressOnNet.h 3 | // bither-ios 4 | // 5 | // Created by 宋辰文 on 15/7/20. 6 | // Copyright (c) 2015年 Bither. All rights reserved. 7 | // 8 | 9 | #import "DialogWithActions.h" 10 | 11 | @interface DialogShowAddressOnNet : DialogWithActions 12 | 13 | - (instancetype)initWithAddress:(NSString *)address; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /bither-ios/UIBase/Dialog/DialogXrandomInfo.h: -------------------------------------------------------------------------------- 1 | // 2 | // DialogXrandomInfo.h 3 | // bither-ios 4 | // 5 | // Created by noname on 14-9-29. 6 | // Copyright (c) 2014年 noname. All rights reserved. 7 | // 8 | 9 | #import "DialogCentered.h" 10 | 11 | @interface DialogXrandomInfo : DialogCentered 12 | - (instancetype)initWithGuide:(BOOL)guide; 13 | 14 | - (instancetype)initWithPermission:(void (^)())completion; 15 | @end 16 | -------------------------------------------------------------------------------- /bither-ios/UIBase/HotAddressTabButton.h: -------------------------------------------------------------------------------- 1 | // 2 | // HotAddressTabButton.h 3 | // bither-ios 4 | // 5 | // Created by noname on 14-7-31. 6 | // Copyright (c) 2014年 noname. All rights reserved. 7 | // 8 | 9 | #import "TabButton.h" 10 | 11 | @interface HotAddressTabButton : TabButton 12 | 13 | - (void)setAmount:(int64_t)amount; 14 | 15 | - (void)balanceChanged; 16 | @end 17 | -------------------------------------------------------------------------------- /bither-ios/Utils/NSError+HDMHttpErrorMessage.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSError+HDMHttpErrorMessage.h 3 | // bither-ios 4 | // 5 | // Created by 宋辰文 on 15/2/2. 6 | // Copyright (c) 2015年 宋辰文. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface NSError (HDMHttpErrorMessage) 12 | - (NSString *)msg; 13 | 14 | - (BOOL)isHttp400; 15 | @end 16 | -------------------------------------------------------------------------------- /bither-ios/Utils/UIImage+ImageRenderToColor.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImage+ImageRenderToColor.h 3 | // bither-ios 4 | // 5 | // Created by noname on 14-7-30. 6 | // Copyright (c) 2014年 noname. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIImage (ImageRenderToColor) 12 | - (UIImage *)renderToColor:(UIColor *)color; 13 | @end 14 | -------------------------------------------------------------------------------- /bither-ios/Utils/UIView+Extension.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIView+Extension.h 3 | // bither-ios 4 | // 5 | // Created by 韩珍 on 2016/10/26. 6 | // Copyright © 2016年 Bither. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIView (Extension) 12 | 13 | - (void)cornerRadius:(CGFloat)radius; 14 | 15 | - (void)cornerRadius:(CGFloat)radius borderColor:(UIColor*)borderColor borderWidth:(CGFloat)borderWidth; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /bither-ios/bither-ios-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #import 8 | 9 | #ifndef __IPHONE_3_0 10 | #warning "This project uses features only available in iOS SDK 3.0 and later." 11 | #endif 12 | 13 | #ifdef __OBJC__ 14 | 15 | #import 16 | #import 17 | 18 | #endif 19 | -------------------------------------------------------------------------------- /bither-ios/bither-ios.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.application-groups 6 | 7 | group.bither.net 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /bither-ios/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-ios/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /bither-ios/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | { 4 | CFBundleDisplayName = "比太"; 5 | CFBundleName = "比太"; 6 | NSCameraUsageDescription = "用于扫描二维码或增加随机性"; 7 | NSFaceIDUsageDescription = "用于解锁比太"; 8 | NSMotionUsageDescription = "用于增加随机性"; 9 | NSPhotoLibraryAddUsageDescription = "用于保存到相册"; 10 | NSPhotoLibraryUsageDescription = "用于访问相册"; 11 | } 12 | -------------------------------------------------------------------------------- /bither-ios/zh-Hant.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | { 4 | CFBundleDisplayName = "比太"; 5 | CFBundleName = "比太"; 6 | NSCameraUsageDescription = "用於掃描二維碼或增加隨機性"; 7 | NSFaceIDUsageDescription = "用於解鎖比太"; 8 | NSMotionUsageDescription = "用於增加隨機性"; 9 | NSPhotoLibraryAddUsageDescription = "用於保存到相冊"; 10 | NSPhotoLibraryUsageDescription = "用於訪問相冊"; 11 | } 12 | -------------------------------------------------------------------------------- /bither-iosTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /bither-iosTests/en.lproj/MainStoryboard.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-iosTests/en.lproj/MainStoryboard.strings -------------------------------------------------------------------------------- /bither-iosTests/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /bither-iosTests/zh-Hans.lproj/MainStoryboard.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-iosTests/zh-Hans.lproj/MainStoryboard.strings -------------------------------------------------------------------------------- /bither-iosTests/zh-Hant.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /bither-iosTests/zh-Hant.lproj/MainStoryboard.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bither/bither-ios/4a5dcae7b8f810a0b84efc9bac0116484b946c38/bither-iosTests/zh-Hant.lproj/MainStoryboard.strings --------------------------------------------------------------------------------