Samuele Longhi
e80b596c58
ramips: mt7621: add support for Gemtek WVRTM-127ACN and WVRTM-130ACN
...
The Gemtek WVRTM-127ACN is an indoor dual band wifi router
with internal antennas and 3 Gigabit Ethernet ports.
The Gemtek WVRTM-130ACN is an indoor dual band wifi router
with external antennas and 5 Gigabit Ethernet ports.
Hardware of WVRTM-127ACN:
- SoC: Mediatek MT7621AT (880 MHz, dual core)
- RAM: 128 MB
- Storage: 128 MB NAND SLC flash
- Ethernet: 3x 10/100/1000 Mbps LAN1,LAN2 & WAN
- Wireless: 2.4GHz: Mediatek MT7603EN (802.11b/g/n)
- Wireless: 5GHz: Mediatek MT7612EN (802.11n/ac)
- LEDs: 11x
- Buttons: 2x WPS, reset
- USB: 1x 3.0
- Power: 56 VDC, 0.54 A, PoE+ IN (WAN)
- PoE: 1x PoE+ 802.3af/at (WAN)
- Uart: GND RX TX VCC - J2 (GND near WAN)
- Board silkscreen: "WVRTM-127ACN_V02" "19K-513-8500R" "RoHS" "1717"
Hardware of WVRTM-130ACN:
- SoC: Mediatek MT7621AT (880 MHz, dual core)
- RAM: 128 MB (Kioxia TC58BVG0S3HTA00)
- Storage: 128 MB NAND SLC (Winbond W971GG6SB-25)
- Ethernet: 5x 10/100/1000 Mbps LAN1,LAN2,LAN3,LAN4 & WAN
- Wireless: 2.4GHz and 5GHz Mediatek MT7615DN (802.11ac/b/g/n) (DBDC)
- LEDs: 10x
- Buttons: 3x Power, WPS, reset
- USB: 1x 3.0
- Power: 56 VDC, 0.54 A, PoE+ (WAN)
- PoE: 1x PoE+ 802.3af/at (WAN)
- Uart: GND RX TX VCC - J2 (GND near WAN)
- Board silkscreen: "WVRTM-130ACN_V01" "19K-515-4500R" "RoHS" "2112"
Enable access to uboot menu (needed in wvrtm-130acn):
- The access to uboot menu is blocked by `bootdelay = 0` set in ubootenv.
With stock firmware version 01.01.02.163 and previous, you can use CVE 2020-24365
command injection https://nvd.nist.gov/vuln/detail/CVE-2020-24365
python3 exploit.py -t 192.168.1.1 -c "fw_setenv bootdelay 3; fw_saveenv"
Backup the stock firmware:
- Connect via uart
- Connect via ethernet and assign your pc the address 192.168.15.x/24
- Power on the device; and start typing '4' to enter uboot menu
- Set factory mode and boot
MT7621 # setenv factory 2; saveenv
MT7621 # nand read 2800000 2000000 81000000; bootm
- Telnet and copy all mtd blocks
telnet 192.168.15.1
- Copy all mtd blocks and start webserver
for N in $(seq 0 6); do dd if=/dev/mtd$N of=/tmp/eeprom_mtd$N.bin; done
mount -o bind /tmp /www
lighttpd -f /etc/lighttpd.conf
- Backup stock rootfs_data (optional)
dd if=/dev/mtd7 of=/tmp/eeprom_mtd7.bin
dd if=/dev/mtd8 of=/tmp/eeprom_mtd8.bin
- Download to your pc from http://192.168.15.1/eeprom_mtd$N.bin
Installation:
- Connect via uart
- Connect via ethernet and assign your pc the address 10.10.10.3/24
- Start a tftp server and serve the image initramfs-kernel.bin
mkdir /tmp/ftpd;
cp initramfs-kernel.bin /tmp/ftpd/kernel.bin
dnsmasq --enable-tftp --tftp-root=/tmp/ftpd
- Power on the device; and start typing '4' to halt the bootloader
- Change the active mtd partition from mtd6 to mtd5 (needed by uboot)
MT7621 # setenv mtddevnum 5; saveenv
- Write the openwrt initramfs in ram via tftp and boot it
MT7621 # tftpboot 81000000 kernel.bin; bootm
- From the initramfs create the ubi device and install openwrt via sysupgrade
ubiformat /dev/mtd11 -y
sysupgrade -n -v /tmp/sysupgrade.bin
Recovery:
Restore the stock firmware from the backup of the mtd blocks
mtd write eeprom_mtd5.bin firmware
mtd write eeprom_mtd6.bin Kernel2
mtd write eeprom_mtd7.bin Storage1
mtd write eeprom_mtd8.bin Storage2
ubiformat /dev/mtd8 -y
reboot
Links to previous works on wvrtm-127acn:
https://github.com/digiampietro/hacking-gemtek
https://forum.openwrt.org/t/add-support-for-gemtek-wvrtm-127acn-linkem-provider/168757
Signed-off-by: Samuele Longhi <agave@dracaena.it>
Link: https://github.com/openwrt/openwrt/pull/16685
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
2024-10-19 17:23:36 +02:00
..
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2022-11-13 22:36:06 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2023-10-17 12:07:27 +02:00
2023-10-17 12:07:27 +02:00
2024-02-21 13:31:18 +01:00
2024-07-10 12:20:35 +02:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-07-10 12:20:35 +02:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2020-10-02 14:51:57 +02:00
2024-02-21 13:31:18 +01:00
2024-07-10 12:20:35 +02:00
2024-02-21 13:31:18 +01:00
2023-11-26 00:15:58 +01:00
2023-11-26 00:15:58 +01:00
2021-08-25 01:42:16 +02:00
2021-08-25 01:42:16 +02:00
2021-08-25 01:42:16 +02:00
2024-07-10 12:20:35 +02:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2022-11-13 22:36:06 +01:00
2022-11-13 22:36:06 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-07-10 12:20:35 +02:00
2020-10-02 14:51:57 +02:00
2023-10-17 12:07:27 +02:00
2024-07-11 18:57:42 +02:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-08-06 00:34:14 +02:00
2024-02-21 13:31:18 +01:00
2024-02-07 14:48:43 +01:00
2024-02-07 14:48:43 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-08 00:01:22 +01:00
2024-02-21 13:31:18 +01:00
2024-02-08 00:01:22 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-07-10 12:20:35 +02:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2020-10-02 14:51:57 +02:00
2020-10-02 14:51:57 +02:00
2020-10-02 14:51:57 +02:00
2024-02-21 13:31:18 +01:00
2022-03-16 23:14:25 +09:00
2022-03-16 23:14:25 +09:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2022-09-12 21:37:08 +01:00
2022-09-12 21:37:08 +01:00
2022-09-12 21:37:08 +01:00
2024-07-10 12:20:35 +02:00
2024-07-10 12:20:35 +02:00
2021-08-24 20:26:00 +02:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2023-11-25 01:11:18 +01:00
2023-11-25 01:11:18 +01:00
2024-02-21 13:31:18 +01:00
2024-07-10 12:20:35 +02:00
2024-02-07 14:48:43 +01:00
2024-02-21 13:31:18 +01:00
2024-04-13 17:40:51 +02:00
2024-08-06 00:34:14 +02:00
2024-08-06 00:34:14 +02:00
2024-05-09 22:24:48 +02:00
2024-05-09 22:24:48 +02:00
2024-05-09 22:24:48 +02:00
2024-02-21 13:31:18 +01:00
2024-09-22 15:31:11 +02:00
2024-10-06 14:07:37 +02:00
2024-02-07 14:48:43 +01:00
2024-02-07 14:48:43 +01:00
2020-11-25 19:34:13 +01:00
2024-02-21 13:31:18 +01:00
2024-07-21 18:47:37 +02:00
2024-05-10 00:05:25 +02:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-07-10 12:20:35 +02:00
2023-10-17 12:07:27 +02:00
2022-01-15 17:12:12 +01:00
2024-07-10 12:20:35 +02:00
2021-06-05 23:39:14 +02:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2021-08-18 23:46:02 +02:00
2022-01-15 17:12:12 +01:00
2022-01-15 17:12:12 +01:00
2024-02-21 13:31:18 +01:00
2020-09-25 23:26:40 +02:00
2024-02-07 14:48:43 +01:00
2022-01-15 17:12:12 +01:00
2024-02-07 14:48:43 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-08-25 15:08:25 +02:00
2024-07-11 18:57:41 +02:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-07 14:48:43 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-07 14:48:43 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2021-08-18 23:46:02 +02:00
2021-08-18 23:46:02 +02:00
2024-02-21 13:31:18 +01:00
2020-10-02 14:51:57 +02:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-08-25 15:08:25 +02:00
2024-08-25 15:08:25 +02:00
2024-08-25 15:08:25 +02:00
2024-07-04 22:20:47 +02:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2024-02-21 13:31:18 +01:00
2021-06-05 23:39:14 +02:00
2024-05-01 13:50:54 +01:00
2024-02-21 13:31:18 +01:00
2024-07-10 12:20:35 +02:00
2024-05-01 13:50:54 +01:00
2023-11-26 01:30:32 +01:00
2023-11-26 01:30:32 +01:00
2024-05-01 13:50:54 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-06-17 12:57:06 +02:00
2020-10-02 14:51:57 +02:00
2020-10-02 14:51:57 +02:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2024-01-07 01:41:22 +01:00
2024-05-01 13:50:54 +01:00
2024-01-07 01:41:22 +01:00
2024-05-01 13:50:54 +01:00
2024-06-14 14:41:30 +02:00
2024-05-01 13:50:54 +01:00
2024-02-21 13:31:18 +01:00
2024-05-01 13:50:54 +01:00
2024-06-05 21:14:16 +02:00
2024-06-05 21:14:16 +02:00
2024-06-05 21:14:16 +02:00
2024-06-05 21:14:16 +02:00
2024-06-05 21:14:16 +02:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2023-11-25 15:48:41 +01:00
2024-05-01 13:50:54 +01:00
2023-11-25 15:48:41 +01:00
2024-05-01 13:50:54 +01:00
2024-06-16 21:24:11 +02:00
2024-06-16 21:24:11 +02:00
2024-06-16 21:24:11 +02:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-05-01 13:50:54 +01:00
2023-08-27 19:13:36 +02:00
2024-02-21 13:31:18 +01:00
2024-05-09 22:24:31 +02:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2024-02-22 22:53:30 +01:00
2024-02-22 22:53:30 +01:00
2024-02-22 22:53:30 +01:00
2024-02-22 22:53:30 +01:00
2024-02-22 22:53:30 +01:00
2024-02-22 22:53:30 +01:00
2024-05-09 22:24:31 +02:00
2024-06-02 18:41:17 +02:00
2024-06-14 14:44:04 +02:00
2024-09-22 19:38:21 +02:00
2024-05-09 22:24:31 +02:00
2024-05-09 22:24:31 +02:00
2024-05-09 22:24:31 +02:00
2024-05-09 22:24:31 +02:00
2023-08-27 19:13:36 +02:00
2024-02-21 13:31:18 +01:00
2024-06-15 22:54:52 +02:00
2024-06-15 22:54:52 +02:00
2024-10-05 00:54:44 +02:00
2024-02-07 14:48:43 +01:00
2020-10-02 14:51:57 +02:00
2024-02-21 13:31:18 +01:00
2020-10-02 14:51:57 +02:00
2024-05-01 13:50:54 +01:00
2024-06-16 21:24:11 +02:00
2024-06-16 21:24:11 +02:00
2024-09-22 18:52:07 +02:00
2024-05-01 13:50:54 +01:00
2024-06-16 21:24:11 +02:00
2024-06-16 21:24:11 +02:00
2023-11-26 01:30:32 +01:00
2023-11-26 01:30:32 +01:00
2023-11-26 01:30:32 +01:00
2023-11-26 01:30:32 +01:00
2023-01-14 15:41:00 +01:00
2023-01-14 15:41:00 +01:00
2024-05-01 13:50:54 +01:00
2023-11-26 01:30:32 +01:00
2023-11-26 01:30:32 +01:00
2023-11-26 01:30:32 +01:00
2024-06-16 21:24:11 +02:00
2023-10-09 11:15:52 +02:00
2024-05-01 13:50:54 +01:00
2024-05-25 19:33:28 +02:00
2024-09-22 18:52:07 +02:00
2024-09-22 18:52:07 +02:00
2024-05-01 13:50:54 +01:00
2024-02-21 13:31:18 +01:00
2024-05-01 13:50:54 +01:00
2024-10-19 17:23:36 +02:00
2024-10-19 17:23:36 +02:00
2024-10-19 17:23:36 +02:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2024-02-21 13:31:18 +01:00
2024-05-01 13:50:54 +01:00
2022-07-31 19:23:24 +02:00
2022-07-31 19:23:24 +02:00
2022-07-31 19:23:24 +02:00
2022-11-05 22:38:01 +01:00
2024-05-01 13:50:54 +01:00
2024-06-15 22:54:52 +02:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2024-01-17 01:14:49 +01:00
2024-05-01 13:50:54 +01:00
2024-01-17 01:14:49 +01:00
2024-05-01 13:50:54 +01:00
2024-01-17 01:14:49 +01:00
2024-05-01 13:50:54 +01:00
2024-01-17 01:14:49 +01:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2022-01-15 20:43:14 +09:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2024-06-15 22:54:52 +02:00
2022-01-15 20:43:14 +09:00
2024-07-10 12:20:35 +02:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2024-07-10 12:20:35 +02:00
2024-05-01 13:50:54 +01:00
2024-07-10 12:20:35 +02:00
2024-05-11 17:24:10 +02:00
2024-05-01 13:50:54 +01:00
2024-07-21 20:54:31 +02:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2020-10-02 14:51:57 +02:00
2024-01-17 01:14:50 +01:00
2020-10-02 14:51:57 +02:00
2021-06-05 23:39:14 +02:00
2021-07-11 16:58:12 +02:00
2024-05-01 13:50:54 +01:00
2024-02-21 13:31:18 +01:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2024-06-17 12:57:06 +02:00
2024-05-01 13:50:54 +01:00
2024-10-12 22:26:56 +02:00
2024-10-12 22:26:56 +02:00
2024-10-12 22:26:56 +02:00
2024-10-12 22:26:56 +02:00
2024-10-12 22:26:56 +02:00
2024-10-12 22:26:56 +02:00
2024-10-12 22:26:56 +02:00
2024-02-21 13:31:18 +01:00
2024-07-29 01:09:24 +02:00
2022-06-13 15:26:23 +08:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2020-10-02 14:51:57 +02:00
2020-10-02 14:51:57 +02:00
2020-10-02 14:51:57 +02:00
2020-10-02 14:51:57 +02:00
2020-10-02 14:51:57 +02:00
2021-09-26 15:15:36 +02:00
2021-09-26 15:15:30 +02:00
2021-09-26 15:38:01 +02:00
2024-06-17 12:57:06 +02:00
2024-05-01 13:50:54 +01:00
2024-06-17 12:57:06 +02:00
2024-05-01 13:50:54 +01:00
2020-10-02 14:51:57 +02:00
2024-05-01 13:50:54 +01:00
2024-07-21 20:05:14 +02:00
2024-02-21 13:31:18 +01:00
2024-09-19 23:11:58 +02:00
2024-05-01 13:50:54 +01:00
2024-09-19 23:11:58 +02:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2024-06-14 14:41:30 +02:00
2024-09-22 18:59:54 +02:00
2024-05-25 20:20:30 +02:00
2024-06-14 14:43:07 +02:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2022-11-05 22:38:01 +01:00
2024-06-17 12:57:06 +02:00
2024-07-10 12:20:35 +02:00
2024-06-17 12:57:06 +02:00
2024-05-01 13:50:54 +01:00
2024-02-21 13:31:18 +01:00
2024-05-01 13:50:54 +01:00
2024-02-21 13:31:18 +01:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2024-02-21 13:31:18 +01:00
2021-06-13 11:32:31 +02:00
2024-05-01 13:50:54 +01:00
2021-06-13 11:32:31 +02:00
2024-07-10 12:20:35 +02:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-05-01 13:50:54 +01:00
2024-02-21 13:31:18 +01:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2024-10-06 18:58:47 +02:00
2024-05-01 13:50:54 +01:00
2024-07-10 12:20:35 +02:00
2024-02-21 13:31:18 +01:00
2020-10-02 14:51:57 +02:00
2020-10-02 14:51:57 +02:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2023-07-14 11:38:12 +02:00
2024-05-01 13:50:54 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2021-08-18 23:46:02 +02:00
2024-05-01 13:50:54 +01:00
2024-02-21 13:31:18 +01:00
2024-05-01 13:50:54 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-05-01 13:50:54 +01:00
2024-02-21 13:31:18 +01:00
2022-04-30 23:56:47 +02:00
2024-01-17 01:14:50 +01:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2021-08-30 00:37:47 +02:00
2021-08-30 00:37:47 +02:00
2024-07-10 12:20:35 +02:00
2024-01-07 01:41:22 +01:00
2024-09-19 23:11:58 +02:00
2024-07-10 12:20:35 +02:00
2024-07-28 20:21:08 +02:00
2024-06-17 12:57:06 +02:00
2020-12-08 17:18:57 +01:00
2024-06-17 12:57:06 +02:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2024-02-21 13:31:18 +01:00
2024-02-07 14:48:43 +01:00
2020-11-12 17:18:26 +01:00
2024-02-07 14:48:43 +01:00
2024-05-01 13:50:54 +01:00
2022-02-07 00:03:27 +01:00
2022-02-07 00:03:27 +01:00
2022-02-07 00:03:27 +01:00
2024-02-21 13:31:18 +01:00
2024-02-07 14:48:43 +01:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2024-02-21 13:31:18 +01:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2024-07-10 12:20:35 +02:00
2024-07-10 12:20:35 +02:00
2024-07-10 12:20:35 +02:00
2024-06-25 20:42:54 +01:00
2024-05-01 13:50:54 +01:00
2024-07-29 01:09:24 +02:00
2024-07-29 01:09:24 +02:00
2024-07-29 01:09:24 +02:00
2021-12-05 18:49:14 +01:00
2022-11-05 21:12:25 +01:00
2022-11-05 21:12:25 +01:00
2024-05-01 13:50:54 +01:00
2024-05-01 13:50:54 +01:00
2022-03-09 15:38:32 +09:00
2023-06-20 21:48:23 +08:00
2024-05-01 13:50:54 +01:00
2024-02-21 13:31:18 +01:00
2020-09-25 23:26:40 +02:00
2022-01-15 17:12:12 +01:00
2024-02-21 13:31:18 +01:00
2021-08-30 00:37:47 +02:00
2024-08-25 15:08:25 +02:00
2024-08-25 15:08:25 +02:00
2024-08-25 15:08:25 +02:00
2024-08-25 15:08:25 +02:00
2024-08-25 15:08:25 +02:00
2024-02-21 13:31:18 +01:00
2024-08-25 15:08:25 +02:00
2024-08-25 15:08:25 +02:00
2024-07-12 02:43:58 +01:00
2024-06-11 00:09:06 +02:00
2024-06-11 00:09:06 +02:00
2024-06-11 00:09:06 +02:00
2024-02-21 13:31:18 +01:00
2023-10-17 12:07:27 +02:00
2024-02-07 14:48:43 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2020-10-02 14:51:57 +02:00
2020-10-02 14:51:57 +02:00
2020-10-02 14:51:57 +02:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2022-01-22 01:17:04 +01:00
2023-10-17 12:07:27 +02:00
2024-02-21 13:31:18 +01:00
2024-06-10 10:13:56 +02:00
2024-02-21 13:31:18 +01:00
2024-07-11 18:57:41 +02:00
2024-02-21 13:31:18 +01:00
2024-07-10 12:20:35 +02:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2021-08-20 18:10:48 +02:00
2024-02-21 13:31:18 +01:00
2021-08-20 18:10:48 +02:00
2024-07-11 18:57:41 +02:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-07-10 12:20:35 +02:00
2022-12-04 15:21:12 +08:00
2020-10-02 14:51:57 +02:00
2023-10-17 12:07:27 +02:00
2023-10-17 12:07:27 +02:00
2024-02-07 14:48:43 +01:00
2024-02-07 14:48:43 +01:00
2024-02-21 13:31:18 +01:00
2020-09-25 23:26:40 +02:00
2020-09-25 23:26:40 +02:00
2022-01-15 17:12:12 +01:00
2024-07-11 18:57:41 +02:00
2024-02-21 13:31:18 +01:00
2024-02-07 14:48:43 +01:00
2024-02-07 14:48:43 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-07-11 18:57:41 +02:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-07-11 18:57:41 +02:00
2024-07-10 12:20:35 +02:00
2024-07-10 12:20:35 +02:00
2024-06-16 21:24:11 +02:00
2024-06-16 21:24:11 +02:00
2024-06-17 12:57:06 +02:00
2020-10-02 14:51:57 +02:00
2024-07-11 18:57:41 +02:00
2022-01-15 17:12:12 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-07 14:48:43 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-06-16 21:24:11 +02:00
2024-06-16 21:24:11 +02:00
2024-02-07 14:48:43 +01:00
2024-06-16 21:24:11 +02:00
2024-02-07 14:48:43 +01:00
2024-02-07 14:48:43 +01:00
2024-07-10 12:20:35 +02:00
2022-11-07 12:33:42 +01:00
2022-11-07 12:33:42 +01:00
2022-11-07 12:33:42 +01:00
2024-02-21 13:31:18 +01:00
2024-03-23 23:38:33 +01:00
2022-11-07 12:33:42 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-07 14:48:43 +01:00
2024-01-10 20:56:06 +01:00
2024-02-21 13:31:18 +01:00
2024-06-16 21:24:11 +02:00
2024-05-16 13:11:08 +03:00
2024-05-16 13:11:08 +03:00
2024-06-16 21:24:11 +02:00
2024-02-07 14:48:43 +01:00
2024-06-16 21:24:11 +02:00
2024-02-21 13:31:18 +01:00
2024-06-16 21:24:11 +02:00
2024-02-21 13:31:18 +01:00
2024-06-16 21:24:11 +02:00
2024-06-16 21:24:11 +02:00
2024-06-16 21:24:11 +02:00
2024-06-16 21:24:11 +02:00
2024-02-21 13:31:18 +01:00
2024-02-07 14:48:43 +01:00
2024-02-08 00:01:22 +01:00
2021-08-18 23:46:02 +02:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2021-08-18 23:46:02 +02:00
2022-01-15 17:12:12 +01:00
2024-07-11 18:57:41 +02:00
2024-07-11 18:57:41 +02:00
2024-02-21 13:31:18 +01:00
2024-02-08 00:01:22 +01:00
2024-02-08 00:01:22 +01:00
2024-06-16 21:24:11 +02:00
2024-06-15 22:54:52 +02:00
2024-08-13 00:48:06 +02:00
2024-02-07 14:48:43 +01:00
2024-02-07 14:48:43 +01:00
2024-02-07 14:48:43 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-09-11 00:17:05 +02:00
2024-09-11 00:17:05 +02:00
2024-02-21 13:31:18 +01:00
2024-08-25 15:08:25 +02:00
2024-07-11 18:57:41 +02:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-07-04 22:20:47 +02:00
2024-02-21 13:31:18 +01:00
2021-08-18 23:46:02 +02:00
2021-08-18 23:46:02 +02:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-07 14:48:43 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-07-04 22:20:47 +02:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-07 14:48:43 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-08-25 15:08:25 +02:00
2024-08-25 15:08:25 +02:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-08-25 15:08:25 +02:00
2024-07-04 22:20:47 +02:00
2024-08-06 00:34:14 +02:00
2024-08-06 00:34:14 +02:00
2024-08-06 00:34:14 +02:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-08-06 00:34:14 +02:00
2024-09-22 19:12:16 +02:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-09-22 19:12:16 +02:00
2021-08-18 23:46:02 +02:00
2021-08-18 23:46:02 +02:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2021-08-18 23:46:02 +02:00
2021-08-18 23:46:02 +02:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2021-08-18 23:46:02 +02:00
2021-08-18 23:46:02 +02:00
2024-02-21 13:31:18 +01:00
2021-08-18 23:46:02 +02:00
2021-08-18 23:46:02 +02:00
2024-02-21 13:31:18 +01:00
2020-09-25 23:26:40 +02:00
2020-09-25 23:26:40 +02:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2021-08-18 23:46:02 +02:00
2021-08-18 23:46:02 +02:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2021-08-18 23:46:02 +02:00
2021-08-18 23:46:02 +02:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-02-21 13:31:18 +01:00
2024-08-25 15:08:25 +02:00
2024-08-25 15:08:25 +02:00
2024-08-25 15:08:25 +02:00
2024-07-04 22:20:47 +02:00