├── .github └── workflows │ └── main.yml ├── LICENSE ├── README.md ├── about.html ├── assets ├── bootstrap.bundle.min.js ├── bootstrap.min.css ├── img │ ├── dana.svg │ ├── facebook.png │ ├── index.php │ ├── saweria.png │ ├── telegram.png │ └── youtube.png ├── index.php ├── jquery.min.js ├── script.min.js ├── script.min_en.js └── styles.min.css ├── dist ├── assets │ ├── img │ │ ├── favicon.svg │ │ ├── index.php │ │ └── mutiara.svg │ └── index.php ├── css │ ├── adminlte.css │ ├── adminlte.css.map │ ├── adminlte.min.css │ ├── adminlte.min.css.map │ ├── adminlte.rtl.css │ ├── adminlte.rtl.css.map │ ├── adminlte.rtl.min.css │ ├── adminlte.rtl.min.css.map │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── index.php │ └── logo.css ├── index.php ├── js │ ├── adminlte.js │ ├── adminlte.js.map │ ├── adminlte.min.js │ ├── adminlte.min.js.map │ └── index.php ├── login │ ├── all.min.css │ ├── bootstrap.min.css │ ├── bootstrap.min.js │ ├── index.php │ ├── jquery-3.5.1.slim.min.js │ └── popper.min.js └── pages │ ├── add_bandwidth.php │ ├── add_batch.php │ ├── add_mac.php │ ├── add_plan.php │ ├── add_user.php │ ├── api │ ├── bandwidth.php │ ├── daily_user.php │ ├── data.php │ ├── index.php │ ├── mac_address.php │ └── radgroup.php │ ├── auth.php │ ├── billing │ ├── admin.php │ ├── auth.php │ ├── balance.php │ ├── edit.php │ ├── index.php │ ├── logout.php │ ├── message.php │ └── update.php │ ├── client_tester.php │ ├── data │ ├── backup.php │ ├── data.php │ ├── db_config.php │ ├── history.php │ ├── index.php │ ├── mysqli_db.php │ ├── online.php │ ├── pdo_db.php │ ├── phpqrcode │ │ ├── .png-errors.txt │ │ ├── CHANGELOG │ │ ├── INSTALL │ │ ├── LICENSE │ │ ├── Maizil.png-errors.txt │ │ ├── README │ │ ├── VERSION │ │ ├── bindings │ │ │ └── tcpdf │ │ │ │ └── qrcode.php │ │ ├── cache │ │ │ ├── frame_1.dat │ │ │ ├── frame_1.png │ │ │ ├── frame_10.dat │ │ │ ├── frame_10.png │ │ │ ├── frame_11.dat │ │ │ ├── frame_11.png │ │ │ ├── frame_12.dat │ │ │ ├── frame_12.png │ │ │ ├── frame_13.dat │ │ │ ├── frame_13.png │ │ │ ├── frame_14.dat │ │ │ ├── frame_14.png │ │ │ ├── frame_15.dat │ │ │ ├── frame_15.png │ │ │ ├── frame_16.dat │ │ │ ├── frame_16.png │ │ │ ├── frame_17.dat │ │ │ ├── frame_17.png │ │ │ ├── frame_18.dat │ │ │ ├── frame_18.png │ │ │ ├── frame_19.dat │ │ │ ├── frame_19.png │ │ │ ├── frame_2.dat │ │ │ ├── frame_2.png │ │ │ ├── frame_20.dat │ │ │ ├── frame_20.png │ │ │ ├── frame_21.dat │ │ │ ├── frame_21.png │ │ │ ├── frame_22.dat │ │ │ ├── frame_22.png │ │ │ ├── frame_23.dat │ │ │ ├── frame_23.png │ │ │ ├── frame_24.dat │ │ │ ├── frame_24.png │ │ │ ├── frame_25.dat │ │ │ ├── frame_25.png │ │ │ ├── frame_26.dat │ │ │ ├── frame_26.png │ │ │ ├── frame_27.dat │ │ │ ├── frame_27.png │ │ │ ├── frame_28.dat │ │ │ ├── frame_28.png │ │ │ ├── frame_29.dat │ │ │ ├── frame_29.png │ │ │ ├── frame_3.dat │ │ │ ├── frame_3.png │ │ │ ├── frame_30.dat │ │ │ ├── frame_30.png │ │ │ ├── frame_31.dat │ │ │ ├── frame_31.png │ │ │ ├── frame_32.dat │ │ │ ├── frame_32.png │ │ │ ├── frame_33.dat │ │ │ ├── frame_33.png │ │ │ ├── frame_34.dat │ │ │ ├── frame_34.png │ │ │ ├── frame_35.dat │ │ │ ├── frame_35.png │ │ │ ├── frame_36.dat │ │ │ ├── frame_36.png │ │ │ ├── frame_37.dat │ │ │ ├── frame_37.png │ │ │ ├── frame_38.dat │ │ │ ├── frame_38.png │ │ │ ├── frame_39.dat │ │ │ ├── frame_39.png │ │ │ ├── frame_4.dat │ │ │ ├── frame_4.png │ │ │ ├── frame_40.dat │ │ │ ├── frame_40.png │ │ │ ├── frame_5.dat │ │ │ ├── frame_5.png │ │ │ ├── frame_6.dat │ │ │ ├── frame_6.png │ │ │ ├── frame_7.dat │ │ │ ├── frame_7.png │ │ │ ├── frame_8.dat │ │ │ ├── frame_8.png │ │ │ ├── frame_9.dat │ │ │ ├── frame_9.png │ │ │ ├── mask_0 │ │ │ │ ├── mask_101_0.dat │ │ │ │ ├── mask_105_0.dat │ │ │ │ ├── mask_109_0.dat │ │ │ │ ├── mask_113_0.dat │ │ │ │ ├── mask_117_0.dat │ │ │ │ ├── mask_121_0.dat │ │ │ │ ├── mask_125_0.dat │ │ │ │ ├── mask_129_0.dat │ │ │ │ ├── mask_133_0.dat │ │ │ │ ├── mask_137_0.dat │ │ │ │ ├── mask_141_0.dat │ │ │ │ ├── mask_145_0.dat │ │ │ │ ├── mask_149_0.dat │ │ │ │ ├── mask_153_0.dat │ │ │ │ ├── mask_157_0.dat │ │ │ │ ├── mask_161_0.dat │ │ │ │ ├── mask_165_0.dat │ │ │ │ ├── mask_169_0.dat │ │ │ │ ├── mask_173_0.dat │ │ │ │ ├── mask_177_0.dat │ │ │ │ ├── mask_21_0.dat │ │ │ │ ├── mask_25_0.dat │ │ │ │ ├── mask_29_0.dat │ │ │ │ ├── mask_33_0.dat │ │ │ │ ├── mask_37_0.dat │ │ │ │ ├── mask_41_0.dat │ │ │ │ ├── mask_45_0.dat │ │ │ │ ├── mask_49_0.dat │ │ │ │ ├── mask_53_0.dat │ │ │ │ ├── mask_57_0.dat │ │ │ │ ├── mask_61_0.dat │ │ │ │ ├── mask_65_0.dat │ │ │ │ ├── mask_69_0.dat │ │ │ │ ├── mask_73_0.dat │ │ │ │ ├── mask_77_0.dat │ │ │ │ ├── mask_81_0.dat │ │ │ │ ├── mask_85_0.dat │ │ │ │ ├── mask_89_0.dat │ │ │ │ ├── mask_93_0.dat │ │ │ │ └── mask_97_0.dat │ │ │ ├── mask_1 │ │ │ │ ├── mask_101_1.dat │ │ │ │ ├── mask_105_1.dat │ │ │ │ ├── mask_109_1.dat │ │ │ │ ├── mask_113_1.dat │ │ │ │ ├── mask_117_1.dat │ │ │ │ ├── mask_121_1.dat │ │ │ │ ├── mask_125_1.dat │ │ │ │ ├── mask_129_1.dat │ │ │ │ ├── mask_133_1.dat │ │ │ │ ├── mask_137_1.dat │ │ │ │ ├── mask_141_1.dat │ │ │ │ ├── mask_145_1.dat │ │ │ │ ├── mask_149_1.dat │ │ │ │ ├── mask_153_1.dat │ │ │ │ ├── mask_157_1.dat │ │ │ │ ├── mask_161_1.dat │ │ │ │ ├── mask_165_1.dat │ │ │ │ ├── mask_169_1.dat │ │ │ │ ├── mask_173_1.dat │ │ │ │ ├── mask_177_1.dat │ │ │ │ ├── mask_21_1.dat │ │ │ │ ├── mask_25_1.dat │ │ │ │ ├── mask_29_1.dat │ │ │ │ ├── mask_33_1.dat │ │ │ │ ├── mask_37_1.dat │ │ │ │ ├── mask_41_1.dat │ │ │ │ ├── mask_45_1.dat │ │ │ │ ├── mask_49_1.dat │ │ │ │ ├── mask_53_1.dat │ │ │ │ ├── mask_57_1.dat │ │ │ │ ├── mask_61_1.dat │ │ │ │ ├── mask_65_1.dat │ │ │ │ ├── mask_69_1.dat │ │ │ │ ├── mask_73_1.dat │ │ │ │ ├── mask_77_1.dat │ │ │ │ ├── mask_81_1.dat │ │ │ │ ├── mask_85_1.dat │ │ │ │ ├── mask_89_1.dat │ │ │ │ ├── mask_93_1.dat │ │ │ │ └── mask_97_1.dat │ │ │ ├── mask_2 │ │ │ │ ├── mask_101_2.dat │ │ │ │ ├── mask_105_2.dat │ │ │ │ ├── mask_109_2.dat │ │ │ │ ├── mask_113_2.dat │ │ │ │ ├── mask_117_2.dat │ │ │ │ ├── mask_121_2.dat │ │ │ │ ├── mask_125_2.dat │ │ │ │ ├── mask_129_2.dat │ │ │ │ ├── mask_133_2.dat │ │ │ │ ├── mask_137_2.dat │ │ │ │ ├── mask_141_2.dat │ │ │ │ ├── mask_145_2.dat │ │ │ │ ├── mask_149_2.dat │ │ │ │ ├── mask_153_2.dat │ │ │ │ ├── mask_157_2.dat │ │ │ │ ├── mask_161_2.dat │ │ │ │ ├── mask_165_2.dat │ │ │ │ ├── mask_169_2.dat │ │ │ │ ├── mask_173_2.dat │ │ │ │ ├── mask_177_2.dat │ │ │ │ ├── mask_21_2.dat │ │ │ │ ├── mask_25_2.dat │ │ │ │ ├── mask_29_2.dat │ │ │ │ ├── mask_33_2.dat │ │ │ │ ├── mask_37_2.dat │ │ │ │ ├── mask_41_2.dat │ │ │ │ ├── mask_45_2.dat │ │ │ │ ├── mask_49_2.dat │ │ │ │ ├── mask_53_2.dat │ │ │ │ ├── mask_57_2.dat │ │ │ │ ├── mask_61_2.dat │ │ │ │ ├── mask_65_2.dat │ │ │ │ ├── mask_69_2.dat │ │ │ │ ├── mask_73_2.dat │ │ │ │ ├── mask_77_2.dat │ │ │ │ ├── mask_81_2.dat │ │ │ │ ├── mask_85_2.dat │ │ │ │ ├── mask_89_2.dat │ │ │ │ ├── mask_93_2.dat │ │ │ │ └── mask_97_2.dat │ │ │ ├── mask_3 │ │ │ │ ├── mask_101_3.dat │ │ │ │ ├── mask_105_3.dat │ │ │ │ ├── mask_109_3.dat │ │ │ │ ├── mask_113_3.dat │ │ │ │ ├── mask_117_3.dat │ │ │ │ ├── mask_121_3.dat │ │ │ │ ├── mask_125_3.dat │ │ │ │ ├── mask_129_3.dat │ │ │ │ ├── mask_133_3.dat │ │ │ │ ├── mask_137_3.dat │ │ │ │ ├── mask_141_3.dat │ │ │ │ ├── mask_145_3.dat │ │ │ │ ├── mask_149_3.dat │ │ │ │ ├── mask_153_3.dat │ │ │ │ ├── mask_157_3.dat │ │ │ │ ├── mask_161_3.dat │ │ │ │ ├── mask_165_3.dat │ │ │ │ ├── mask_169_3.dat │ │ │ │ ├── mask_173_3.dat │ │ │ │ ├── mask_177_3.dat │ │ │ │ ├── mask_21_3.dat │ │ │ │ ├── mask_25_3.dat │ │ │ │ ├── mask_29_3.dat │ │ │ │ ├── mask_33_3.dat │ │ │ │ ├── mask_37_3.dat │ │ │ │ ├── mask_41_3.dat │ │ │ │ ├── mask_45_3.dat │ │ │ │ ├── mask_49_3.dat │ │ │ │ ├── mask_53_3.dat │ │ │ │ ├── mask_57_3.dat │ │ │ │ ├── mask_61_3.dat │ │ │ │ ├── mask_65_3.dat │ │ │ │ ├── mask_69_3.dat │ │ │ │ ├── mask_73_3.dat │ │ │ │ ├── mask_77_3.dat │ │ │ │ ├── mask_81_3.dat │ │ │ │ ├── mask_85_3.dat │ │ │ │ ├── mask_89_3.dat │ │ │ │ ├── mask_93_3.dat │ │ │ │ └── mask_97_3.dat │ │ │ ├── mask_4 │ │ │ │ ├── mask_101_4.dat │ │ │ │ ├── mask_105_4.dat │ │ │ │ ├── mask_109_4.dat │ │ │ │ ├── mask_113_4.dat │ │ │ │ ├── mask_117_4.dat │ │ │ │ ├── mask_121_4.dat │ │ │ │ ├── mask_125_4.dat │ │ │ │ ├── mask_129_4.dat │ │ │ │ ├── mask_133_4.dat │ │ │ │ ├── mask_137_4.dat │ │ │ │ ├── mask_141_4.dat │ │ │ │ ├── mask_145_4.dat │ │ │ │ ├── mask_149_4.dat │ │ │ │ ├── mask_153_4.dat │ │ │ │ ├── mask_157_4.dat │ │ │ │ ├── mask_161_4.dat │ │ │ │ ├── mask_165_4.dat │ │ │ │ ├── mask_169_4.dat │ │ │ │ ├── mask_173_4.dat │ │ │ │ ├── mask_177_4.dat │ │ │ │ ├── mask_21_4.dat │ │ │ │ ├── mask_25_4.dat │ │ │ │ ├── mask_29_4.dat │ │ │ │ ├── mask_33_4.dat │ │ │ │ ├── mask_37_4.dat │ │ │ │ ├── mask_41_4.dat │ │ │ │ ├── mask_45_4.dat │ │ │ │ ├── mask_49_4.dat │ │ │ │ ├── mask_53_4.dat │ │ │ │ ├── mask_57_4.dat │ │ │ │ ├── mask_61_4.dat │ │ │ │ ├── mask_65_4.dat │ │ │ │ ├── mask_69_4.dat │ │ │ │ ├── mask_73_4.dat │ │ │ │ ├── mask_77_4.dat │ │ │ │ ├── mask_81_4.dat │ │ │ │ ├── mask_85_4.dat │ │ │ │ ├── mask_89_4.dat │ │ │ │ ├── mask_93_4.dat │ │ │ │ └── mask_97_4.dat │ │ │ ├── mask_5 │ │ │ │ ├── mask_101_5.dat │ │ │ │ ├── mask_105_5.dat │ │ │ │ ├── mask_109_5.dat │ │ │ │ ├── mask_113_5.dat │ │ │ │ ├── mask_117_5.dat │ │ │ │ ├── mask_121_5.dat │ │ │ │ ├── mask_125_5.dat │ │ │ │ ├── mask_129_5.dat │ │ │ │ ├── mask_133_5.dat │ │ │ │ ├── mask_137_5.dat │ │ │ │ ├── mask_141_5.dat │ │ │ │ ├── mask_145_5.dat │ │ │ │ ├── mask_149_5.dat │ │ │ │ ├── mask_153_5.dat │ │ │ │ ├── mask_157_5.dat │ │ │ │ ├── mask_161_5.dat │ │ │ │ ├── mask_165_5.dat │ │ │ │ ├── mask_169_5.dat │ │ │ │ ├── mask_173_5.dat │ │ │ │ ├── mask_177_5.dat │ │ │ │ ├── mask_21_5.dat │ │ │ │ ├── mask_25_5.dat │ │ │ │ ├── mask_29_5.dat │ │ │ │ ├── mask_33_5.dat │ │ │ │ ├── mask_37_5.dat │ │ │ │ ├── mask_41_5.dat │ │ │ │ ├── mask_45_5.dat │ │ │ │ ├── mask_49_5.dat │ │ │ │ ├── mask_53_5.dat │ │ │ │ ├── mask_57_5.dat │ │ │ │ ├── mask_61_5.dat │ │ │ │ ├── mask_65_5.dat │ │ │ │ ├── mask_69_5.dat │ │ │ │ ├── mask_73_5.dat │ │ │ │ ├── mask_77_5.dat │ │ │ │ ├── mask_81_5.dat │ │ │ │ ├── mask_85_5.dat │ │ │ │ ├── mask_89_5.dat │ │ │ │ ├── mask_93_5.dat │ │ │ │ └── mask_97_5.dat │ │ │ ├── mask_6 │ │ │ │ ├── mask_101_6.dat │ │ │ │ ├── mask_105_6.dat │ │ │ │ ├── mask_109_6.dat │ │ │ │ ├── mask_113_6.dat │ │ │ │ ├── mask_117_6.dat │ │ │ │ ├── mask_121_6.dat │ │ │ │ ├── mask_125_6.dat │ │ │ │ ├── mask_129_6.dat │ │ │ │ ├── mask_133_6.dat │ │ │ │ ├── mask_137_6.dat │ │ │ │ ├── mask_141_6.dat │ │ │ │ ├── mask_145_6.dat │ │ │ │ ├── mask_149_6.dat │ │ │ │ ├── mask_153_6.dat │ │ │ │ ├── mask_157_6.dat │ │ │ │ ├── mask_161_6.dat │ │ │ │ ├── mask_165_6.dat │ │ │ │ ├── mask_169_6.dat │ │ │ │ ├── mask_173_6.dat │ │ │ │ ├── mask_177_6.dat │ │ │ │ ├── mask_21_6.dat │ │ │ │ ├── mask_25_6.dat │ │ │ │ ├── mask_29_6.dat │ │ │ │ ├── mask_33_6.dat │ │ │ │ ├── mask_37_6.dat │ │ │ │ ├── mask_41_6.dat │ │ │ │ ├── mask_45_6.dat │ │ │ │ ├── mask_49_6.dat │ │ │ │ ├── mask_53_6.dat │ │ │ │ ├── mask_57_6.dat │ │ │ │ ├── mask_61_6.dat │ │ │ │ ├── mask_65_6.dat │ │ │ │ ├── mask_69_6.dat │ │ │ │ ├── mask_73_6.dat │ │ │ │ ├── mask_77_6.dat │ │ │ │ ├── mask_81_6.dat │ │ │ │ ├── mask_85_6.dat │ │ │ │ ├── mask_89_6.dat │ │ │ │ ├── mask_93_6.dat │ │ │ │ └── mask_97_6.dat │ │ │ └── mask_7 │ │ │ │ ├── mask_101_7.dat │ │ │ │ ├── mask_105_7.dat │ │ │ │ ├── mask_109_7.dat │ │ │ │ ├── mask_113_7.dat │ │ │ │ ├── mask_117_7.dat │ │ │ │ ├── mask_121_7.dat │ │ │ │ ├── mask_125_7.dat │ │ │ │ ├── mask_129_7.dat │ │ │ │ ├── mask_133_7.dat │ │ │ │ ├── mask_137_7.dat │ │ │ │ ├── mask_141_7.dat │ │ │ │ ├── mask_145_7.dat │ │ │ │ ├── mask_149_7.dat │ │ │ │ ├── mask_153_7.dat │ │ │ │ ├── mask_157_7.dat │ │ │ │ ├── mask_161_7.dat │ │ │ │ ├── mask_165_7.dat │ │ │ │ ├── mask_169_7.dat │ │ │ │ ├── mask_173_7.dat │ │ │ │ ├── mask_177_7.dat │ │ │ │ ├── mask_21_7.dat │ │ │ │ ├── mask_25_7.dat │ │ │ │ ├── mask_29_7.dat │ │ │ │ ├── mask_33_7.dat │ │ │ │ ├── mask_37_7.dat │ │ │ │ ├── mask_41_7.dat │ │ │ │ ├── mask_45_7.dat │ │ │ │ ├── mask_49_7.dat │ │ │ │ ├── mask_53_7.dat │ │ │ │ ├── mask_57_7.dat │ │ │ │ ├── mask_61_7.dat │ │ │ │ ├── mask_65_7.dat │ │ │ │ ├── mask_69_7.dat │ │ │ │ ├── mask_73_7.dat │ │ │ │ ├── mask_77_7.dat │ │ │ │ ├── mask_81_7.dat │ │ │ │ ├── mask_85_7.dat │ │ │ │ ├── mask_89_7.dat │ │ │ │ ├── mask_93_7.dat │ │ │ │ └── mask_97_7.dat │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── index.php │ │ ├── phpqrcode.php │ │ ├── qrbitstream.php │ │ ├── qrconfig.php │ │ ├── qrconst.php │ │ ├── qrencode.php │ │ ├── qrimage.php │ │ ├── qrinput.php │ │ ├── qrlib.php │ │ ├── qrmask.php │ │ ├── qrrscode.php │ │ ├── qrspec.php │ │ ├── qrsplit.php │ │ ├── qrtools.php │ │ ├── tools │ │ │ ├── merge.bat │ │ │ ├── merge.php │ │ │ ├── merge.sh │ │ │ ├── merged_config.php │ │ │ └── merged_header.php │ │ └── vendor │ │ │ ├── autoload.php │ │ │ ├── chillerlan │ │ │ ├── php-qrcode │ │ │ │ ├── .idea │ │ │ │ │ ├── codeStyles │ │ │ │ │ │ ├── Project.xml │ │ │ │ │ │ └── codeStyleConfig.xml │ │ │ │ │ └── inspectionProfiles │ │ │ │ │ │ └── Project_Default.xml │ │ │ │ ├── LICENSE-ASL-2.0 │ │ │ │ ├── LICENSE-MIT │ │ │ │ ├── NOTICE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ │ ├── Common │ │ │ │ │ ├── BitBuffer.php │ │ │ │ │ ├── ECICharset.php │ │ │ │ │ ├── EccLevel.php │ │ │ │ │ ├── GDLuminanceSource.php │ │ │ │ │ ├── GF256.php │ │ │ │ │ ├── GenericGFPoly.php │ │ │ │ │ ├── IMagickLuminanceSource.php │ │ │ │ │ ├── LuminanceSourceAbstract.php │ │ │ │ │ ├── LuminanceSourceInterface.php │ │ │ │ │ ├── MaskPattern.php │ │ │ │ │ ├── Mode.php │ │ │ │ │ └── Version.php │ │ │ │ │ ├── Data │ │ │ │ │ ├── AlphaNum.php │ │ │ │ │ ├── Byte.php │ │ │ │ │ ├── ECI.php │ │ │ │ │ ├── Hanzi.php │ │ │ │ │ ├── Kanji.php │ │ │ │ │ ├── Number.php │ │ │ │ │ ├── QRCodeDataException.php │ │ │ │ │ ├── QRData.php │ │ │ │ │ ├── QRDataModeAbstract.php │ │ │ │ │ ├── QRDataModeInterface.php │ │ │ │ │ ├── QRMatrix.php │ │ │ │ │ └── ReedSolomonEncoder.php │ │ │ │ │ ├── Decoder │ │ │ │ │ ├── Binarizer.php │ │ │ │ │ ├── BitMatrix.php │ │ │ │ │ ├── Decoder.php │ │ │ │ │ ├── DecoderResult.php │ │ │ │ │ ├── QRCodeDecoderException.php │ │ │ │ │ └── ReedSolomonDecoder.php │ │ │ │ │ ├── Detector │ │ │ │ │ ├── AlignmentPattern.php │ │ │ │ │ ├── AlignmentPatternFinder.php │ │ │ │ │ ├── Detector.php │ │ │ │ │ ├── FinderPattern.php │ │ │ │ │ ├── FinderPatternFinder.php │ │ │ │ │ ├── GridSampler.php │ │ │ │ │ ├── PerspectiveTransform.php │ │ │ │ │ ├── QRCodeDetectorException.php │ │ │ │ │ └── ResultPoint.php │ │ │ │ │ ├── Output │ │ │ │ │ ├── QRCodeOutputException.php │ │ │ │ │ ├── QREps.php │ │ │ │ │ ├── QRFpdf.php │ │ │ │ │ ├── QRGdImage.php │ │ │ │ │ ├── QRGdImageBMP.php │ │ │ │ │ ├── QRGdImageGIF.php │ │ │ │ │ ├── QRGdImageJPEG.php │ │ │ │ │ ├── QRGdImagePNG.php │ │ │ │ │ ├── QRGdImageWEBP.php │ │ │ │ │ ├── QRImage.php │ │ │ │ │ ├── QRImagick.php │ │ │ │ │ ├── QRMarkup.php │ │ │ │ │ ├── QRMarkupHTML.php │ │ │ │ │ ├── QRMarkupSVG.php │ │ │ │ │ ├── QROutputAbstract.php │ │ │ │ │ ├── QROutputInterface.php │ │ │ │ │ ├── QRString.php │ │ │ │ │ ├── QRStringJSON.php │ │ │ │ │ └── QRStringText.php │ │ │ │ │ ├── QRCode.php │ │ │ │ │ ├── QRCodeException.php │ │ │ │ │ ├── QROptions.php │ │ │ │ │ └── QROptionsTrait.php │ │ │ └── php-settings-container │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ ├── rules-magic-access.neon │ │ │ │ └── src │ │ │ │ ├── SettingsContainerAbstract.php │ │ │ │ └── SettingsContainerInterface.php │ │ │ └── composer │ │ │ ├── ClassLoader.php │ │ │ ├── InstalledVersions.php │ │ │ ├── LICENSE │ │ │ ├── autoload_classmap.php │ │ │ ├── autoload_namespaces.php │ │ │ ├── autoload_psr4.php │ │ │ ├── autoload_real.php │ │ │ ├── autoload_static.php │ │ │ ├── installed.json │ │ │ ├── installed.php │ │ │ └── platform_check.php │ ├── printTickets1.php │ ├── printTickets2.php │ ├── printTickets3.php │ ├── printTickets4.php │ ├── radius_log.php │ └── tmp │ │ └── index.php │ ├── edit_bw.php │ ├── edit_plan.php │ ├── index.php │ ├── js │ ├── index.php │ └── script.js │ ├── layout │ └── header.php │ ├── list_bandwidth.php │ ├── list_batch.php │ ├── list_plan.php │ ├── list_user.php │ ├── login.php │ ├── logo │ ├── index.php │ └── logo.png │ ├── logout.php │ ├── mac_binding.php │ ├── online_user.php │ ├── plugins │ ├── chart-script.js │ ├── chart.min.js │ ├── daily-user-chart.js │ ├── feather.min.js │ ├── feather.min.js.map │ └── index.php │ ├── print_setting.php │ ├── print_user.php │ ├── reset_user.php │ ├── submit_config.php │ ├── sys_db.php │ ├── sys_info.php │ ├── update_bw.php │ └── update_plan.php ├── index.php ├── radmon.sql └── screenshot ├── bandwidth.png ├── dashboard.png ├── list_user.png ├── logo.svg ├── mac_binding.png ├── online_user.png ├── plans.png ├── print_batch.png ├── print_setting.png ├── print_user.png └── system.png /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | name: Notify Telegram on Release 2 | 3 | on: 4 | release: 5 | types: [published] 6 | workflow_dispatch: 7 | 8 | jobs: 9 | notify: 10 | runs-on: ubuntu-latest 11 | steps: 12 | - name: Checkout repository 13 | uses: actions/checkout@v3 14 | 15 | - name: Get release info 16 | id: release-info 17 | run: | 18 | echo "RELEASE_TAG=${{ github.event.release.tag_name }}" >> $GITHUB_ENV 19 | echo "RELEASE_NAME=${{ github.event.release.name }}" >> $GITHUB_ENV 20 | echo "RELEASE_BODY=${{ github.event.release.body }}" >> $GITHUB_ENV 21 | 22 | - name: Get current time 23 | id: current_time 24 | run: echo "CURRENT_TIME=$(TZ=Asia/Jakarta date +'%Y-%m-%d %H:%M:%S')" >> $GITHUB_ENV 25 | 26 | - name: Notify Telegram 27 | env: 28 | TELEGRAM_TOKEN: ${{ secrets.TELEGRAM_TOKEN }} 29 | CHAT_ID: ${{ secrets.CHAT_ID }} 30 | RELEASE_TAG: ${{ env.RELEASE_TAG }} 31 | RELEASE_NAME: ${{ env.RELEASE_NAME }} 32 | RELEASE_BODY: ${{ env.RELEASE_BODY }} 33 | CURRENT_TIME: ${{ env.CURRENT_TIME }} 34 | REPLY_TO_MESSAGE_ID: ${{ secrets.REPLY_TO_MESSAGE_ID }} 35 | run: | 36 | MESSAGE=$(cat <<-EOF 37 | ▬▬▬▬▬▬▬▬▬▬▬▬▬▬ 38 | NEW UPDATE 39 | ▬▬▬▬▬▬▬▬▬▬▬▬▬▬ 40 | NAME : \`${RELEASE_NAME}\` 41 | TAG : \`${RELEASE_TAG}\` 42 | DESC : \`${RELEASE_BODY}\` 43 | DATE : \`${CURRENT_TIME}\` 44 | REPO : \`Maizil41/RadiusMonitor\` 45 | URL : [Click Here](https://github.com/Maizil41/RadiusMonitor/releases/tag/${RELEASE_TAG}) 46 | ▬▬▬▬▬▬▬▬▬▬▬▬▬▬ 47 | EOF 48 | ) 49 | curl -s -X POST "https://api.telegram.org/bot$TELEGRAM_TOKEN/sendMessage" \ 50 | -d chat_id=$CHAT_ID \ 51 | -d parse_mode=Markdown \ 52 | -d text="$MESSAGE" \ 53 | -d reply_to_message_id=$REPLY_TO_MESSAGE_ID 54 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 Maizil41 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /assets/img/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/assets/img/facebook.png -------------------------------------------------------------------------------- /assets/img/saweria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/assets/img/saweria.png -------------------------------------------------------------------------------- /assets/img/telegram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/assets/img/telegram.png -------------------------------------------------------------------------------- /assets/img/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/assets/img/youtube.png -------------------------------------------------------------------------------- /assets/script.min.js: -------------------------------------------------------------------------------- 1 | $("#btn-qris").click(function(){$("#qr-qris").modal("show")}), 2 | $("#btn-bca").click(function(){$("#qr-bca").modal("show")}), 3 | $("#btn-jenius").click(function(){$("#qr-jenius").modal("show")}), 4 | $("#btn-dana").click(function(){$("#qr-dana").modal("show")}), 5 | $("#btn-ovo").click(function(){$("#qr-ovo").modal("show")}), 6 | $("#btn-linkaja").click(function(){$("#qr-linkaja").modal("show")}), 7 | $("#btn-gopay").click(function(){$("#qr-gopay").modal("show")}), 8 | $("#btn-shopeepay").click(function(){$("#qr-shopeepay").modal("show")}), 9 | $("#btn-paypal").click(function(){$("#qr-paypal").modal("show")}); 10 | 11 | function SalinAku(TextToCopy) { 12 | var TempText = document.createElement("input"); 13 | TempText.value = TextToCopy; 14 | 15 | prompt("Apakah Anda memerlukan dukungan pribadi atau belum menemukan solusi yang tepat untuk masalah Anda? , silahkan salin informasi dibawah ini", TempText.value); 16 | /* Notifikasi */ 17 | /* alert("Teks disalin: " + TempText.value); */ 18 | } -------------------------------------------------------------------------------- /assets/script.min_en.js: -------------------------------------------------------------------------------- 1 | $("#btn-qris").click(function(){$("#qr-qris").modal("show")}), 2 | $("#btn-bca").click(function(){$("#qr-bca").modal("show")}), 3 | $("#btn-jenius").click(function(){$("#qr-jenius").modal("show")}), 4 | $("#btn-dana").click(function(){$("#qr-dana").modal("show")}), 5 | $("#btn-ovo").click(function(){$("#qr-ovo").modal("show")}), 6 | $("#btn-linkaja").click(function(){$("#qr-linkaja").modal("show")}), 7 | $("#btn-gopay").click(function(){$("#qr-gopay").modal("show")}), 8 | $("#btn-shopeepay").click(function(){$("#qr-shopeepay").modal("show")}), 9 | $("#btn-paypal").click(function(){$("#qr-paypal").modal("show")}); 10 | 11 | function SalinAku(TextToCopy) { 12 | var TempText = document.createElement("input"); 13 | TempText.value = TextToCopy; 14 | 15 | prompt("Do you need personal support or haven't found the right solution for your problem? , Please copy information below manually", TempText.value); 16 | /* Notifikasi */ 17 | /* alert("Teks disalin: " + TempText.value); */ 18 | } -------------------------------------------------------------------------------- /assets/styles.min.css: -------------------------------------------------------------------------------- 1 | .lang-btn{width:15%!important}.tcolor{color:#002863}.a{color:#002863!important} 2 | -------------------------------------------------------------------------------- /dist/pages/api/bandwidth.php: -------------------------------------------------------------------------------- 1 | query($sql_bw); 16 | 17 | if (!$result_bw) { 18 | die("Query failed: " . $conn->error); 19 | } 20 | 21 | $options = array(); 22 | $options['data'] = array(); 23 | 24 | if ($result_bw->num_rows > 0) { 25 | while($row = $result_bw->fetch_assoc()) { 26 | $options['data'][] = array( 27 | 'bw_id' => $row['id'], 28 | 'bw_name' => $row['name'], 29 | 'rate_down' => $row['rate_down'], 30 | 'rate_up' => $row['rate_up'] 31 | ); 32 | } 33 | } 34 | 35 | $conn->close(); 36 | 37 | header('Content-Type: application/json'); 38 | echo json_encode($options); 39 | ?> 40 | -------------------------------------------------------------------------------- /dist/pages/api/daily_user.php: -------------------------------------------------------------------------------- 1 | 12 | prepare($query); 41 | $stmt->execute(); 42 | $results = $stmt->fetchAll(PDO::FETCH_ASSOC); 43 | 44 | $dates = array_map(function($row) { return $row['tanggal']; }, $results); 45 | $userCounts = array_map(function($row) { return (int)$row['total_user']; }, $results); 46 | 47 | echo json_encode([ 48 | 'labels' => $dates, 49 | 'data' => $userCounts 50 | ]); 51 | ?> 52 | -------------------------------------------------------------------------------- /dist/pages/api/mac_address.php: -------------------------------------------------------------------------------- 1 | query($sql_mac); 32 | 33 | if (!$result_mac) { 34 | die("Query failed: " . $conn->error); 35 | } 36 | 37 | $options = array(); 38 | $options['data'] = array(); 39 | 40 | if ($result_mac->num_rows > 0) { 41 | while($row = $result_mac->fetch_assoc()) { 42 | $options['data'][] = array( 43 | 'mac_address' => $row['username'] 44 | ); 45 | } 46 | } 47 | 48 | $conn->close(); 49 | 50 | header('Content-Type: application/json'); 51 | 52 | echo json_encode($options); 53 | ?> 54 | -------------------------------------------------------------------------------- /dist/pages/api/radgroup.php: -------------------------------------------------------------------------------- 1 | 12 | query($sql_combined); 25 | 26 | $options = array(); 27 | $options['plans'] = array(); 28 | 29 | if ($result_combined->num_rows > 0) { 30 | while($row = $result_combined->fetch_assoc()) { 31 | $options['plans'][] = $row; 32 | } 33 | } 34 | 35 | $conn->close(); 36 | 37 | header('Content-Type: application/json'); 38 | 39 | echo json_encode($options); 40 | ?> -------------------------------------------------------------------------------- /dist/pages/auth.php: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /dist/pages/billing/auth.php: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /dist/pages/billing/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/pages/billing/logout.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /dist/pages/billing/message.php: -------------------------------------------------------------------------------- 1 | $whatsapp_number, 18 | 'message' => $message, 19 | ]; 20 | 21 | $options = [ 22 | 'http' => [ 23 | 'header' => "Content-Type: application/json\r\n", 24 | 'method' => 'POST', 25 | 'content' => json_encode($data), 26 | ], 27 | ]; 28 | 29 | $context = stream_context_create($options); 30 | $result = file_get_contents($url, false, $context); 31 | 32 | if ($result === FALSE) { 33 | header("Location: balance.php"); 34 | exit(); 35 | } else { 36 | header("Location: balance.php"); 37 | exit(); 38 | } 39 | ?> 40 | -------------------------------------------------------------------------------- /dist/pages/billing/update.php: -------------------------------------------------------------------------------- 1 | alert('Username and balance cannot be empty!'); window.location.href = 'edit.php?id=" . htmlspecialchars($uid) . "';"; 29 | exit(); 30 | } 31 | 32 | $stmt = $conn->prepare("UPDATE client SET username = ?, password = ?, balance = ?, telegram_id = ?, whatsapp_number = ? WHERE id = ?"); 33 | $stmt->bind_param("ssissi", $username, $password, $balance, $telegram, $whatsapp, $uid); 34 | 35 | if ($stmt->execute()) { 36 | echo ""; 37 | } else { 38 | echo ""; 39 | } 40 | } 41 | ?> 42 | -------------------------------------------------------------------------------- /dist/pages/data/db_config.php: -------------------------------------------------------------------------------- 1 | '127.0.0.1', 4 | 'username' => 'radmon', 5 | 'password' => 'radmon', 6 | 'dbname' => 'radmon' 7 | ]; 8 | ?> 9 | -------------------------------------------------------------------------------- /dist/pages/data/history.php: -------------------------------------------------------------------------------- 1 | query($sql); 14 | 15 | $user_data = []; 16 | if ($result->num_rows > 0) { 17 | while ($row = $result->fetch_assoc()) { 18 | $user_data[] = [ 19 | 'username' => htmlspecialchars($row['username']), 20 | 'reply' => htmlspecialchars($row['reply']), 21 | 'authdate' => htmlspecialchars($row['authdate']) 22 | ]; 23 | } 24 | } else { 25 | $user_data[] = [ 26 | 'username' => '', 27 | 'reply' => '', 28 | 'authdate' => '' 29 | ]; 30 | } 31 | ?> 32 | 33 |
Username 34 |
Reply 35 |
Auth Date 36 | 37 | 38 | 39 | 40 |
41 | 42 |
43 | 44 |
45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | -------------------------------------------------------------------------------- /dist/pages/data/mysqli_db.php: -------------------------------------------------------------------------------- 1 | connect_error) { 7 | die("Koneksi gagal: " . $conn->connect_error); 8 | } 9 | ?> 10 | -------------------------------------------------------------------------------- /dist/pages/data/online.php: -------------------------------------------------------------------------------- 1 | query($sql); 23 | 24 | if ($result->num_rows > 0) { 25 | while($row = $result->fetch_assoc()) { 26 | echo ""; 27 | echo "
" . htmlspecialchars($row["username"]) . ""; 28 | echo "
" . htmlspecialchars($row["framedipaddress"]) . ""; 29 | echo "
" . htmlspecialchars($row["callingstationid"]) . ""; 30 | echo "
" . htmlspecialchars($row["acctstarttime"]) . ""; 31 | echo "
Kick"; 32 | echo ""; 33 | } 34 | } else { 35 | echo "
Tidak ada pengguna online"; 36 | } 37 | 38 | ?> 39 | -------------------------------------------------------------------------------- /dist/pages/data/pdo_db.php: -------------------------------------------------------------------------------- 1 | PDO::ERRMODE_EXCEPTION, 13 | PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC, 14 | PDO::ATTR_EMULATE_PREPARES => false, 15 | ]; 16 | 17 | try { 18 | $pdo = new PDO("mysql:host=$host;dbname=$db", $user, $pass, $options); 19 | return $pdo; 20 | } catch (PDOException $e) { 21 | die('Koneksi gagal: ' . $e->getMessage()); 22 | } 23 | } 24 | ?> 25 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/.png-errors.txt: -------------------------------------------------------------------------------- 1 | 2024-08-18 19:33:52: empty string!!!2024-08-18 19:33:56: empty string!!!2024-08-18 19:34:20: empty string!!!2024-08-18 19:35:24: empty string!!!2024-08-18 23:10:02: empty string!!! -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/CHANGELOG: -------------------------------------------------------------------------------- 1 | * 1.0.0 build 2010031920 2 | 3 | - first public release 4 | - help in readme, install 5 | - cleanup ans separation of QRtools and QRspec 6 | - now TCPDF binding requires minimal changes in TCPDF, having most of job 7 | done in QRtools tcpdfBarcodeArray 8 | - nicer QRtools::timeBenchmark output 9 | - license and copyright notices in files 10 | - indent cleanup - from tab to 4spc, keep it that way please :) 11 | - sf project, repository, wiki 12 | - simple code generator in index.php 13 | 14 | * 1.1.0 build 2010032113 15 | 16 | - added merge tool wich generate merged version of code 17 | located in phpqrcode.php 18 | - splited qrconst.php from qrlib.php 19 | 20 | * 1.1.1 build 2010032405 21 | 22 | - patch by Rick Seymour allowing saving PNG and displaying it at the same time 23 | - added version info in VERSION file 24 | - modified merge tool to include version info into generated file 25 | - fixed e-mail in almost all head comments 26 | 27 | * 1.1.2 build 2010032722 28 | 29 | - full integration with TCPDF thanks to Nicola Asuni, it's author 30 | - fixed bug with alphanumeric encoding detection 31 | 32 | * 1.1.3 build 2010081807 33 | 34 | - short opening tags replaced with standard ones 35 | 36 | * 1.1.4 build 2010100721 37 | 38 | - added missing static keyword QRinput::check (found by Luke Brookhart, Onjax LLC) 39 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/INSTALL: -------------------------------------------------------------------------------- 1 | == REQUIREMENTS == 2 | 3 | * PHP5 4 | * PHP GD2 extension with JPEG and PNG support 5 | 6 | == INSTALLATION == 7 | 8 | If you want to recreate cache by yourself make sure cache directory is 9 | writable and you have permisions to write into it. Also make sure you are 10 | able to read files in it if you have cache option enabled 11 | 12 | == CONFIGURATION == 13 | 14 | Feel free to modify config constants in qrconfig.php file. Read about it in 15 | provided comments and project wiki page (links in README file) 16 | 17 | == QUICK START == 18 | 19 | Notice: probably you should'nt use all of this in same script :) 20 | 21 | encode('PHP QR Code :)'); 47 | QRspec::debug($tab, true); 48 | 49 | == TCPDF INTEGRATION == 50 | 51 | Inside bindings/tcpdf you will find slightly modified 2dbarcodes.php. 52 | Instal phpqrcode liblaty inside tcpdf folder, then overwrite (or merge) 53 | 2dbarcodes.php 54 | 55 | Then use similar as example #50 from TCPDF examples: 56 | 57 | true, 61 | 'padding' => 4, 62 | 'fgcolor' => array(0,0,0), 63 | 'bgcolor' => false, //array(255,255,255) 64 | ); 65 | 66 | //code name: QR, specify error correction level after semicolon (L,M,Q,H) 67 | $pdf->write2DBarcode('PHP QR Code :)', 'QR,L', '', '', 30, 30, $style, 'N'); 68 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/Maizil.png-errors.txt: -------------------------------------------------------------------------------- 1 | 2024-10-20 21:34:46: empty string!!!2024-10-20 21:34:49: empty string!!!2024-10-20 21:34:53: empty string!!! -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/README: -------------------------------------------------------------------------------- 1 | This is PHP implementation of QR Code 2-D barcode generator. It is pure-php 2 | LGPL-licensed implementation based on C libqrencode by Kentaro Fukuchi. 3 | 4 | == LICENSING == 5 | 6 | Copyright (C) 2010 by Dominik Dzienia 7 | 8 | This library is free software; you can redistribute it and/or modify it under 9 | the terms of the GNU Lesser General Public License as published by the Free 10 | Software Foundation; either version 3 of the License, or any later version. 11 | 12 | This library is distributed in the hope that it will be useful, but WITHOUT ANY 13 | WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 14 | PARTICULAR PURPOSE. See the GNU Lesser General Public License (LICENSE file) 15 | for more details. 16 | 17 | You should have received a copy of the GNU Lesser General Public License along 18 | with this library; if not, write to the Free Software Foundation, Inc., 51 19 | Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 20 | 21 | == INSTALATION AND USAGE == 22 | 23 | * INSTALL file 24 | * http://sourceforge.net/apps/mediawiki/phpqrcode/index.php?title=Main_Page 25 | 26 | == CONTACT == 27 | 28 | Fell free to contact me via e-mail (deltalab at poczta dot fm) or using 29 | folowing project pages: 30 | 31 | * http://sourceforge.net/projects/phpqrcode/ 32 | * http://phpqrcode.sourceforge.net/ 33 | 34 | == ACKNOWLEDGMENTS == 35 | 36 | Based on C libqrencode library (ver. 3.1.1) 37 | Copyright (C) 2006-2010 by Kentaro Fukuchi 38 | http://megaui.net/fukuchi/works/qrencode/index.en.html 39 | 40 | QR Code is registered trademarks of DENSO WAVE INCORPORATED in JAPAN and other 41 | countries. 42 | 43 | Reed-Solomon code encoder is written by Phil Karn, KA9Q. 44 | Copyright (C) 2002, 2003, 2004, 2006 Phil Karn, KA9Q 45 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/VERSION: -------------------------------------------------------------------------------- 1 | 1.1.4 2 | 2010100721 -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_1.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_10.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_10.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_10.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_11.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_11.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_11.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_12.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_12.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_12.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_13.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_13.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_13.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_14.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_14.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_14.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_15.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_15.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_15.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_16.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_16.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_16.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_17.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_17.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_17.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_18.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_18.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_18.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_19.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_19.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_19.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_2.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_20.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_20.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_20.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_21.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_21.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_21.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_22.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_22.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_22.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_23.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_23.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_23.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_24.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_24.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_24.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_25.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_25.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_25.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_26.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_26.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_26.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_27.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_27.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_27.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_28.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_28.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_28.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_29.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_29.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_29.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_3.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_30.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_30.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_30.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_31.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_31.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_31.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_32.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_32.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_33.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_33.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_33.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_34.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_34.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_34.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_35.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_35.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_35.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_36.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_36.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_36.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_37.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_37.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_37.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_38.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_38.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_38.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_39.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_39.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_39.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_4.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_40.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_40.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_40.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_5.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_6.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_7.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_8.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_8.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_8.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_9.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_9.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/frame_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/frame_9.png -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_101_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_101_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_105_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_105_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_109_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_109_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_113_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_113_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_117_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_117_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_121_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_121_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_125_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_125_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_129_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_129_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_133_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_133_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_137_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_137_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_141_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_141_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_145_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_145_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_149_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_149_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_153_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_153_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_157_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_157_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_161_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_161_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_165_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_165_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_169_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_169_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_173_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_173_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_177_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_177_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_21_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_21_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_25_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_25_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_29_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_29_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_33_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_33_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_37_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_37_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_41_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_41_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_45_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_45_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_49_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_49_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_53_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_53_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_57_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_57_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_61_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_61_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_65_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_65_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_69_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_69_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_73_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_73_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_77_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_77_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_81_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_81_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_85_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_85_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_89_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_89_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_93_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_93_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_0/mask_97_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_0/mask_97_0.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_101_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_101_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_105_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_105_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_109_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_109_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_113_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_113_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_117_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_117_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_121_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_121_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_125_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_125_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_129_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_129_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_133_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_133_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_137_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_137_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_141_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_141_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_145_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_145_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_149_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_149_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_153_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_153_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_157_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_157_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_161_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_161_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_165_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_165_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_169_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_169_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_173_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_173_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_177_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_177_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_21_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_21_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_25_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_25_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_29_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_29_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_33_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_33_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_37_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_37_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_41_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_41_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_45_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_45_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_49_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_49_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_53_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_53_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_57_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_57_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_61_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_61_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_65_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_65_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_69_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_69_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_73_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_73_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_77_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_77_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_81_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_81_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_85_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_85_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_89_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_89_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_93_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_93_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_1/mask_97_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_1/mask_97_1.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_101_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_101_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_105_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_105_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_109_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_109_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_113_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_113_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_117_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_117_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_121_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_121_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_125_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_125_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_129_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_129_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_133_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_133_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_137_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_137_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_141_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_141_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_145_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_145_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_149_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_149_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_153_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_153_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_157_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_157_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_161_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_161_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_165_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_165_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_169_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_169_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_173_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_173_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_177_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_177_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_21_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_21_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_25_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_25_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_29_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_29_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_33_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_33_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_37_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_37_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_41_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_41_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_45_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_45_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_49_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_49_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_53_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_53_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_57_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_57_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_61_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_61_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_65_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_65_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_69_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_69_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_73_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_73_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_77_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_77_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_81_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_81_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_85_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_85_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_89_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_89_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_93_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_93_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_2/mask_97_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_2/mask_97_2.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_101_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_101_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_105_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_105_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_109_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_109_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_113_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_113_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_117_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_117_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_121_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_121_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_125_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_125_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_129_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_129_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_133_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_133_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_137_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_137_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_141_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_141_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_145_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_145_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_149_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_149_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_153_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_153_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_157_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_157_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_161_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_161_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_165_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_165_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_169_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_169_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_173_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_173_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_177_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_177_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_21_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_21_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_25_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_25_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_29_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_29_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_33_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_33_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_37_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_37_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_41_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_41_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_45_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_45_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_49_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_49_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_53_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_53_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_57_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_57_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_61_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_61_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_65_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_65_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_69_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_69_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_73_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_73_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_77_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_77_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_81_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_81_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_85_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_85_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_89_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_89_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_93_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_93_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_3/mask_97_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_3/mask_97_3.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_101_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_101_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_105_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_105_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_109_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_109_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_113_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_113_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_117_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_117_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_121_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_121_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_125_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_125_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_129_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_129_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_133_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_133_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_137_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_137_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_141_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_141_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_145_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_145_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_149_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_149_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_153_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_153_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_157_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_157_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_161_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_161_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_165_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_165_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_169_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_169_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_173_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_173_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_177_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_177_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_21_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_21_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_25_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_25_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_29_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_29_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_33_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_33_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_37_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_37_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_41_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_41_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_45_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_45_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_49_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_49_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_53_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_53_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_57_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_57_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_61_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_61_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_65_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_65_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_69_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_69_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_73_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_73_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_77_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_77_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_81_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_81_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_85_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_85_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_89_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_89_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_93_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_93_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_4/mask_97_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_4/mask_97_4.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_101_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_101_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_105_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_105_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_109_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_109_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_113_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_113_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_117_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_117_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_121_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_121_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_125_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_125_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_129_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_129_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_133_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_133_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_137_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_137_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_141_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_141_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_145_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_145_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_149_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_149_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_153_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_153_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_157_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_157_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_161_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_161_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_165_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_165_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_169_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_169_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_173_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_173_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_177_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_177_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_21_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_21_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_25_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_25_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_29_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_29_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_33_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_33_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_37_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_37_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_41_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_41_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_45_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_45_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_49_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_49_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_53_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_53_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_57_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_57_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_61_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_61_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_65_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_65_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_69_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_69_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_73_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_73_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_77_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_77_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_81_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_81_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_85_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_85_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_89_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_89_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_93_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_93_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_5/mask_97_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_5/mask_97_5.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_101_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_101_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_105_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_105_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_109_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_109_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_113_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_113_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_117_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_117_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_121_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_121_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_125_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_125_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_129_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_129_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_133_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_133_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_137_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_137_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_141_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_141_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_145_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_145_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_149_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_149_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_153_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_153_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_157_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_157_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_161_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_161_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_165_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_165_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_169_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_169_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_173_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_173_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_177_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_177_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_21_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_21_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_25_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_25_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_29_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_29_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_33_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_33_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_37_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_37_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_41_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_41_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_45_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_45_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_49_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_49_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_53_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_53_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_57_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_57_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_61_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_61_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_65_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_65_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_69_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_69_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_73_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_73_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_77_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_77_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_81_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_81_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_85_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_85_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_89_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_89_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_93_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_93_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_6/mask_97_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_6/mask_97_6.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_101_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_101_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_105_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_105_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_109_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_109_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_113_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_113_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_117_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_117_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_121_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_121_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_125_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_125_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_129_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_129_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_133_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_133_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_137_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_137_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_141_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_141_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_145_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_145_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_149_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_149_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_153_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_153_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_157_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_157_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_161_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_161_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_165_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_165_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_169_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_169_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_173_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_173_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_177_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_177_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_21_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_21_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_25_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_25_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_29_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_29_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_33_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_33_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_37_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_37_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_41_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_41_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_45_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_45_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_49_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_49_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_53_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_53_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_57_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_57_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_61_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_61_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_65_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_65_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_69_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_69_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_73_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_73_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_77_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_77_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_81_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_81_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_85_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_85_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_89_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_89_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_93_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_93_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/cache/mask_7/mask_97_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/data/phpqrcode/cache/mask_7/mask_97_7.dat -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "require": { 3 | "chillerlan/php-qrcode": "^5.0" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/qrconfig.php: -------------------------------------------------------------------------------- 1 | 10 | * 11 | * PHP QR Code is distributed under LGPL 3 12 | * Copyright (C) 2010 Dominik Dzienia 13 | * 14 | * This library is free software; you can redistribute it and/or 15 | * modify it under the terms of the GNU Lesser General Public 16 | * License as published by the Free Software Foundation; either 17 | * version 3 of the License, or any later version. 18 | * 19 | * This library is distributed in the hope that it will be useful, 20 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 21 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 22 | * Lesser General Public License for more details. 23 | * 24 | * You should have received a copy of the GNU Lesser General Public 25 | * License along with this library; if not, write to the Free Software 26 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 27 | */ 28 | 29 | // Encoding modes 30 | 31 | define('QR_MODE_NUL', -1); 32 | define('QR_MODE_NUM', 0); 33 | define('QR_MODE_AN', 1); 34 | define('QR_MODE_8', 2); 35 | define('QR_MODE_KANJI', 3); 36 | define('QR_MODE_STRUCTURE', 4); 37 | 38 | // Levels of error correction. 39 | 40 | define('QR_ECLEVEL_L', 0); 41 | define('QR_ECLEVEL_M', 1); 42 | define('QR_ECLEVEL_Q', 2); 43 | define('QR_ECLEVEL_H', 3); 44 | 45 | // Supported output formats 46 | 47 | define('QR_FORMAT_TEXT', 0); 48 | define('QR_FORMAT_PNG', 1); 49 | 50 | class qrstr { 51 | public static function set(&$srctab, $x, $y, $repl, $replLen = false) { 52 | $srctab[$y] = substr_replace($srctab[$y], ($replLen !== false)?substr($repl,0,$replLen):$repl, $x, ($replLen !== false)?$replLen:strlen($repl)); 53 | } 54 | } -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/qrlib.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * PHP QR Code is distributed under LGPL 3 11 | * Copyright (C) 2010 Dominik Dzienia 12 | * 13 | * This library is free software; you can redistribute it and/or 14 | * modify it under the terms of the GNU Lesser General Public 15 | * License as published by the Free Software Foundation; either 16 | * version 3 of the License, or any later version. 17 | * 18 | * This library is distributed in the hope that it will be useful, 19 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 20 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 21 | * Lesser General Public License for more details. 22 | * 23 | * You should have received a copy of the GNU Lesser General Public 24 | * License along with this library; if not, write to the Free Software 25 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 26 | */ 27 | 28 | $QR_BASEDIR = dirname(__FILE__).DIRECTORY_SEPARATOR; 29 | 30 | // Required libs 31 | 32 | include $QR_BASEDIR."qrconst.php"; 33 | include $QR_BASEDIR."qrconfig.php"; 34 | include $QR_BASEDIR."qrtools.php"; 35 | include $QR_BASEDIR."qrspec.php"; 36 | include $QR_BASEDIR."qrimage.php"; 37 | include $QR_BASEDIR."qrinput.php"; 38 | include $QR_BASEDIR."qrbitstream.php"; 39 | include $QR_BASEDIR."qrsplit.php"; 40 | include $QR_BASEDIR."qrrscode.php"; 41 | include $QR_BASEDIR."qrmask.php"; 42 | include $QR_BASEDIR."qrencode.php"; 43 | 44 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/tools/merge.bat: -------------------------------------------------------------------------------- 1 | php ./merge.php 2 | pause -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/tools/merge.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | php ./merge.php -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/tools/merged_config.php: -------------------------------------------------------------------------------- 1 | 20 | * 21 | * This library is free software; you can redistribute it and/or 22 | * modify it under the terms of the GNU Lesser General Public 23 | * License as published by the Free Software Foundation; either 24 | * version 3 of the License, or any later version. 25 | * 26 | * This library is distributed in the hope that it will be useful, 27 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 28 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 29 | * Lesser General Public License for more details. 30 | * 31 | * You should have received a copy of the GNU Lesser General Public 32 | * License along with this library; if not, write to the Free Software 33 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 34 | */ 35 | 36 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/autoload.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/chillerlan/php-qrcode/LICENSE-MIT: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Smiley 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/chillerlan/php-qrcode/NOTICE: -------------------------------------------------------------------------------- 1 | Parts of this code are ported to php from the ZXing project 2 | and licensed under the Apache License, Version 2.0. 3 | 4 | Copyright 2007 ZXing authors (https://github.com/zxing/zxing), 5 | Copyright (c) Ashot Khanamiryan (https://github.com/khanamiryan/php-qrcode-detector-decoder) 6 | 7 | Licensed under the Apache License, Version 2.0 (the "License"); 8 | you may not use this file except in compliance with the License. 9 | You may obtain a copy of the License at 10 | 11 | http://www.apache.org/licenses/LICENSE-2.0 12 | 13 | Unless required by applicable law or agreed to in writing, software 14 | distributed under the License is distributed on an "AS IS" BASIS, 15 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | See the License for the specific language governing permissions and 17 | limitations under the License. 18 | 19 | 20 | List of affected files: 21 | 22 | src/Common/ECICharset.php 23 | src/Common/GenericGFPoly.php 24 | src/Common/GF256.php 25 | src/Common/LuminanceSourceAbstract.php 26 | src/Common/MaskPattern.php 27 | src/Decoder/Binarizer.php 28 | src/Decoder/BitMatrix.php 29 | src/Decoder/Decoder.php 30 | src/Decoder/DecoderResult.php 31 | src/Decoder/ReedSolomonDecoder.php 32 | src/Detector/AlignmentPattern.php 33 | src/Detector/AlignmentPatternFinder.php 34 | src/Detector/Detector.php 35 | src/Detector/FinderPattern.php 36 | src/Detector/FinderPatternFinder.php 37 | src/Detector/GridSampler.php 38 | src/Detector/PerspectiveTransform.php 39 | src/Detector/ResultPoint.php 40 | tests/Common/MaskPatternTest.php 41 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/chillerlan/php-qrcode/src/Common/LuminanceSourceInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright 2021 smiley 8 | * @license MIT 9 | */ 10 | 11 | namespace chillerlan\QRCode\Common; 12 | 13 | /** 14 | */ 15 | interface LuminanceSourceInterface{ 16 | 17 | /** 18 | * Fetches luminance data for the underlying bitmap. Values should be fetched using: 19 | * `int luminance = array[y * width + x] & 0xff` 20 | * 21 | * @return array A row-major 2D array of luminance values. Do not use result $length as it may be 22 | * larger than $width * $height bytes on some platforms. Do not modify the contents 23 | * of the result. 24 | */ 25 | public function getLuminances():array; 26 | 27 | /** 28 | * @return int The width of the bitmap. 29 | */ 30 | public function getWidth():int; 31 | 32 | /** 33 | * @return int The height of the bitmap. 34 | */ 35 | public function getHeight():int; 36 | 37 | /** 38 | * Fetches one row of luminance data from the underlying platform's bitmap. Values range from 39 | * 0 (black) to 255 (white). Because Java does not have an unsigned byte type, callers will have 40 | * to bitwise and with 0xff for each value. It is preferable for implementations of this method 41 | * to only fetch this row rather than the whole image, since no 2D Readers may be installed and 42 | * getLuminances() may never be called. 43 | * 44 | * @param int $y The row to fetch, which must be in [0,getHeight()) 45 | * 46 | * @return array An array containing the luminance data. 47 | * @throws \chillerlan\QRCode\Decoder\QRCodeDecoderException 48 | */ 49 | public function getRow(int $y):array; 50 | 51 | /** 52 | * Creates a LuminanceSource instance from the given file 53 | */ 54 | public static function fromFile(string $path):self; 55 | 56 | /** 57 | * Creates a LuminanceSource instance from the given data blob 58 | */ 59 | public static function fromBlob(string $blob):self; 60 | 61 | } 62 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/chillerlan/php-qrcode/src/Data/Byte.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright 2015 Smiley 8 | * @license MIT 9 | */ 10 | 11 | namespace chillerlan\QRCode\Data; 12 | 13 | use chillerlan\QRCode\Common\{BitBuffer, Mode}; 14 | use function chr, ord; 15 | 16 | /** 17 | * 8-bit Byte mode, ISO-8859-1 or UTF-8 18 | * 19 | * ISO/IEC 18004:2000 Section 8.3.4 20 | * ISO/IEC 18004:2000 Section 8.4.4 21 | */ 22 | final class Byte extends QRDataModeAbstract{ 23 | 24 | /** 25 | * @inheritDoc 26 | */ 27 | public const DATAMODE = Mode::BYTE; 28 | 29 | /** 30 | * @inheritDoc 31 | */ 32 | public function getLengthInBits():int{ 33 | return ($this->getCharCount() * 8); 34 | } 35 | 36 | /** 37 | * @inheritDoc 38 | */ 39 | public static function validateString(string $string):bool{ 40 | return $string !== ''; 41 | } 42 | 43 | /** 44 | * @inheritDoc 45 | */ 46 | public function write(BitBuffer $bitBuffer, int $versionNumber):QRDataModeInterface{ 47 | $len = $this->getCharCount(); 48 | 49 | $bitBuffer 50 | ->put(self::DATAMODE, 4) 51 | ->put($len, $this::getLengthBits($versionNumber)) 52 | ; 53 | 54 | $i = 0; 55 | 56 | while($i < $len){ 57 | $bitBuffer->put(ord($this->data[$i]), 8); 58 | $i++; 59 | } 60 | 61 | return $this; 62 | } 63 | 64 | /** 65 | * @inheritDoc 66 | * 67 | * @throws \chillerlan\QRCode\Data\QRCodeDataException 68 | */ 69 | public static function decodeSegment(BitBuffer $bitBuffer, int $versionNumber):string{ 70 | $length = $bitBuffer->read(self::getLengthBits($versionNumber)); 71 | 72 | if($bitBuffer->available() < (8 * $length)){ 73 | throw new QRCodeDataException('not enough bits available'); // @codeCoverageIgnore 74 | } 75 | 76 | $readBytes = ''; 77 | 78 | for($i = 0; $i < $length; $i++){ 79 | $readBytes .= chr($bitBuffer->read(8)); 80 | } 81 | 82 | return $readBytes; 83 | } 84 | 85 | } 86 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/chillerlan/php-qrcode/src/Data/QRCodeDataException.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright 2015 Smiley 8 | * @license MIT 9 | */ 10 | 11 | namespace chillerlan\QRCode\Data; 12 | 13 | use chillerlan\QRCode\QRCodeException; 14 | 15 | /** 16 | * An exception container 17 | */ 18 | final class QRCodeDataException extends QRCodeException{ 19 | 20 | } 21 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/chillerlan/php-qrcode/src/Data/QRDataModeAbstract.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright 2020 smiley 8 | * @license MIT 9 | */ 10 | 11 | namespace chillerlan\QRCode\Data; 12 | 13 | use chillerlan\QRCode\Common\Mode; 14 | 15 | /** 16 | * abstract methods for the several data modes 17 | */ 18 | abstract class QRDataModeAbstract implements QRDataModeInterface{ 19 | 20 | /** 21 | * The data to write 22 | */ 23 | protected string $data; 24 | 25 | /** 26 | * QRDataModeAbstract constructor. 27 | * 28 | * @throws \chillerlan\QRCode\Data\QRCodeDataException 29 | */ 30 | public function __construct(string $data){ 31 | $data = $this::convertEncoding($data); 32 | 33 | if(!$this::validateString($data)){ 34 | throw new QRCodeDataException('invalid data'); 35 | } 36 | 37 | $this->data = $data; 38 | } 39 | 40 | /** 41 | * returns the character count of the $data string 42 | */ 43 | protected function getCharCount():int{ 44 | return strlen($this->data); 45 | } 46 | 47 | /** 48 | * @inheritDoc 49 | */ 50 | public static function convertEncoding(string $string):string{ 51 | return $string; 52 | } 53 | 54 | /** 55 | * shortcut 56 | */ 57 | protected static function getLengthBits(int $versionNumber):int{ 58 | return Mode::getLengthBitsForVersion(static::DATAMODE, $versionNumber); 59 | } 60 | 61 | } 62 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/chillerlan/php-qrcode/src/Data/QRDataModeInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright 2015 Smiley 8 | * @license MIT 9 | */ 10 | 11 | namespace chillerlan\QRCode\Data; 12 | 13 | use chillerlan\QRCode\Common\BitBuffer; 14 | 15 | /** 16 | * Specifies the methods reqired for the data modules (Number, Alphanum, Byte and Kanji) 17 | */ 18 | interface QRDataModeInterface{ 19 | 20 | /** 21 | * the current data mode: Number, Alphanum, Kanji, Hanzi, Byte, ECI 22 | * 23 | * tbh I hate this constant here, but it's part of the interface, so I can't just declare it in the abstract class. 24 | * (phan will complain about a PhanAccessOverridesFinalConstant) 25 | * 26 | * @see https://wiki.php.net/rfc/final_class_const 27 | * 28 | * @var int 29 | * @see \chillerlan\QRCode\Common\Mode 30 | * @internal do not call this constant from the interface, but rather from one of the child classes 31 | */ 32 | public const DATAMODE = -1; 33 | 34 | /** 35 | * retruns the length in bits of the data string 36 | */ 37 | public function getLengthInBits():int; 38 | 39 | /** 40 | * encoding conversion helper 41 | * 42 | * @throws \chillerlan\QRCode\Data\QRCodeDataException 43 | */ 44 | public static function convertEncoding(string $string):string; 45 | 46 | /** 47 | * checks if the given string qualifies for the encoder module 48 | */ 49 | public static function validateString(string $string):bool; 50 | 51 | /** 52 | * writes the actual data string to the BitBuffer, uses the given version to determine the length bits 53 | * 54 | * @see \chillerlan\QRCode\Data\QRData::writeBitBuffer() 55 | */ 56 | public function write(BitBuffer $bitBuffer, int $versionNumber):QRDataModeInterface; 57 | 58 | /** 59 | * reads a segment from the BitBuffer and decodes in the current data mode 60 | */ 61 | public static function decodeSegment(BitBuffer $bitBuffer, int $versionNumber):string; 62 | 63 | } 64 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/chillerlan/php-qrcode/src/Decoder/QRCodeDecoderException.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright 2021 smiley 8 | * @license MIT 9 | */ 10 | 11 | namespace chillerlan\QRCode\Decoder; 12 | 13 | use chillerlan\QRCode\QRCodeException; 14 | 15 | /** 16 | * An exception container 17 | */ 18 | final class QRCodeDecoderException extends QRCodeException{ 19 | 20 | } 21 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/chillerlan/php-qrcode/src/Detector/AlignmentPattern.php: -------------------------------------------------------------------------------- 1 | 8 | * @copyright 2021 Smiley 9 | * @license Apache-2.0 10 | */ 11 | 12 | namespace chillerlan\QRCode\Detector; 13 | 14 | /** 15 | * Encapsulates an alignment pattern, which are the smaller square patterns found in 16 | * all but the simplest QR Codes. 17 | * 18 | * @author Sean Owen 19 | */ 20 | final class AlignmentPattern extends ResultPoint{ 21 | 22 | /** 23 | * Combines this object's current estimate of a finder pattern position and module size 24 | * with a new estimate. It returns a new FinderPattern containing an average of the two. 25 | */ 26 | public function combineEstimate(float $i, float $j, float $newModuleSize):self{ 27 | return new self( 28 | (($this->x + $j) / 2.0), 29 | (($this->y + $i) / 2.0), 30 | (($this->estimatedModuleSize + $newModuleSize) / 2.0) 31 | ); 32 | } 33 | 34 | } 35 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/chillerlan/php-qrcode/src/Detector/QRCodeDetectorException.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright 2021 smiley 8 | * @license MIT 9 | */ 10 | 11 | namespace chillerlan\QRCode\Detector; 12 | 13 | use chillerlan\QRCode\QRCodeException; 14 | 15 | /** 16 | * An exception container 17 | */ 18 | final class QRCodeDetectorException extends QRCodeException{ 19 | 20 | } 21 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/chillerlan/php-qrcode/src/Detector/ResultPoint.php: -------------------------------------------------------------------------------- 1 | 8 | * @copyright 2021 Smiley 9 | * @license Apache-2.0 10 | */ 11 | 12 | namespace chillerlan\QRCode\Detector; 13 | 14 | use function abs; 15 | 16 | /** 17 | * Encapsulates a point of interest in an image containing a barcode. Typically, this 18 | * would be the location of a finder pattern or the corner of the barcode, for example. 19 | * 20 | * @author Sean Owen 21 | */ 22 | abstract class ResultPoint{ 23 | 24 | protected float $x; 25 | protected float $y; 26 | protected float $estimatedModuleSize; 27 | 28 | /** 29 | * 30 | */ 31 | public function __construct(float $x, float $y, float $estimatedModuleSize){ 32 | $this->x = $x; 33 | $this->y = $y; 34 | $this->estimatedModuleSize = $estimatedModuleSize; 35 | } 36 | 37 | /** 38 | * 39 | */ 40 | public function getX():float{ 41 | return $this->x; 42 | } 43 | 44 | /** 45 | * 46 | */ 47 | public function getY():float{ 48 | return $this->y; 49 | } 50 | 51 | /** 52 | * 53 | */ 54 | public function getEstimatedModuleSize():float{ 55 | return $this->estimatedModuleSize; 56 | } 57 | 58 | /** 59 | * Determines if this finder pattern "about equals" a finder pattern at the stated 60 | * position and size -- meaning, it is at nearly the same center with nearly the same size. 61 | */ 62 | public function aboutEquals(float $moduleSize, float $i, float $j):bool{ 63 | 64 | if(abs($i - $this->y) <= $moduleSize && abs($j - $this->x) <= $moduleSize){ 65 | $moduleSizeDiff = abs($moduleSize - $this->estimatedModuleSize); 66 | 67 | return $moduleSizeDiff <= 1.0 || $moduleSizeDiff <= $this->estimatedModuleSize; 68 | } 69 | 70 | return false; 71 | } 72 | 73 | } 74 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/chillerlan/php-qrcode/src/Output/QRCodeOutputException.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright 2015 Smiley 8 | * @license MIT 9 | */ 10 | 11 | namespace chillerlan\QRCode\Output; 12 | 13 | use chillerlan\QRCode\QRCodeException; 14 | 15 | /** 16 | * An exception container 17 | */ 18 | final class QRCodeOutputException extends QRCodeException{ 19 | 20 | } 21 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/chillerlan/php-qrcode/src/Output/QRGdImageBMP.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright 2023 smiley 8 | * @license MIT 9 | * 10 | * @noinspection PhpComposerExtensionStubsInspection 11 | */ 12 | 13 | namespace chillerlan\QRCode\Output; 14 | 15 | use function imagebmp; 16 | 17 | /** 18 | * GdImage bmp output 19 | * 20 | * @see \imagebmp() 21 | */ 22 | class QRGdImageBMP extends QRGdImage{ 23 | 24 | public const MIME_TYPE = 'image/bmp'; 25 | 26 | /** 27 | * @inheritDoc 28 | */ 29 | protected function renderImage():void{ 30 | imagebmp($this->image, null, ($this->options->quality > 0)); 31 | } 32 | 33 | } 34 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/chillerlan/php-qrcode/src/Output/QRGdImageGIF.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright 2023 smiley 8 | * @license MIT 9 | * 10 | * @noinspection PhpComposerExtensionStubsInspection 11 | */ 12 | 13 | namespace chillerlan\QRCode\Output; 14 | 15 | use function imagegif; 16 | 17 | /** 18 | * GdImage gif output 19 | * 20 | * @see \imagegif() 21 | */ 22 | class QRGdImageGIF extends QRGdImage{ 23 | 24 | public const MIME_TYPE = 'image/gif'; 25 | 26 | /** 27 | * @inheritDoc 28 | */ 29 | protected function renderImage():void{ 30 | imagegif($this->image); 31 | } 32 | 33 | } 34 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/chillerlan/php-qrcode/src/Output/QRGdImageJPEG.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright 2023 smiley 8 | * @license MIT 9 | * 10 | * @noinspection PhpComposerExtensionStubsInspection 11 | */ 12 | 13 | namespace chillerlan\QRCode\Output; 14 | 15 | use function imagejpeg, max, min; 16 | 17 | /** 18 | * GdImage jpeg output 19 | * 20 | * @see \imagejpeg() 21 | */ 22 | class QRGdImageJPEG extends QRGdImage{ 23 | 24 | public const MIME_TYPE = 'image/jpg'; 25 | 26 | /** 27 | * @inheritDoc 28 | */ 29 | protected function setTransparencyColor():void{ 30 | // noop - transparency is not supported 31 | } 32 | 33 | /** 34 | * @inheritDoc 35 | */ 36 | protected function renderImage():void{ 37 | imagejpeg($this->image, null, max(-1, min(100, $this->options->quality))); 38 | } 39 | 40 | } 41 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/chillerlan/php-qrcode/src/Output/QRGdImagePNG.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright 2023 smiley 8 | * @license MIT 9 | * 10 | * @noinspection PhpComposerExtensionStubsInspection 11 | */ 12 | 13 | namespace chillerlan\QRCode\Output; 14 | 15 | use function imagepng, max, min; 16 | 17 | /** 18 | * GdImage png output 19 | * 20 | * @see \imagepng() 21 | */ 22 | class QRGdImagePNG extends QRGdImage{ 23 | 24 | public const MIME_TYPE = 'image/png'; 25 | 26 | /** 27 | * @inheritDoc 28 | */ 29 | protected function renderImage():void{ 30 | imagepng($this->image, null, max(-1, min(9, $this->options->quality))); 31 | } 32 | 33 | } 34 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/chillerlan/php-qrcode/src/Output/QRGdImageWEBP.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright 2023 smiley 8 | * @license MIT 9 | * 10 | * @noinspection PhpComposerExtensionStubsInspection 11 | */ 12 | 13 | namespace chillerlan\QRCode\Output; 14 | 15 | use function imagewebp, max, min; 16 | 17 | /** 18 | * GdImage webp output 19 | * 20 | * @see \imagewebp() 21 | */ 22 | class QRGdImageWEBP extends QRGdImage{ 23 | 24 | public const MIME_TYPE = 'image/webp'; 25 | 26 | /** 27 | * @inheritDoc 28 | */ 29 | protected function renderImage():void{ 30 | imagewebp($this->image, null, max(-1, min(100, $this->options->quality))); 31 | } 32 | 33 | } 34 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/chillerlan/php-qrcode/src/Output/QRImage.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright 2021 smiley 8 | * @license MIT 9 | */ 10 | 11 | namespace chillerlan\QRCode\Output; 12 | 13 | /** 14 | * @deprecated 5.0.0 backward compatibility, use QRGdImage instead 15 | * @see \chillerlan\QRCode\Output\QRGdImage 16 | */ 17 | class QRImage extends QRGdImage{ 18 | 19 | } 20 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/chillerlan/php-qrcode/src/Output/QRMarkupHTML.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright 2022 smiley 8 | * @license MIT 9 | */ 10 | 11 | namespace chillerlan\QRCode\Output; 12 | 13 | use function implode, sprintf; 14 | 15 | /** 16 | * HTML output (a cheap markup substitute when SVG is not available or not an option) 17 | */ 18 | class QRMarkupHTML extends QRMarkup{ 19 | 20 | public const MIME_TYPE = 'text/html'; 21 | 22 | /** 23 | * @inheritDoc 24 | */ 25 | protected function createMarkup(bool $saveToFile):string{ 26 | $rows = []; 27 | $cssClass = $this->getCssClass(); 28 | 29 | foreach($this->matrix->getMatrix() as $row){ 30 | $element = ''; 31 | $modules = array_map(fn(int $M_TYPE):string => sprintf($element, $this->getModuleValue($M_TYPE)), $row); 32 | 33 | $rows[] = sprintf('
%s
%s', implode('', $modules), $this->eol); 34 | } 35 | 36 | $html = sprintf('
%3$s%2$s
%3$s', $cssClass, implode('', $rows), $this->eol); 37 | 38 | // wrap the snippet into a body when saving to file 39 | if($saveToFile){ 40 | $html = sprintf( 41 | '%2$s%2$s%2$s'. 42 | 'QR Code%2$s%1$s%2$s', 43 | $html, 44 | $this->eol 45 | ); 46 | } 47 | 48 | return $html; 49 | } 50 | 51 | } 52 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/chillerlan/php-qrcode/src/Output/QRStringJSON.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright 2023 smiley 8 | * @license MIT 9 | * 10 | * @noinspection PhpComposerExtensionStubsInspection 11 | */ 12 | 13 | namespace chillerlan\QRCode\Output; 14 | 15 | use function json_encode; 16 | 17 | /** 18 | * 19 | */ 20 | class QRStringJSON extends QROutputAbstract{ 21 | 22 | public const MIME_TYPE = 'application/json'; 23 | 24 | /** 25 | * @inheritDoc 26 | * @throws \JsonException 27 | */ 28 | public function dump(string $file = null):string{ 29 | $matrix = $this->matrix->getMatrix($this->options->jsonAsBooleans); 30 | $data = json_encode($matrix, $this->options->jsonFlags);; 31 | 32 | $this->saveToFile($data, $file); 33 | 34 | return $data; 35 | } 36 | 37 | /** 38 | * unused - required by interface 39 | * 40 | * @inheritDoc 41 | * @codeCoverageIgnore 42 | */ 43 | protected function prepareModuleValue($value):string{ 44 | return ''; 45 | } 46 | 47 | /** 48 | * unused - required by interface 49 | * 50 | * @inheritDoc 51 | * @codeCoverageIgnore 52 | */ 53 | protected function getDefaultModuleValue(bool $isDark):string{ 54 | return ''; 55 | } 56 | 57 | /** 58 | * unused - required by interface 59 | * 60 | * @inheritDoc 61 | * @codeCoverageIgnore 62 | */ 63 | public static function moduleValueIsValid($value):bool{ 64 | return true; 65 | } 66 | 67 | } 68 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/chillerlan/php-qrcode/src/Output/QRStringText.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright 2023 smiley 8 | * @license MIT 9 | */ 10 | 11 | namespace chillerlan\QRCode\Output; 12 | 13 | use function array_map, implode, is_string, max, min, sprintf; 14 | 15 | /** 16 | * 17 | */ 18 | class QRStringText extends QROutputAbstract{ 19 | 20 | public const MIME_TYPE = 'text/plain'; 21 | 22 | /** 23 | * @inheritDoc 24 | */ 25 | public static function moduleValueIsValid($value):bool{ 26 | return is_string($value); 27 | } 28 | 29 | /** 30 | * @inheritDoc 31 | */ 32 | protected function prepareModuleValue($value):string{ 33 | return $value; 34 | } 35 | 36 | /** 37 | * @inheritDoc 38 | */ 39 | protected function getDefaultModuleValue(bool $isDark):string{ 40 | return ($isDark) ? '██' : '░░'; 41 | } 42 | 43 | /** 44 | * @inheritDoc 45 | */ 46 | public function dump(string $file = null):string{ 47 | $lines = []; 48 | $linestart = $this->options->textLineStart; 49 | 50 | foreach($this->matrix->getMatrix() as $row){ 51 | $lines[] = $linestart.implode('', array_map([$this, 'getModuleValue'], $row)); 52 | } 53 | 54 | $data = implode($this->eol, $lines); 55 | 56 | $this->saveToFile($data, $file); 57 | 58 | return $data; 59 | } 60 | 61 | /** 62 | * a little helper to create a proper ANSI 8-bit color escape sequence 63 | * 64 | * @see https://en.wikipedia.org/wiki/ANSI_escape_code#8-bit 65 | * @see https://en.wikipedia.org/wiki/Block_Elements 66 | * 67 | * @codeCoverageIgnore 68 | */ 69 | public static function ansi8(string $str, int $color, bool $background = null):string{ 70 | $color = max(0, min($color, 255)); 71 | $background = ($background === true) ? 48 : 38; 72 | 73 | return sprintf("\x1b[%s;5;%sm%s\x1b[0m", $background, $color, $str); 74 | } 75 | 76 | } 77 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/chillerlan/php-qrcode/src/QRCodeException.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright 2015 Smiley 8 | * @license MIT 9 | */ 10 | 11 | namespace chillerlan\QRCode; 12 | 13 | use Exception; 14 | 15 | /** 16 | * An exception container 17 | */ 18 | class QRCodeException extends Exception{ 19 | 20 | } 21 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/chillerlan/php-qrcode/src/QROptions.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright 2015 Smiley 8 | * @license MIT 9 | */ 10 | 11 | namespace chillerlan\QRCode; 12 | 13 | use chillerlan\Settings\SettingsContainerAbstract; 14 | 15 | /** 16 | * The QRCode settings container 17 | */ 18 | class QROptions extends SettingsContainerAbstract{ 19 | use QROptionsTrait; 20 | } 21 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/chillerlan/php-settings-container/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2018 Smiley 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/chillerlan/php-settings-container/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "chillerlan/php-settings-container", 3 | "description": "A container class for immutable settings objects. Not a DI container.", 4 | "homepage": "https://github.com/chillerlan/php-settings-container", 5 | "license": "MIT", 6 | "type": "library", 7 | "minimum-stability": "stable", 8 | "keywords": [ 9 | "helper", "container", "settings", "configuration" 10 | ], 11 | "authors": [ 12 | { 13 | "name": "Smiley", 14 | "email": "smiley@chillerlan.net", 15 | "homepage": "https://github.com/codemasher" 16 | } 17 | ], 18 | "support": { 19 | "issues": "https://github.com/chillerlan/php-settings-container/issues", 20 | "source": "https://github.com/chillerlan/php-settings-container" 21 | }, 22 | "require": { 23 | "php": "^8.1", 24 | "ext-json": "*" 25 | }, 26 | "require-dev": { 27 | "phpmd/phpmd": "^2.15", 28 | "phpstan/phpstan": "^1.11", 29 | "phpstan/phpstan-deprecation-rules": "^1.2", 30 | "phpunit/phpunit": "^10.5", 31 | "squizlabs/php_codesniffer": "^3.10" 32 | }, 33 | "autoload": { 34 | "psr-4": { 35 | "chillerlan\\Settings\\": "src" 36 | } 37 | }, 38 | "autoload-dev": { 39 | "psr-4": { 40 | "chillerlan\\SettingsTest\\": "tests" 41 | } 42 | }, 43 | "scripts": { 44 | "phpunit": "@php vendor/bin/phpunit", 45 | "phpstan": "@php vendor/bin/phpstan" 46 | }, 47 | "config": { 48 | "lock": false, 49 | "sort-packages": true, 50 | "platform-check": true 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/chillerlan/php-settings-container/rules-magic-access.neon: -------------------------------------------------------------------------------- 1 | parameters: 2 | ignoreErrors: 3 | # yes, these are magic 4 | - message: "#^Access to an undefined property chillerlan\\\\Settings\\\\SettingsContainerInterface\\:\\:\\$[\\w]+\\.$#" 5 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/composer/LICENSE: -------------------------------------------------------------------------------- 1 | 2 | Copyright (c) Nils Adermann, Jordi Boggiano 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining a copy 5 | of this software and associated documentation files (the "Software"), to deal 6 | in the Software without restriction, including without limitation the rights 7 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the Software is furnished 9 | to do so, subject to the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be included in all 12 | copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 19 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 20 | THE SOFTWARE. 21 | 22 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/composer/InstalledVersions.php', 10 | ); 11 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/chillerlan/php-settings-container/src'), 10 | 'chillerlan\\QRCode\\' => array($vendorDir . '/chillerlan/php-qrcode/src'), 11 | ); 12 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- 1 | register(true); 35 | 36 | return $loader; 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- 1 | 11 | array ( 12 | 'chillerlan\\Settings\\' => 20, 13 | 'chillerlan\\QRCode\\' => 18, 14 | ), 15 | ); 16 | 17 | public static $prefixDirsPsr4 = array ( 18 | 'chillerlan\\Settings\\' => 19 | array ( 20 | 0 => __DIR__ . '/..' . '/chillerlan/php-settings-container/src', 21 | ), 22 | 'chillerlan\\QRCode\\' => 23 | array ( 24 | 0 => __DIR__ . '/..' . '/chillerlan/php-qrcode/src', 25 | ), 26 | ); 27 | 28 | public static $classMap = array ( 29 | 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php', 30 | ); 31 | 32 | public static function getInitializer(ClassLoader $loader) 33 | { 34 | return \Closure::bind(function () use ($loader) { 35 | $loader->prefixLengthsPsr4 = ComposerStaticInitf23edb42c89f02ec3cbd882b0a8ee5fc::$prefixLengthsPsr4; 36 | $loader->prefixDirsPsr4 = ComposerStaticInitf23edb42c89f02ec3cbd882b0a8ee5fc::$prefixDirsPsr4; 37 | $loader->classMap = ComposerStaticInitf23edb42c89f02ec3cbd882b0a8ee5fc::$classMap; 38 | 39 | }, null, ClassLoader::class); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/composer/installed.php: -------------------------------------------------------------------------------- 1 | array( 3 | 'name' => '__root__', 4 | 'pretty_version' => '1.0.0+no-version-set', 5 | 'version' => '1.0.0.0', 6 | 'reference' => null, 7 | 'type' => 'library', 8 | 'install_path' => __DIR__ . '/../../', 9 | 'aliases' => array(), 10 | 'dev' => true, 11 | ), 12 | 'versions' => array( 13 | '__root__' => array( 14 | 'pretty_version' => '1.0.0+no-version-set', 15 | 'version' => '1.0.0.0', 16 | 'reference' => null, 17 | 'type' => 'library', 18 | 'install_path' => __DIR__ . '/../../', 19 | 'aliases' => array(), 20 | 'dev_requirement' => false, 21 | ), 22 | 'chillerlan/php-qrcode' => array( 23 | 'pretty_version' => '5.0.2', 24 | 'version' => '5.0.2.0', 25 | 'reference' => 'da5bdb82c8755f54de112b271b402aaa8df53269', 26 | 'type' => 'library', 27 | 'install_path' => __DIR__ . '/../chillerlan/php-qrcode', 28 | 'aliases' => array(), 29 | 'dev_requirement' => false, 30 | ), 31 | 'chillerlan/php-settings-container' => array( 32 | 'pretty_version' => '3.2.1', 33 | 'version' => '3.2.1.0', 34 | 'reference' => '95ed3e9676a1d47cab2e3174d19b43f5dbf52681', 35 | 'type' => 'library', 36 | 'install_path' => __DIR__ . '/../chillerlan/php-settings-container', 37 | 'aliases' => array(), 38 | 'dev_requirement' => false, 39 | ), 40 | ), 41 | ); 42 | -------------------------------------------------------------------------------- /dist/pages/data/phpqrcode/vendor/composer/platform_check.php: -------------------------------------------------------------------------------- 1 | = 80100)) { 8 | $issues[] = 'Your Composer dependencies require a PHP version ">= 8.1.0". You are running ' . PHP_VERSION . '.'; 9 | } 10 | 11 | if ($issues) { 12 | if (!headers_sent()) { 13 | header('HTTP/1.1 500 Internal Server Error'); 14 | } 15 | if (!ini_get('display_errors')) { 16 | if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') { 17 | fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL); 18 | } elseif (!headers_sent()) { 19 | echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL; 20 | } 21 | } 22 | trigger_error( 23 | 'Composer detected issues in your platform: ' . implode(' ', $issues), 24 | E_USER_ERROR 25 | ); 26 | } 27 | -------------------------------------------------------------------------------- /dist/pages/data/radius_log.php: -------------------------------------------------------------------------------- 1 | Login OK', 'LogOut OK', 'Login incorrect'], 30 | $encodedLine 31 | ); 32 | $logString .= $encodedLine . "
"; 33 | } 34 | ?> -------------------------------------------------------------------------------- /dist/pages/layout/header.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | -------------------------------------------------------------------------------- /dist/pages/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/dist/pages/logo/logo.png -------------------------------------------------------------------------------- /dist/pages/logout.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /dist/pages/plugins/daily-user-chart.js: -------------------------------------------------------------------------------- 1 | const apiUrl='./api/daily_user.php';fetch(apiUrl).then(response=>response.json()).then(data=>{console.log(data);var ctx=document.getElementById('chart-bars').getContext('2d');function getGradient(ctx,chartArea){var gradient=ctx.createLinearGradient(0,chartArea.top,0,chartArea.bottom);gradient.addColorStop(0,'rgba(54, 162, 235, 1)');gradient.addColorStop(1,'rgba(54, 162, 235, 0)');return gradient} 2 | var myCustomersChart=new Chart(ctx,{type:'line',data:{labels:data.labels,datasets:[{data:data.data,tension:0.4,backgroundColor:function(context){var chart=context.chart;var ctx=chart.ctx;var chartArea=chart.chartArea;if(!chartArea){return null} 3 | return getGradient(ctx,chartArea)},borderColor:'rgba(54, 162, 235, 1)',borderWidth:2,fill:!0}]},options:{scales:{y:{display:!0},x:{display:!0}},elements:{point:{radius:1}},plugins:{legend:{display:!1,},title:{display:!1,text:['Daily Login'],align:'center',color:'#fff',font:{size:16,family:'Inter',weight:'600',lineHeight:1.4},padding:{top:20}}},maintainAspectRatio:!1}})}).catch(error=>{console.error('Error fetching chart data:',error)}) -------------------------------------------------------------------------------- /dist/pages/reset_user.php: -------------------------------------------------------------------------------- 1 | 31 | -------------------------------------------------------------------------------- /dist/pages/submit_config.php: -------------------------------------------------------------------------------- 1 | real_escape_string($_POST['hsname1']); 6 | $hsname2 = $conn->real_escape_string($_POST['hsname2']); 7 | $hsip = $conn->real_escape_string($_POST['hsip']); 8 | $hsdomain = $conn->real_escape_string($_POST['hsdomain']); 9 | $hscsn = $conn->real_escape_string($_POST['hscsn']); 10 | $hsqrmode = $conn->real_escape_string($_POST['hsqrmode']); 11 | $hsipdomain = $conn->real_escape_string($_POST['hsipdomain']); 12 | $logomode = $conn->real_escape_string($_POST['logomode']); 13 | 14 | if (isset($_FILES['hslogo']) && $_FILES['hslogo']['error'] == 0) { 15 | $target_dir = "logo/"; 16 | $target_file = $target_dir . "logo.png"; 17 | $imageFileType = strtolower(pathinfo($_FILES["hslogo"]["name"], PATHINFO_EXTENSION)); 18 | 19 | $check = getimagesize($_FILES["hslogo"]["tmp_name"]); 20 | if ($check !== false) { 21 | move_uploaded_file($_FILES["hslogo"]["tmp_name"], $target_file); 22 | } 23 | } 24 | 25 | $sql = "UPDATE print_config SET 26 | hsname1 = '$hsname1', 27 | hsname2 = '$hsname2', 28 | hsip = '$hsip', 29 | hsdomain = '$hsdomain', 30 | hscsn = '$hscsn', 31 | hsqrmode = '$hsqrmode', 32 | hsipdomain = '$hsipdomain', 33 | logomode = '$logomode' 34 | WHERE id = 1"; 35 | 36 | if ($conn->query($sql) === TRUE) { 37 | echo ""; 38 | } else { 39 | echo ""; 40 | } 41 | 42 | $conn->close(); 43 | ?> 44 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /screenshot/bandwidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/screenshot/bandwidth.png -------------------------------------------------------------------------------- /screenshot/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/screenshot/dashboard.png -------------------------------------------------------------------------------- /screenshot/list_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/screenshot/list_user.png -------------------------------------------------------------------------------- /screenshot/mac_binding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/screenshot/mac_binding.png -------------------------------------------------------------------------------- /screenshot/online_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/screenshot/online_user.png -------------------------------------------------------------------------------- /screenshot/plans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/screenshot/plans.png -------------------------------------------------------------------------------- /screenshot/print_batch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/screenshot/print_batch.png -------------------------------------------------------------------------------- /screenshot/print_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/screenshot/print_setting.png -------------------------------------------------------------------------------- /screenshot/print_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/screenshot/print_user.png -------------------------------------------------------------------------------- /screenshot/system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maizil41/RadiusMonitor/fbe81acca5259c2a29708f712905d6a2d022ebca/screenshot/system.png --------------------------------------------------------------------------------