Skip to content

Instantly share code, notes, and snippets.

@yetimdasturchi
Created July 27, 2023 15:47
Show Gist options
  • Save yetimdasturchi/a6fc2de6007e881d6d3fb19bc9d85f80 to your computer and use it in GitHub Desktop.
Save yetimdasturchi/a6fc2de6007e881d6d3fb19bc9d85f80 to your computer and use it in GitHub Desktop.
Check ip address is in tasix
<?php
function check_tasix( $ip ){
$range = @file_get_contents('tasix.json');
$range = json_decode($range, TRUE);
if( !is_array( $range ) ) return false;
ksort( $range );
$ip2long = ip2long( $ip );
if( $ip2long !== false ) {
foreach( $range as $start => $end ) {
$end = ip2long( $end );
$start = ip2long( $start );
$is_key = ( $start === false );
if( $end === false ) continue;
if(is_numeric( $start ) && $is_key && $end === $ip2long ) {
return true;
}else{
if( !$is_key && $ip2long >= $start && $ip2long <= $end ) {
return true;
}
}
}
}
return false;
}
function getUserIp() {
$serverVars = $_SERVER;
$searchList = "HTTP_CLIENT_IP,HTTP_X_FORWARDED_FOR,HTTP_X_FORWARDED,HTTP_X_CLUSTER_CLIENT_IP,HTTP_FORWARDED_FOR,HTTP_FORWARDED,REMOTE_ADDR";
$clientIpAddress = "";
$mylist = explode(',', $searchList);
foreach ($mylist as $myItem) {
if (isset($serverVars[trim($myItem)])) {
$myIpList = explode(',', $serverVars[trim($myItem)]);
foreach ($myIpList as $myIp) {
if (filter_var(trim($myIp), FILTER_VALIDATE_IP)) {
$clientIpAddress = trim($myIp);
break;
}
}
}
if (trim($clientIpAddress) != "") break;
}
if (trim($clientIpAddress) == "") $clientIpAddress = "0";
return $clientIpAddress;
}
$user_ip = getUserIp();
var_dump( check_tasix( $user_ip ) );
{
"91.212.89.0": "91.212.89.255",
"185.8.212.0": "185.8.215.255",
"5.133.120.0": "5.133.123.255",
"5.182.26.0": "5.182.26.255",
"31.40.24.0": "31.40.27.255",
"31.40.28.0": "31.40.31.255",
"31.135.208.0": "31.135.215.255",
"31.148.100.0": "31.148.103.255",
"31.148.144.0": "31.148.147.255",
"31.148.160.0": "31.148.167.255",
"31.148.175.0": "31.148.175.255",
"31.148.196.0": "31.148.196.255",
"31.148.197.0": "31.148.197.255",
"31.148.208.0": "31.148.211.255",
"31.148.209.0": "31.148.209.255",
"31.148.210.0": "31.148.210.255",
"31.148.240.0": "31.148.243.255",
"37.110.208.0": "37.110.208.255",
"37.140.216.0": "37.140.216.255",
"37.140.216.3": "37.140.216.3",
"37.140.216.10": "37.140.216.10",
"37.140.216.11": "37.140.216.11",
"37.140.216.12": "37.140.216.12",
"37.140.216.20": "37.140.216.20",
"37.140.216.140": "37.140.216.140",
"37.140.216.209": "37.140.216.209",
"37.140.216.210": "37.140.216.210",
"37.140.216.211": "37.140.216.211",
"37.140.216.212": "37.140.216.212",
"37.140.216.213": "37.140.216.213",
"37.140.216.215": "37.140.216.215",
"37.140.216.216": "37.140.216.216",
"37.140.216.217": "37.140.216.217",
"37.140.216.218": "37.140.216.218",
"37.140.216.220": "37.140.216.220",
"37.140.216.221": "37.140.216.221",
"37.140.216.222": "37.140.216.222",
"37.140.216.223": "37.140.216.223",
"37.140.216.224": "37.140.216.224",
"37.140.216.225": "37.140.216.225",
"37.140.216.226": "37.140.216.226",
"37.140.216.227": "37.140.216.227",
"37.140.216.228": "37.140.216.228",
"37.140.216.229": "37.140.216.229",
"37.140.216.231": "37.140.216.231",
"37.140.216.232": "37.140.216.232",
"37.140.216.233": "37.140.216.233",
"37.140.216.234": "37.140.216.234",
"37.140.216.235": "37.140.216.235",
"37.140.216.238": "37.140.216.238",
"37.140.216.239": "37.140.216.239",
"37.140.216.240": "37.140.216.240",
"37.140.216.241": "37.140.216.241",
"37.140.216.242": "37.140.216.242",
"37.140.216.243": "37.140.216.243",
"37.140.216.244": "37.140.216.244",
"37.140.216.245": "37.140.216.245",
"37.140.216.246": "37.140.216.246",
"37.140.216.247": "37.140.216.247",
"37.140.216.248": "37.140.216.248",
"37.140.216.249": "37.140.216.249",
"37.140.216.250": "37.140.216.250",
"37.140.216.251": "37.140.216.251",
"37.140.216.252": "37.140.216.252",
"37.140.216.253": "37.140.216.253",
"45.9.228.0": "45.9.231.255",
"45.91.220.0": "45.91.223.255",
"45.129.128.0": "45.129.128.255",
"45.130.148.0": "45.130.149.255",
"45.134.216.0": "45.134.217.255",
"45.134.218.0": "45.134.219.255",
"45.138.158.0": "45.138.158.255",
"45.142.44.0": "45.142.45.255",
"45.142.46.0": "45.142.47.255",
"45.144.40.0": "45.144.41.255",
"45.147.253.0": "45.147.253.255",
"45.150.24.0": "45.150.27.255",
"46.8.35.0": "46.8.35.255",
"46.227.120.0": "46.227.127.255",
"46.255.64.0": "46.255.67.255",
"46.255.68.0": "46.255.69.255",
"46.255.70.0": "46.255.71.255",
"62.209.128.0": "62.209.159.255",
"80.80.208.0": "80.80.209.255",
"80.80.211.0": "80.80.211.255",
"80.80.212.0": "80.80.215.255",
"80.80.215.160": "80.80.215.191",
"80.80.216.0": "80.80.223.255",
"81.95.224.0": "81.95.239.255",
"82.148.0.0": "82.148.1.255",
"82.215.72.0": "82.215.75.255",
"82.215.77.0": "82.215.77.255",
"82.215.80.0": "82.215.83.255",
"82.215.85.0": "82.215.85.255",
"82.215.88.0": "82.215.91.255",
"82.215.92.0": "82.215.95.255",
"82.215.96.0": "82.215.111.255",
"82.215.112.0": "82.215.115.255",
"82.215.116.0": "82.215.119.255",
"82.215.120.0": "82.215.123.255",
"82.215.124.0": "82.215.127.255",
"83.69.128.0": "83.69.159.255",
"83.221.160.0": "83.221.160.255",
"83.221.161.0": "83.221.161.255",
"83.221.162.0": "83.221.162.255",
"83.221.163.0": "83.221.163.255",
"83.221.164.0": "83.221.164.255",
"83.221.165.0": "83.221.165.255",
"83.221.166.0": "83.221.166.255",
"83.221.167.0": "83.221.167.255",
"83.221.168.0": "83.221.171.255",
"83.221.172.0": "83.221.175.255",
"83.221.176.0": "83.221.179.255",
"83.221.180.0": "83.221.181.255",
"83.221.182.0": "83.221.183.255",
"83.221.184.0": "83.221.187.255",
"83.221.188.0": "83.221.191.255",
"83.222.6.0": "83.222.7.255",
"84.54.64.0": "84.54.95.255",
"84.54.96.0": "84.54.96.255",
"84.54.97.0": "84.54.97.255",
"84.54.98.0": "84.54.98.255",
"84.54.113.0": "84.54.113.255",
"84.54.114.0": "84.54.114.255",
"84.54.115.0": "84.54.115.255",
"84.54.118.0": "84.54.119.255",
"84.54.120.0": "84.54.121.255",
"84.54.122.0": "84.54.123.255",
"85.202.192.0": "85.202.193.255",
"86.62.0.0": "86.62.3.255",
"87.237.232.0": "87.237.239.255",
"87.237.233.13": "87.237.233.13",
"87.237.233.14": "87.237.233.14",
"89.104.102.0": "89.104.102.255",
"89.146.104.0": "89.146.107.255",
"89.146.108.0": "89.146.111.255",
"89.146.112.0": "89.146.115.255",
"89.146.116.0": "89.146.119.255",
"89.223.3.0": "89.223.3.255",
"89.232.184.0": "89.232.187.255",
"89.236.192.0": "89.236.255.255",
"89.236.216.0": "89.236.219.255",
"89.249.60.0": "89.249.63.255",
"90.156.160.0": "90.156.167.255",
"91.90.216.0": "91.90.219.255",
"91.188.128.0": "91.188.128.255",
"91.190.159.0": "91.190.159.255",
"91.191.188.0": "91.191.188.255",
"91.196.76.0": "91.196.77.255",
"91.196.77.0": "91.196.77.255",
"91.196.78.0": "91.196.79.255",
"91.203.172.0": "91.203.172.255",
"91.203.173.0": "91.203.173.255",
"91.203.174.0": "91.203.174.255",
"91.203.175.0": "91.203.175.255",
"91.204.236.0": "91.204.239.255",
"91.212.124.0": "91.212.124.255",
"91.212.180.0": "91.212.180.255",
"91.213.31.0": "91.213.31.255",
"91.213.99.0": "91.213.99.255",
"91.213.99.2": "91.213.99.2",
"91.213.99.3": "91.213.99.3",
"91.213.99.4": "91.213.99.4",
"91.213.99.5": "91.213.99.5",
"91.213.99.7": "91.213.99.7",
"91.213.99.8": "91.213.99.8",
"91.213.99.9": "91.213.99.9",
"91.213.99.10": "91.213.99.10",
"91.213.99.12": "91.213.99.12",
"91.213.99.14": "91.213.99.14",
"91.213.99.15": "91.213.99.15",
"91.213.99.16": "91.213.99.16",
"91.213.99.17": "91.213.99.17",
"91.213.99.18": "91.213.99.18",
"91.213.99.19": "91.213.99.19",
"91.213.99.20": "91.213.99.20",
"91.213.99.21": "91.213.99.21",
"91.213.99.22": "91.213.99.22",
"91.213.99.23": "91.213.99.23",
"91.213.99.25": "91.213.99.25",
"91.213.99.26": "91.213.99.26",
"91.213.99.27": "91.213.99.27",
"91.213.99.28": "91.213.99.28",
"91.213.99.30": "91.213.99.30",
"91.213.99.31": "91.213.99.31",
"91.213.99.32": "91.213.99.32",
"91.213.99.33": "91.213.99.33",
"91.213.99.34": "91.213.99.34",
"91.213.99.35": "91.213.99.35",
"91.213.99.36": "91.213.99.36",
"91.213.99.37": "91.213.99.37",
"91.213.99.39": "91.213.99.39",
"91.213.99.40": "91.213.99.40",
"91.213.99.41": "91.213.99.41",
"91.213.99.42": "91.213.99.42",
"91.213.99.43": "91.213.99.43",
"91.213.99.44": "91.213.99.44",
"91.213.99.45": "91.213.99.45",
"91.213.99.46": "91.213.99.46",
"91.213.99.48": "91.213.99.48",
"91.213.99.49": "91.213.99.49",
"91.213.99.50": "91.213.99.50",
"91.213.99.51": "91.213.99.51",
"91.213.99.53": "91.213.99.53",
"91.213.99.56": "91.213.99.56",
"91.213.99.60": "91.213.99.60",
"91.213.99.61": "91.213.99.61",
"91.213.99.62": "91.213.99.62",
"91.213.99.63": "91.213.99.63",
"91.213.99.65": "91.213.99.65",
"91.213.99.66": "91.213.99.66",
"91.213.99.67": "91.213.99.67",
"91.213.99.68": "91.213.99.68",
"91.213.99.69": "91.213.99.69",
"91.213.99.70": "91.213.99.70",
"91.213.99.71": "91.213.99.71",
"91.213.99.72": "91.213.99.72",
"91.213.99.74": "91.213.99.74",
"91.213.99.75": "91.213.99.75",
"91.213.99.76": "91.213.99.76",
"91.213.99.77": "91.213.99.77",
"91.213.99.78": "91.213.99.78",
"91.213.99.79": "91.213.99.79",
"91.213.99.81": "91.213.99.81",
"91.213.99.82": "91.213.99.82",
"91.213.99.83": "91.213.99.83",
"91.213.99.84": "91.213.99.84",
"91.213.99.85": "91.213.99.85",
"91.213.99.87": "91.213.99.87",
"91.213.99.88": "91.213.99.88",
"91.213.99.89": "91.213.99.89",
"91.213.99.90": "91.213.99.90",
"91.213.99.91": "91.213.99.91",
"91.213.99.92": "91.213.99.92",
"91.213.99.93": "91.213.99.93",
"91.213.99.94": "91.213.99.94",
"91.213.99.96": "91.213.99.96",
"91.213.99.97": "91.213.99.97",
"91.213.99.99": "91.213.99.99",
"91.213.99.103": "91.213.99.103",
"91.213.99.104": "91.213.99.104",
"91.213.99.105": "91.213.99.105",
"91.213.99.106": "91.213.99.106",
"91.213.99.107": "91.213.99.107",
"91.213.99.108": "91.213.99.108",
"91.213.99.109": "91.213.99.109",
"91.213.99.110": "91.213.99.110",
"91.213.99.112": "91.213.99.112",
"91.213.99.113": "91.213.99.113",
"91.213.99.114": "91.213.99.114",
"91.213.99.115": "91.213.99.115",
"91.213.99.116": "91.213.99.116",
"91.213.99.117": "91.213.99.117",
"91.213.99.119": "91.213.99.119",
"91.213.99.121": "91.213.99.121",
"91.213.99.122": "91.213.99.122",
"91.213.99.123": "91.213.99.123",
"91.213.99.124": "91.213.99.124",
"91.213.99.125": "91.213.99.125",
"91.213.99.126": "91.213.99.126",
"91.213.99.127": "91.213.99.127",
"91.213.99.128": "91.213.99.128",
"91.213.99.129": "91.213.99.129",
"91.213.99.130": "91.213.99.130",
"91.213.99.131": "91.213.99.131",
"91.213.99.133": "91.213.99.133",
"91.213.99.135": "91.213.99.135",
"91.213.99.136": "91.213.99.136",
"91.213.99.137": "91.213.99.137",
"91.213.99.138": "91.213.99.138",
"91.213.99.139": "91.213.99.139",
"91.213.99.140": "91.213.99.140",
"91.213.99.142": "91.213.99.142",
"91.213.99.143": "91.213.99.143",
"91.213.99.144": "91.213.99.144",
"91.213.99.145": "91.213.99.145",
"91.213.99.147": "91.213.99.147",
"91.213.99.148": "91.213.99.148",
"91.213.99.149": "91.213.99.149",
"91.213.99.150": "91.213.99.150",
"91.213.99.151": "91.213.99.151",
"91.213.99.152": "91.213.99.152",
"91.213.99.153": "91.213.99.153",
"91.213.99.155": "91.213.99.155",
"91.213.99.156": "91.213.99.156",
"91.213.99.157": "91.213.99.157",
"91.213.99.158": "91.213.99.158",
"91.213.99.159": "91.213.99.159",
"91.213.99.160": "91.213.99.160",
"91.213.99.162": "91.213.99.162",
"91.213.99.163": "91.213.99.163",
"91.213.99.164": "91.213.99.164",
"91.213.99.165": "91.213.99.165",
"91.213.99.166": "91.213.99.166",
"91.213.99.169": "91.213.99.169",
"91.213.99.170": "91.213.99.170",
"91.213.99.171": "91.213.99.171",
"91.213.99.172": "91.213.99.172",
"91.213.99.173": "91.213.99.173",
"91.213.99.174": "91.213.99.174",
"91.213.99.175": "91.213.99.175",
"91.213.99.176": "91.213.99.176",
"91.213.99.177": "91.213.99.177",
"91.213.99.178": "91.213.99.178",
"91.213.99.179": "91.213.99.179",
"91.213.99.180": "91.213.99.180",
"91.213.99.181": "91.213.99.181",
"91.213.99.182": "91.213.99.182",
"91.213.99.183": "91.213.99.183",
"91.213.99.184": "91.213.99.184",
"91.213.99.185": "91.213.99.185",
"91.213.99.186": "91.213.99.186",
"91.213.99.188": "91.213.99.188",
"91.213.99.190": "91.213.99.190",
"91.213.99.191": "91.213.99.191",
"91.213.99.193": "91.213.99.193",
"91.213.99.194": "91.213.99.194",
"91.213.99.196": "91.213.99.196",
"91.213.99.197": "91.213.99.197",
"91.213.99.198": "91.213.99.198",
"91.213.99.199": "91.213.99.199",
"91.213.99.201": "91.213.99.201",
"91.213.99.202": "91.213.99.202",
"91.213.99.203": "91.213.99.203",
"91.213.99.204": "91.213.99.204",
"91.213.99.205": "91.213.99.205",
"91.213.99.206": "91.213.99.206",
"91.213.99.207": "91.213.99.207",
"91.213.99.208": "91.213.99.208",
"91.213.99.210": "91.213.99.210",
"91.213.99.211": "91.213.99.211",
"91.213.99.212": "91.213.99.212",
"91.213.99.213": "91.213.99.213",
"91.213.99.214": "91.213.99.214",
"91.213.99.215": "91.213.99.215",
"91.213.99.216": "91.213.99.216",
"91.213.99.217": "91.213.99.217",
"91.213.99.218": "91.213.99.218",
"91.213.99.219": "91.213.99.219",
"91.213.99.221": "91.213.99.221",
"91.213.99.225": "91.213.99.225",
"91.213.99.226": "91.213.99.226",
"91.213.99.227": "91.213.99.227",
"91.213.99.228": "91.213.99.228",
"91.213.99.229": "91.213.99.229",
"91.213.99.230": "91.213.99.230",
"91.213.99.231": "91.213.99.231",
"91.213.99.233": "91.213.99.233",
"91.213.99.234": "91.213.99.234",
"91.213.99.235": "91.213.99.235",
"91.213.99.236": "91.213.99.236",
"91.213.99.237": "91.213.99.237",
"91.213.99.238": "91.213.99.238",
"91.213.99.239": "91.213.99.239",
"91.213.99.240": "91.213.99.240",
"91.213.99.241": "91.213.99.241",
"91.213.99.242": "91.213.99.242",
"91.213.99.244": "91.213.99.244",
"91.213.99.245": "91.213.99.245",
"91.213.99.246": "91.213.99.246",
"91.213.99.247": "91.213.99.247",
"91.213.99.248": "91.213.99.248",
"91.213.99.249": "91.213.99.249",
"91.229.160.0": "91.229.160.255",
"91.229.162.0": "91.229.163.255",
"91.229.164.0": "91.229.164.255",
"91.229.165.0": "91.229.165.255",
"91.231.56.0": "91.231.59.255",
"91.233.218.0": "91.233.218.255",
"91.234.218.0": "91.234.219.255",
"91.240.12.0": "91.240.15.255",
"91.240.128.0": "91.240.128.255",
"91.240.128.2": "91.240.128.2",
"92.38.5.0": "92.38.5.255",
"92.38.16.0": "92.38.19.255",
"92.38.24.0": "92.38.27.255",
"92.38.35.0": "92.38.35.255",
"92.38.39.0": "92.38.39.255",
"92.38.50.0": "92.38.50.255",
"92.38.51.0": "92.38.51.255",
"92.38.52.0": "92.38.55.255",
"92.63.204.0": "92.63.204.255",
"92.63.205.0": "92.63.205.255",
"92.63.206.0": "92.63.206.255",
"92.63.207.0": "92.63.207.255",
"92.246.76.0": "92.246.79.255",
"92.253.196.0": "92.253.199.255",
"92.253.202.0": "92.253.202.255",
"93.157.58.0": "93.157.58.255",
"93.170.6.0": "93.170.6.255",
"93.170.10.0": "93.170.10.255",
"93.170.11.0": "93.170.11.255",
"93.170.16.0": "93.170.23.255",
"93.170.24.0": "93.170.24.255",
"93.170.160.0": "93.170.163.255",
"93.170.164.0": "93.170.167.255",
"93.170.168.0": "93.170.169.255",
"93.170.208.0": "93.170.211.255",
"93.170.220.0": "93.170.223.255",
"93.171.0.0": "93.171.1.255",
"93.171.188.0": "93.171.191.255",
"93.171.210.0": "93.171.211.255",
"93.171.226.0": "93.171.226.255",
"93.171.232.0": "93.171.235.255",
"93.171.238.0": "93.171.238.255",
"94.141.64.0": "94.141.95.255",
"94.141.68.0": "94.141.69.255",
"94.141.70.0": "94.141.70.255",
"94.141.76.0": "94.141.76.255",
"94.141.81.0": "94.141.81.255",
"94.141.89.0": "94.141.89.255",
"94.154.10.0": "94.154.10.255",
"94.158.48.0": "94.158.63.255",
"94.158.59.0": "94.158.59.255",
"94.158.60.0": "94.158.60.255",
"94.158.61.0": "94.158.61.255",
"94.158.62.0": "94.158.62.255",
"94.230.224.0": "94.230.239.255",
"94.232.24.0": "94.232.27.255",
"95.46.47.0": "95.46.47.255",
"95.46.64.0": "95.46.71.255",
"95.46.80.0": "95.46.87.255",
"95.46.88.0": "95.46.95.255",
"95.46.96.0": "95.46.96.255",
"95.46.100.0": "95.46.103.255",
"95.46.166.0": "95.46.167.255",
"95.46.174.0": "95.46.175.255",
"95.47.120.0": "95.47.121.255",
"95.47.127.0": "95.47.127.255",
"95.47.153.0": "95.47.153.255",
"95.47.237.0": "95.47.237.255",
"95.130.227.0": "95.130.227.255",
"95.214.208.0": "95.214.211.255",
"109.94.172.0": "109.94.175.255",
"109.207.240.0": "109.207.255.255",
"109.248.220.0": "109.248.220.255",
"109.248.221.0": "109.248.221.255",
"118.88.16.0": "118.88.23.255",
"139.28.44.0": "139.28.47.255",
"146.120.16.0": "146.120.16.255",
"146.120.232.0": "146.120.233.255",
"146.120.240.0": "146.120.240.255",
"146.158.15.0": "146.158.15.255",
"146.158.16.0": "146.158.19.255",
"146.158.18.0": "146.158.19.255",
"146.158.20.0": "146.158.23.255",
"146.158.28.0": "146.158.29.255",
"146.158.68.0": "146.158.71.255",
"176.96.236.0": "176.96.236.255",
"176.96.241.0": "176.96.241.255",
"176.96.243.0": "176.96.243.255",
"176.96.254.0": "176.96.254.255",
"178.216.128.0": "178.216.135.255",
"178.216.131.0": "178.216.131.255",
"178.218.200.0": "178.218.207.255",
"185.4.160.0": "185.4.163.255",
"185.6.40.0": "185.6.40.255",
"185.6.41.0": "185.6.41.255",
"185.6.42.0": "185.6.43.255",
"185.63.224.0": "185.63.227.255",
"185.65.201.0": "185.65.201.255",
"185.65.203.0": "185.65.203.255",
"185.74.4.0": "185.74.7.255",
"185.74.100.0": "185.74.100.255",
"185.74.101.0": "185.74.101.255",
"185.74.102.0": "185.74.102.255",
"185.74.103.0": "185.74.103.255",
"185.76.12.0": "185.76.15.255",
"185.93.124.0": "185.93.124.255",
"185.93.125.0": "185.93.125.255",
"185.93.126.0": "185.93.126.255",
"185.93.127.0": "185.93.127.255",
"185.100.52.0": "185.100.55.255",
"185.139.136.0": "185.139.137.255",
"185.139.138.0": "185.139.139.255",
"185.163.24.0": "185.163.27.255",
"185.166.255.0": "185.166.255.255",
"185.178.51.0": "185.178.51.255",
"185.183.240.0": "185.183.243.255",
"185.183.242.0": "185.183.243.255",
"185.196.212.0": "185.196.215.255",
"185.196.216.0": "185.196.219.255",
"185.203.236.0": "185.203.239.255",
"185.208.178.0": "185.208.178.255",
"185.208.179.0": "185.208.179.255",
"185.211.128.0": "185.211.131.255",
"185.213.228.0": "185.213.231.255",
"185.213.229.0": "185.213.229.255",
"185.213.230.0": "185.213.230.255",
"185.215.5.0": "185.215.5.255",
"185.217.131.0": "185.217.131.255",
"185.224.219.0": "185.224.219.255",
"185.230.204.0": "185.230.207.255",
"185.230.205.0": "185.230.205.255",
"185.230.206.0": "185.230.206.255",
"185.230.207.0": "185.230.207.255",
"185.231.66.0": "185.231.66.255",
"185.239.152.0": "185.239.152.255",
"185.248.44.0": "185.248.47.255",
"188.113.192.0": "188.113.192.255",
"188.113.193.0": "188.113.193.255",
"188.113.194.0": "188.113.194.255",
"188.113.195.0": "188.113.195.255",
"188.113.196.0": "188.113.196.255",
"188.113.197.0": "188.113.197.255",
"188.113.198.0": "188.113.198.255",
"188.113.199.0": "188.113.199.255",
"188.113.200.0": "188.113.200.255",
"188.113.201.0": "188.113.201.255",
"188.113.202.0": "188.113.202.255",
"188.113.203.0": "188.113.203.255",
"188.113.204.0": "188.113.204.255",
"188.113.205.0": "188.113.205.255",
"188.113.206.0": "188.113.206.255",
"188.113.207.0": "188.113.207.255",
"188.113.208.0": "188.113.208.255",
"188.113.209.0": "188.113.209.255",
"188.113.210.0": "188.113.210.255",
"188.113.211.0": "188.113.211.255",
"188.113.212.0": "188.113.212.255",
"188.113.213.0": "188.113.213.255",
"188.113.214.0": "188.113.214.255",
"188.113.215.0": "188.113.215.255",
"188.113.216.0": "188.113.216.255",
"188.113.217.0": "188.113.217.255",
"188.113.218.0": "188.113.218.255",
"188.113.219.0": "188.113.219.255",
"188.113.221.0": "188.113.221.255",
"188.113.222.0": "188.113.222.255",
"188.113.224.0": "188.113.224.255",
"188.113.225.0": "188.113.225.255",
"188.113.226.0": "188.113.226.255",
"188.113.227.0": "188.113.227.255",
"188.113.228.0": "188.113.228.255",
"188.113.229.0": "188.113.229.255",
"188.113.230.0": "188.113.230.255",
"188.113.231.0": "188.113.231.255",
"188.113.232.0": "188.113.232.255",
"188.113.233.0": "188.113.233.255",
"188.113.234.0": "188.113.234.255",
"188.113.235.0": "188.113.235.255",
"188.113.236.0": "188.113.236.255",
"188.113.237.0": "188.113.237.255",
"188.113.238.0": "188.113.238.255",
"188.113.239.0": "188.113.239.255",
"188.113.240.0": "188.113.240.255",
"188.113.241.0": "188.113.241.255",
"188.113.247.0": "188.113.247.255",
"188.113.248.0": "188.113.248.255",
"188.130.162.0": "188.130.162.255",
"192.166.228.0": "192.166.231.255",
"193.22.228.0": "193.22.231.255",
"193.27.206.0": "193.27.207.255",
"193.104.179.0": "193.104.179.255",
"193.107.16.0": "193.107.19.255",
"193.222.110.0": "193.222.110.255",
"194.32.96.0": "194.32.99.255",
"194.55.92.0": "194.55.95.255",
"194.93.24.0": "194.93.27.255",
"194.113.153.0": "194.113.153.255",
"195.88.214.0": "195.88.215.255",
"195.158.0.0": "195.158.31.255",
"195.158.5.80": "195.158.5.95",
"195.158.28.120": "195.158.28.127",
"195.158.29.128": "195.158.29.159",
"195.158.31.8": "195.158.31.11",
"195.158.31.32": "195.158.31.39",
"195.158.31.132": "195.158.31.135",
"195.211.180.0": "195.211.180.255",
"195.211.181.0": "195.211.181.255",
"195.211.182.0": "195.211.182.255",
"195.211.183.0": "195.211.183.255",
"202.79.184.0": "202.79.191.255",
"212.115.112.0": "212.115.115.255",
"213.206.32.0": "213.206.63.255",
"213.230.64.0": "213.230.127.255",
"213.230.106.112": "213.230.106.127",
"213.232.225.0": "213.232.225.255",
"213.232.245.0": "213.232.245.255",
"217.12.80.0": "217.12.80.255",
"217.12.81.0": "217.12.81.255",
"217.12.82.0": "217.12.82.255",
"217.12.83.0": "217.12.83.255",
"217.12.84.0": "217.12.84.255",
"217.12.85.0": "217.12.85.255",
"217.12.86.0": "217.12.86.255",
"217.12.87.0": "217.12.87.255",
"217.12.88.0": "217.12.88.255",
"217.29.112.0": "217.29.127.255",
"217.29.123.64": "217.29.123.79",
"217.29.124.204": "217.29.124.204",
"217.29.124.208": "217.29.124.215",
"217.30.160.0": "217.30.175.255",
"217.30.164.0": "217.30.167.255",
"217.30.168.0": "217.30.168.255",
"217.30.174.0": "217.30.174.255"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment