├── .github └── workflows │ └── build.yml ├── Dockerfile ├── LICENSE ├── README.md ├── README_EN.md ├── check.sh ├── cookies ├── ipcheck.sh └── reference ├── CountryCode.csv ├── HBO_GO_EU_REGION ├── IATACode.txt ├── IATACode2.txt ├── iso3166.json └── supported_platforms.list /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1-stream/RegionRestrictionCheck/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1-stream/RegionRestrictionCheck/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1-stream/RegionRestrictionCheck/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1-stream/RegionRestrictionCheck/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1-stream/RegionRestrictionCheck/HEAD/README_EN.md -------------------------------------------------------------------------------- /check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1-stream/RegionRestrictionCheck/HEAD/check.sh -------------------------------------------------------------------------------- /cookies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1-stream/RegionRestrictionCheck/HEAD/cookies -------------------------------------------------------------------------------- /ipcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1-stream/RegionRestrictionCheck/HEAD/ipcheck.sh -------------------------------------------------------------------------------- /reference/CountryCode.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1-stream/RegionRestrictionCheck/HEAD/reference/CountryCode.csv -------------------------------------------------------------------------------- /reference/HBO_GO_EU_REGION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1-stream/RegionRestrictionCheck/HEAD/reference/HBO_GO_EU_REGION -------------------------------------------------------------------------------- /reference/IATACode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1-stream/RegionRestrictionCheck/HEAD/reference/IATACode.txt -------------------------------------------------------------------------------- /reference/IATACode2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1-stream/RegionRestrictionCheck/HEAD/reference/IATACode2.txt -------------------------------------------------------------------------------- /reference/iso3166.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1-stream/RegionRestrictionCheck/HEAD/reference/iso3166.json -------------------------------------------------------------------------------- /reference/supported_platforms.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1-stream/RegionRestrictionCheck/HEAD/reference/supported_platforms.list --------------------------------------------------------------------------------