├── .github ├── CODE_OF_CONDUCT.md ├── FUNDING.yml └── workflows │ ├── codeql.yml │ ├── push.yml │ └── schedule.yml ├── channels ├── layers │ ├── ipv4 │ ├── ipv6 │ └── readme.md ├── networks │ ├── grpc │ ├── http │ ├── readme.md │ ├── tcp │ └── ws ├── protocols │ ├── hysteria │ ├── juicity │ ├── readme.md │ ├── reality │ ├── shadowsocks │ ├── trojan │ ├── tuic │ ├── vless │ └── vmess ├── readme.md └── security │ ├── non-tls │ ├── readme.md │ └── tls ├── countries ├── ae │ └── mixed ├── al │ └── mixed ├── am │ └── mixed ├── ar │ └── mixed ├── at │ └── mixed ├── au │ └── mixed ├── az │ └── mixed ├── ba │ └── mixed ├── bd │ └── mixed ├── be │ └── mixed ├── bg │ └── mixed ├── bh │ └── mixed ├── bo │ └── mixed ├── br │ └── mixed ├── bt │ └── mixed ├── by │ └── mixed ├── bz │ └── mixed ├── ca │ └── mixed ├── ch │ └── mixed ├── cl │ └── mixed ├── cn │ └── mixed ├── co │ └── mixed ├── cr │ └── mixed ├── cw │ └── mixed ├── cy │ └── mixed ├── cz │ └── mixed ├── de │ └── mixed ├── dk │ └── mixed ├── ec │ └── mixed ├── ee │ └── mixed ├── eg │ └── mixed ├── es │ └── mixed ├── fi │ └── mixed ├── fr │ └── mixed ├── gb │ └── mixed ├── ge │ └── mixed ├── gi │ └── mixed ├── gr │ └── mixed ├── gt │ └── mixed ├── hk │ └── mixed ├── hr │ └── mixed ├── hu │ └── mixed ├── id │ └── mixed ├── ie │ └── mixed ├── il │ └── mixed ├── im │ └── mixed ├── in │ └── mixed ├── iq │ └── mixed ├── ir │ └── mixed ├── is │ └── mixed ├── it │ └── mixed ├── jo │ └── mixed ├── jp │ └── mixed ├── ke │ └── mixed ├── kg │ └── mixed ├── kh │ └── mixed ├── kr │ └── mixed ├── kw │ └── mixed ├── kz │ └── mixed ├── lt │ └── mixed ├── lu │ └── mixed ├── lv │ └── mixed ├── ly │ └── mixed ├── ma │ └── mixed ├── md │ └── mixed ├── mk │ └── mixed ├── mm │ └── mixed ├── mn │ └── mixed ├── mo │ └── mixed ├── mt │ └── mixed ├── mu │ └── mixed ├── mx │ └── mixed ├── my │ └── mixed ├── na │ └── mixed ├── ng │ └── mixed ├── nl │ └── mixed ├── no │ └── mixed ├── np │ └── mixed ├── nz │ └── mixed ├── om │ └── mixed ├── pa │ └── mixed ├── pe │ └── mixed ├── ph │ └── mixed ├── pk │ └── mixed ├── pl │ └── mixed ├── pr │ └── mixed ├── pt │ └── mixed ├── py │ └── mixed ├── qa │ └── mixed ├── ro │ └── mixed ├── rs │ └── mixed ├── ru │ └── mixed ├── rw │ └── mixed ├── sa │ └── mixed ├── sc │ └── mixed ├── se │ └── mixed ├── sg │ └── mixed ├── si │ └── mixed ├── sk │ └── mixed ├── tg │ └── mixed ├── th │ └── mixed ├── tj │ └── mixed ├── tr │ └── mixed ├── tw │ └── mixed ├── ua │ └── mixed ├── us │ └── mixed ├── uy │ └── mixed ├── uz │ └── mixed ├── vg │ └── mixed ├── vn │ └── mixed └── za │ └── mixed ├── geoip-lite └── geoip-lite-country.mmdb ├── last update ├── layers ├── ipv4 ├── ipv6 └── readme.md ├── license ├── main.py ├── networks ├── grpc ├── http ├── readme.md ├── tcp └── ws ├── protocols ├── hysteria ├── juicity ├── readme.md ├── reality ├── shadowsocks ├── trojan ├── tuic ├── vless └── vmess ├── readme.md ├── requirements ├── security ├── non-tls ├── readme.md └── tls ├── splitted ├── channels ├── mixed ├── mixed-0 ├── mixed-1 ├── mixed-2 ├── mixed-3 ├── mixed-4 ├── mixed-5 ├── mixed-6 ├── mixed-7 ├── mixed-8 ├── mixed-9 ├── no-match ├── readme.md └── subscribe ├── subscribe ├── layers │ ├── ipv4 │ ├── ipv6 │ └── readme.md ├── networks │ ├── grpc │ ├── http │ ├── readme.md │ ├── tcp │ └── ws ├── protocols │ ├── hysteria │ ├── juicity │ ├── readme.md │ ├── reality │ ├── shadowsocks │ ├── trojan │ ├── tuic │ ├── vless │ └── vmess ├── readme.md └── security │ ├── non-tls │ ├── readme.md │ └── tls ├── subscription links.json ├── telegram channels.json └── title.py /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.github/workflows/schedule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/.github/workflows/schedule.yml -------------------------------------------------------------------------------- /channels/layers/ipv4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/channels/layers/ipv4 -------------------------------------------------------------------------------- /channels/layers/ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/channels/layers/ipv6 -------------------------------------------------------------------------------- /channels/layers/readme.md: -------------------------------------------------------------------------------- 1 | # Splitted Configurations Based On Internet Protocol Layers 2 | -------------------------------------------------------------------------------- /channels/networks/grpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/channels/networks/grpc -------------------------------------------------------------------------------- /channels/networks/http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/channels/networks/http -------------------------------------------------------------------------------- /channels/networks/readme.md: -------------------------------------------------------------------------------- 1 | # Splitted Configurations Based On Network Types 2 | -------------------------------------------------------------------------------- /channels/networks/tcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/channels/networks/tcp -------------------------------------------------------------------------------- /channels/networks/ws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/channels/networks/ws -------------------------------------------------------------------------------- /channels/protocols/hysteria: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/channels/protocols/hysteria -------------------------------------------------------------------------------- /channels/protocols/juicity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/channels/protocols/juicity -------------------------------------------------------------------------------- /channels/protocols/readme.md: -------------------------------------------------------------------------------- 1 | # Splitted Configurations Based On Portocol Types 2 | -------------------------------------------------------------------------------- /channels/protocols/reality: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/channels/protocols/reality -------------------------------------------------------------------------------- /channels/protocols/shadowsocks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/channels/protocols/shadowsocks -------------------------------------------------------------------------------- /channels/protocols/trojan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/channels/protocols/trojan -------------------------------------------------------------------------------- /channels/protocols/tuic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/channels/protocols/tuic -------------------------------------------------------------------------------- /channels/protocols/vless: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/channels/protocols/vless -------------------------------------------------------------------------------- /channels/protocols/vmess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/channels/protocols/vmess -------------------------------------------------------------------------------- /channels/readme.md: -------------------------------------------------------------------------------- 1 | # Telegram Channels Configurations 2 | -------------------------------------------------------------------------------- /channels/security/non-tls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/channels/security/non-tls -------------------------------------------------------------------------------- /channels/security/readme.md: -------------------------------------------------------------------------------- 1 | # Splitted Configurations Based On Security Types 2 | -------------------------------------------------------------------------------- /channels/security/tls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/channels/security/tls -------------------------------------------------------------------------------- /countries/ae/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/ae/mixed -------------------------------------------------------------------------------- /countries/al/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/al/mixed -------------------------------------------------------------------------------- /countries/am/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/am/mixed -------------------------------------------------------------------------------- /countries/ar/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/ar/mixed -------------------------------------------------------------------------------- /countries/at/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/at/mixed -------------------------------------------------------------------------------- /countries/au/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/au/mixed -------------------------------------------------------------------------------- /countries/az/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/az/mixed -------------------------------------------------------------------------------- /countries/ba/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/ba/mixed -------------------------------------------------------------------------------- /countries/bd/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/bd/mixed -------------------------------------------------------------------------------- /countries/be/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/be/mixed -------------------------------------------------------------------------------- /countries/bg/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/bg/mixed -------------------------------------------------------------------------------- /countries/bh/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/bh/mixed -------------------------------------------------------------------------------- /countries/bo/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/bo/mixed -------------------------------------------------------------------------------- /countries/br/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/br/mixed -------------------------------------------------------------------------------- /countries/bt/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/bt/mixed -------------------------------------------------------------------------------- /countries/by/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/by/mixed -------------------------------------------------------------------------------- /countries/bz/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/bz/mixed -------------------------------------------------------------------------------- /countries/ca/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/ca/mixed -------------------------------------------------------------------------------- /countries/ch/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/ch/mixed -------------------------------------------------------------------------------- /countries/cl/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/cl/mixed -------------------------------------------------------------------------------- /countries/cn/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/cn/mixed -------------------------------------------------------------------------------- /countries/co/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/co/mixed -------------------------------------------------------------------------------- /countries/cr/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/cr/mixed -------------------------------------------------------------------------------- /countries/cw/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/cw/mixed -------------------------------------------------------------------------------- /countries/cy/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/cy/mixed -------------------------------------------------------------------------------- /countries/cz/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/cz/mixed -------------------------------------------------------------------------------- /countries/de/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/de/mixed -------------------------------------------------------------------------------- /countries/dk/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/dk/mixed -------------------------------------------------------------------------------- /countries/ec/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/ec/mixed -------------------------------------------------------------------------------- /countries/ee/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/ee/mixed -------------------------------------------------------------------------------- /countries/eg/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/eg/mixed -------------------------------------------------------------------------------- /countries/es/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/es/mixed -------------------------------------------------------------------------------- /countries/fi/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/fi/mixed -------------------------------------------------------------------------------- /countries/fr/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/fr/mixed -------------------------------------------------------------------------------- /countries/gb/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/gb/mixed -------------------------------------------------------------------------------- /countries/ge/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/ge/mixed -------------------------------------------------------------------------------- /countries/gi/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/gi/mixed -------------------------------------------------------------------------------- /countries/gr/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/gr/mixed -------------------------------------------------------------------------------- /countries/gt/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/gt/mixed -------------------------------------------------------------------------------- /countries/hk/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/hk/mixed -------------------------------------------------------------------------------- /countries/hr/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/hr/mixed -------------------------------------------------------------------------------- /countries/hu/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/hu/mixed -------------------------------------------------------------------------------- /countries/id/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/id/mixed -------------------------------------------------------------------------------- /countries/ie/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/ie/mixed -------------------------------------------------------------------------------- /countries/il/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/il/mixed -------------------------------------------------------------------------------- /countries/im/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/im/mixed -------------------------------------------------------------------------------- /countries/in/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/in/mixed -------------------------------------------------------------------------------- /countries/iq/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/iq/mixed -------------------------------------------------------------------------------- /countries/ir/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/ir/mixed -------------------------------------------------------------------------------- /countries/is/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/is/mixed -------------------------------------------------------------------------------- /countries/it/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/it/mixed -------------------------------------------------------------------------------- /countries/jo/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/jo/mixed -------------------------------------------------------------------------------- /countries/jp/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/jp/mixed -------------------------------------------------------------------------------- /countries/ke/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/ke/mixed -------------------------------------------------------------------------------- /countries/kg/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/kg/mixed -------------------------------------------------------------------------------- /countries/kh/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/kh/mixed -------------------------------------------------------------------------------- /countries/kr/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/kr/mixed -------------------------------------------------------------------------------- /countries/kw/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/kw/mixed -------------------------------------------------------------------------------- /countries/kz/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/kz/mixed -------------------------------------------------------------------------------- /countries/lt/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/lt/mixed -------------------------------------------------------------------------------- /countries/lu/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/lu/mixed -------------------------------------------------------------------------------- /countries/lv/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/lv/mixed -------------------------------------------------------------------------------- /countries/ly/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/ly/mixed -------------------------------------------------------------------------------- /countries/ma/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/ma/mixed -------------------------------------------------------------------------------- /countries/md/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/md/mixed -------------------------------------------------------------------------------- /countries/mk/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/mk/mixed -------------------------------------------------------------------------------- /countries/mm/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/mm/mixed -------------------------------------------------------------------------------- /countries/mn/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/mn/mixed -------------------------------------------------------------------------------- /countries/mo/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/mo/mixed -------------------------------------------------------------------------------- /countries/mt/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/mt/mixed -------------------------------------------------------------------------------- /countries/mu/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/mu/mixed -------------------------------------------------------------------------------- /countries/mx/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/mx/mixed -------------------------------------------------------------------------------- /countries/my/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/my/mixed -------------------------------------------------------------------------------- /countries/na/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/na/mixed -------------------------------------------------------------------------------- /countries/ng/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/ng/mixed -------------------------------------------------------------------------------- /countries/nl/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/nl/mixed -------------------------------------------------------------------------------- /countries/no/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/no/mixed -------------------------------------------------------------------------------- /countries/np/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/np/mixed -------------------------------------------------------------------------------- /countries/nz/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/nz/mixed -------------------------------------------------------------------------------- /countries/om/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/om/mixed -------------------------------------------------------------------------------- /countries/pa/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/pa/mixed -------------------------------------------------------------------------------- /countries/pe/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/pe/mixed -------------------------------------------------------------------------------- /countries/ph/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/ph/mixed -------------------------------------------------------------------------------- /countries/pk/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/pk/mixed -------------------------------------------------------------------------------- /countries/pl/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/pl/mixed -------------------------------------------------------------------------------- /countries/pr/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/pr/mixed -------------------------------------------------------------------------------- /countries/pt/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/pt/mixed -------------------------------------------------------------------------------- /countries/py/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/py/mixed -------------------------------------------------------------------------------- /countries/qa/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/qa/mixed -------------------------------------------------------------------------------- /countries/ro/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/ro/mixed -------------------------------------------------------------------------------- /countries/rs/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/rs/mixed -------------------------------------------------------------------------------- /countries/ru/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/ru/mixed -------------------------------------------------------------------------------- /countries/rw/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/rw/mixed -------------------------------------------------------------------------------- /countries/sa/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/sa/mixed -------------------------------------------------------------------------------- /countries/sc/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/sc/mixed -------------------------------------------------------------------------------- /countries/se/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/se/mixed -------------------------------------------------------------------------------- /countries/sg/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/sg/mixed -------------------------------------------------------------------------------- /countries/si/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/si/mixed -------------------------------------------------------------------------------- /countries/sk/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/sk/mixed -------------------------------------------------------------------------------- /countries/tg/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/tg/mixed -------------------------------------------------------------------------------- /countries/th/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/th/mixed -------------------------------------------------------------------------------- /countries/tj/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/tj/mixed -------------------------------------------------------------------------------- /countries/tr/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/tr/mixed -------------------------------------------------------------------------------- /countries/tw/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/tw/mixed -------------------------------------------------------------------------------- /countries/ua/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/ua/mixed -------------------------------------------------------------------------------- /countries/us/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/us/mixed -------------------------------------------------------------------------------- /countries/uy/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/uy/mixed -------------------------------------------------------------------------------- /countries/uz/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/uz/mixed -------------------------------------------------------------------------------- /countries/vg/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/vg/mixed -------------------------------------------------------------------------------- /countries/vn/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/vn/mixed -------------------------------------------------------------------------------- /countries/za/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/countries/za/mixed -------------------------------------------------------------------------------- /geoip-lite/geoip-lite-country.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/geoip-lite/geoip-lite-country.mmdb -------------------------------------------------------------------------------- /last update: -------------------------------------------------------------------------------- 1 | 2025-07-02 10:18:29.703916+03:30 -------------------------------------------------------------------------------- /layers/ipv4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/layers/ipv4 -------------------------------------------------------------------------------- /layers/ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/layers/ipv6 -------------------------------------------------------------------------------- /layers/readme.md: -------------------------------------------------------------------------------- 1 | # Splitted Configurations Based On Internet Protocol Layers 2 | -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/license -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/main.py -------------------------------------------------------------------------------- /networks/grpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/networks/grpc -------------------------------------------------------------------------------- /networks/http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/networks/http -------------------------------------------------------------------------------- /networks/readme.md: -------------------------------------------------------------------------------- 1 | # Splitted Configurations Based On Network Types 2 | -------------------------------------------------------------------------------- /networks/tcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/networks/tcp -------------------------------------------------------------------------------- /networks/ws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/networks/ws -------------------------------------------------------------------------------- /protocols/hysteria: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/protocols/hysteria -------------------------------------------------------------------------------- /protocols/juicity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/protocols/juicity -------------------------------------------------------------------------------- /protocols/readme.md: -------------------------------------------------------------------------------- 1 | # Splitted Configurations Based On Portocol Types 2 | -------------------------------------------------------------------------------- /protocols/reality: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/protocols/reality -------------------------------------------------------------------------------- /protocols/shadowsocks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/protocols/shadowsocks -------------------------------------------------------------------------------- /protocols/trojan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/protocols/trojan -------------------------------------------------------------------------------- /protocols/tuic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/protocols/tuic -------------------------------------------------------------------------------- /protocols/vless: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/protocols/vless -------------------------------------------------------------------------------- /protocols/vmess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/protocols/vmess -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/readme.md -------------------------------------------------------------------------------- /requirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/requirements -------------------------------------------------------------------------------- /security/non-tls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/security/non-tls -------------------------------------------------------------------------------- /security/readme.md: -------------------------------------------------------------------------------- 1 | # Splitted Configurations Based On Security Types 2 | -------------------------------------------------------------------------------- /security/tls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/security/tls -------------------------------------------------------------------------------- /splitted/channels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/splitted/channels -------------------------------------------------------------------------------- /splitted/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/splitted/mixed -------------------------------------------------------------------------------- /splitted/mixed-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/splitted/mixed-0 -------------------------------------------------------------------------------- /splitted/mixed-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/splitted/mixed-1 -------------------------------------------------------------------------------- /splitted/mixed-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/splitted/mixed-2 -------------------------------------------------------------------------------- /splitted/mixed-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/splitted/mixed-3 -------------------------------------------------------------------------------- /splitted/mixed-4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/splitted/mixed-4 -------------------------------------------------------------------------------- /splitted/mixed-5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/splitted/mixed-5 -------------------------------------------------------------------------------- /splitted/mixed-6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/splitted/mixed-6 -------------------------------------------------------------------------------- /splitted/mixed-7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/splitted/mixed-7 -------------------------------------------------------------------------------- /splitted/mixed-8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/splitted/mixed-8 -------------------------------------------------------------------------------- /splitted/mixed-9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/splitted/mixed-9 -------------------------------------------------------------------------------- /splitted/no-match: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/splitted/no-match -------------------------------------------------------------------------------- /splitted/readme.md: -------------------------------------------------------------------------------- 1 | # Splitted Configurations 2 | -------------------------------------------------------------------------------- /splitted/subscribe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/splitted/subscribe -------------------------------------------------------------------------------- /subscribe/layers/ipv4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/subscribe/layers/ipv4 -------------------------------------------------------------------------------- /subscribe/layers/ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/subscribe/layers/ipv6 -------------------------------------------------------------------------------- /subscribe/layers/readme.md: -------------------------------------------------------------------------------- 1 | # Splitted Configurations Based On Internet Protocol Layers 2 | -------------------------------------------------------------------------------- /subscribe/networks/grpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/subscribe/networks/grpc -------------------------------------------------------------------------------- /subscribe/networks/http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/subscribe/networks/http -------------------------------------------------------------------------------- /subscribe/networks/readme.md: -------------------------------------------------------------------------------- 1 | # Splitted Configurations Based On Network Types 2 | -------------------------------------------------------------------------------- /subscribe/networks/tcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/subscribe/networks/tcp -------------------------------------------------------------------------------- /subscribe/networks/ws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/subscribe/networks/ws -------------------------------------------------------------------------------- /subscribe/protocols/hysteria: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/subscribe/protocols/hysteria -------------------------------------------------------------------------------- /subscribe/protocols/juicity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/subscribe/protocols/juicity -------------------------------------------------------------------------------- /subscribe/protocols/readme.md: -------------------------------------------------------------------------------- 1 | # Splitted Configurations Based On Portocol Types 2 | -------------------------------------------------------------------------------- /subscribe/protocols/reality: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/subscribe/protocols/reality -------------------------------------------------------------------------------- /subscribe/protocols/shadowsocks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/subscribe/protocols/shadowsocks -------------------------------------------------------------------------------- /subscribe/protocols/trojan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/subscribe/protocols/trojan -------------------------------------------------------------------------------- /subscribe/protocols/tuic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/subscribe/protocols/tuic -------------------------------------------------------------------------------- /subscribe/protocols/vless: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/subscribe/protocols/vless -------------------------------------------------------------------------------- /subscribe/protocols/vmess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/subscribe/protocols/vmess -------------------------------------------------------------------------------- /subscribe/readme.md: -------------------------------------------------------------------------------- 1 | # Subscription Links Configurations 2 | -------------------------------------------------------------------------------- /subscribe/security/non-tls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/subscribe/security/non-tls -------------------------------------------------------------------------------- /subscribe/security/readme.md: -------------------------------------------------------------------------------- 1 | # Splitted Configurations Based On Security Types 2 | -------------------------------------------------------------------------------- /subscribe/security/tls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/subscribe/security/tls -------------------------------------------------------------------------------- /subscription links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/subscription links.json -------------------------------------------------------------------------------- /telegram channels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/telegram channels.json -------------------------------------------------------------------------------- /title.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaney01/telegram-collector/HEAD/title.py --------------------------------------------------------------------------------