Andreas Böhler
dde510cf97
ath79: add support for KuWFi N650 CPE
...
The KuWFi N650 is a 5GHz outdoor wireless bridge based on QCA9563.
Specs
=====
CPU: QCA9563, 775MHz
RAM: 128MiB
Flash: 16MiB
Wireless: QCA9888 (5GHz only)
Ethernet: 2x GBit (via QCA8337), 48V passive PoE
Installation
============
From OEM firmware
-----------------
The OEM firmware has telnet enabled by default. If not, it can be enabled
from the firmware web interface. You need a TFTP server on your computer
and the OpenWrt factory image should be available as "n650factory.bin".
It is assumed that your computer has the IP 192.168.1.1 and the N650
192.168.1.20 (default IP address).
1. Connect via Telnet to the device and log in with the default credentials
"admin:admin"
2. Exploit the limited interface by typing "ps & /bin/sh"
3. Press <ENTER> to start the shell
4. Enter the following commands:
$ cd /tmp
$ tftp -r n650factory.bin -g 192.168.1.1
$ cat << EOF > /tmp/openwrt.sh
#!/bin/sh
IMAGE_NAME="\$1"
if [ ! -e \${IMAGE_NAME} ]; then
echo "Image file not found: \${IMAGE_NAME}"
exit 1
fi
. /usr/sbin/common.sh
kill_remaining TERM
sleep 3
kill_remaining KILL
run_ramfs mtd write \${IMAGE_NAME} firmware
sleep 2
reboot -f
EOF
$ chmod +x /tmp/openwrt.sh
$ /tmp/openwrt.sh n650factory.bin
Once the device reboots, it should load OpenWrt.
From UART
---------
UART installation is possible since the serial header is already soldered
on. The pinout is GND - Tx - Rx - VCC from top to bottom (RJ45 ports are
at the bottom). Connect with 115200 8N1.
First, boot OpenWrt from TFTP. Enter the following commands in the U-Boot
shell, assuming your computer has the IP address 192.168.1.1 and a TFTP
server running where the initramfs image is provided as n650.bin:
setenv ipaddr 192.168.1.20
setenv serverip 192.168.1.1
tftpboot 0x84000000 n650.bin
bootm
Once booted, transfer -loader.bin and -sysupgrade.bin images to the device
at /tmp. Enter the following commands, replacing the filenames:
mtd write /tmp/loader.bin loader
sysupgrade /tmp/sysupgrade.bin
Reboot and OpenWrt should load from flash.
Back to Stock
-------------
Back to stock is only possible if you saved a partition backup before
installing OpenWrt. Assuming you have fullbackup.bin covering the whole
flash, you need to prepare the image as follows:
$ dd if=fullbackup.bin of=fwconcat0.bin bs=65536 skip=4 count=212
$ dd if=fullbackup.bin of=loader.bin bs=65536 skip=216 count=1
$ dd if=fullbackup.bin of=fwconcat1.bin bs=65536 skip=217 count=22
$ cat fwconcat0.bin fwconcat1.bin > firmware.bin
Transfer firmware.bin and loader.bin to the OpenWrt device. First, flash
loader.bin to mtd device loader, then force sysupgrade:
$ mtd write loader.bin loader
$ sysupgrade -F firmware.bin
The reason for the two-step process is the way the flash layout is designed
for OpenWrt in contrast to the OEM firmware partition.
Signed-off-by: Andreas Böhler <dev@aboehler.at>
Link: https://github.com/openwrt/openwrt/pull/17089
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
2024-11-30 18:52:41 +01:00
..
2021-04-08 09:20:59 +02:00
2021-04-08 09:20:59 +02:00
2020-10-02 13:51:39 +02:00
2024-06-09 12:24:15 +02:00
2024-07-04 19:30:37 +02:00
2024-02-07 14:48:34 +01:00
2021-04-08 09:20:59 +02:00
2024-01-05 16:17:57 +01:00
2021-02-24 02:53:53 +01:00
2024-06-09 12:24:15 +02:00
2024-07-04 19:30:37 +02:00
2024-07-04 19:30:37 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2024-06-09 12:24:15 +02:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2023-11-25 21:34:18 -08:00
2024-02-07 14:48:34 +01:00
2020-09-25 23:26:34 +02:00
2024-02-07 14:48:34 +01:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-20 14:02:13 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-02-07 14:48:34 +01:00
2023-03-22 22:25:08 +01:00
2023-11-25 21:34:18 -08:00
2023-11-25 21:34:18 -08:00
2023-11-25 21:34:18 -08:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2022-11-12 17:10:12 +01:00
2024-06-09 12:24:15 +02:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2020-09-25 23:26:34 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2020-09-25 23:26:34 +02:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2024-02-07 14:48:34 +01:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2024-02-07 14:48:34 +01:00
2024-06-09 12:24:15 +02:00
2020-09-25 23:26:34 +02:00
2024-07-04 19:30:37 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-02-07 14:48:34 +01:00
2022-11-12 17:10:12 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2023-11-25 21:34:18 -08:00
2024-02-07 14:48:34 +01:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2022-08-06 20:15:30 +02:00
2023-11-25 21:34:18 -08:00
2022-08-06 20:15:30 +02:00
2023-11-25 21:34:18 -08:00
2022-12-17 20:48:57 +01:00
2022-11-12 17:10:12 +01:00
2024-02-07 14:48:34 +01:00
2023-11-25 21:34:18 -08:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-10-19 17:30:50 +02:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-08-06 00:34:14 +02:00
2023-11-25 21:34:18 -08:00
2023-11-25 21:34:18 -08:00
2024-06-09 12:24:15 +02:00
2024-07-04 19:30:37 +02:00
2021-03-22 09:23:10 +01:00
2021-03-22 09:23:10 +01:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2022-11-12 17:10:12 +01:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2020-12-30 23:32:07 +01:00
2020-12-30 23:32:07 +01:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2022-11-12 17:10:12 +01:00
2024-06-09 12:24:15 +02:00
2020-10-02 13:51:39 +02:00
2024-02-07 14:48:34 +01:00
2020-10-02 13:51:39 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-02-07 14:48:34 +01:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2020-10-02 13:51:39 +02:00
2023-11-25 21:34:18 -08:00
2020-10-02 13:51:39 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-01-05 16:17:58 +01:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-01-05 16:17:58 +01:00
2024-06-09 12:24:15 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2024-01-05 16:17:58 +01:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2024-06-09 12:24:15 +02:00
2022-11-09 22:55:33 +01:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2020-12-29 00:03:26 +01:00
2020-12-29 00:03:26 +01:00
2020-12-29 00:03:26 +01:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-02-07 14:48:34 +01:00
2020-01-31 13:42:12 +01:00
2024-02-07 14:48:34 +01:00
2024-01-07 01:19:54 +01:00
2024-05-09 23:51:14 +02:00
2024-01-07 01:19:54 +01:00
2024-02-07 14:48:34 +01:00
2023-11-25 21:34:18 -08:00
2021-01-15 18:32:38 +01:00
2024-01-25 23:45:41 +01:00
2020-11-03 18:34:10 +01:00
2020-11-03 18:34:10 +01:00
2024-01-20 19:57:57 +01:00
2020-11-18 21:13:46 +01:00
2020-11-18 21:13:46 +01:00
2020-11-03 18:34:10 +01:00
2020-11-03 18:34:10 +01:00
2024-01-20 19:57:57 +01:00
2024-01-20 19:57:57 +01:00
2020-11-03 18:34:10 +01:00
2024-01-20 19:57:57 +01:00
2024-01-20 19:57:57 +01:00
2022-06-15 20:07:26 +02:00
2022-06-15 20:07:26 +02:00
2024-06-09 12:24:15 +02:00
2024-01-20 19:57:57 +01:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2021-06-06 18:56:45 +02:00
2021-06-06 18:56:45 +02:00
2024-06-09 12:24:15 +02:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-01-05 16:17:58 +01:00
2024-02-07 14:48:34 +01:00
2024-07-21 16:51:52 +02:00
2020-09-25 23:26:34 +02:00
2023-02-26 22:22:48 +01:00
2024-02-07 14:48:34 +01:00
2023-07-01 15:51:26 +02:00
2023-06-25 13:18:31 +02:00
2023-06-25 13:18:31 +02:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2023-02-26 22:22:48 +01:00
2024-06-09 12:24:15 +02:00
2024-07-28 18:47:56 +02:00
2024-07-28 18:47:56 +02:00
2024-07-28 18:47:56 +02:00
2024-07-28 18:47:56 +02:00
2023-11-25 21:34:18 -08:00
2024-02-07 14:48:34 +01:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2023-11-25 21:34:18 -08:00
2024-02-07 14:48:34 +01:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-08-30 14:54:02 +02:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2023-11-25 21:34:18 -08:00
2023-11-25 21:34:18 -08:00
2024-06-09 12:24:15 +02:00
2024-02-07 14:48:34 +01:00
2024-06-09 12:24:15 +02:00
2024-01-05 16:17:58 +01:00
2024-06-09 12:24:15 +02:00
2023-11-25 21:34:18 -08:00
2023-11-25 21:34:18 -08:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2021-08-20 18:13:55 +02:00
2024-06-09 12:24:15 +02:00
2024-02-07 14:48:34 +01:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2023-11-25 21:34:18 -08:00
2020-09-25 23:26:34 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2023-11-25 21:34:18 -08:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-02-07 14:48:34 +01:00
2024-06-09 12:24:15 +02:00
2024-01-05 16:17:57 +01:00
2023-11-27 00:34:49 +01:00
2024-05-09 23:53:02 +02:00
2023-11-25 17:14:04 -08:00
2024-06-09 12:24:15 +02:00
2024-07-04 19:30:37 +02:00
2023-11-25 17:14:04 -08:00
2024-11-29 15:02:48 +01:00
2024-02-07 14:48:34 +01:00
2024-05-11 16:57:28 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-10-19 17:56:46 +02:00
2024-07-04 19:30:37 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2023-11-25 17:14:04 -08:00
2024-02-07 14:48:34 +01:00
2024-10-22 12:25:58 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-10-20 22:07:32 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2020-09-25 23:26:34 +02:00
2024-02-07 14:48:34 +01:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2024-06-09 12:24:15 +02:00
2024-09-21 18:03:31 +02:00
2024-06-09 12:24:15 +02:00
2023-10-31 13:53:11 +01:00
2023-10-31 13:53:11 +01:00
2024-07-04 19:30:37 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-02-07 14:48:34 +01:00
2022-05-21 13:54:08 +02:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-06-09 12:24:15 +02:00
2020-11-12 17:18:26 +01:00
2020-11-12 17:18:26 +01:00
2024-06-09 12:24:15 +02:00
2024-02-07 14:48:34 +01:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-01-05 16:17:58 +01:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2023-09-16 12:49:26 +02:00
2023-09-16 12:49:26 +02:00
2023-09-16 12:49:26 +02:00
2022-05-21 13:54:02 +02:00
2020-09-25 23:26:34 +02:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2020-12-28 19:37:24 +01:00
2020-12-28 19:37:24 +01:00
2024-06-09 12:24:15 +02:00
2020-12-22 19:11:50 +01:00
2024-06-09 12:24:15 +02:00
2020-12-22 19:11:50 +01:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-02-07 14:48:34 +01:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2024-02-07 14:48:34 +01:00
2021-08-20 18:13:55 +02:00
2024-06-09 12:24:15 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2024-06-09 12:24:15 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2024-02-07 14:48:34 +01:00
2020-09-25 23:26:34 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-05-27 00:32:57 +02:00
2024-03-31 18:09:43 +02:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-01 17:09:02 +01:00
2024-02-07 14:48:34 +01:00
2024-03-08 17:35:01 +01:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-02-07 14:48:34 +01:00
2022-02-01 14:54:16 +09:00
2022-02-01 14:54:16 +09:00
2024-02-07 14:48:34 +01:00
2024-03-02 14:08:08 +01:00
2024-03-02 14:08:08 +01:00
2024-02-07 14:48:34 +01:00
2020-12-22 19:11:50 +01:00
2024-06-09 12:24:15 +02:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2020-10-02 13:51:39 +02:00
2020-10-02 13:51:39 +02:00
2024-02-01 17:09:03 +01:00
2024-06-09 12:24:15 +02:00
2024-03-08 17:35:01 +01:00
2024-11-30 18:19:52 +01:00
2024-11-30 18:19:52 +01:00
2024-11-30 18:19:52 +01:00
2024-08-25 15:08:25 +02:00
2024-06-14 21:05:19 +02:00
2024-06-09 12:24:15 +02:00
2024-10-19 23:16:20 +02:00
2020-12-14 16:57:21 +01:00
2020-12-14 16:59:49 +01:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-02-07 14:48:34 +01:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-03-08 17:35:01 +01:00
2024-06-09 12:24:15 +02:00
2024-03-24 21:10:59 +01:00
2024-05-11 16:57:28 +02:00
2024-02-07 14:48:34 +01:00
2020-12-22 19:11:50 +01:00
2024-05-11 16:57:28 +02:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-05-11 16:57:28 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-11-07 14:56:39 +01:00
2024-03-08 17:35:01 +01:00
2024-03-08 17:35:01 +01:00
2024-01-07 01:19:56 +01:00
2024-01-07 01:19:56 +01:00
2024-01-07 01:19:56 +01:00
2022-04-16 16:59:29 +02:00
2024-10-19 17:56:46 +02:00
2024-10-19 17:56:46 +02:00
2024-10-19 17:56:46 +02:00
2024-10-19 17:56:46 +02:00
2024-02-07 14:48:34 +01:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2021-06-05 01:17:11 +02:00
2021-06-05 01:17:11 +02:00
2024-06-09 12:24:15 +02:00
2024-02-01 17:09:02 +01:00
2024-02-01 17:09:02 +01:00
2021-01-19 21:41:26 +01:00
2021-01-19 21:41:26 +01:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2020-10-17 20:17:59 +02:00
2020-10-17 20:17:59 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2022-04-16 16:59:29 +02:00
2022-04-16 16:59:29 +02:00
2022-04-16 16:59:29 +02:00
2022-04-16 16:59:29 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2023-11-25 17:14:04 -08:00
2024-06-09 12:24:15 +02:00
2022-11-12 17:10:12 +01:00
2024-06-09 12:24:15 +02:00
2024-02-07 14:48:34 +01:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2024-06-09 12:24:15 +02:00
2020-09-25 23:26:34 +02:00
2024-06-09 12:24:15 +02:00
2024-02-07 14:48:34 +01:00
2023-11-25 17:14:04 -08:00
2023-11-25 17:14:04 -08:00
2024-06-14 21:05:19 +02:00
2024-08-25 15:08:25 +02:00
2024-08-25 15:08:25 +02:00
2024-02-07 14:48:34 +01:00
2024-08-29 21:05:59 +02:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-02-07 14:48:34 +01:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-03-09 20:00:11 +01:00
2024-03-09 20:00:11 +01:00
2024-06-09 12:24:15 +02:00
2023-11-26 18:27:35 +01:00
2023-11-25 17:14:04 -08:00
2020-10-02 13:51:39 +02:00
2020-10-02 13:51:39 +02:00
2020-10-02 13:51:39 +02:00
2024-06-09 12:24:15 +02:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-02-07 14:48:34 +01:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2024-06-09 12:24:15 +02:00
2023-02-25 14:31:42 +01:00
2023-02-25 14:31:42 +01:00
2023-11-25 17:14:04 -08:00
2024-11-30 18:52:41 +01:00
2024-08-29 21:23:58 +02:00
2024-08-29 21:05:59 +02:00
2024-02-07 14:48:34 +01:00
2022-11-12 17:10:12 +01:00
2024-02-07 14:48:34 +01:00
2024-06-09 12:24:15 +02:00
2020-10-17 20:18:00 +02:00
2020-10-17 20:18:00 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2022-06-15 20:07:26 +02:00
2024-02-07 14:48:34 +01:00
2024-11-23 18:43:16 +01:00
2024-11-23 18:43:20 +01:00
2024-11-23 18:43:16 +01:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-01-23 10:41:20 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-02-07 14:48:34 +01:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-02-07 14:48:34 +01:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2024-02-07 14:48:34 +01:00
2024-06-09 12:24:15 +02:00
2024-05-25 19:52:42 +02:00
2024-01-07 23:06:17 +01:00
2020-09-25 23:26:34 +02:00
2022-06-15 20:07:26 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2022-06-15 20:07:26 +02:00
2024-06-09 12:24:15 +02:00
2024-06-09 12:24:15 +02:00
2020-10-02 13:51:39 +02:00
2024-02-01 17:09:02 +01:00
2020-10-02 13:51:39 +02:00
2024-06-09 12:24:15 +02:00
2023-05-06 20:59:46 +02:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-10-31 18:58:22 +01:00
2023-05-06 20:59:46 +02:00
2022-02-26 17:46:10 +01:00
2024-02-07 14:48:34 +01:00
2022-02-26 17:46:10 +01:00
2023-07-08 20:19:00 +02:00
2023-07-08 20:19:00 +02:00
2024-02-07 14:48:34 +01:00
2023-07-08 20:19:00 +02:00
2023-07-08 20:19:00 +02:00
2023-07-08 20:19:00 +02:00
2023-11-25 19:43:32 -08:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2020-09-25 23:26:34 +02:00
2020-09-25 23:26:34 +02:00
2024-02-07 14:48:34 +01:00
2020-05-18 13:35:38 +02:00
2020-09-25 23:26:34 +02:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-02-07 14:48:34 +01:00
2024-06-09 12:24:15 +02:00
2020-09-25 23:26:34 +02:00
2024-06-09 12:24:15 +02:00