├── Telegram ├── SetupFiles │ ├── data │ └── log.txt ├── SourceFiles │ ├── overview │ │ └── overview_mosaic_layout.h │ └── inline_bots │ │ └── inline_results_mosaic_layout.h ├── build │ └── docker │ │ └── centos_env │ │ ├── .gitignore │ │ └── centos_env │ │ └── __init__.py ├── Resources │ ├── art │ │ ├── favicon.ico │ │ ├── icon128.png │ │ ├── icon16.png │ │ ├── icon256.ico │ │ ├── icon256.png │ │ ├── icon32.png │ │ ├── icon48.png │ │ ├── icon512.png │ │ ├── icon64.png │ │ ├── background.tgv │ │ ├── bball_idle.tgs │ │ ├── bg_initial.jpg │ │ ├── dart_idle.tgs │ │ ├── dice_idle.tgs │ │ ├── fball_idle.tgs │ │ ├── icon128@2x.png │ │ ├── icon16@2x.png │ │ ├── icon256@2x.png │ │ ├── icon32@2x.png │ │ ├── icon48@2x.png │ │ ├── icon512@2x.png │ │ ├── icon64@2x.png │ │ ├── icon_green.png │ │ ├── logo_256.png │ │ ├── mac_setup.tiff │ │ ├── slot_back.tgs │ │ ├── slot_pull.tgs │ │ ├── themeimage.jpg │ │ ├── bg_thumbnail.png │ │ ├── slot_0_idle.tgs │ │ ├── slot_1_idle.tgs │ │ ├── slot_2_idle.tgs │ │ ├── iconbig_green.png │ │ └── logo_256_no_margin.png │ ├── emoji │ │ ├── emoji_1.webp │ │ ├── emoji_2.webp │ │ ├── emoji_3.webp │ │ ├── emoji_4.webp │ │ ├── emoji_5.webp │ │ ├── emoji_6.webp │ │ ├── emoji_7.webp │ │ ├── set0_preview.webp │ │ ├── set1_preview.webp │ │ ├── set2_preview.webp │ │ └── set3_preview.webp │ ├── icons │ │ ├── menu │ │ │ ├── gif.png │ │ │ ├── pin.png │ │ │ ├── admin.png │ │ │ ├── block.png │ │ │ ├── clear.png │ │ │ ├── copy.png │ │ │ ├── drugs.png │ │ │ ├── edit.png │ │ │ ├── fake.png │ │ │ ├── file.png │ │ │ ├── flip.png │ │ │ ├── image.png │ │ │ ├── info.png │ │ │ ├── leave.png │ │ │ ├── link.png │ │ │ ├── mute.png │ │ │ ├── porn.png │ │ │ ├── read.png │ │ │ ├── reply.png │ │ │ ├── send.png │ │ │ ├── share.png │ │ │ ├── unpin.png │ │ │ ├── admin@2x.png │ │ │ ├── admin@3x.png │ │ │ ├── archive.png │ │ │ ├── block@2x.png │ │ │ ├── block@3x.png │ │ │ ├── calendar.png │ │ │ ├── cancel.png │ │ │ ├── clear@2x.png │ │ │ ├── clear@3x.png │ │ │ ├── collapse.png │ │ │ ├── colors.png │ │ │ ├── copy@2x.png │ │ │ ├── copy@3x.png │ │ │ ├── delete.png │ │ │ ├── disable.png │ │ │ ├── download.png │ │ │ ├── drugs@2x.png │ │ │ ├── drugs@3x.png │ │ │ ├── edit@2x.png │ │ │ ├── edit@3x.png │ │ │ ├── expand.png │ │ │ ├── export.png │ │ │ ├── fake@2x.png │ │ │ ├── fake@3x.png │ │ │ ├── favorite.png │ │ │ ├── file@2x.png │ │ │ ├── file@3x.png │ │ │ ├── flip@2x.png │ │ │ ├── flip@3x.png │ │ │ ├── forward.png │ │ │ ├── gif@2x.png │ │ │ ├── gif@3x.png │ │ │ ├── image@2x.png │ │ │ ├── image@3x.png │ │ │ ├── info@2x.png │ │ │ ├── info@3x.png │ │ │ ├── invite.png │ │ │ ├── leave@2x.png │ │ │ ├── leave@3x.png │ │ │ ├── link@2x.png │ │ │ ├── link@3x.png │ │ │ ├── manage.png │ │ │ ├── mute@2x.png │ │ │ ├── mute@3x.png │ │ │ ├── mute_for.png │ │ │ ├── palette.png │ │ │ ├── personal.png │ │ │ ├── pin@2x.png │ │ │ ├── pin@3x.png │ │ │ ├── porn@2x.png │ │ │ ├── porn@3x.png │ │ │ ├── profile.png │ │ │ ├── qr_code.png │ │ │ ├── read@2x.png │ │ │ ├── read@3x.png │ │ │ ├── reply@2x.png │ │ │ ├── reply@3x.png │ │ │ ├── report.png │ │ │ ├── restore.png │ │ │ ├── search.png │ │ │ ├── select.png │ │ │ ├── send@2x.png │ │ │ ├── send@3x.png │ │ │ ├── settings.png │ │ │ ├── share2.png │ │ │ ├── share@2x.png │ │ │ ├── share@3x.png │ │ │ ├── silent.png │ │ │ ├── stickers.png │ │ │ ├── unblock.png │ │ │ ├── unmute.png │ │ │ ├── unpin@2x.png │ │ │ ├── unpin@3x.png │ │ │ ├── unread.png │ │ │ ├── violence.png │ │ │ ├── all_media.png │ │ │ ├── archive@2x.png │ │ │ ├── archive@3x.png │ │ │ ├── cancel@2x.png │ │ │ ├── cancel@3x.png │ │ │ ├── colors@2x.png │ │ │ ├── colors@3x.png │ │ │ ├── copyright.png │ │ │ ├── customize.png │ │ │ ├── delete@2x.png │ │ │ ├── delete@3x.png │ │ │ ├── disable@2x.png │ │ │ ├── disable@3x.png │ │ │ ├── discussion.png │ │ │ ├── expand@2x.png │ │ │ ├── expand@3x.png │ │ │ ├── export@2x.png │ │ │ ├── export@3x.png │ │ │ ├── forward@2x.png │ │ │ ├── forward@3x.png │ │ │ ├── invite@2x.png │ │ │ ├── invite@3x.png │ │ │ ├── manage@2x.png │ │ │ ├── manage@3x.png │ │ │ ├── palette@2x.png │ │ │ ├── palette@3x.png │ │ │ ├── profile@2x.png │ │ │ ├── profile@3x.png │ │ │ ├── qr_code@2x.png │ │ │ ├── qr_code@3x.png │ │ │ ├── read_audio.png │ │ │ ├── read_ticks.png │ │ │ ├── report@2x.png │ │ │ ├── report@3x.png │ │ │ ├── reschedule.png │ │ │ ├── restore@2x.png │ │ │ ├── restore@3x.png │ │ │ ├── save_image.png │ │ │ ├── search@2x.png │ │ │ ├── search@3x.png │ │ │ ├── select@2x.png │ │ │ ├── select@3x.png │ │ │ ├── share2@2x.png │ │ │ ├── share2@3x.png │ │ │ ├── silent@2x.png │ │ │ ├── silent@3x.png │ │ │ ├── sound_add.png │ │ │ ├── stop_poll.png │ │ │ ├── unarchive.png │ │ │ ├── unblock@2x.png │ │ │ ├── unblock@3x.png │ │ │ ├── unfavorite.png │ │ │ ├── unmute@2x.png │ │ │ ├── unmute@3x.png │ │ │ ├── unread@2x.png │ │ │ ├── unread@3x.png │ │ │ ├── add_account.png │ │ │ ├── add_to_folder.png │ │ │ ├── admin_promote.png │ │ │ ├── all_media@2x.png │ │ │ ├── all_media@3x.png │ │ │ ├── auto_delete.png │ │ │ ├── calendar@2x.png │ │ │ ├── calendar@3x.png │ │ │ ├── collapse@2x.png │ │ │ ├── collapse@3x.png │ │ │ ├── copyright@2x.png │ │ │ ├── copyright@3x.png │ │ │ ├── create_poll.png │ │ │ ├── customize@2x.png │ │ │ ├── customize@3x.png │ │ │ ├── discussion@2x.png │ │ │ ├── discussion@3x.png │ │ │ ├── download@2x.png │ │ │ ├── download@3x.png │ │ │ ├── export_theme.png │ │ │ ├── favorite@2x.png │ │ │ ├── favorite@3x.png │ │ │ ├── gift_premium.png │ │ │ ├── import_theme.png │ │ │ ├── move_to_menu.png │ │ │ ├── mute_for@2x.png │ │ │ ├── mute_for@3x.png │ │ │ ├── permissions.png │ │ │ ├── personal@2x.png │ │ │ ├── personal@3x.png │ │ │ ├── read_audio@2x.png │ │ │ ├── read_audio@3x.png │ │ │ ├── read_ticks@2x.png │ │ │ ├── read_ticks@3x.png │ │ │ ├── reschedule@2x.png │ │ │ ├── reschedule@3x.png │ │ │ ├── restart_bot.png │ │ │ ├── retract_vote.png │ │ │ ├── save_image@2x.png │ │ │ ├── save_image@3x.png │ │ │ ├── settings@2x.png │ │ │ ├── settings@3x.png │ │ │ ├── show_in_chat.png │ │ │ ├── sound_add@2x.png │ │ │ ├── sound_add@3x.png │ │ │ ├── sound_disable.png │ │ │ ├── sound_enable.png │ │ │ ├── sound_select.png │ │ │ ├── start_stream.png │ │ │ ├── stickers@2x.png │ │ │ ├── stickers@3x.png │ │ │ ├── stop_poll@2x.png │ │ │ ├── stop_poll@3x.png │ │ │ ├── submenu_arrow.png │ │ │ ├── unarchive@2x.png │ │ │ ├── unarchive@3x.png │ │ │ ├── unfavorite@2x.png │ │ │ ├── unfavorite@3x.png │ │ │ ├── view_replies.png │ │ │ ├── violence@2x.png │ │ │ ├── violence@3x.png │ │ │ ├── add_account@2x.png │ │ │ ├── add_account@3x.png │ │ │ ├── auto_delete@2x.png │ │ │ ├── auto_delete@3x.png │ │ │ ├── create_poll@2x.png │ │ │ ├── create_poll@3x.png │ │ │ ├── export_theme@2x.png │ │ │ ├── export_theme@3x.png │ │ │ ├── gift_premium@2x.png │ │ │ ├── gift_premium@3x.png │ │ │ ├── import_theme@2x.png │ │ │ ├── import_theme@3x.png │ │ │ ├── move_from_menu.png │ │ │ ├── move_to_menu@2x.png │ │ │ ├── move_to_menu@3x.png │ │ │ ├── mute_for_plain.png │ │ │ ├── permissions@2x.png │ │ │ ├── permissions@3x.png │ │ │ ├── read_reactions.png │ │ │ ├── restart_bot@2x.png │ │ │ ├── restart_bot@3x.png │ │ │ ├── retract_vote@2x.png │ │ │ ├── retract_vote@3x.png │ │ │ ├── show_in_chat@2x.png │ │ │ ├── show_in_chat@3x.png │ │ │ ├── show_in_folder.png │ │ │ ├── sound_enable@2x.png │ │ │ ├── sound_enable@3x.png │ │ │ ├── sound_select@2x.png │ │ │ ├── sound_select@3x.png │ │ │ ├── start_stream@2x.png │ │ │ ├── start_stream@3x.png │ │ │ ├── view_replies@2x.png │ │ │ └── view_replies@3x.png │ │ ├── monitor.png │ │ ├── proxy_on.png │ │ ├── fast_share.png │ │ ├── intro_left.png │ │ ├── map_point.png │ │ ├── media_play.png │ │ ├── monitor@2x.png │ │ ├── monitor@3x.png │ │ ├── proxy_off.png │ │ ├── quiz_timer.png │ │ ├── title_back.png │ │ ├── toast_info.png │ │ ├── account_check.png │ │ ├── bubble_tail.png │ │ ├── calendar_down.png │ │ ├── fast_comments.png │ │ ├── fast_share@2x.png │ │ ├── fast_share@3x.png │ │ ├── history_pin.png │ │ ├── history_sent.png │ │ ├── history_views.png │ │ ├── intro_left@2x.png │ │ ├── intro_left@3x.png │ │ ├── intro_right.png │ │ ├── limits │ │ │ ├── chats.png │ │ │ ├── files.png │ │ │ ├── groups.png │ │ │ ├── links.png │ │ │ ├── pins.png │ │ │ ├── accounts.png │ │ │ ├── chats@2x.png │ │ │ ├── chats@3x.png │ │ │ ├── files@2x.png │ │ │ ├── files@3x.png │ │ │ ├── folders.png │ │ │ ├── links@2x.png │ │ │ ├── links@3x.png │ │ │ ├── pins@2x.png │ │ │ ├── pins@3x.png │ │ │ ├── accounts@2x.png │ │ │ ├── accounts@3x.png │ │ │ ├── folders@2x.png │ │ │ ├── folders@3x.png │ │ │ ├── groups@2x.png │ │ │ └── groups@3x.png │ │ ├── mac_tray_icon.png │ │ ├── map_point@2x.png │ │ ├── map_point@3x.png │ │ ├── media_pause.png │ │ ├── media_play@2x.png │ │ ├── media_play@3x.png │ │ ├── menu_settings.png │ │ ├── menu_shadow.png │ │ ├── proxy_off@2x.png │ │ ├── proxy_off@3x.png │ │ ├── proxy_on@2x.png │ │ ├── proxy_on@3x.png │ │ ├── quiz_explain.png │ │ ├── quiz_timer@2x.png │ │ ├── quiz_timer@3x.png │ │ ├── settings │ │ │ ├── add.png │ │ │ ├── chat.png │ │ │ ├── dock.png │ │ │ ├── faq.png │ │ │ ├── key.png │ │ │ ├── lock.png │ │ │ ├── pin.png │ │ │ ├── plus.png │ │ │ ├── tips.png │ │ │ ├── user.png │ │ │ ├── add@2x.png │ │ │ ├── add@3x.png │ │ │ ├── arrows.png │ │ │ ├── calls.png │ │ │ ├── email.png │ │ │ ├── emoji.png │ │ │ ├── faq@2x.png │ │ │ ├── faq@3x.png │ │ │ ├── group.png │ │ │ ├── key@2x.png │ │ │ ├── key@3x.png │ │ │ ├── laptop.png │ │ │ ├── minus.png │ │ │ ├── night.png │ │ │ ├── online.png │ │ │ ├── photo.png │ │ │ ├── pin@2x.png │ │ │ ├── pin@3x.png │ │ │ ├── reload.png │ │ │ ├── remove.png │ │ │ ├── sound.png │ │ │ ├── timer.png │ │ │ ├── account.png │ │ │ ├── advanced.png │ │ │ ├── archive.png │ │ │ ├── arrows@2x.png │ │ │ ├── arrows@3x.png │ │ │ ├── blocked.png │ │ │ ├── calls@2x.png │ │ │ ├── calls@3x.png │ │ │ ├── channel.png │ │ │ ├── chat@2x.png │ │ │ ├── chat@3x.png │ │ │ ├── dock@2x.png │ │ │ ├── dock@3x.png │ │ │ ├── download.png │ │ │ ├── email@2x.png │ │ │ ├── email@3x.png │ │ │ ├── emoji@2x.png │ │ │ ├── emoji@3x.png │ │ │ ├── folders.png │ │ │ ├── forward.png │ │ │ ├── group@2x.png │ │ │ ├── group@3x.png │ │ │ ├── language.png │ │ │ ├── laptop@2x.png │ │ │ ├── laptop@3x.png │ │ │ ├── lock@2x.png │ │ │ ├── lock@3x.png │ │ │ ├── mention.png │ │ │ ├── minus@2x.png │ │ │ ├── minus@3x.png │ │ │ ├── night@2x.png │ │ │ ├── night@3x.png │ │ │ ├── online@2x.png │ │ │ ├── online@3x.png │ │ │ ├── palette.png │ │ │ ├── photo@2x.png │ │ │ ├── photo@3x.png │ │ │ ├── plus@2x.png │ │ │ ├── plus@3x.png │ │ │ ├── position.png │ │ │ ├── reload@2x.png │ │ │ ├── reload@3x.png │ │ │ ├── remove@2x.png │ │ │ ├── remove@3x.png │ │ │ ├── settings.png │ │ │ ├── sound@2x.png │ │ │ ├── sound@3x.png │ │ │ ├── stickers.png │ │ │ ├── timer@2x.png │ │ │ ├── timer@3x.png │ │ │ ├── tips@2x.png │ │ │ ├── tips@3x.png │ │ │ ├── user@2x.png │ │ │ └── user@3x.png │ │ ├── theme_preview.png │ │ ├── title_back@2x.png │ │ ├── title_back@3x.png │ │ ├── title_search.png │ │ ├── toast_info@2x.png │ │ ├── toast_info@3x.png │ │ ├── top_bar_call.png │ │ ├── volume_mute.png │ │ ├── window_shadow.png │ │ ├── archive_userpic.png │ │ ├── bubble_tail@2x.png │ │ ├── bubble_tail@3x.png │ │ ├── chat │ │ │ ├── input_edit.png │ │ │ ├── input_save.png │ │ │ ├── input_send.png │ │ │ ├── input_attach.png │ │ │ ├── input_edit@2x.png │ │ │ ├── input_edit@3x.png │ │ │ ├── input_forward.png │ │ │ ├── input_record.png │ │ │ ├── input_reply.png │ │ │ ├── input_save@2x.png │ │ │ ├── input_save@3x.png │ │ │ ├── input_send@2x.png │ │ │ ├── input_send@3x.png │ │ │ ├── input_silent.png │ │ │ ├── voice_to_text.png │ │ │ ├── input_attach@2x.png │ │ │ ├── input_attach@3x.png │ │ │ ├── input_record@2x.png │ │ │ ├── input_record@3x.png │ │ │ ├── input_reply@2x.png │ │ │ ├── input_reply@3x.png │ │ │ ├── input_schedule.png │ │ │ ├── input_scheduled.png │ │ │ ├── input_silent@2x.png │ │ │ ├── input_silent@3x.png │ │ │ └── input_silent_on.png │ │ ├── connecting_body.png │ │ ├── connecting_left.png │ │ ├── contacts_online.png │ │ ├── history_pin@2x.png │ │ ├── history_pin@3x.png │ │ ├── history_replies.png │ │ ├── history_sent@2x.png │ │ ├── history_sent@3x.png │ │ ├── info │ │ │ ├── info_back.png │ │ │ ├── info_block.png │ │ │ ├── info_close.png │ │ │ ├── info_edit.png │ │ │ ├── info_leave.png │ │ │ ├── info_share.png │ │ │ ├── edit │ │ │ │ ├── dotsmini.png │ │ │ │ ├── links_copy.png │ │ │ │ └── links_link.png │ │ │ ├── info_back@2x.png │ │ │ ├── info_back@3x.png │ │ │ ├── info_block@2x.png │ │ │ ├── info_block@3x.png │ │ │ ├── info_close@2x.png │ │ │ ├── info_close@3x.png │ │ │ ├── info_delete.png │ │ │ ├── info_edit@2x.png │ │ │ ├── info_edit@3x.png │ │ │ ├── info_leave@2x.png │ │ │ ├── info_leave@3x.png │ │ │ ├── info_members.png │ │ │ ├── info_report.png │ │ │ ├── info_search.png │ │ │ ├── info_share@2x.png │ │ │ ├── info_share@3x.png │ │ │ ├── info_add_member.png │ │ │ ├── info_delete@2x.png │ │ │ ├── info_delete@3x.png │ │ │ ├── info_media_file.png │ │ │ ├── info_media_gif.png │ │ │ ├── info_media_link.png │ │ │ ├── info_members@2x.png │ │ │ ├── info_members@3x.png │ │ │ ├── info_report@2x.png │ │ │ ├── info_report@3x.png │ │ │ ├── info_search@2x.png │ │ │ └── info_search@3x.png │ │ ├── install_update.png │ │ ├── intro_plane_top.png │ │ ├── intro_qr_plane.png │ │ ├── intro_right@2x.png │ │ ├── intro_right@3x.png │ │ ├── map_point_inner.png │ │ ├── media_pause@2x.png │ │ ├── media_pause@3x.png │ │ ├── mediaview_close.png │ │ ├── mediaview_more.png │ │ ├── mediaview_next.png │ │ ├── menu_shadow@2x.png │ │ ├── menu_shadow@3x.png │ │ ├── new_chat_photo.png │ │ ├── passport_empty.png │ │ ├── passport_ready.png │ │ ├── pinned_show_all.png │ │ ├── profile_premium.png │ │ ├── quiz_explain@2x.png │ │ ├── quiz_explain@3x.png │ │ ├── replies_userpic.png │ │ ├── stickers_empty.png │ │ ├── title_search@2x.png │ │ ├── title_search@3x.png │ │ ├── top_bar_call@2x.png │ │ ├── top_bar_call@3x.png │ │ ├── top_bar_profile.png │ │ ├── top_bar_search.png │ │ ├── volume_mute@2x.png │ │ ├── volume_mute@3x.png │ │ ├── account_check@2x.png │ │ ├── account_check@3x.png │ │ ├── archive_userpic@2x.png │ │ ├── archive_userpic@3x.png │ │ ├── calendar_down@2x.png │ │ ├── calendar_down@3x.png │ │ ├── calls │ │ │ ├── call_answer.png │ │ │ ├── call_cancel.png │ │ │ ├── call_discard.png │ │ │ ├── call_rating.png │ │ │ ├── calls_more.png │ │ │ ├── navbar_pin.png │ │ │ ├── video_back.png │ │ │ ├── call_answer@2x.png │ │ │ ├── call_answer@3x.png │ │ │ ├── call_arrow_in.png │ │ │ ├── call_arrow_out.png │ │ │ ├── call_cancel@2x.png │ │ │ ├── call_cancel@3x.png │ │ │ ├── call_rating@2x.png │ │ │ ├── call_rating@3x.png │ │ │ ├── calls_more@2x.png │ │ │ ├── calls_more@3x.png │ │ │ ├── calls_present.png │ │ │ ├── calls_settings.png │ │ │ ├── navbar_pin@2x.png │ │ │ ├── navbar_pin@3x.png │ │ │ ├── video_back@2x.png │ │ │ ├── video_back@3x.png │ │ │ ├── video_over_pin.png │ │ │ ├── video_tooltip.png │ │ │ └── volume │ │ │ │ └── speaker.png │ │ ├── color_slider_arrow.png │ │ ├── connecting_body@2x.png │ │ ├── connecting_body@3x.png │ │ ├── connecting_left@2x.png │ │ ├── connecting_left@3x.png │ │ ├── connecting_right.png │ │ ├── contacts_alphabet.png │ │ ├── contacts_online@2x.png │ │ ├── contacts_online@3x.png │ │ ├── emoji │ │ │ ├── emoji_delete.png │ │ │ ├── emoji_faved.png │ │ │ ├── emoji_food.png │ │ │ ├── emoji_nature.png │ │ │ ├── emoji_people.png │ │ │ ├── emoji_recent.png │ │ │ ├── emoji_switch.png │ │ │ ├── emoji_travel.png │ │ │ ├── premium_lock.png │ │ │ ├── stickers_add.png │ │ │ ├── emoji_activity.png │ │ │ ├── emoji_faved@2x.png │ │ │ ├── emoji_faved@3x.png │ │ │ ├── emoji_food@2x.png │ │ │ ├── emoji_food@3x.png │ │ │ ├── emoji_objects.png │ │ │ ├── emoji_settings.png │ │ │ └── emoji_symbols.png │ │ ├── fast_comments@2x.png │ │ ├── fast_comments@3x.png │ │ ├── fast_to_original.png │ │ ├── history_comments.png │ │ ├── history_down_arrow.png │ │ ├── history_file_image.png │ │ ├── history_file_pause.png │ │ ├── history_file_play.png │ │ ├── history_received.png │ │ ├── history_replies@2x.png │ │ ├── history_replies@3x.png │ │ ├── history_views@2x.png │ │ ├── history_views@3x.png │ │ ├── inline_button_card.png │ │ ├── inline_button_url.png │ │ ├── inline_button_web.png │ │ ├── install_update@2x.png │ │ ├── install_update@3x.png │ │ ├── intro_plane_inner.png │ │ ├── intro_plane_outer.png │ │ ├── intro_plane_top@2x.png │ │ ├── intro_plane_top@3x.png │ │ ├── intro_plane_trace.png │ │ ├── intro_qr_plane@2x.png │ │ ├── intro_qr_plane@3x.png │ │ ├── mac_tray_icon@2x.png │ │ ├── mac_tray_icon@3x.png │ │ ├── map_point_inner@2x.png │ │ ├── map_point_inner@3x.png │ │ ├── media_video_play.png │ │ ├── media_youtube_play.png │ │ ├── mediaview_close@2x.png │ │ ├── mediaview_close@3x.png │ │ ├── mediaview_download.png │ │ ├── mediaview_more@2x.png │ │ ├── mediaview_more@3x.png │ │ ├── mediaview_next@2x.png │ │ ├── mediaview_next@3x.png │ │ ├── mediaview_rotate.png │ │ ├── menu_settings@2x.png │ │ ├── menu_settings@3x.png │ │ ├── new_chat_photo@2x.png │ │ ├── new_chat_photo@3x.png │ │ ├── notification_send.png │ │ ├── passport_authorize.png │ │ ├── passport_empty@2x.png │ │ ├── passport_empty@3x.png │ │ ├── passport_ready@2x.png │ │ ├── passport_ready@3x.png │ │ ├── photo_editor │ │ │ ├── flip.png │ │ │ ├── paint.png │ │ │ └── undo.png │ │ ├── pinned_show_all@2x.png │ │ ├── pinned_show_all@3x.png │ │ ├── player │ │ │ ├── panel_close.png │ │ │ ├── player_more.png │ │ │ ├── player_pip.png │ │ │ └── player_play.png │ │ ├── poll_choice_right.png │ │ ├── poll_choice_wrong.png │ │ ├── poll_select_check.png │ │ ├── profile_add_member.png │ │ ├── profile_premium@2x.png │ │ ├── profile_premium@3x.png │ │ ├── replies_userpic@2x.png │ │ ├── replies_userpic@3x.png │ │ ├── stickers_empty@2x.png │ │ ├── stickers_empty@3x.png │ │ ├── stickers_reorder.png │ │ ├── theme_preview@2x.png │ │ ├── theme_preview@3x.png │ │ ├── top_bar_group_call.png │ │ ├── top_bar_profile@2x.png │ │ ├── top_bar_profile@3x.png │ │ ├── top_bar_search@2x.png │ │ ├── top_bar_search@3x.png │ │ ├── upload_chat_photo.png │ │ ├── window_shadow@2x.png │ │ ├── window_shadow@3x.png │ │ ├── connecting_right@2x.png │ │ ├── connecting_right@3x.png │ │ ├── contacts_alphabet@2x.png │ │ ├── contacts_alphabet@3x.png │ │ ├── dialogs │ │ │ ├── dialogs_bot.png │ │ │ ├── dialogs_chat.png │ │ │ ├── dialogs_lock.png │ │ │ ├── dialogs_menu.png │ │ │ └── dialogs_sent.png │ │ ├── fast_to_original@2x.png │ │ ├── fast_to_original@3x.png │ │ ├── folders │ │ │ ├── folders_all.png │ │ │ ├── folders_book.png │ │ │ ├── folders_bots.png │ │ │ ├── folders_cat.png │ │ │ ├── folders_edit.png │ │ │ ├── folders_game.png │ │ │ ├── folders_home.png │ │ │ ├── folders_like.png │ │ │ ├── folders_love.png │ │ │ ├── folders_mask.png │ │ │ ├── folders_note.png │ │ │ ├── folders_poo.png │ │ │ └── folders_work.png │ │ ├── history_audio_cancel.png │ │ ├── history_comments@2x.png │ │ ├── history_comments@3x.png │ │ ├── history_down_circle.png │ │ ├── history_down_shadow.png │ │ ├── history_file_cancel.png │ │ ├── history_file_play@2x.png │ │ ├── history_file_play@3x.png │ │ ├── history_received@2x.png │ │ ├── history_received@3x.png │ │ ├── inline_button_switch.png │ │ ├── inline_button_url@2x.png │ │ ├── inline_button_url@3x.png │ │ ├── inline_button_web@2x.png │ │ ├── inline_button_web@3x.png │ │ ├── intro_plane_inner@2x.png │ │ ├── intro_plane_inner@3x.png │ │ ├── intro_plane_outer@2x.png │ │ ├── intro_plane_outer@3x.png │ │ ├── intro_plane_trace@2x.png │ │ ├── intro_plane_trace@3x.png │ │ ├── media_fullscreen_to.png │ │ ├── media_video_play@2x.png │ │ ├── media_video_play@3x.png │ │ ├── media_video_play_bg.png │ │ ├── mediaview_rotate@2x.png │ │ ├── mediaview_rotate@3x.png │ │ ├── mediaview_save_check.png │ │ └── message_psa_tooltip.png │ ├── night.tdesktop-theme │ ├── sounds │ │ ├── call_busy.mp3 │ │ ├── call_end.mp3 │ │ ├── call_connect.mp3 │ │ ├── msg_incoming.mp3 │ │ ├── call_incoming.mp3 │ │ ├── call_outgoing.mp3 │ │ ├── group_call_end.mp3 │ │ └── group_call_start.mp3 │ ├── animations │ │ ├── filters.tgs │ │ └── change_number.tgs │ ├── day-blue.tdesktop-theme │ ├── export_html │ │ └── images │ │ │ ├── back.png │ │ │ └── back@2x.png │ ├── night-green.tdesktop-theme │ └── day-custom-base.tdesktop-theme └── r.sh └── docs └── assets └── preview.png /Telegram/SetupFiles/data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Telegram/SetupFiles/log.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Telegram/SourceFiles/overview/overview_mosaic_layout.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Telegram/SourceFiles/inline_bots/inline_results_mosaic_layout.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Telegram/build/docker/centos_env/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /Telegram/build/docker/centos_env/centos_env/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/assets/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/docs/assets/preview.png -------------------------------------------------------------------------------- /Telegram/Resources/art/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/favicon.ico -------------------------------------------------------------------------------- /Telegram/Resources/art/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/icon128.png -------------------------------------------------------------------------------- /Telegram/Resources/art/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/icon16.png -------------------------------------------------------------------------------- /Telegram/Resources/art/icon256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/icon256.ico -------------------------------------------------------------------------------- /Telegram/Resources/art/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/icon256.png -------------------------------------------------------------------------------- /Telegram/Resources/art/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/icon32.png -------------------------------------------------------------------------------- /Telegram/Resources/art/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/icon48.png -------------------------------------------------------------------------------- /Telegram/Resources/art/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/icon512.png -------------------------------------------------------------------------------- /Telegram/Resources/art/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/icon64.png -------------------------------------------------------------------------------- /Telegram/Resources/art/background.tgv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/background.tgv -------------------------------------------------------------------------------- /Telegram/Resources/art/bball_idle.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/bball_idle.tgs -------------------------------------------------------------------------------- /Telegram/Resources/art/bg_initial.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/bg_initial.jpg -------------------------------------------------------------------------------- /Telegram/Resources/art/dart_idle.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/dart_idle.tgs -------------------------------------------------------------------------------- /Telegram/Resources/art/dice_idle.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/dice_idle.tgs -------------------------------------------------------------------------------- /Telegram/Resources/art/fball_idle.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/fball_idle.tgs -------------------------------------------------------------------------------- /Telegram/Resources/art/icon128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/icon128@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/art/icon16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/icon16@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/art/icon256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/icon256@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/art/icon32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/icon32@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/art/icon48@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/icon48@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/art/icon512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/icon512@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/art/icon64@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/icon64@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/art/icon_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/icon_green.png -------------------------------------------------------------------------------- /Telegram/Resources/art/logo_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/logo_256.png -------------------------------------------------------------------------------- /Telegram/Resources/art/mac_setup.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/mac_setup.tiff -------------------------------------------------------------------------------- /Telegram/Resources/art/slot_back.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/slot_back.tgs -------------------------------------------------------------------------------- /Telegram/Resources/art/slot_pull.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/slot_pull.tgs -------------------------------------------------------------------------------- /Telegram/Resources/art/themeimage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/themeimage.jpg -------------------------------------------------------------------------------- /Telegram/Resources/emoji/emoji_1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/emoji/emoji_1.webp -------------------------------------------------------------------------------- /Telegram/Resources/emoji/emoji_2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/emoji/emoji_2.webp -------------------------------------------------------------------------------- /Telegram/Resources/emoji/emoji_3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/emoji/emoji_3.webp -------------------------------------------------------------------------------- /Telegram/Resources/emoji/emoji_4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/emoji/emoji_4.webp -------------------------------------------------------------------------------- /Telegram/Resources/emoji/emoji_5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/emoji/emoji_5.webp -------------------------------------------------------------------------------- /Telegram/Resources/emoji/emoji_6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/emoji/emoji_6.webp -------------------------------------------------------------------------------- /Telegram/Resources/emoji/emoji_7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/emoji/emoji_7.webp -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/gif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/gif.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/pin.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/monitor.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/proxy_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/proxy_on.png -------------------------------------------------------------------------------- /Telegram/Resources/art/bg_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/bg_thumbnail.png -------------------------------------------------------------------------------- /Telegram/Resources/art/slot_0_idle.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/slot_0_idle.tgs -------------------------------------------------------------------------------- /Telegram/Resources/art/slot_1_idle.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/slot_1_idle.tgs -------------------------------------------------------------------------------- /Telegram/Resources/art/slot_2_idle.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/slot_2_idle.tgs -------------------------------------------------------------------------------- /Telegram/Resources/icons/fast_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/fast_share.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/intro_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/intro_left.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/map_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/map_point.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/media_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/media_play.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/admin.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/block.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/clear.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/copy.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/drugs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/drugs.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/edit.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/fake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/fake.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/file.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/flip.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/image.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/info.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/leave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/leave.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/link.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/mute.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/porn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/porn.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/read.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/reply.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/send.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/share.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/unpin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/unpin.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/monitor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/monitor@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/monitor@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/monitor@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/proxy_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/proxy_off.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/quiz_timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/quiz_timer.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/title_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/title_back.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/toast_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/toast_info.png -------------------------------------------------------------------------------- /Telegram/Resources/night.tdesktop-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/night.tdesktop-theme -------------------------------------------------------------------------------- /Telegram/Resources/sounds/call_busy.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/sounds/call_busy.mp3 -------------------------------------------------------------------------------- /Telegram/Resources/sounds/call_end.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/sounds/call_end.mp3 -------------------------------------------------------------------------------- /Telegram/Resources/animations/filters.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/animations/filters.tgs -------------------------------------------------------------------------------- /Telegram/Resources/art/iconbig_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/iconbig_green.png -------------------------------------------------------------------------------- /Telegram/Resources/day-blue.tdesktop-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/day-blue.tdesktop-theme -------------------------------------------------------------------------------- /Telegram/Resources/emoji/set0_preview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/emoji/set0_preview.webp -------------------------------------------------------------------------------- /Telegram/Resources/emoji/set1_preview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/emoji/set1_preview.webp -------------------------------------------------------------------------------- /Telegram/Resources/emoji/set2_preview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/emoji/set2_preview.webp -------------------------------------------------------------------------------- /Telegram/Resources/emoji/set3_preview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/emoji/set3_preview.webp -------------------------------------------------------------------------------- /Telegram/Resources/icons/account_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/account_check.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/bubble_tail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/bubble_tail.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/calendar_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/calendar_down.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/fast_comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/fast_comments.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/fast_share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/fast_share@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/fast_share@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/fast_share@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/history_pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/history_pin.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/history_sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/history_sent.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/history_views.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/history_views.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/intro_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/intro_left@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/intro_left@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/intro_left@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/intro_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/intro_right.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/limits/chats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/limits/chats.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/limits/files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/limits/files.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/limits/groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/limits/groups.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/limits/links.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/limits/links.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/limits/pins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/limits/pins.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/mac_tray_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/mac_tray_icon.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/map_point@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/map_point@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/map_point@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/map_point@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/media_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/media_pause.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/media_play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/media_play@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/media_play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/media_play@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/admin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/admin@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/admin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/admin@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/archive.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/block@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/block@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/block@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/block@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/calendar.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/cancel.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/clear@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/clear@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/clear@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/clear@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/collapse.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/colors.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/copy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/copy@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/copy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/copy@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/delete.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/disable.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/download.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/drugs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/drugs@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/drugs@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/drugs@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/edit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/edit@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/edit@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/edit@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/expand.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/export.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/fake@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/fake@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/fake@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/fake@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/favorite.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/file@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/file@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/file@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/file@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/flip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/flip@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/flip@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/flip@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/forward.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/gif@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/gif@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/gif@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/gif@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/image@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/image@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/image@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/info@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/info@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/info@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/invite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/invite.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/leave@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/leave@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/leave@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/leave@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/link@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/link@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/link@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/link@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/manage.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/mute@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/mute@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/mute@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/mute@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/mute_for.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/mute_for.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/palette.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/personal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/personal.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/pin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/pin@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/pin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/pin@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/porn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/porn@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/porn@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/porn@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/profile.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/qr_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/qr_code.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/read@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/read@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/read@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/read@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/reply@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/reply@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/reply@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/reply@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/report.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/restore.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/search.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/select.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/send@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/send@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/send@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/send@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/settings.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/share2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/share2.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/share@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/share@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/share@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/silent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/silent.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/stickers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/stickers.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/unblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/unblock.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/unmute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/unmute.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/unpin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/unpin@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/unpin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/unpin@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/unread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/unread.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/violence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/violence.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu_settings.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu_shadow.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/proxy_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/proxy_off@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/proxy_off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/proxy_off@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/proxy_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/proxy_on@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/proxy_on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/proxy_on@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/quiz_explain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/quiz_explain.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/quiz_timer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/quiz_timer@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/quiz_timer@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/quiz_timer@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/add.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/chat.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/dock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/dock.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/faq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/faq.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/key.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/lock.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/pin.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/plus.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/tips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/tips.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/user.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/theme_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/theme_preview.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/title_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/title_back@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/title_back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/title_back@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/title_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/title_search.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/toast_info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/toast_info@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/toast_info@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/toast_info@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/top_bar_call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/top_bar_call.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/volume_mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/volume_mute.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/window_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/window_shadow.png -------------------------------------------------------------------------------- /Telegram/Resources/sounds/call_connect.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/sounds/call_connect.mp3 -------------------------------------------------------------------------------- /Telegram/Resources/sounds/msg_incoming.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/sounds/msg_incoming.mp3 -------------------------------------------------------------------------------- /Telegram/r.sh: -------------------------------------------------------------------------------- 1 | ./configure.sh -D TDESKTOP_API_ID=56234 -D TDESKTOP_API_HASH=a797f14a68bf44dd6a5ff65d2e1af0c2 -D DESKTOP_APP_USE_PACKAGED=OFF 2 | 3 | -------------------------------------------------------------------------------- /Telegram/Resources/icons/archive_userpic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/archive_userpic.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/bubble_tail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/bubble_tail@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/bubble_tail@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/bubble_tail@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/chat/input_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/chat/input_edit.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/chat/input_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/chat/input_save.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/chat/input_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/chat/input_send.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/connecting_body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/connecting_body.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/connecting_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/connecting_left.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/contacts_online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/contacts_online.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/history_pin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/history_pin@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/history_pin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/history_pin@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/history_replies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/history_replies.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/history_sent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/history_sent@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/history_sent@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/history_sent@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_back.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_block.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_close.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_edit.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_leave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_leave.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_share.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/install_update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/install_update.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/intro_plane_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/intro_plane_top.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/intro_qr_plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/intro_qr_plane.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/intro_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/intro_right@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/intro_right@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/intro_right@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/limits/accounts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/limits/accounts.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/limits/chats@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/limits/chats@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/limits/chats@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/limits/chats@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/limits/files@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/limits/files@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/limits/files@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/limits/files@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/limits/folders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/limits/folders.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/limits/links@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/limits/links@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/limits/links@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/limits/links@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/limits/pins@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/limits/pins@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/limits/pins@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/limits/pins@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/map_point_inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/map_point_inner.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/media_pause@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/media_pause@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/media_pause@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/media_pause@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/mediaview_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/mediaview_close.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/mediaview_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/mediaview_more.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/mediaview_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/mediaview_next.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/all_media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/all_media.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/archive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/archive@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/archive@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/archive@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/cancel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/cancel@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/cancel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/cancel@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/colors@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/colors@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/colors@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/colors@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/copyright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/copyright.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/customize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/customize.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/delete@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/delete@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/delete@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/disable@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/disable@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/disable@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/disable@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/discussion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/discussion.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/expand@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/expand@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/expand@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/expand@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/export@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/export@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/export@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/export@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/forward@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/forward@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/forward@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/forward@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/invite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/invite@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/invite@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/invite@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/manage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/manage@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/manage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/manage@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/palette@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/palette@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/palette@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/palette@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/profile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/profile@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/profile@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/profile@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/qr_code@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/qr_code@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/qr_code@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/qr_code@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/read_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/read_audio.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/read_ticks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/read_ticks.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/report@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/report@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/report@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/report@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/reschedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/reschedule.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/restore@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/restore@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/restore@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/restore@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/save_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/save_image.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/search@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/search@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/search@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/select@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/select@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/select@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/select@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/share2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/share2@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/share2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/share2@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/silent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/silent@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/silent@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/silent@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/sound_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/sound_add.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/stop_poll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/stop_poll.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/unarchive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/unarchive.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/unblock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/unblock@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/unblock@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/unblock@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/unfavorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/unfavorite.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/unmute@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/unmute@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/unmute@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/unmute@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/unread@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/unread@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/unread@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/unread@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu_shadow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu_shadow@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu_shadow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu_shadow@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/new_chat_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/new_chat_photo.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/passport_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/passport_empty.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/passport_ready.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/passport_ready.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/pinned_show_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/pinned_show_all.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/profile_premium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/profile_premium.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/quiz_explain@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/quiz_explain@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/quiz_explain@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/quiz_explain@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/replies_userpic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/replies_userpic.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/add@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/add@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/add@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/add@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/arrows.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/calls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/calls.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/email.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/emoji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/emoji.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/faq@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/faq@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/faq@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/faq@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/group.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/key@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/key@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/key@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/key@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/laptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/laptop.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/minus.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/night.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/online.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/photo.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/pin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/pin@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/pin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/pin@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/reload.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/remove.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/sound.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/timer.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/stickers_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/stickers_empty.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/title_search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/title_search@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/title_search@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/title_search@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/top_bar_call@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/top_bar_call@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/top_bar_call@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/top_bar_call@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/top_bar_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/top_bar_profile.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/top_bar_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/top_bar_search.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/volume_mute@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/volume_mute@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/volume_mute@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/volume_mute@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/sounds/call_incoming.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/sounds/call_incoming.mp3 -------------------------------------------------------------------------------- /Telegram/Resources/sounds/call_outgoing.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/sounds/call_outgoing.mp3 -------------------------------------------------------------------------------- /Telegram/Resources/sounds/group_call_end.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/sounds/group_call_end.mp3 -------------------------------------------------------------------------------- /Telegram/Resources/animations/change_number.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/animations/change_number.tgs -------------------------------------------------------------------------------- /Telegram/Resources/art/logo_256_no_margin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/art/logo_256_no_margin.png -------------------------------------------------------------------------------- /Telegram/Resources/export_html/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/export_html/images/back.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/account_check@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/account_check@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/account_check@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/account_check@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/archive_userpic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/archive_userpic@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/archive_userpic@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/archive_userpic@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/calendar_down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/calendar_down@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/calendar_down@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/calendar_down@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/calls/call_answer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/calls/call_answer.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/calls/call_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/calls/call_cancel.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/calls/call_discard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/calls/call_discard.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/calls/call_rating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/calls/call_rating.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/calls/calls_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/calls/calls_more.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/calls/navbar_pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/calls/navbar_pin.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/calls/video_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/calls/video_back.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/chat/input_attach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/chat/input_attach.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/chat/input_edit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/chat/input_edit@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/chat/input_edit@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/chat/input_edit@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/chat/input_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/chat/input_forward.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/chat/input_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/chat/input_record.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/chat/input_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/chat/input_reply.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/chat/input_save@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/chat/input_save@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/chat/input_save@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/chat/input_save@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/chat/input_send@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/chat/input_send@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/chat/input_send@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/chat/input_send@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/chat/input_silent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/chat/input_silent.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/chat/voice_to_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/chat/voice_to_text.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/color_slider_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/color_slider_arrow.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/connecting_body@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/connecting_body@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/connecting_body@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/connecting_body@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/connecting_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/connecting_left@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/connecting_left@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/connecting_left@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/connecting_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/connecting_right.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/contacts_alphabet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/contacts_alphabet.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/contacts_online@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/contacts_online@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/contacts_online@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/contacts_online@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/emoji/emoji_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/emoji/emoji_delete.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/emoji/emoji_faved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/emoji/emoji_faved.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/emoji/emoji_food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/emoji/emoji_food.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/emoji/emoji_nature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/emoji/emoji_nature.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/emoji/emoji_people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/emoji/emoji_people.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/emoji/emoji_recent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/emoji/emoji_recent.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/emoji/emoji_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/emoji/emoji_switch.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/emoji/emoji_travel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/emoji/emoji_travel.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/emoji/premium_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/emoji/premium_lock.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/emoji/stickers_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/emoji/stickers_add.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/fast_comments@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/fast_comments@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/fast_comments@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/fast_comments@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/fast_to_original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/fast_to_original.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/history_comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/history_comments.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/history_down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/history_down_arrow.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/history_file_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/history_file_image.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/history_file_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/history_file_pause.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/history_file_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/history_file_play.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/history_received.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/history_received.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/history_replies@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/history_replies@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/history_replies@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/history_replies@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/history_views@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/history_views@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/history_views@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/history_views@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/edit/dotsmini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/edit/dotsmini.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_back@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_back@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_block@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_block@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_block@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_block@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_close@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_close@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_delete.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_edit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_edit@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_edit@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_edit@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_leave@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_leave@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_leave@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_leave@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_members.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_members.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_report.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_search.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_share@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_share@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_share@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/inline_button_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/inline_button_card.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/inline_button_url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/inline_button_url.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/inline_button_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/inline_button_web.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/install_update@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/install_update@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/install_update@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/install_update@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/intro_plane_inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/intro_plane_inner.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/intro_plane_outer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/intro_plane_outer.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/intro_plane_top@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/intro_plane_top@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/intro_plane_top@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/intro_plane_top@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/intro_plane_trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/intro_plane_trace.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/intro_qr_plane@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/intro_qr_plane@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/intro_qr_plane@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/intro_qr_plane@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/limits/accounts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/limits/accounts@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/limits/accounts@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/limits/accounts@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/limits/folders@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/limits/folders@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/limits/folders@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/limits/folders@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/limits/groups@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/limits/groups@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/limits/groups@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/limits/groups@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/mac_tray_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/mac_tray_icon@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/mac_tray_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/mac_tray_icon@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/map_point_inner@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/map_point_inner@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/map_point_inner@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/map_point_inner@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/media_video_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/media_video_play.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/media_youtube_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/media_youtube_play.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/mediaview_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/mediaview_close@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/mediaview_close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/mediaview_close@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/mediaview_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/mediaview_download.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/mediaview_more@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/mediaview_more@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/mediaview_more@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/mediaview_more@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/mediaview_next@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/mediaview_next@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/mediaview_next@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/mediaview_next@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/mediaview_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/mediaview_rotate.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/add_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/add_account.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/add_to_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/add_to_folder.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/admin_promote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/admin_promote.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/all_media@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/all_media@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/all_media@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/all_media@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/auto_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/auto_delete.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/calendar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/calendar@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/calendar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/calendar@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/collapse@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/collapse@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/collapse@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/collapse@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/copyright@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/copyright@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/copyright@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/copyright@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/create_poll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/create_poll.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/customize@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/customize@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/customize@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/customize@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/discussion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/discussion@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/discussion@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/discussion@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/download@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/download@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/download@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/download@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/export_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/export_theme.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/favorite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/favorite@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/favorite@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/favorite@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/gift_premium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/gift_premium.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/import_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/import_theme.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/move_to_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/move_to_menu.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/mute_for@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/mute_for@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/mute_for@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/mute_for@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/permissions.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/personal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/personal@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/personal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/personal@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/read_audio@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/read_audio@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/read_audio@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/read_audio@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/read_ticks@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/read_ticks@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/read_ticks@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/read_ticks@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/reschedule@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/reschedule@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/reschedule@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/reschedule@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/restart_bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/restart_bot.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/retract_vote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/retract_vote.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/save_image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/save_image@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/save_image@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/save_image@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/settings@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/settings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/settings@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/show_in_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/show_in_chat.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/sound_add@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/sound_add@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/sound_add@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/sound_add@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/sound_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/sound_disable.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/sound_enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/sound_enable.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/sound_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/sound_select.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/start_stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/start_stream.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/stickers@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/stickers@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/stickers@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/stickers@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/stop_poll@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/stop_poll@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/stop_poll@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/stop_poll@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/submenu_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/submenu_arrow.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/unarchive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/unarchive@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/unarchive@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/unarchive@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/unfavorite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/unfavorite@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/unfavorite@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/unfavorite@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/view_replies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/view_replies.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/violence@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/violence@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/violence@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/violence@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu_settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu_settings@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu_settings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu_settings@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/new_chat_photo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/new_chat_photo@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/new_chat_photo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/new_chat_photo@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/notification_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/notification_send.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/passport_authorize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/passport_authorize.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/passport_empty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/passport_empty@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/passport_empty@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/passport_empty@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/passport_ready@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/passport_ready@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/passport_ready@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/passport_ready@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/photo_editor/flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/photo_editor/flip.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/photo_editor/paint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/photo_editor/paint.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/photo_editor/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/photo_editor/undo.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/pinned_show_all@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/pinned_show_all@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/pinned_show_all@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/pinned_show_all@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/player/panel_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/player/panel_close.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/player/player_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/player/player_more.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/player/player_pip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/player/player_pip.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/player/player_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/player/player_play.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/poll_choice_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/poll_choice_right.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/poll_choice_wrong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/poll_choice_wrong.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/poll_select_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/poll_select_check.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/profile_add_member.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/profile_add_member.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/profile_premium@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/profile_premium@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/profile_premium@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/profile_premium@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/replies_userpic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/replies_userpic@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/replies_userpic@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/replies_userpic@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/account.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/advanced.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/archive.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/arrows@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/arrows@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/arrows@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/arrows@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/blocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/blocked.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/calls@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/calls@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/calls@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/calls@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/channel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/channel.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/chat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/chat@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/chat@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/chat@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/dock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/dock@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/dock@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/dock@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/download.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/email@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/email@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/email@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/email@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/emoji@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/emoji@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/emoji@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/emoji@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/folders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/folders.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/forward.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/group@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/group@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/group@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/group@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/language.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/laptop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/laptop@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/laptop@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/laptop@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/lock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/lock@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/lock@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/lock@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/mention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/mention.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/minus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/minus@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/minus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/minus@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/night@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/night@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/night@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/online@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/online@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/online@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/online@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/palette.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/photo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/photo@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/photo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/photo@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/plus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/plus@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/plus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/plus@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/position.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/position.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/reload@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/reload@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/reload@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/reload@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/remove@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/remove@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/remove@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/remove@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/settings.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/sound@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/sound@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/sound@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/sound@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/stickers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/stickers.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/timer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/timer@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/timer@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/timer@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/tips@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/tips@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/tips@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/tips@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/user@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/user@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/settings/user@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/settings/user@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/stickers_empty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/stickers_empty@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/stickers_empty@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/stickers_empty@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/stickers_reorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/stickers_reorder.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/theme_preview@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/theme_preview@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/theme_preview@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/theme_preview@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/top_bar_group_call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/top_bar_group_call.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/top_bar_profile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/top_bar_profile@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/top_bar_profile@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/top_bar_profile@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/top_bar_search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/top_bar_search@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/top_bar_search@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/top_bar_search@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/upload_chat_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/upload_chat_photo.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/window_shadow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/window_shadow@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/window_shadow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/window_shadow@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/night-green.tdesktop-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/night-green.tdesktop-theme -------------------------------------------------------------------------------- /Telegram/Resources/sounds/group_call_start.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/sounds/group_call_start.mp3 -------------------------------------------------------------------------------- /Telegram/Resources/day-custom-base.tdesktop-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/day-custom-base.tdesktop-theme -------------------------------------------------------------------------------- /Telegram/Resources/export_html/images/back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/export_html/images/back@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/calls/call_answer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/calls/call_answer@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/calls/call_answer@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/calls/call_answer@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/calls/call_arrow_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/calls/call_arrow_in.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/calls/call_arrow_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/calls/call_arrow_out.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/calls/call_cancel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/calls/call_cancel@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/calls/call_cancel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/calls/call_cancel@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/calls/call_rating@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/calls/call_rating@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/calls/call_rating@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/calls/call_rating@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/calls/calls_more@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/calls/calls_more@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/calls/calls_more@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/calls/calls_more@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/calls/calls_present.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/calls/calls_present.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/calls/calls_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/calls/calls_settings.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/calls/navbar_pin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/calls/navbar_pin@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/calls/navbar_pin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/calls/navbar_pin@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/calls/video_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/calls/video_back@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/calls/video_back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/calls/video_back@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/calls/video_over_pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/calls/video_over_pin.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/calls/video_tooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/calls/video_tooltip.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/calls/volume/speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/calls/volume/speaker.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/chat/input_attach@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/chat/input_attach@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/chat/input_attach@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/chat/input_attach@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/chat/input_record@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/chat/input_record@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/chat/input_record@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/chat/input_record@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/chat/input_reply@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/chat/input_reply@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/chat/input_reply@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/chat/input_reply@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/chat/input_schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/chat/input_schedule.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/chat/input_scheduled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/chat/input_scheduled.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/chat/input_silent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/chat/input_silent@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/chat/input_silent@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/chat/input_silent@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/chat/input_silent_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/chat/input_silent_on.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/connecting_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/connecting_right@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/connecting_right@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/connecting_right@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/contacts_alphabet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/contacts_alphabet@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/contacts_alphabet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/contacts_alphabet@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/dialogs/dialogs_bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/dialogs/dialogs_bot.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/dialogs/dialogs_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/dialogs/dialogs_chat.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/dialogs/dialogs_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/dialogs/dialogs_lock.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/dialogs/dialogs_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/dialogs/dialogs_menu.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/dialogs/dialogs_sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/dialogs/dialogs_sent.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/emoji/emoji_activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/emoji/emoji_activity.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/emoji/emoji_faved@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/emoji/emoji_faved@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/emoji/emoji_faved@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/emoji/emoji_faved@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/emoji/emoji_food@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/emoji/emoji_food@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/emoji/emoji_food@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/emoji/emoji_food@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/emoji/emoji_objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/emoji/emoji_objects.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/emoji/emoji_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/emoji/emoji_settings.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/emoji/emoji_symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/emoji/emoji_symbols.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/fast_to_original@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/fast_to_original@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/fast_to_original@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/fast_to_original@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/folders/folders_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/folders/folders_all.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/folders/folders_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/folders/folders_book.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/folders/folders_bots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/folders/folders_bots.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/folders/folders_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/folders/folders_cat.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/folders/folders_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/folders/folders_edit.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/folders/folders_game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/folders/folders_game.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/folders/folders_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/folders/folders_home.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/folders/folders_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/folders/folders_like.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/folders/folders_love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/folders/folders_love.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/folders/folders_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/folders/folders_mask.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/folders/folders_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/folders/folders_note.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/folders/folders_poo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/folders/folders_poo.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/folders/folders_work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/folders/folders_work.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/history_audio_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/history_audio_cancel.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/history_comments@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/history_comments@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/history_comments@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/history_comments@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/history_down_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/history_down_circle.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/history_down_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/history_down_shadow.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/history_file_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/history_file_cancel.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/history_file_play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/history_file_play@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/history_file_play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/history_file_play@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/history_received@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/history_received@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/history_received@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/history_received@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/edit/links_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/edit/links_copy.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/edit/links_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/edit/links_link.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_add_member.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_add_member.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_delete@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_delete@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_delete@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_media_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_media_file.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_media_gif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_media_gif.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_media_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_media_link.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_members@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_members@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_members@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_members@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_report@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_report@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_report@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_report@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_search@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/info/info_search@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/info/info_search@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/inline_button_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/inline_button_switch.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/inline_button_url@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/inline_button_url@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/inline_button_url@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/inline_button_url@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/inline_button_web@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/inline_button_web@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/inline_button_web@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/inline_button_web@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/intro_plane_inner@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/intro_plane_inner@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/intro_plane_inner@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/intro_plane_inner@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/intro_plane_outer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/intro_plane_outer@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/intro_plane_outer@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/intro_plane_outer@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/intro_plane_trace@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/intro_plane_trace@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/intro_plane_trace@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/intro_plane_trace@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/media_fullscreen_to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/media_fullscreen_to.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/media_video_play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/media_video_play@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/media_video_play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/media_video_play@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/media_video_play_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/media_video_play_bg.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/mediaview_rotate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/mediaview_rotate@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/mediaview_rotate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/mediaview_rotate@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/mediaview_save_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/mediaview_save_check.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/add_account@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/add_account@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/add_account@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/add_account@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/auto_delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/auto_delete@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/auto_delete@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/auto_delete@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/create_poll@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/create_poll@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/create_poll@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/create_poll@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/export_theme@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/export_theme@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/export_theme@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/export_theme@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/gift_premium@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/gift_premium@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/gift_premium@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/gift_premium@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/import_theme@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/import_theme@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/import_theme@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/import_theme@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/move_from_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/move_from_menu.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/move_to_menu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/move_to_menu@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/move_to_menu@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/move_to_menu@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/mute_for_plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/mute_for_plain.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/permissions@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/permissions@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/permissions@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/permissions@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/read_reactions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/read_reactions.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/restart_bot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/restart_bot@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/restart_bot@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/restart_bot@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/retract_vote@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/retract_vote@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/retract_vote@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/retract_vote@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/show_in_chat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/show_in_chat@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/show_in_chat@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/show_in_chat@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/show_in_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/show_in_folder.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/sound_enable@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/sound_enable@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/sound_enable@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/sound_enable@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/sound_select@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/sound_select@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/sound_select@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/sound_select@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/start_stream@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/start_stream@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/start_stream@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/start_stream@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/view_replies@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/view_replies@2x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/menu/view_replies@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/menu/view_replies@3x.png -------------------------------------------------------------------------------- /Telegram/Resources/icons/message_psa_tooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/teamgram-tdesktop/teamgram2/Telegram/Resources/icons/message_psa_tooltip.png --------------------------------------------------------------------------------