class="flexbox-column"> <div class="qr-box"> <div class="inner-wrap"> <h3>Bitcoin [BTC]</h3> <p>bc1qs43kh6tvhch02dtsp7x7hcrwj8fwe4rzy7lp0h</p> </div> <img src="static/images/btc.png" height="160" width="160" alt="xmr qr code (ahwx)" /> </div> <div class="flex-row"> <a href="https://ko-fi.com/Ahwxorg" target="_blank" ><img src="static/images/kofi.png" alt="kifi img" height="50" width="auto" alt="buy-me-a-coffee img" /></a> </div> </div> </div> <?php require_once "misc/header.php"; require_once "misc/tools.php"; $instances_json = json_decode(file_get_contents("instances.json"), true); $librey_instances = array_filter($instances_json['instances'], fn($n) => $n['librey']); $librex_instances = array_filter($instances_json['instances'], fn($n) => !$n['librey']); function list_instances($instances) { echo "<table><tr>"; echo "<th>Clearnet</th>"; echo "<th>Tor</th>"; echo "<th>I2P</th>"; echo "<th>Country</th>"; echo "</tr>"; foreach($instances as $instance) { $hostname = parse_url($instance["clearnet"])["host"]; $country = get_country_emote($instance["country"]) . $instance["country"]; $is_tor = !is_null($instance["tor"]); $is_i2p = !is_null($instance["i2p"]); echo "<tr>"; echo "<td><a href="" . $instance["clearnet"] . "">" . $hostname . "</a></td>"; echo $is_tor ? "<td><a href="" . $instance["tor"] . "">u{2705}</a></td>" :"<td>u{274C}</td>"; echo "<td>$country</td>"; echo "</tr>"; foreach($instances as