├── .gitattributes ├── .github └── workflows │ ├── ci.yml │ └── deploy.yml ├── .gitignore ├── LICENSE ├── README.md ├── book.toml ├── shell.nix ├── src ├── README.md ├── SUMMARY.md └── models │ ├── addw1 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── 25-bracket-screw.jpg │ │ ├── 25-drive-removal.jpg │ │ ├── 25-side-screw.jpg │ │ ├── adder-highlighted.png │ │ ├── addw1.png │ │ ├── bottom-case-screws.png │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── fn-star.png │ │ ├── front-leds.png │ │ ├── heatsink-screws.png │ │ ├── keyboard-flip.png │ │ ├── keyboard-removal.png │ │ ├── keyboard-screws.png │ │ ├── led-airplane.png │ │ ├── led-battery.png │ │ ├── led-capslock.png │ │ ├── led-gpu.png │ │ ├── led-numlock.png │ │ ├── led-power.png │ │ ├── led-scroll.png │ │ ├── led-storage.png │ │ ├── m2-slots.png │ │ ├── ports-back.png │ │ ├── ports-front.png │ │ ├── ports-left.png │ │ ├── ports-right.png │ │ ├── push-point.png │ │ ├── ram-tabs.png │ │ ├── screws.png │ │ ├── under-keyboard-highlighted.png │ │ └── under-keyboard-screws.png │ ├── internal-overview.md │ ├── repairs.md │ └── setup-specs.md │ ├── addw2 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── 25-bracket-screw.jpg │ │ ├── 25-drive-removal.jpg │ │ ├── 25-side-screw.jpg │ │ ├── addw2.png │ │ ├── battery-screws.jpg │ │ ├── bottom-panel-screws.jpg │ │ ├── cmos-battery.jpg │ │ ├── components-highlighted.jpg │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f4.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── fn-star.png │ │ ├── front-leds.png │ │ ├── keyboard-push-point.jpg │ │ ├── keyboard-ribbons.jpg │ │ ├── keyboard-screws.jpg │ │ ├── led-airplane.png │ │ ├── led-battery.png │ │ ├── led-capslock.png │ │ ├── led-gpu.png │ │ ├── led-numlock.png │ │ ├── led-power.png │ │ ├── led-scroll.png │ │ ├── led-storage.png │ │ ├── m2-slots.jpg │ │ ├── ports-back.png │ │ ├── ports-front.png │ │ ├── ports-left.png │ │ ├── ports-right.png │ │ ├── ram-slots.jpg │ │ ├── thermal-paste-application.jpg │ │ ├── thermal-paste-removal.webp │ │ ├── thermal-system.jpg │ │ ├── under-keyboard-screws.jpg │ │ ├── under-keyboard.jpg │ │ └── wireless-card.jpg │ ├── internal-overview.md │ └── repairs.md │ ├── addw3 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── addw3.webp │ │ ├── battery.webp │ │ ├── bottom-panel-screws.webp │ │ ├── cmos-battery.webp │ │ ├── components-highlighted.webp │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f4.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── fn-minus.png │ │ ├── fn-plus.png │ │ ├── fn-slash.png │ │ ├── fn-star.png │ │ ├── keyboard-adhesive.webp │ │ ├── keyboard-push-point-location.webp │ │ ├── keyboard-push-point.webp │ │ ├── keyboard-ribbons.webp │ │ ├── keyboard-touchpad.webp │ │ ├── led-airplane.png │ │ ├── led-battery.png │ │ ├── led-capslock.png │ │ ├── led-gpu.png │ │ ├── led-numlock.png │ │ ├── led-power.png │ │ ├── led-scroll.png │ │ ├── led-storage.png │ │ ├── m2-slots.webp │ │ ├── ports-back.webp │ │ ├── ports-front.webp │ │ ├── ports-left.webp │ │ ├── ports-right.webp │ │ ├── ram-slots.webp │ │ ├── speaker-left-ribbon.webp │ │ ├── speaker-left.webp │ │ ├── speaker-right.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ ├── thermal-screws.webp │ │ ├── under-keyboard.webp │ │ └── wireless-card.webp │ ├── internal-overview.md │ └── repairs.md │ ├── addw4 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── addw4.webp │ │ ├── battery.webp │ │ ├── bottom-panel-screws.webp │ │ ├── cmos-battery.webp │ │ ├── components-highlighted.webp │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f4.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── fn-minus.png │ │ ├── fn-plus.png │ │ ├── fn-slash.png │ │ ├── fn-star.png │ │ ├── keyboard-adhesive.webp │ │ ├── keyboard-mount-points.webp │ │ ├── keyboard-push-point.webp │ │ ├── keyboard-ribbons.webp │ │ ├── keyboard-touchpad.webp │ │ ├── led-airplane.png │ │ ├── led-battery.png │ │ ├── led-capslock.png │ │ ├── led-gpu.png │ │ ├── led-numlock.png │ │ ├── led-power.png │ │ ├── led-scroll.png │ │ ├── led-storage.png │ │ ├── lid.webp │ │ ├── m2-slots.webp │ │ ├── ports-back.webp │ │ ├── ports-front.webp │ │ ├── ports-left.webp │ │ ├── ports-right.webp │ │ ├── ram-slots.webp │ │ ├── speakers.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ ├── thermal-screws.webp │ │ ├── under-keyboard.webp │ │ └── wireless-card.webp │ ├── internal-overview.md │ └── repairs.md │ ├── bonw14 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── battery-sliders.jpg │ │ ├── bonw14.webp │ │ ├── bottom-panel-screws.jpg │ │ ├── cmos-battery.jpg │ │ ├── components-highlighted.jpg │ │ ├── cpu-cover.jpg │ │ ├── cpu-lever-1.jpg │ │ ├── cpu-lever-2.jpg │ │ ├── cpu-lever-3.jpg │ │ ├── cpu-triangle.jpg │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── fn-star.png │ │ ├── gpu-raised.jpg │ │ ├── gpu-screws.jpg │ │ ├── heatsink.jpg │ │ ├── keyboard-push-point.jpg │ │ ├── keyboard-ribbons.jpg │ │ ├── keyboard-screws.jpg │ │ ├── led-airplane.png │ │ ├── led-bar-screws.jpg │ │ ├── led-battery.png │ │ ├── led-power.png │ │ ├── led-storage.png │ │ ├── m2-cover.jpg │ │ ├── m2-slots.jpg │ │ ├── ports-back.png │ │ ├── ports-front.png │ │ ├── ports-left.png │ │ ├── ports-right.png │ │ ├── ram-slots.jpg │ │ ├── thermal-paste-1.jpg │ │ ├── thermal-paste-2.jpg │ │ ├── thermal-screws.jpg │ │ ├── under-keyboard.jpg │ │ └── wireless-card.jpg │ ├── internal-overview.md │ └── repairs.md │ ├── bonw15 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── audio-daughterboard.webp │ │ ├── battery.webp │ │ ├── bonw15.webp │ │ ├── bottom-panel-back-strip.webp │ │ ├── bottom-panel-screws.webp │ │ ├── cmos-battery.webp │ │ ├── components-highlighted.webp │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── fn-minus.png │ │ ├── fn-plus.png │ │ ├── fn-slash.png │ │ ├── fn-star.png │ │ ├── keyboard-adhesive.webp │ │ ├── keyboard-push-point.webp │ │ ├── keyboard-ribbons.webp │ │ ├── keyboard-touchpad.webp │ │ ├── led-airplane.png │ │ ├── led-battery.png │ │ ├── led-power.png │ │ ├── led-storage.png │ │ ├── m2-slots.webp │ │ ├── ports-back.webp │ │ ├── ports-front.webp │ │ ├── ports-left.webp │ │ ├── ports-right.webp │ │ ├── ram-slots.webp │ │ ├── speaker-left.webp │ │ ├── speaker-right.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ ├── thermal-screws.webp │ │ ├── under-keyboard.webp │ │ └── wireless-card.webp │ ├── internal-overview.md │ └── repairs.md │ ├── darp10 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── battery.webp │ │ ├── bottom-screws-14.webp │ │ ├── bottom-screws-16.webp │ │ ├── cmos-battery.webp │ │ ├── components-highlighted-14.webp │ │ ├── components-highlighted-16.webp │ │ ├── darp10.webp │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── fn-minus.png │ │ ├── fn-plus.png │ │ ├── fn-slash.png │ │ ├── fn-star.png │ │ ├── keyboard-adhesive-16.webp │ │ ├── keyboard-push-point.webp │ │ ├── keyboard-ribbons-14.webp │ │ ├── keyboard-ribbons-16.webp │ │ ├── keyboard-screw-16.webp │ │ ├── keyboard-screws-14.webp │ │ ├── keyboard-touchpad-14.webp │ │ ├── keyboard-touchpad-16.webp │ │ ├── led-airplane.png │ │ ├── led-battery.png │ │ ├── led-power.png │ │ ├── led-storage.png │ │ ├── lid.webp │ │ ├── m2-slots.webp │ │ ├── m2-thermal-pads.webp │ │ ├── ports-back-14.webp │ │ ├── ports-back-16.webp │ │ ├── ports-front-14.webp │ │ ├── ports-front-16.webp │ │ ├── ports-left-14.webp │ │ ├── ports-left-16.webp │ │ ├── ports-right-14.webp │ │ ├── ports-right-16.webp │ │ ├── ram-slots.webp │ │ ├── speakers-14.webp │ │ ├── speakers-16.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ ├── thermal-system.webp │ │ ├── under-keyboard-14.webp │ │ ├── under-keyboard-16.webp │ │ └── wireless-card.webp │ ├── internal-overview.md │ └── repairs.md │ ├── darp11 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── battery.webp │ │ ├── bottom-screws-14.webp │ │ ├── bottom-screws-16.webp │ │ ├── cmos-battery.webp │ │ ├── components-highlighted-14.webp │ │ ├── components-highlighted-16.webp │ │ ├── darp11.webp │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── fn-minus.png │ │ ├── fn-plus.png │ │ ├── fn-slash.png │ │ ├── fn-star.png │ │ ├── keyboard-adhesive-16.webp │ │ ├── keyboard-push-point.webp │ │ ├── keyboard-ribbons-14.webp │ │ ├── keyboard-ribbons-16.webp │ │ ├── keyboard-screw-16.webp │ │ ├── keyboard-screws-14.webp │ │ ├── keyboard-touchpad-14.webp │ │ ├── keyboard-touchpad-16.webp │ │ ├── led-airplane.png │ │ ├── led-battery.png │ │ ├── led-power.png │ │ ├── led-storage.png │ │ ├── lid.webp │ │ ├── m2-slots.webp │ │ ├── m2-thermal-pads.webp │ │ ├── ports-back-14.webp │ │ ├── ports-back-16.webp │ │ ├── ports-front-14.webp │ │ ├── ports-front-16.webp │ │ ├── ports-left-14.webp │ │ ├── ports-left-16.webp │ │ ├── ports-right-14.webp │ │ ├── ports-right-16.webp │ │ ├── ram-slots.webp │ │ ├── speakers-14.webp │ │ ├── speakers-16.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ ├── thermal-system.webp │ │ ├── under-keyboard-14.webp │ │ ├── under-keyboard-16.webp │ │ └── wireless-card.webp │ ├── internal-overview.md │ └── repairs.md │ ├── darp6 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── battery.jpg │ │ ├── bottom-panel-screws.jpg │ │ ├── cmos-battery.jpg │ │ ├── components-highlighted.jpg │ │ ├── darp6.png │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── fn-star.png │ │ ├── keyboard-push-point.jpg │ │ ├── keyboard-ribbons.jpg │ │ ├── keyboard-screws.jpg │ │ ├── led-airplane.png │ │ ├── led-battery.png │ │ ├── led-power.png │ │ ├── led-storage.png │ │ ├── m2-slot.jpg │ │ ├── ports-back.png │ │ ├── ports-front.png │ │ ├── ports-left.jpg │ │ ├── ports-right.jpg │ │ ├── ram-slots.jpg │ │ ├── thermal-paste-application.jpg │ │ ├── thermal-paste-removal.jpg │ │ ├── thermal-system.jpg │ │ ├── under-keyboard-screws.jpg │ │ ├── under-keyboard.jpg │ │ └── wireless-card.jpg │ ├── internal-overview.md │ └── repairs.md │ ├── darp7 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── battery-tape.jpg │ │ ├── battery.jpg │ │ ├── bottom-screws.jpg │ │ ├── cmos-battery.jpg │ │ ├── components-highlighted.jpg │ │ ├── darp7.webp │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── fn-star.png │ │ ├── keyboard-push-point.jpg │ │ ├── keyboard-ribbons.jpg │ │ ├── keyboard-screws.jpg │ │ ├── led-airplane.png │ │ ├── led-battery.png │ │ ├── led-power.png │ │ ├── led-storage.png │ │ ├── m2-slots.jpg │ │ ├── ports-back.webp │ │ ├── ports-front.webp │ │ ├── ports-left.png │ │ ├── ports-right.png │ │ ├── ram-slots.jpg │ │ ├── thermal-paste-application.jpg │ │ ├── thermal-paste-removal.webp │ │ ├── thermal-system.jpg │ │ ├── under-keyboard.jpg │ │ └── wireless-card.jpg │ ├── internal-overview.md │ └── repairs.md │ ├── darp8 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── battery-tape.webp │ │ ├── battery.webp │ │ ├── bottom-screws.webp │ │ ├── cmos-battery.webp │ │ ├── components-highlighted.webp │ │ ├── darp8.webp │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── fn-star.png │ │ ├── keyboard-push-point.webp │ │ ├── keyboard-ribbons.webp │ │ ├── keyboard-screws.webp │ │ ├── led-airplane.png │ │ ├── led-battery.png │ │ ├── led-power.png │ │ ├── led-storage.png │ │ ├── m2-slots.webp │ │ ├── ports-back.webp │ │ ├── ports-front.webp │ │ ├── ports-left.webp │ │ ├── ports-right.webp │ │ ├── ram-slots.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ ├── thermal-system.webp │ │ ├── under-keyboard.webp │ │ └── wireless-card.webp │ ├── internal-overview.md │ └── repairs.md │ ├── darp9 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── battery.webp │ │ ├── bottom-screws.webp │ │ ├── cmos-battery.webp │ │ ├── components-highlighted.webp │ │ ├── darp9.webp │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── fn-minus.png │ │ ├── fn-plus.png │ │ ├── fn-slash.png │ │ ├── fn-star.png │ │ ├── keyboard-push-point.webp │ │ ├── keyboard-ribbons.webp │ │ ├── keyboard-screws.webp │ │ ├── keyboard-touchpad.webp │ │ ├── led-airplane.png │ │ ├── led-battery.png │ │ ├── led-power.png │ │ ├── led-storage.png │ │ ├── m2-slots.webp │ │ ├── ports-back.webp │ │ ├── ports-front.webp │ │ ├── ports-left.webp │ │ ├── ports-right.webp │ │ ├── ram-slots.webp │ │ ├── speakers.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ ├── thermal-system.webp │ │ ├── under-keyboard.webp │ │ └── wireless-card.webp │ ├── internal-overview.md │ └── repairs.md │ ├── galp4 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── battery.jpg │ │ ├── bottom-panel-screws.jpg │ │ ├── cmos-battery.jpg │ │ ├── components-highlighted.jpg │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f4.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── galp4.png │ │ ├── keyboard-push-point.jpg │ │ ├── keyboard-ribbons.jpg │ │ ├── keyboard-screws.jpg │ │ ├── led-airplane.png │ │ ├── led-battery.png │ │ ├── led-power.png │ │ ├── led-storage.png │ │ ├── m2-slot.jpg │ │ ├── ports-back.png │ │ ├── ports-front.png │ │ ├── ports-left.png │ │ ├── ports-right.png │ │ ├── ram-slots.jpg │ │ ├── sata-connector.jpg │ │ ├── thermal-paste-application.jpg │ │ ├── thermal-paste-removal.jpg │ │ ├── thermal-system.jpg │ │ ├── under-keyboard-screws.jpg │ │ ├── under-keyboard.jpg │ │ └── wireless-card.jpg │ ├── internal-overview.md │ └── repairs.md │ ├── galp5 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── additional-fan-screws.jpg │ │ ├── battery.jpg │ │ ├── bottom-panel-screws.jpg │ │ ├── cmos-battery.jpg │ │ ├── components-highlighted.jpg │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f4.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── galp5.png │ │ ├── keyboard-push-point.jpg │ │ ├── keyboard-ribbons.jpg │ │ ├── keyboard-screws.jpg │ │ ├── led-airplane.png │ │ ├── led-battery.png │ │ ├── led-power.png │ │ ├── led-storage.png │ │ ├── m2-slot.jpg │ │ ├── ports-back.png │ │ ├── ports-front.png │ │ ├── ports-left.png │ │ ├── ports-right.png │ │ ├── ram-slots.jpg │ │ ├── thermal-paste-application.jpg │ │ ├── thermal-paste-removal.webp │ │ ├── thermal-screws.jpg │ │ ├── under-keyboard.jpg │ │ └── wireless-card.jpg │ ├── internal-overview.md │ └── repairs.md │ ├── galp6 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── battery.webp │ │ ├── bottom-panel-screws.webp │ │ ├── cmos-battery.webp │ │ ├── components-highlighted.webp │ │ ├── fan-screws.webp │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f4.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── galp6.webp │ │ ├── heatsink-screws.webp │ │ ├── keyboard-push-point.webp │ │ ├── keyboard-ribbons.webp │ │ ├── keyboard-screws.webp │ │ ├── keyboard-touchpad.webp │ │ ├── led-airplane.png │ │ ├── led-battery.png │ │ ├── led-power.png │ │ ├── led-storage.png │ │ ├── m2-slot.webp │ │ ├── ports-back.webp │ │ ├── ports-front.webp │ │ ├── ports-left.webp │ │ ├── ports-right.webp │ │ ├── ram-slots.webp │ │ ├── speakers.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ ├── under-keyboard.webp │ │ └── wireless-card.webp │ ├── internal-overview.md │ └── repairs.md │ ├── galp7 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── additional-fan.webp │ │ ├── battery.webp │ │ ├── bottom-panel-screws.webp │ │ ├── cmos-battery.webp │ │ ├── components-highlighted.webp │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f4.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── galp7.webp │ │ ├── heatsink-screws.webp │ │ ├── keyboard-push-point.webp │ │ ├── keyboard-ribbons.webp │ │ ├── keyboard-screws.webp │ │ ├── keyboard-touchpad.webp │ │ ├── led-airplane.png │ │ ├── led-battery.png │ │ ├── led-power.png │ │ ├── led-storage.png │ │ ├── m2-slot.webp │ │ ├── ports-back.webp │ │ ├── ports-front.webp │ │ ├── ports-left.webp │ │ ├── ports-right.webp │ │ ├── ram-slots.webp │ │ ├── speakers.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ ├── under-keyboard.webp │ │ └── wireless-card.webp │ ├── internal-overview.md │ └── repairs.md │ ├── gaze15 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── 25-bracket-screw.jpg │ │ ├── 25-drive-removal.jpg │ │ ├── 25-side-screw.jpg │ │ ├── back-a.jpg │ │ ├── back-b.jpg │ │ ├── bottom-panel-screws-15inch.jpg │ │ ├── bottom-panel-screws-17inch.jpg │ │ ├── cmos-battery.jpg │ │ ├── components-highlighted.jpg │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── fn-star.png │ │ ├── front.jpg │ │ ├── gaze15.webp │ │ ├── heatsink-removed.jpg │ │ ├── keyboard-push-point.jpg │ │ ├── keyboard-removal.jpg │ │ ├── keyboard-ribbons.jpg │ │ ├── keyboard-screws-15inch.jpg │ │ ├── keyboard-screws-17inch.jpg │ │ ├── led-airplane.png │ │ ├── led-battery.png │ │ ├── led-power.png │ │ ├── led-storage.png │ │ ├── left-a.jpg │ │ ├── left-b.jpg │ │ ├── m2-slots.jpg │ │ ├── ram-removal.jpg │ │ ├── right-a.jpg │ │ ├── right-b.jpg │ │ ├── thermal-paste.jpg │ │ ├── thermal-screws.jpg │ │ └── wireless-card.jpg │ ├── internal-overview.md │ └── repairs.md │ ├── gaze16 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── 25-bracket-screw.jpg │ │ ├── 25-drive-removal.jpg │ │ ├── 25-side-screw.jpg │ │ ├── battery.jpg │ │ ├── bottom-panel-screws-15.jpg │ │ ├── bottom-panel-screws-17.jpg │ │ ├── cmos-battery.jpg │ │ ├── components-highlighted.jpg │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── fn-star.png │ │ ├── gaze16-sizes.webp │ │ ├── gaze16.webp │ │ ├── keyboard-push-point.jpg │ │ ├── keyboard-ribbons.jpg │ │ ├── keyboard-screws.jpg │ │ ├── led-airplane.png │ │ ├── led-battery.png │ │ ├── led-power.png │ │ ├── led-storage.png │ │ ├── m2-slots.webp │ │ ├── ports-15-back-3050x.webp │ │ ├── ports-15-back-3060.webp │ │ ├── ports-15-front.webp │ │ ├── ports-15-left.webp │ │ ├── ports-15-right-3050x.webp │ │ ├── ports-15-right-3060.webp │ │ ├── ports-17-back-3050x.webp │ │ ├── ports-17-back-3060.webp │ │ ├── ports-17-front.webp │ │ ├── ports-17-left.webp │ │ ├── ports-17-right-3050x.webp │ │ ├── ports-17-right-3060.webp │ │ ├── ram-slots.jpg │ │ ├── thermal-paste-application.jpg │ │ ├── thermal-paste-removal.webp │ │ ├── thermal-screws.jpg │ │ ├── under-keyboard.jpg │ │ └── wireless-card.jpg │ ├── internal-overview.md │ └── repairs.md │ ├── gaze17 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── battery.webp │ │ ├── bottom-panel-screws.webp │ │ ├── cmos-battery.webp │ │ ├── components-highlighted.webp │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── fn-star.png │ │ ├── gaze17.webp │ │ ├── keyboard-adhesive-exposed.webp │ │ ├── keyboard-adhesive-location.webp │ │ ├── keyboard-adhesive-removal.webp │ │ ├── keyboard-push-point.webp │ │ ├── keyboard-ribbons.webp │ │ ├── keyboard-touchpad.webp │ │ ├── led-airplane.png │ │ ├── led-battery.png │ │ ├── led-power.png │ │ ├── led-storage.png │ │ ├── m2-slots.webp │ │ ├── ports-back-17.webp │ │ ├── ports-front-17.webp │ │ ├── ports-left-17.webp │ │ ├── ports-right-17-3050x.webp │ │ ├── ports-right-17-3060.webp │ │ ├── ram-slots.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ ├── thermal-screws.webp │ │ ├── under-keyboard.webp │ │ └── wireless-card.webp │ ├── internal-overview.md │ └── repairs.md │ ├── gaze18 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── battery.webp │ │ ├── bottom-panel-screws.webp │ │ ├── cmos-battery.webp │ │ ├── components-highlighted.webp │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── fn-minus.png │ │ ├── fn-plus.png │ │ ├── fn-slash.png │ │ ├── fn-star.png │ │ ├── gaze18.webp │ │ ├── keyboard-adhesive.webp │ │ ├── keyboard-push-point-location.webp │ │ ├── keyboard-push-point.webp │ │ ├── keyboard-ribbons.webp │ │ ├── keyboard-touchpad.webp │ │ ├── led-airplane.png │ │ ├── led-battery.png │ │ ├── led-power.png │ │ ├── led-storage.png │ │ ├── m2-slots.webp │ │ ├── ports-back.webp │ │ ├── ports-front.webp │ │ ├── ports-left.webp │ │ ├── ports-right.webp │ │ ├── ram-slots.webp │ │ ├── speaker-left-ribbon.webp │ │ ├── speaker-left.webp │ │ ├── speaker-right.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ ├── thermal-screws.webp │ │ ├── under-keyboard.webp │ │ └── wireless-card.webp │ ├── internal-overview.md │ └── repairs.md │ ├── kudu6 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── battery.webp │ │ ├── bottom-panel-screws.webp │ │ ├── cmos-battery.webp │ │ ├── components-highlighted.webp │ │ ├── fan-screws.webp │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── fn-star.png │ │ ├── keyboard-push-point.webp │ │ ├── keyboard-ribbons.webp │ │ ├── keyboard-screws.webp │ │ ├── kudu6.webp │ │ ├── led-airplane.png │ │ ├── led-battery.png │ │ ├── led-power.png │ │ ├── led-storage.png │ │ ├── m2-slots.webp │ │ ├── ports-back.webp │ │ ├── ports-front.webp │ │ ├── ports-left.webp │ │ ├── ports-right.webp │ │ ├── power-connector.webp │ │ ├── ram-slots.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ ├── thermal-screws.webp │ │ ├── under-keyboard.webp │ │ └── wireless-card.webp │ ├── internal-overview.md │ └── repairs.md │ ├── launch_1 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── bottom-panel-screws.jpg │ │ ├── cap-puller-bigger-keys.jpg │ │ ├── cap-puller.jpg │ │ ├── configurator.webp │ │ ├── keycap-install.jpg │ │ ├── launch-box-contents.png │ │ ├── launch-middle-port.png │ │ ├── launch-overhead.webp │ │ ├── launch-ports.png │ │ ├── launch.png │ │ ├── pcb-removal.jpg │ │ ├── switch-install-orientation.jpg │ │ ├── switch-install-pins-straight.jpg │ │ ├── switch-install-without-pcb.jpg │ │ ├── switch-installation.jpg │ │ ├── switch-pin-check-in-chassis.jpg │ │ ├── switch-pins-in-sockets.jpg │ │ └── switch-removal.jpg │ └── repairs.md │ ├── launch_2 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── all-keycaps-removed.webp │ │ ├── all-switches-removed.webp │ │ ├── bottom-panel-screws.webp │ │ ├── box-contents.webp │ │ ├── chassis-switch-pin-check.webp │ │ ├── chassis-with-switches.webp │ │ ├── configurator.webp │ │ ├── internal-bottom.webp │ │ ├── keycap-installation.webp │ │ ├── keycap-removal-1.webp │ │ ├── keycap-removal-15u-2u.webp │ │ ├── keycap-removal-2.webp │ │ ├── keycap-removed.webp │ │ ├── launch.png │ │ ├── pcb-removed.webp │ │ ├── pcb-switch-pins.webp │ │ ├── ports-back.webp │ │ ├── switch-installation.webp │ │ ├── switch-orientation.webp │ │ ├── switch-pins.webp │ │ ├── switch-removal.webp │ │ ├── switch-removed.webp │ │ └── top.webp │ └── repairs.md │ ├── launch_3 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── all-keycaps-removed.webp │ │ ├── all-switches-removed.webp │ │ ├── bottom-panel-screws.webp │ │ ├── box-contents.webp │ │ ├── chassis-switch-pin-check.webp │ │ ├── chassis-with-switches.webp │ │ ├── internal-bottom.webp │ │ ├── keycap-installation.webp │ │ ├── keycap-removal-1.webp │ │ ├── keycap-removal-15u-2u.webp │ │ ├── keycap-removal-2.webp │ │ ├── keycap-removed.webp │ │ ├── launch.webp │ │ ├── pcb-removed.webp │ │ ├── pcb-switch-pins.webp │ │ ├── ports-back.webp │ │ ├── switch-installation.webp │ │ ├── switch-orientation.webp │ │ ├── switch-pins.webp │ │ ├── switch-removal.webp │ │ ├── switch-removed.webp │ │ └── top.webp │ └── repairs.md │ ├── launch_heavy_1 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── all-keycaps-removed.webp │ │ ├── all-switches-removed.webp │ │ ├── bottom-panel-screws.webp │ │ ├── box-contents.webp │ │ ├── chassis-switch-pin-check.webp │ │ ├── chassis-with-switches.webp │ │ ├── internal-bottom.webp │ │ ├── keycap-installation.webp │ │ ├── keycap-removal-1.webp │ │ ├── keycap-removal-15u-2u.webp │ │ ├── keycap-removal-2.webp │ │ ├── keycap-removal-vertical.webp │ │ ├── keycap-removed.webp │ │ ├── launch-heavy.webp │ │ ├── pcb-switch-pins.webp │ │ ├── pcbs-removed.webp │ │ ├── ports-back.webp │ │ ├── ribbon-cable.webp │ │ ├── switch-installation.webp │ │ ├── switch-orientation.webp │ │ ├── switch-pins.webp │ │ ├── switch-removal.webp │ │ ├── switch-removed.webp │ │ └── top.webp │ └── repairs.md │ ├── launch_heavy_3 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── all-keycaps-removed.webp │ │ ├── all-switches-removed.webp │ │ ├── bottom-panel-screws.webp │ │ ├── box-contents.webp │ │ ├── chassis-switch-pin-check.webp │ │ ├── chassis-with-switches.webp │ │ ├── internal-bottom.webp │ │ ├── keycap-installation.webp │ │ ├── keycap-removal-1.webp │ │ ├── keycap-removal-15u-2u.webp │ │ ├── keycap-removal-2.webp │ │ ├── keycap-removed.webp │ │ ├── launch-heavy.webp │ │ ├── pcb-switch-pins.webp │ │ ├── pcbs-removed.webp │ │ ├── ports-back.webp │ │ ├── ribbon-cable.webp │ │ ├── switch-installation.webp │ │ ├── switch-orientation.webp │ │ ├── switch-pins.webp │ │ ├── switch-removal.webp │ │ ├── switch-removed.webp │ │ └── top.webp │ └── repairs.md │ ├── launch_lite_1 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── all-keycaps-removed.webp │ │ ├── all-switches-removed.webp │ │ ├── bottom-panel-screws.webp │ │ ├── chassis-switch-pin-check.webp │ │ ├── chassis-with-switches.webp │ │ ├── internal-bottom.webp │ │ ├── keycap-installation.webp │ │ ├── keycap-removal-1.webp │ │ ├── keycap-removal-15u-2u.webp │ │ ├── keycap-removal-2.webp │ │ ├── keycap-removed.webp │ │ ├── launch-lite-box-contents.png │ │ ├── launch-lite.webp │ │ ├── overhead.webp │ │ ├── pcb-removed.webp │ │ ├── pcb-switch-pins.webp │ │ ├── ports-back.png │ │ ├── switch-installation.webp │ │ ├── switch-orientation.webp │ │ ├── switch-pins.webp │ │ ├── switch-removal.webp │ │ └── switch-removed.webp │ └── repairs.md │ ├── lemp10 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── battery-tape.jpg │ │ ├── battery.jpg │ │ ├── bottom-screws.jpg │ │ ├── cmos-battery.jpg │ │ ├── components-highlighted.jpg │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f4.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── keyboard-touchpad.webp │ │ ├── lemp10.png │ │ ├── m2-slots.jpg │ │ ├── ports-back.png │ │ ├── ports-bottom.jpg │ │ ├── ports-front.png │ │ ├── ports-left.png │ │ ├── ports-right.png │ │ ├── ram-tabs.jpg │ │ ├── speaker-removal.webp │ │ ├── speakers.webp │ │ ├── thermal-paste-application.jpg │ │ ├── thermal-paste-removal.webp │ │ ├── thermal-system.jpg │ │ └── wireless-card.jpg │ ├── internal-overview.md │ └── repairs.md │ ├── lemp11 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── battery.webp │ │ ├── bottom-screws.webp │ │ ├── cmos-battery.webp │ │ ├── components-highlighted.webp │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f4.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── keyboard-touchpad.webp │ │ ├── lemp11.webp │ │ ├── m2-slots.webp │ │ ├── ports-back.png │ │ ├── ports-bottom.webp │ │ ├── ports-front.webp │ │ ├── ports-left.webp │ │ ├── ports-right.webp │ │ ├── ram-tabs.webp │ │ ├── speaker-removal.webp │ │ ├── speakers.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ ├── thermal-system.webp │ │ └── wireless-card.webp │ ├── internal-overview.md │ └── repairs.md │ ├── lemp12 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── battery.webp │ │ ├── bottom-screws.webp │ │ ├── cmos-battery.webp │ │ ├── components-highlighted.webp │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f4.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── keyboard-touchpad.webp │ │ ├── lemp12.webp │ │ ├── m2-slots.webp │ │ ├── ports-back.png │ │ ├── ports-bottom.webp │ │ ├── ports-front.webp │ │ ├── ports-left.webp │ │ ├── ports-right.webp │ │ ├── ram-tabs.webp │ │ ├── speaker-removal.webp │ │ ├── speakers.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ ├── thermal-system.webp │ │ └── wireless-card.webp │ ├── internal-overview.md │ └── repairs.md │ ├── lemp13 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── battery.webp │ │ ├── bottom-screws.webp │ │ ├── cmos-battery.webp │ │ ├── components-highlighted.webp │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f4.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── keyboard-b.png │ │ ├── keyboard-touchpad-original.webp │ │ ├── lemp13.webp │ │ ├── lid.webp │ │ ├── m2-slots.webp │ │ ├── ports-back.webp │ │ ├── ports-bottom.webp │ │ ├── ports-front.webp │ │ ├── ports-left.webp │ │ ├── ports-right.webp │ │ ├── ram-tabs.webp │ │ ├── speaker-removal.webp │ │ ├── speakers.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ ├── thermal-system.webp │ │ └── wireless-card.webp │ ├── internal-overview.md │ └── repairs.md │ ├── lemp9 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── battery.jpg │ │ ├── bottom-case-screws.jpg │ │ ├── cmos.jpg │ │ ├── components-highlighted.jpg │ │ ├── connectors-highlighted.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f4.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── heatsink-fan.jpg │ │ ├── keyboard-touchpad.webp │ │ ├── lemp9.png │ │ ├── m2-screws.jpg │ │ ├── m2-slots.jpg │ │ ├── ports-back.png │ │ ├── ports-bottom.jpg │ │ ├── ports-front.png │ │ ├── ports-left.jpg │ │ ├── ports-right.jpg │ │ ├── ram-tabs.jpg │ │ └── wireless-card.jpg │ ├── internal-overview.md │ └── repairs.md │ ├── meer5 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── adapter-installed.jpg │ │ ├── cmos-connector.jpg │ │ ├── drive-connector.jpg │ │ ├── drive-insertion.jpg │ │ ├── fan-removed.jpg │ │ ├── fan-screws-and-cable.jpg │ │ ├── front-mic-connector.jpg │ │ ├── heatsink-cleaned.jpg │ │ ├── heatsink-removed.jpg │ │ ├── heatsink-screw-order.jpg │ │ ├── heatsink-screws.jpg │ │ ├── m2-screw.jpg │ │ ├── meer5-bottom-screws.png │ │ ├── meer5-components.png │ │ ├── meer5-short.png │ │ ├── meer5-vesa-installed.jpg │ │ ├── motherboard-screws.jpg │ │ ├── ports-diagram_short-back.png │ │ ├── ports-diagram_short-front.png │ │ ├── ports-diagram_short-side_left.png │ │ ├── ports-diagram_short-side_right.png │ │ ├── ports-diagram_tall-back.png │ │ ├── ports-diagram_tall-front.png │ │ ├── ports-diagram_tall-left.png │ │ ├── ram-latch.jpg │ │ ├── removing-motherboard.jpg │ │ ├── sata-bay-connector.jpg │ │ ├── shoulder-screws.jpg │ │ ├── thermal-paste-applied.jpg │ │ ├── unlatched-ram.jpg │ │ ├── vesa-mount-and-screws.jpg │ │ ├── vesa-studs.jpg │ │ └── wifi-antenna-connectors.jpg │ ├── internal-overview.md │ └── repairs.md │ ├── meer6 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── bottom-screws.jpg │ │ ├── cable-keeper.jpg │ │ ├── cmos-battery.jpg │ │ ├── cmos-connector.jpg │ │ ├── components.jpg │ │ ├── cooling-fan.jpg │ │ ├── heatsink-screws.jpg │ │ ├── m2-screw.jpg │ │ ├── meer6.png │ │ ├── motherboard-screws.jpg │ │ ├── ports-short-back.webp │ │ ├── ports-short-front.webp │ │ ├── ports-short-left.webp │ │ ├── ports-short-right.webp │ │ ├── ports-tall-back.webp │ │ ├── ports-tall-front.webp │ │ ├── ports-tall-left.webp │ │ ├── ports-tall-right.webp │ │ ├── ram-slots.jpg │ │ ├── sata-drive-insertion.webp │ │ ├── sata-port.jpg │ │ ├── sata-ribbon-connector.jpg │ │ ├── thermal-paste-application.jpg │ │ ├── thermal-paste-removal.webp │ │ ├── top-cover-grooves.jpg │ │ ├── top-cover-removed.jpg │ │ ├── vesa-mounted-meerkat.jpg │ │ ├── vesa-screws-display.jpg │ │ ├── vesa-screws-meerkat.jpg │ │ └── wireless-card.jpg │ ├── internal-overview.md │ └── repairs.md │ ├── meer7 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── 25-drive-insertion.webp │ │ ├── 25-drive-screws.webp │ │ ├── bottom-plugs.webp │ │ ├── bottom-screws.webp │ │ ├── cable-keeper.webp │ │ ├── cmos-battery.webp │ │ ├── cmos-connector.webp │ │ ├── components.webp │ │ ├── cooling-fan.webp │ │ ├── expansion-module-external.webp │ │ ├── expansion-module-internal.webp │ │ ├── expansion-placeholder.webp │ │ ├── heatsink-screws.webp │ │ ├── m2-slots.webp │ │ ├── meer7.webp │ │ ├── motherboard-screws.webp │ │ ├── ports-short-back.webp │ │ ├── ports-short-front.webp │ │ ├── ports-short-left.webp │ │ ├── ports-short-right.webp │ │ ├── ports-tall-back.webp │ │ ├── ram-slots.webp │ │ ├── sata-port.webp │ │ ├── sata-ribbon-connector.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ ├── top-cover-grooves.webp │ │ ├── top-cover-removed.webp │ │ ├── vesa-mounted-meerkat.webp │ │ ├── vesa-screws-display.webp │ │ ├── vesa-screws-meerkat.webp │ │ └── wireless-card.webp │ ├── internal-overview.md │ └── repairs.md │ ├── meer8 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── 25-drive-insertion.webp │ │ ├── 25-drive-screws.webp │ │ ├── bottom-plugs.webp │ │ ├── bottom-screws.webp │ │ ├── cable-keeper.webp │ │ ├── cmos-battery.webp │ │ ├── cmos-connector.webp │ │ ├── components.webp │ │ ├── cooling-fan.webp │ │ ├── expansion-module-external.webp │ │ ├── expansion-module-internal.webp │ │ ├── expansion-placeholder.webp │ │ ├── heatsink-screws.webp │ │ ├── m2-slots.webp │ │ ├── meer8.webp │ │ ├── motherboard-screws.webp │ │ ├── ports-short-back.webp │ │ ├── ports-short-front.webp │ │ ├── ports-short-left.webp │ │ ├── ports-short-right.webp │ │ ├── ports-tall-back.webp │ │ ├── ram-slots.webp │ │ ├── sata-port.webp │ │ ├── sata-ribbon-connector.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ ├── top-cover-grooves.webp │ │ ├── top-cover-removed.webp │ │ ├── vesa-mounted-meerkat.webp │ │ ├── vesa-screws-display.webp │ │ ├── vesa-screws-meerkat.webp │ │ └── wireless-card.webp │ ├── internal-overview.md │ └── repairs.md │ ├── meer9 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── 25-drive-screws.webp │ │ ├── bottom-screws.webp │ │ ├── cmos-battery.webp │ │ ├── components.webp │ │ ├── fan.webp │ │ ├── heatsink-screws.webp │ │ ├── m2-nut-before.webp │ │ ├── m2-nut-empty.webp │ │ ├── m2-nut-full.webp │ │ ├── m2-slots.webp │ │ ├── meer9.webp │ │ ├── motherboard.webp │ │ ├── ports-back.webp │ │ ├── ports-front.webp │ │ ├── ports-left.webp │ │ ├── ports-right.webp │ │ ├── ram-slots.webp │ │ ├── sata-port.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal-after.webp │ │ ├── thermal-paste-removal-before.webp │ │ ├── vesa-mounted-meerkat.webp │ │ ├── vesa-screws-display.webp │ │ ├── vesa-screws-meerkat.webp │ │ └── wireless-card.webp │ ├── internal-overview.md │ └── repairs.md │ ├── nebula19-1 │ ├── README.md │ ├── assembly.md │ ├── external-overview.md │ └── img │ │ ├── 25-drive-cover.webp │ │ ├── 25-drive-installation.webp │ │ ├── accent-strip-removal.webp │ │ ├── accessory-boxes.webp │ │ ├── accessory-fan-screws.webp │ │ ├── bottom-fan-screws.webp │ │ ├── bottom-fan-unboxing.webp │ │ ├── cpu-cooler-unboxing.webp │ │ ├── cpu-duct-fan-bracket-back.webp │ │ ├── cpu-duct-fan-bracket-front.webp │ │ ├── cpu-duct-fan-installation.webp │ │ ├── cpu-duct-rear-fan-screws.webp │ │ ├── cpu-duct-screws-back.webp │ │ ├── cpu-duct-screws-crossbar.webp │ │ ├── cpu-duct.webp │ │ ├── external-front-back.webp │ │ ├── external-sides.webp │ │ ├── external-top-bottom.webp │ │ ├── front-daughterboard-connectors.webp │ │ ├── front-daughterboard-screws.webp │ │ ├── gpu-brace-screws.webp │ │ ├── gpu-brace-unboxing.webp │ │ ├── gpu-brace.webp │ │ ├── nebula19-1.webp │ │ ├── pcie-bracket.webp │ │ ├── psu-dust-filter.webp │ │ ├── psu-screws.webp │ │ ├── sata-backplane-screws.webp │ │ ├── sata-backplane-unscrewed.webp │ │ ├── sata-backplane.webp │ │ ├── side-fan-mounted.webp │ │ ├── side-fan-unboxing.webp │ │ ├── standoff-holes.webp │ │ ├── standoffs-screws.webp │ │ └── top-case-screws.webp │ ├── nebula36-1 │ ├── README.md │ ├── assembly.md │ ├── external-overview.md │ └── img │ │ ├── 25-drive-cage-screws.webp │ │ ├── 25-drive-cover.webp │ │ ├── 25-drive-screws.webp │ │ ├── accent-strip-removal.webp │ │ ├── accessory-fan-screws.webp │ │ ├── accessory-zip-ties.webp │ │ ├── bottom-fan-screws.webp │ │ ├── cpu-cooler-unboxing.webp │ │ ├── cpu-duct-fan-bracket-back.webp │ │ ├── cpu-duct-fan-bracket-front.webp │ │ ├── cpu-duct-fan-installation.webp │ │ ├── cpu-duct-rear-fan-screws.webp │ │ ├── cpu-duct-screws-back.webp │ │ ├── cpu-duct-screws-crossbar.webp │ │ ├── cpu-duct.webp │ │ ├── external-front-back.webp │ │ ├── external-sides.webp │ │ ├── external-top-bottom.webp │ │ ├── front-daughterboard-connectors.webp │ │ ├── front-daughterboard-screws.webp │ │ ├── gpu-brace-screws.webp │ │ ├── gpu-brace.webp │ │ ├── nebula36-1.webp │ │ ├── pcie-bracket.webp │ │ ├── psu-dust-filter.webp │ │ ├── psu-screws.webp │ │ ├── sata-backplane-headers.webp │ │ ├── sata-backplane-screws.webp │ │ ├── sata-backplane.webp │ │ ├── side-fan-box.webp │ │ ├── side-fan-mounted.webp │ │ ├── standoff-holes.webp │ │ ├── standoffs-screws.webp │ │ └── top-case-screws.webp │ ├── nebula40-3 │ ├── README.md │ ├── assembly.md │ ├── external-overview.md │ └── img │ │ ├── 25-drive-cage-screws.webp │ │ ├── 25-drive-cover.webp │ │ ├── 25-drive-screws.webp │ │ ├── accent-strip-removal.webp │ │ ├── accessory-fan-screws.webp │ │ ├── accessory-zip-ties.webp │ │ ├── bottom-fan-screws.webp │ │ ├── cpu-cooler-box.webp │ │ ├── cpu-cooler-fan-clips.webp │ │ ├── cpu-duct-fan-bracket-back.webp │ │ ├── cpu-duct-fan-installation.webp │ │ ├── cpu-duct-screws-back.webp │ │ ├── cpu-duct-screws-crossbar.webp │ │ ├── cpu-duct.webp │ │ ├── cpu-fan.webp │ │ ├── cpu-heatsink-fan-clip-installation.webp │ │ ├── cpu-heatsink-fan-clips.webp │ │ ├── external-front-back.webp │ │ ├── external-sides.webp │ │ ├── external-top-bottom.webp │ │ ├── front-daughterboard-connectors.webp │ │ ├── front-daughterboard-screws.webp │ │ ├── gpu-brace-screws.webp │ │ ├── gpu-brace.webp │ │ ├── nebula40-3.png │ │ ├── pcie-bracket.webp │ │ ├── psu-dust-filter.webp │ │ ├── psu-mounting-post-screw.webp │ │ ├── psu-screws.webp │ │ ├── sata-backplane-headers.webp │ │ ├── sata-backplane-screws.webp │ │ ├── sata-backplane.webp │ │ ├── side-fan-box.webp │ │ ├── side-fan-mounted.webp │ │ ├── standoff-holes.webp │ │ ├── standoffs-screws.webp │ │ └── top-case-screws.webp │ ├── nebula49-1 │ ├── README.md │ ├── assembly.md │ ├── external-overview.md │ └── img │ │ ├── 25-drive-cage-screws.webp │ │ ├── 25-drive-covers.webp │ │ ├── 25-drive-screws.webp │ │ ├── accent-strip-removal.webp │ │ ├── accessory-fan-screws.webp │ │ ├── accessory-zip-ties.webp │ │ ├── bottom-fan-screws.webp │ │ ├── cpu-cooler-unboxing.webp │ │ ├── cpu-duct-fan-bracket-back.webp │ │ ├── cpu-duct-fan-bracket-front.webp │ │ ├── cpu-duct-fan-installation.webp │ │ ├── cpu-duct-rear-fan-screws.webp │ │ ├── cpu-duct-screws-back.webp │ │ ├── cpu-duct-screws-crossbar.webp │ │ ├── cpu-duct.webp │ │ ├── external-front-back.webp │ │ ├── external-sides.webp │ │ ├── external-top-bottom.webp │ │ ├── front-daughterboard-connectors.webp │ │ ├── front-daughterboard-screws.webp │ │ ├── gpu-brace-screws.webp │ │ ├── gpu-brace.webp │ │ ├── nebula49-1.webp │ │ ├── pcie-bracket.webp │ │ ├── psu-dust-filter.webp │ │ ├── psu-screws.webp │ │ ├── sata-backplane-headers.webp │ │ ├── sata-backplane-screws.webp │ │ ├── sata-backplane.webp │ │ ├── side-fan-mounted.webp │ │ ├── side-fan-unboxing.webp │ │ ├── standoff-holes.webp │ │ ├── standoffs-screws.webp │ │ └── top-case-screws.webp │ ├── oryp10 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── battery.webp │ │ ├── bottom-panel-screws.webp │ │ ├── cmos-battery.webp │ │ ├── components-highlighted.webp │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── fn-star.png │ │ ├── heat-conductive-metal-application.webp │ │ ├── heat-conductive-metal-removal.webp │ │ ├── keyboard-adhesive-access.webp │ │ ├── keyboard-adhesive-removal.webp │ │ ├── keyboard-push-point.webp │ │ ├── keyboard-ribbons.webp │ │ ├── keyboard-touchpad.webp │ │ ├── led-airplane.png │ │ ├── led-battery.png │ │ ├── led-power.png │ │ ├── led-storage.png │ │ ├── m2-slots.webp │ │ ├── oryp10.webp │ │ ├── ports-back.webp │ │ ├── ports-front.webp │ │ ├── ports-left.webp │ │ ├── ports-right.webp │ │ ├── ram-slots.webp │ │ ├── speakers.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ ├── thermal-screws.webp │ │ ├── under-keyboard.webp │ │ └── wireless-card.webp │ ├── internal-overview.md │ └── repairs.md │ ├── oryp11 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── battery.webp │ │ ├── bottom-panel-screws.webp │ │ ├── cmos-battery.webp │ │ ├── components-highlighted.webp │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── fn-minus.png │ │ ├── fn-plus.png │ │ ├── fn-slash.png │ │ ├── fn-star.png │ │ ├── keyboard-push-point.webp │ │ ├── keyboard-ribbons.webp │ │ ├── keyboard-screws.webp │ │ ├── keyboard-touchpad.webp │ │ ├── led-airplane.png │ │ ├── led-battery.png │ │ ├── led-power.png │ │ ├── led-storage.png │ │ ├── m2-slots.webp │ │ ├── m2-thermal-strip.webp │ │ ├── oryp11.webp │ │ ├── ports-back.webp │ │ ├── ports-front.webp │ │ ├── ports-left.webp │ │ ├── ports-right.webp │ │ ├── ram-slots.webp │ │ ├── speakers.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ ├── thermal-screws.webp │ │ ├── under-keyboard.webp │ │ └── wireless-card.webp │ ├── internal-overview.md │ └── repairs.md │ ├── oryp12 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── battery.webp │ │ ├── bottom-panel-screws.webp │ │ ├── cmos-battery.webp │ │ ├── components-highlighted.webp │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── fn-minus.png │ │ ├── fn-plus.png │ │ ├── fn-slash.png │ │ ├── fn-star.png │ │ ├── keyboard-push-point.webp │ │ ├── keyboard-ribbons.webp │ │ ├── keyboard-screws.webp │ │ ├── keyboard-touchpad.webp │ │ ├── led-airplane.png │ │ ├── led-battery.png │ │ ├── led-power.png │ │ ├── led-storage.png │ │ ├── lid.webp │ │ ├── m2-slots.webp │ │ ├── m2-thermal-strip.webp │ │ ├── oryp12.webp │ │ ├── ports-back.webp │ │ ├── ports-front.webp │ │ ├── ports-left.webp │ │ ├── ports-right.webp │ │ ├── ram-slots.webp │ │ ├── speakers.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ ├── thermal-screws.webp │ │ ├── under-keyboard.webp │ │ └── wireless-card.webp │ ├── internal-overview.md │ └── repairs.md │ ├── oryp6 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── battery-screws.jpg │ │ ├── bottom-panel-screws.jpg │ │ ├── cmos-battery.jpg │ │ ├── components-highlighted.jpg │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── fn-star.png │ │ ├── heatsink.jpg │ │ ├── keyboard-connectors.jpg │ │ ├── keyboard-push-point.jpg │ │ ├── keyboard-ribbons.jpg │ │ ├── keyboard-screws.jpg │ │ ├── led-airplane.png │ │ ├── led-battery.png │ │ ├── led-power.png │ │ ├── led-storage.png │ │ ├── m2-slots.jpg │ │ ├── oryp6.webp │ │ ├── ports-back.png │ │ ├── ports-front.png │ │ ├── ports-left.png │ │ ├── ports-right.png │ │ ├── ram-slots.jpg │ │ ├── thermal-paste.jpg │ │ ├── thermal-screws.jpg │ │ ├── under-keyboard.jpg │ │ └── wireless-card.jpg │ ├── internal-overview.md │ └── repairs.md │ ├── oryp7 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── battery.jpg │ │ ├── bottom-panel-screws.jpg │ │ ├── cmos-battery.jpg │ │ ├── components-highlighted.jpg │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── fn-star.png │ │ ├── keyboard-push-point.jpg │ │ ├── keyboard-ribbons.jpg │ │ ├── keyboard-screws.jpg │ │ ├── led-airplane.png │ │ ├── led-battery.png │ │ ├── led-power.png │ │ ├── led-storage.png │ │ ├── m2-slots.jpg │ │ ├── oryp7.webp │ │ ├── ports-back.png │ │ ├── ports-front.png │ │ ├── ports-left.png │ │ ├── ports-right.png │ │ ├── ram-slots.jpg │ │ ├── thermal-paste-application.jpg │ │ ├── thermal-paste-removal.jpg │ │ ├── thermal-screws.jpg │ │ ├── under-keyboard.jpg │ │ └── wireless-card.jpg │ ├── internal-overview.md │ └── repairs.md │ ├── oryp8 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── battery.webp │ │ ├── bottom-panel-screws.webp │ │ ├── cmos-battery.webp │ │ ├── components-highlighted.webp │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── fn-star.png │ │ ├── keyboard-adhesive-exposed.webp │ │ ├── keyboard-adhesive-removal.webp │ │ ├── keyboard-adhesive.webp │ │ ├── keyboard-push-point.webp │ │ ├── keyboard-ribbons.webp │ │ ├── led-airplane.png │ │ ├── led-battery.png │ │ ├── led-power.png │ │ ├── led-storage.png │ │ ├── m2-slots.webp │ │ ├── oryp8.webp │ │ ├── ports-back.png │ │ ├── ports-front.png │ │ ├── ports-left.png │ │ ├── ports-right.png │ │ ├── ram-slots.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ ├── thermal-screws.webp │ │ ├── under-keyboard.webp │ │ └── wireless-card.webp │ ├── internal-overview.md │ └── repairs.md │ ├── oryp9 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── battery.webp │ │ ├── bottom-panel-screws.webp │ │ ├── cmos-battery.webp │ │ ├── components-highlighted.webp │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── fn-star.png │ │ ├── heat-conductive-metal-application-cpu.webp │ │ ├── heat-conductive-metal-application-gpu.webp │ │ ├── heat-conductive-metal-loose.webp │ │ ├── heat-conductive-metal-removal.webp │ │ ├── keyboard-adhesive-access.webp │ │ ├── keyboard-adhesive-removal.webp │ │ ├── keyboard-push-point.webp │ │ ├── keyboard-ribbons.webp │ │ ├── led-airplane.png │ │ ├── led-battery.png │ │ ├── led-power.png │ │ ├── led-storage.png │ │ ├── m2-slots.webp │ │ ├── oryp9.webp │ │ ├── ports-back.webp │ │ ├── ports-front.webp │ │ ├── ports-left.webp │ │ ├── ports-right.webp │ │ ├── ram-slots.webp │ │ ├── speakers.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-borders.webp │ │ ├── thermal-paste-removal.webp │ │ ├── thermal-screws.webp │ │ ├── under-keyboard.webp │ │ └── wireless-card.webp │ ├── internal-overview.md │ └── repairs.md │ ├── pang10 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── battery.jpg │ │ ├── bottom-panel-screws.jpg │ │ ├── cmos-battery.jpg │ │ ├── components-highlighted.jpg │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── fn-star.png │ │ ├── keyboard-popped-out.jpg │ │ ├── keyboard-push-point.jpg │ │ ├── keyboard-ribbons.jpg │ │ ├── keyboard-screws.jpg │ │ ├── led-airplane.png │ │ ├── led-battery.png │ │ ├── led-power.png │ │ ├── led-storage.png │ │ ├── m2-slot.jpg │ │ ├── pang10.webp │ │ ├── ports-left.png │ │ ├── ports-right.png │ │ ├── ram-slots.jpg │ │ ├── thermal-paste-application.jpg │ │ ├── thermal-paste-removal.jpg │ │ ├── thermal-system.jpg │ │ ├── under-keyboard.jpg │ │ └── wireless-card.jpg │ ├── internal-overview.md │ └── repairs.md │ ├── pang11 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── battery.webp │ │ ├── bottom-panel-screws.webp │ │ ├── cmos-battery.webp │ │ ├── components-highlighted.webp │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── fn-star.png │ │ ├── keyboard-push-point.webp │ │ ├── keyboard-ribbons.webp │ │ ├── keyboard-screws.webp │ │ ├── led-airplane.png │ │ ├── led-battery.png │ │ ├── led-power.png │ │ ├── led-storage.png │ │ ├── m2-slot.webp │ │ ├── pang11.webp │ │ ├── ports-back.webp │ │ ├── ports-front.webp │ │ ├── ports-left.png │ │ ├── ports-right.png │ │ ├── ram-slots.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ ├── thermal-system.webp │ │ ├── under-keyboard.webp │ │ └── wireless-card.webp │ ├── internal-overview.md │ └── repairs.md │ ├── pang12 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── battery.webp │ │ ├── bottom-panel-screws.webp │ │ ├── cmos-battery.webp │ │ ├── components-highlighted.webp │ │ ├── fn-f1.svg │ │ ├── fn-f10.svg │ │ ├── fn-f11.svg │ │ ├── fn-f12.svg │ │ ├── fn-f2.svg │ │ ├── fn-f3.svg │ │ ├── fn-f6.svg │ │ ├── fn-f7.svg │ │ ├── fn-f9.svg │ │ ├── led-charging.svg │ │ ├── led-power.svg │ │ ├── led-webcam.svg │ │ ├── m2-access-door.webp │ │ ├── m2-slots.webp │ │ ├── overview-lid.webp │ │ ├── overview-top.webp │ │ ├── pang12.webp │ │ ├── ports-back.webp │ │ ├── ports-front.webp │ │ ├── ports-left.webp │ │ ├── ports-right.webp │ │ ├── speakers.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ ├── thermal-system.webp │ │ └── wireless-card.webp │ ├── internal-overview.md │ └── repairs.md │ ├── pang13 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── battery.webp │ │ ├── bottom-panel-screws.webp │ │ ├── cmos-battery.webp │ │ ├── components-highlighted.webp │ │ ├── fn-f1.svg │ │ ├── fn-f10.svg │ │ ├── fn-f11.svg │ │ ├── fn-f12.svg │ │ ├── fn-f2.svg │ │ ├── fn-f3.svg │ │ ├── fn-f6.svg │ │ ├── fn-f7.svg │ │ ├── fn-f9.svg │ │ ├── led-charging.svg │ │ ├── led-power.svg │ │ ├── led-webcam.svg │ │ ├── m2-access-door.webp │ │ ├── m2-slots.webp │ │ ├── m2-thermal-pads.webp │ │ ├── overview-lid.webp │ │ ├── overview-top.webp │ │ ├── pang13.webp │ │ ├── ports-back.webp │ │ ├── ports-front.webp │ │ ├── ports-left.webp │ │ ├── ports-right.webp │ │ ├── speakers.webp │ │ ├── thermal-adhesive-sheet.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ ├── thermal-system.webp │ │ └── wireless-card.webp │ ├── internal-overview.md │ └── repairs.md │ ├── pang14 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── battery.webp │ │ ├── bottom-panel-screws.webp │ │ ├── cmos-battery.webp │ │ ├── components-highlighted.webp │ │ ├── fn-f1.svg │ │ ├── fn-f10.svg │ │ ├── fn-f11.svg │ │ ├── fn-f12.svg │ │ ├── fn-f2.svg │ │ ├── fn-f3.svg │ │ ├── fn-f6.svg │ │ ├── fn-f7.svg │ │ ├── fn-f9.svg │ │ ├── led-charging.svg │ │ ├── led-power.svg │ │ ├── led-webcam.svg │ │ ├── m2-access-door.webp │ │ ├── m2-slots.webp │ │ ├── m2-thermal-pads.webp │ │ ├── overview-lid.webp │ │ ├── overview-top.webp │ │ ├── pang14.webp │ │ ├── ports-back.webp │ │ ├── ports-front.webp │ │ ├── ports-left.webp │ │ ├── ports-right.webp │ │ ├── speakers.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ ├── thermal-system.webp │ │ └── wireless-card.webp │ ├── internal-overview.md │ └── repairs.md │ ├── pang15 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── battery.webp │ │ ├── bottom-panel-screws.webp │ │ ├── cmos-battery.webp │ │ ├── components-highlighted.webp │ │ ├── fn-f1.svg │ │ ├── fn-f10.svg │ │ ├── fn-f11.svg │ │ ├── fn-f12.svg │ │ ├── fn-f2.svg │ │ ├── fn-f3.svg │ │ ├── fn-f4.svg │ │ ├── fn-f6.svg │ │ ├── fn-f7.svg │ │ ├── fn-f9.svg │ │ ├── led-charging.svg │ │ ├── led-power.svg │ │ ├── led-webcam.svg │ │ ├── m2-slots.webp │ │ ├── overview-lid.webp │ │ ├── overview-top.webp │ │ ├── pang15.webp │ │ ├── ports-back.webp │ │ ├── ports-front.webp │ │ ├── ports-left.webp │ │ ├── ports-right.webp │ │ ├── ram-slots.webp │ │ ├── speakers-left-tape.webp │ │ ├── speakers-left.webp │ │ ├── speakers-right.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ ├── thermal-system-covers.webp │ │ ├── thermal-system.webp │ │ └── wireless-card.webp │ ├── internal-overview.md │ └── repairs.md │ ├── serw12 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── additional-fan.jpg │ │ ├── battery-screws.jpg │ │ ├── bottom-panel-screws.jpg │ │ ├── cmos-battery.jpg │ │ ├── cmos-installation.jpg │ │ ├── components-highlighted.jpg │ │ ├── cpu-lever-open.jpg │ │ ├── cpu-lever.jpg │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── fn-star.png │ │ ├── heatsink-pressure.jpg │ │ ├── heatsink.jpg │ │ ├── keyboard-connectors.jpg │ │ ├── keyboard-push-point.jpg │ │ ├── keyboard-ribbons.jpg │ │ ├── keyboard-screws.jpg │ │ ├── led-airplane.png │ │ ├── led-battery.png │ │ ├── led-power.png │ │ ├── led-storage.png │ │ ├── m2-slots.jpg │ │ ├── ports-back.png │ │ ├── ports-front.png │ │ ├── ports-left.png │ │ ├── ports-right.png │ │ ├── ram-slots.jpg │ │ ├── serw12.webp │ │ ├── thermal-paste-1.jpg │ │ ├── thermal-paste-2.jpg │ │ ├── thermal-screws.jpg │ │ ├── triangle-socket.jpg │ │ ├── under-keyboard.jpg │ │ └── wireless-card.jpg │ ├── internal-overview.md │ └── repairs.md │ ├── serw13 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── battery.webp │ │ ├── bottom-panel-screws.webp │ │ ├── cmos-battery.webp │ │ ├── components-highlighted.webp │ │ ├── fn-dia.jpg │ │ ├── fn-f1.png │ │ ├── fn-f10.png │ │ ├── fn-f11.png │ │ ├── fn-f12.png │ │ ├── fn-f2.png │ │ ├── fn-f3.png │ │ ├── fn-f5.png │ │ ├── fn-f6.png │ │ ├── fn-f7.png │ │ ├── fn-f8.png │ │ ├── fn-f9.png │ │ ├── fn-minus.png │ │ ├── fn-plus.png │ │ ├── fn-slash.png │ │ ├── fn-star.png │ │ ├── keyboard-adhesive.webp │ │ ├── keyboard-push-point.webp │ │ ├── keyboard-ribbons.webp │ │ ├── keyboard-touchpad.webp │ │ ├── led-airplane.png │ │ ├── led-battery.png │ │ ├── led-power.png │ │ ├── led-storage.png │ │ ├── m2-slots.webp │ │ ├── ports-back.webp │ │ ├── ports-front.webp │ │ ├── ports-left.webp │ │ ├── ports-right.webp │ │ ├── ram-slots.webp │ │ ├── serw13.webp │ │ ├── speaker-left.webp │ │ ├── speaker-right.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ ├── thermal-screws.webp │ │ ├── under-keyboard.webp │ │ └── wireless-card.webp │ ├── internal-overview.md │ └── repairs.md │ ├── thelio-astra-a1-n1 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── accent-strip-removal.webp │ │ ├── bottom-fan-cable.webp │ │ ├── bottom-fan-connector.webp │ │ ├── bottom-fan-screws.webp │ │ ├── cmos-battery.webp │ │ ├── cmos-clear-pad.webp │ │ ├── cpu-cooler-screws.webp │ │ ├── cpu-duct-fan-bracket-screws.webp │ │ ├── cpu-duct-fan-screws.webp │ │ ├── cpu-duct-screws-back.webp │ │ ├── cpu-duct-screws-top.webp │ │ ├── cpu-fan-connectors.webp │ │ ├── cpu-heatsink-fans-installed.webp │ │ ├── cpu-heatsink-fans-removed.webp │ │ ├── cpu-holder-raised.webp │ │ ├── cpu-removed.webp │ │ ├── cpu-socket-screws.webp │ │ ├── gpu-brace-finger-screws-back.webp │ │ ├── gpu-brace-finger-screws-side.webp │ │ ├── gpu-fan-cabling.webp │ │ ├── gpu-fan-screws.webp │ │ ├── gpu-power.webp │ │ ├── internal-front.webp │ │ ├── internal-left-chassis.webp │ │ ├── internal-left-electronics.webp │ │ ├── internal-right.webp │ │ ├── internal-top.webp │ │ ├── m2-slot.webp │ │ ├── motherboard-fan-header.webp │ │ ├── motherboard-power-usb.webp │ │ ├── pcie-bracket.webp │ │ ├── pcie-slots.webp │ │ ├── ports-back.webp │ │ ├── ports-front-sides.webp │ │ ├── ports-top-bottom.webp │ │ ├── power-button-receptacle.webp │ │ ├── power-button-wiring.jpg │ │ ├── psu-bracket-screw-left.webp │ │ ├── psu-bracket-screw-right.webp │ │ ├── psu-cable-management-bracket.webp │ │ ├── psu-cables.webp │ │ ├── psu-screws.webp │ │ ├── ram-order.webp │ │ ├── ram-slots.webp │ │ ├── side-brace-screws.webp │ │ ├── side-fan-connector.webp │ │ ├── thelio-astra-a1-n1.png │ │ ├── thelio-io-board.webp │ │ ├── thelio-io-cabling-cutout.webp │ │ ├── thelio-io-power-button.webp │ │ ├── thelio-io-screws.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ └── top-case-screws.webp │ ├── internal-overview.md │ ├── repairs.md │ ├── ubuntu-20.04.md │ └── ubuntu-24.04.md │ ├── thelio-b4 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── 25-drive-installation.webp │ │ ├── 25-drive-installed.webp │ │ ├── 25-drive-screws.webp │ │ ├── accent-strip-removal.webp │ │ ├── b0-button.webp │ │ ├── bottom-fan-cable-management.webp │ │ ├── bottom-fan-connector.webp │ │ ├── bottom-fan-screws.webp │ │ ├── components-front.webp │ │ ├── components-left.webp │ │ ├── components-right.webp │ │ ├── components-top.webp │ │ ├── cpu-cooler-fan-clip.webp │ │ ├── cpu-cooler-screws.webp │ │ ├── cpu-duct-fan-screws.webp │ │ ├── cpu-duct-screws.webp │ │ ├── cpu-fan-cabling.webp │ │ ├── cpu-holder-raised.webp │ │ ├── cpu-locking-pin.webp │ │ ├── cpu-removed.webp │ │ ├── front-cpu-fan-connector.webp │ │ ├── gpu-brace-adjustment-screws.webp │ │ ├── gpu-brace-screws.webp │ │ ├── gpu-power.webp │ │ ├── gpu-slot.webp │ │ ├── m2-heatsink-screws.webp │ │ ├── m2-slot-1.webp │ │ ├── m2-slot-2.webp │ │ ├── m2-slot-3.webp │ │ ├── m2-switch-screws.webp │ │ ├── motherboard-cpu-fan-header.webp │ │ ├── motherboard-power-sw-led-headers.webp │ │ ├── motherboard-sata-usb-headers.webp │ │ ├── pcie-bracket.webp │ │ ├── ports-back.webp │ │ ├── ports-front-sides.webp │ │ ├── ports-top-bottom.webp │ │ ├── power-button-receptacle.webp │ │ ├── power-button-wiring.jpg │ │ ├── psu-cables.webp │ │ ├── psu-screws.webp │ │ ├── ram-slots.webp │ │ ├── thelio-b4.webp │ │ ├── thelio-io-cabling-cutouts.webp │ │ ├── thelio-io-screws.webp │ │ ├── thelio-io-wiring.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ └── top-case-screws.webp │ ├── internal-overview.md │ └── repairs.md │ ├── thelio-major-b1-b2-r1-r2 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── 25-drive-installation-1.png │ │ ├── 25-drive-installation-2.png │ │ ├── 25-drive-installation-3.png │ │ ├── 25-drive-installation-4.png │ │ ├── BIOS.BMP │ │ ├── Chipset.BMP │ │ ├── MIT.BMP │ │ ├── Peripherals.BMP │ │ ├── Power.BMP │ │ ├── Save&Exit.BMP │ │ ├── System.BMP │ │ ├── b1 │ │ │ └── components-highlighted.png │ │ ├── b2 │ │ │ ├── components-highlighted.png │ │ │ ├── cpu-cooler.jpg │ │ │ ├── cpu-duct-internal.jpg │ │ │ ├── cpu-duct-removal.jpg │ │ │ ├── cpu-duct-removed-connected.jpg │ │ │ ├── cpu-duct-removed.jpg │ │ │ ├── cpu-duct-replacement.jpg │ │ │ ├── cpu-duct-screws-side-bottom.jpg │ │ │ ├── cpu-duct-screws-side-top.jpg │ │ │ ├── cpu-duct-thumbscrews-back.jpg │ │ │ ├── pcie-slots.jpg │ │ │ ├── ports-back.png │ │ │ ├── ports-gpu.png │ │ │ └── top-case-removed.jpeg │ │ ├── gpu-power-connector-types.webp │ │ ├── gpu-removal.jpg │ │ ├── m2-slot-diagrams-r2-b2.png │ │ ├── pcie-release-latch.png │ │ ├── power-button │ │ │ ├── bracket.jpg │ │ │ ├── button-installation-1.jpg │ │ │ ├── button-installation-2.jpg │ │ │ ├── button-installation-3.jpg │ │ │ ├── button-removal-1.jpg │ │ │ ├── button-removal-2.jpg │ │ │ ├── final-assembly.jpg │ │ │ ├── io-power-button.png │ │ │ ├── motherboard-power-button.png │ │ │ ├── needle-nose.jpg │ │ │ ├── nut-installation-1.jpg │ │ │ ├── nut-installation-2.jpg │ │ │ ├── nut-installation-3.jpg │ │ │ ├── nut-removal.jpg │ │ │ ├── plugging-in-wire.jpg │ │ │ ├── power-button-hole.jpg │ │ │ ├── power-button.png │ │ │ ├── power-switch-overview.png │ │ │ ├── thelio-io-board.png │ │ │ ├── unplug-1.jpg │ │ │ ├── unplug-2.jpg │ │ │ └── unscrewing.jpg │ │ ├── r1 │ │ │ ├── 25-drive-screws.jpg │ │ │ ├── components-highlighted.png │ │ │ ├── cpu.jpg │ │ │ ├── pcie-slot-latches.png │ │ │ └── thermal-paste-application.jpg │ │ ├── r2 │ │ │ ├── components-highlighted.png │ │ │ └── ports-back.png │ │ ├── ram-insertion.png │ │ ├── ram-release-clips.png │ │ ├── ram-slot-notch.png │ │ ├── ram-stick-notch.jpg │ │ └── replacing-case-internal-view-highlighted.png │ ├── internal-overview.md │ └── repairs.md │ ├── thelio-major-r3 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── 25-drive-installation.webp │ │ ├── 25-drive-installed.webp │ │ ├── 25-drive-screws.webp │ │ ├── 25-slot-cover.webp │ │ ├── accent-strip-removal.webp │ │ ├── b0-button.webp │ │ ├── bottom-fan-screws.webp │ │ ├── chassis-fan-connectors.webp │ │ ├── components-front.webp │ │ ├── components-left.webp │ │ ├── components-right.webp │ │ ├── components-top.webp │ │ ├── cpu-cooler-mounting-bracket.webp │ │ ├── cpu-cooler-screws.webp │ │ ├── cpu-duct-fan-bracket-screws.webp │ │ ├── cpu-duct-fan-screws.webp │ │ ├── cpu-duct-screws-external.webp │ │ ├── cpu-duct-screws-internal.webp │ │ ├── cpu-fan-connectors.webp │ │ ├── cpu-holder-raised.webp │ │ ├── cpu-locking-pin.webp │ │ ├── cpu-removed.webp │ │ ├── gpu-brace-adjustment-screws.webp │ │ ├── gpu-brace-screws.webp │ │ ├── gpu-power.webp │ │ ├── gpu-slots.webp │ │ ├── m2-heatsink-screws.webp │ │ ├── m2-slots.webp │ │ ├── m2-thermal-tape.webp │ │ ├── motherboard-cpu-fan-header.webp │ │ ├── motherboard-sata-usb-power-headers.webp │ │ ├── pcie-bracket.webp │ │ ├── ports-back.webp │ │ ├── ports-front-sides.webp │ │ ├── ports-top-bottom.webp │ │ ├── power-button-receptacle.webp │ │ ├── power-button-wiring.jpg │ │ ├── psu-bracket-screws.webp │ │ ├── psu-cables.webp │ │ ├── psu-post.webp │ │ ├── psu-screws.webp │ │ ├── ram-order.webp │ │ ├── ram-slots.webp │ │ ├── side-fan-screws.webp │ │ ├── thelio-io-cabling-cutouts.webp │ │ ├── thelio-io-screws.webp │ │ ├── thelio-io-wiring.webp │ │ ├── thelio-major-r3.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ └── top-case-screws.webp │ ├── internal-overview.md │ └── repairs.md │ ├── thelio-major-r5-n3 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── 25-drive-installation.webp │ │ ├── 25-drive-installed.webp │ │ ├── 25-drive-screws.webp │ │ ├── 25-slot-cover-bottom.webp │ │ ├── 25-slot-cover-top.webp │ │ ├── accent-strip-removal.webp │ │ ├── bottom-fan-cable.webp │ │ ├── bottom-fan-connector.webp │ │ ├── bottom-fan-screws.webp │ │ ├── cmos-battery.webp │ │ ├── cpu-bracket-open.webp │ │ ├── cpu-bracket-screws.webp │ │ ├── cpu-carrier-raised.webp │ │ ├── cpu-cooler-screws.webp │ │ ├── cpu-duct-fan-bracket-screws.webp │ │ ├── cpu-duct-fan-screws.webp │ │ ├── cpu-duct-screws-back.webp │ │ ├── cpu-duct-screws-top.webp │ │ ├── cpu-fan-connectors.webp │ │ ├── cpu-heatsink-fans-installed.webp │ │ ├── cpu-heatsink-fans-removed.webp │ │ ├── cpu-removed.webp │ │ ├── gpu-brace-finger-screws-back.webp │ │ ├── gpu-brace-finger-screws-side.webp │ │ ├── gpu-power.webp │ │ ├── internal-front.webp │ │ ├── internal-left-chassis.webp │ │ ├── internal-left-electronics.webp │ │ ├── internal-right.webp │ │ ├── internal-top.webp │ │ ├── m2-heatsink-latches.webp │ │ ├── m2-slots.webp │ │ ├── m2-thermal-tape.webp │ │ ├── motherboard-fan-header.webp │ │ ├── motherboard-power-usb.webp │ │ ├── motherboard-sata-ports.webp │ │ ├── pcie-bracket.webp │ │ ├── pcie-slots.webp │ │ ├── ports-back.webp │ │ ├── ports-front-sides.webp │ │ ├── ports-top-bottom.webp │ │ ├── power-button-receptacle.webp │ │ ├── power-button-wiring.jpg │ │ ├── psu-bracket-screw-left.webp │ │ ├── psu-bracket-screw-right.webp │ │ ├── psu-cables.webp │ │ ├── psu-post.webp │ │ ├── psu-screws.webp │ │ ├── ram-order.webp │ │ ├── ram-slots.webp │ │ ├── sata-backplane-cabling.webp │ │ ├── sata-backplane-screws.webp │ │ ├── side-brace-screws.webp │ │ ├── side-fan-connector.webp │ │ ├── side-fan-screws.webp │ │ ├── side-fan-splitter.webp │ │ ├── thelio-io-board.webp │ │ ├── thelio-io-cabling-cutout.webp │ │ ├── thelio-io-power-button.webp │ │ ├── thelio-io-screws.webp │ │ ├── thelio-major-r5-n3.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ ├── top-case-screws.webp │ │ ├── top-io-headers-audio.webp │ │ ├── top-io-headers-usb.webp │ │ └── top-io-screws.webp │ ├── internal-overview.md │ └── repairs.md │ ├── thelio-massive-b1.2 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── b0-button.jpg │ │ ├── case-fan-screws.webp │ │ ├── cpu-clips.jpg │ │ ├── cpu-cooler-screws.jpg │ │ ├── cpu-duct-screws-back.jpg │ │ ├── cpu-duct-screws-side.jpg │ │ ├── cpu-fan-clips.jpg │ │ ├── cpu-fan-hub.jpg │ │ ├── cpu-installation.webp │ │ ├── gpu-brace-screws.jpg │ │ ├── gpu-power.jpg │ │ ├── gpu-slot-order.webp │ │ ├── internal-overview-side.jpg │ │ ├── internal-overview-top.jpg │ │ ├── m2-screw.jpg │ │ ├── motherboard-triangle.jpg │ │ ├── partition-screws-back.jpg │ │ ├── partition-screws-side.jpg │ │ ├── pcie-bracket-screws.jpg │ │ ├── pcie-latches.jpg │ │ ├── ports-back.webp │ │ ├── power-button-receptacle.jpg │ │ ├── power-button-wiring.jpg │ │ ├── power-wiring-motherboard.jpg │ │ ├── power-wiring-thelio-io.jpg │ │ ├── ram-order-1cpu.jpg │ │ ├── ram-order-2cpu.jpg │ │ ├── ram-slots.jpg │ │ ├── storage-drive-installation.jpg │ │ ├── storage-drive-screw-cover.jpg │ │ ├── storage-drive-screws.jpg │ │ ├── storage-drive-slots.jpg │ │ ├── thelio-io-usb.webp │ │ ├── thelio-massive-b1.2.png │ │ ├── thermal-paste-removal.jpg │ │ ├── top-case-screws.jpg │ │ ├── top-crossbar-screws.webp │ │ ├── top-fan-connectors.jpg │ │ └── top-fan-screws.jpg │ ├── internal-overview.md │ └── repairs.md │ ├── thelio-mega-r1.0 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── b0-button.jpg │ │ ├── case-fan-mounts-bottom.jpg │ │ ├── case-fan-pins-bottom.jpg │ │ ├── case-fan-screws-side.jpg │ │ ├── cpu-clip.jpg │ │ ├── cpu-cooler-crossbar-screws.jpg │ │ ├── cpu-cooler-crossbar.jpg │ │ ├── cpu-cooler-fan-clip.jpg │ │ ├── cpu-cooler-mounting-bracket-screws.jpg │ │ ├── cpu-cooler-mounting-bracket-standoff-covers.jpg │ │ ├── cpu-cooler-orientation.jpg │ │ ├── cpu-cooler-screws.jpg │ │ ├── cpu-cover-screws.jpg │ │ ├── cpu-duct-fan-screws-back.jpg │ │ ├── cpu-duct-fan-screws-front.jpg │ │ ├── cpu-duct-screws-inner.webp │ │ ├── cpu-duct-screws.jpg │ │ ├── cpu-holder-lowering.webp │ │ ├── cpu-removal.webp │ │ ├── gpu-brace-plastic-screws.jpg │ │ ├── gpu-brace-screws.webp │ │ ├── gpu-power.jpg │ │ ├── gpu-slots.jpg │ │ ├── internal-overview.jpg │ │ ├── m2-heatsink-screws.jpg │ │ ├── m2-screws.jpg │ │ ├── m2-thermal-tape.jpg │ │ ├── motherboard-power-button.jpg │ │ ├── motherboard-thelio-io-usb.jpg │ │ ├── partition-screws-back.jpg │ │ ├── partition-screws-side.jpg │ │ ├── pcie-bracket.webp │ │ ├── ports-back.webp │ │ ├── power-button-receptacle.jpg │ │ ├── power-button-wiring.jpg │ │ ├── power-wiring-adapter.webp │ │ ├── power-wiring-motherboard.jpg │ │ ├── power-wiring-thelio-io.jpg │ │ ├── psu-bracket-screw-bottom.jpg │ │ ├── psu-bracket-screw-side.jpg │ │ ├── psu-cabling.jpg │ │ ├── psu-eco-mode.jpg │ │ ├── psu-posts.jpg │ │ ├── psu-screws.jpg │ │ ├── ram-order.webp │ │ ├── ram-slots.jpg │ │ ├── sata-slot-covers.jpg │ │ ├── side-fan-mounts.jpg │ │ ├── side-fan-pins.jpg │ │ ├── storage-drive-installation.jpg │ │ ├── storage-drive-screw-cover.jpg │ │ ├── storage-drive-screws.jpg │ │ ├── thelio-io-cabling-cutouts.jpg │ │ ├── thelio-io-drive-cage-screws.jpg │ │ ├── thelio-io-usb.jpg │ │ ├── thelio-mega-r1.0.webp │ │ ├── thermal-paste.jpg │ │ ├── top-case-screws.jpg │ │ ├── top-crossbar-screws.webp │ │ └── top-fan-connectors.jpg │ ├── internal-overview.md │ └── repairs.md │ ├── thelio-mega-r4-n3 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── 25-bay-covers.webp │ │ ├── 25-cage-screws.webp │ │ ├── 25-drive-installation.webp │ │ ├── 25-drive-installed.webp │ │ ├── 25-drive-screws.webp │ │ ├── accent-strip-removal.webp │ │ ├── bottom-fan-cable.webp │ │ ├── bottom-fan-screws.webp │ │ ├── cmos-battery.webp │ │ ├── cpu-bracket-open.webp │ │ ├── cpu-bracket-screws.webp │ │ ├── cpu-carrier-raised.webp │ │ ├── cpu-cooler-screws.webp │ │ ├── cpu-duct-back-bracket-screws.webp │ │ ├── cpu-duct-back-fan-screws.webp │ │ ├── cpu-duct-cable-strap.webp │ │ ├── cpu-duct-screws-back.webp │ │ ├── cpu-duct-screws-connectors-top.webp │ │ ├── cpu-duct-side-fan-screws.webp │ │ ├── cpu-heatsink-fans-installed.webp │ │ ├── cpu-heatsink-fans-removed.webp │ │ ├── cpu-removed.webp │ │ ├── cpu-thermal-paste-removal.webp │ │ ├── gpu-brace-screws.webp │ │ ├── gpu-finger-screws.webp │ │ ├── gpu-power.webp │ │ ├── internal-front.webp │ │ ├── internal-left-chassis.webp │ │ ├── internal-left-electronics.webp │ │ ├── internal-right.webp │ │ ├── internal-top.webp │ │ ├── m2-heatsink.webp │ │ ├── m2-slots.webp │ │ ├── m2-thermal-tape-heatsink.webp │ │ ├── m2-thermal-tape-motherboard.webp │ │ ├── motherboard-fan-header.webp │ │ ├── motherboard-power-button.webp │ │ ├── motherboard-power-usb.webp │ │ ├── motherboard-sata-ports.webp │ │ ├── pcie-bracket.webp │ │ ├── pcie-slots.webp │ │ ├── ports-back.webp │ │ ├── ports-front-sides.webp │ │ ├── ports-top-bottom.webp │ │ ├── power-button-receptacle.webp │ │ ├── power-button-wiring.jpg │ │ ├── psu-cabling.webp │ │ ├── psu-chamber-screws.webp │ │ ├── psu-post.webp │ │ ├── psu-screws.webp │ │ ├── ram-order.webp │ │ ├── ram-slots.webp │ │ ├── sata-backplane-cabling.webp │ │ ├── sata-backplane-screws.webp │ │ ├── side-fan-cabling.webp │ │ ├── side-fan-connector.webp │ │ ├── side-fan-mount-screws.webp │ │ ├── side-fan-screws.webp │ │ ├── thelio-io-board.webp │ │ ├── thelio-io-cabling-cutout.webp │ │ ├── thelio-io-power-button.webp │ │ ├── thelio-io-screws.webp │ │ ├── thelio-mega-r4-n3.webp │ │ ├── thermal-paste-application.webp │ │ ├── top-case-screws.webp │ │ ├── top-crossbar-screws-back.webp │ │ ├── top-crossbar-screws-front.webp │ │ ├── top-io-headers-bottom.webp │ │ ├── top-io-headers-middle.webp │ │ ├── top-io-screws.webp │ │ └── wireless-antenna.webp │ ├── internal-overview.md │ └── repairs.md │ ├── thelio-mira-b1.0 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── b0-button.webp │ │ ├── bottom-fan-cable-management.webp │ │ ├── bottom-fan-connector.webp │ │ ├── bottom-fan-screws.webp │ │ ├── cpu-cooler-fan-clip.webp │ │ ├── cpu-cooler-screws.webp │ │ ├── cpu-duct-fan-bracket-screws.webp │ │ ├── cpu-duct-fan-screws.webp │ │ ├── cpu-duct-screws.webp │ │ ├── cpu-holder-raised.webp │ │ ├── cpu-locking-pin.webp │ │ ├── cpu-removed.webp │ │ ├── gpu-brace-adjustment-screws.webp │ │ ├── gpu-brace-screws.webp │ │ ├── gpu-power.webp │ │ ├── gpu-slots.webp │ │ ├── internal-overview.webp │ │ ├── m2-heatsink-screws.webp │ │ ├── m2-slots.webp │ │ ├── m2-thermal-tape.webp │ │ ├── motherboard-cpu-fan-connector.webp │ │ ├── motherboard-power-sw-led-connectors.webp │ │ ├── motherboard-sata-connectors.webp │ │ ├── motherboard-usb-connector.webp │ │ ├── pcie-bracket.webp │ │ ├── ports-back.webp │ │ ├── power-button-receptacle.webp │ │ ├── power-button-wiring.jpg │ │ ├── psu-bracket-screws.webp │ │ ├── psu-cables.webp │ │ ├── psu-post.webp │ │ ├── psu-screws.webp │ │ ├── ram-order.webp │ │ ├── ram-slots.webp │ │ ├── sata-slot-cover.webp │ │ ├── storage-drive-installation.webp │ │ ├── storage-drive-screws.webp │ │ ├── thelio-io-cabling-cutouts.webp │ │ ├── thelio-io-screws.webp │ │ ├── thelio-io-wiring.webp │ │ ├── thelio-mira-b1.0.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ ├── top-case-screws.webp │ │ └── top-fan-connectors.webp │ ├── internal-overview.md │ └── repairs.md │ ├── thelio-mira-b4-n3 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── 25-drive-installation.webp │ │ ├── 25-drive-installed.webp │ │ ├── 25-drive-screws.webp │ │ ├── 25-slot-cover.webp │ │ ├── accent-strip-removal.webp │ │ ├── bottom-fan-cable.webp │ │ ├── bottom-fan-connector.webp │ │ ├── bottom-fan-screws.webp │ │ ├── cmos-battery.webp │ │ ├── cpu-cooler-mounting-bracket-screws.webp │ │ ├── cpu-cooler-screws.webp │ │ ├── cpu-duct-fan-bracket-screws.webp │ │ ├── cpu-duct-fan-screws.webp │ │ ├── cpu-duct-screws-back.webp │ │ ├── cpu-duct-screws-top.webp │ │ ├── cpu-fan-connectors.webp │ │ ├── cpu-heatsink-fan-clips.webp │ │ ├── cpu-holder-raised.webp │ │ ├── cpu-locking-lever.webp │ │ ├── cpu-removed.webp │ │ ├── gpu-brace-finger-screws-back.webp │ │ ├── gpu-brace-finger-screws-side.webp │ │ ├── gpu-power.webp │ │ ├── internal-front.webp │ │ ├── internal-left-chassis.webp │ │ ├── internal-left-electronics.webp │ │ ├── internal-right.webp │ │ ├── internal-top.webp │ │ ├── m2-heatsink-screws.webp │ │ ├── m2-slots.webp │ │ ├── m2-thermal-tape.webp │ │ ├── motherboard-fan-header.webp │ │ ├── motherboard-power-usb.webp │ │ ├── motherboard-sata-ports.webp │ │ ├── pcie-bracket.webp │ │ ├── pcie-slots.webp │ │ ├── ports-back.webp │ │ ├── ports-front-sides.webp │ │ ├── ports-top-bottom.webp │ │ ├── power-button-receptacle.webp │ │ ├── power-button-wiring.jpg │ │ ├── psu-bracket-screw-left.webp │ │ ├── psu-bracket-screw-right.webp │ │ ├── psu-cable-management-bracket.webp │ │ ├── psu-cables.webp │ │ ├── psu-screws.webp │ │ ├── ram-order.webp │ │ ├── ram-slots.webp │ │ ├── sata-backplane-cabling.webp │ │ ├── sata-backplane-screws.webp │ │ ├── side-brace-screws.webp │ │ ├── side-fan-connector.webp │ │ ├── thelio-io-board.webp │ │ ├── thelio-io-cabling-cutout.webp │ │ ├── thelio-io-power-button.webp │ │ ├── thelio-io-screws.webp │ │ ├── thelio-mira-b4-n3.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ ├── top-case-screws.webp │ │ ├── top-io-headers-audio.webp │ │ ├── top-io-headers-usb.webp │ │ └── top-io-screws.webp │ ├── internal-overview.md │ └── repairs.md │ ├── thelio-mira-r1.0 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── GPU-power-connectors.jpg │ │ ├── b0-button.jpg │ │ ├── case-fan-connection.jpg │ │ ├── case-fan-screws.jpg │ │ ├── cpu-cooler-fan-clips.jpg │ │ ├── cpu-cooler-screws.jpg │ │ ├── cpu-duct-fan-screws.jpg │ │ ├── cpu-duct-screws.jpg │ │ ├── cpu-fan-connectors.jpg │ │ ├── cpu-socket-unlock.jpg │ │ ├── cpu-socket.jpg │ │ ├── drive-bay-cover.jpg │ │ ├── drive-cage-screws.jpg │ │ ├── drive-installation.jpg │ │ ├── drive-screw-removal.jpg │ │ ├── drive-with-screws.jpg │ │ ├── fan-spacer-and-dust-filter.jpg │ │ ├── gpu-brace-removal.jpg │ │ ├── gpu-brace.jpg │ │ ├── internal-labeled.png │ │ ├── m2-drive-screws.jpg │ │ ├── m2-fan-cover-screws.jpg │ │ ├── m2-heatsink-screws.jpg │ │ ├── m2-thermal-tape.jpg │ │ ├── mira-front.jpg │ │ ├── pci-retainer-missing-slot.jpg │ │ ├── pcie-latch.jpg │ │ ├── ports-back.png │ │ ├── power-button-receptacle.jpg │ │ ├── power-button-wiring.jpg │ │ ├── power-wiring-thelio-io.jpg │ │ ├── psu-bracket-screw-bottom.jpg │ │ ├── psu-bracket-screw-side.jpg │ │ ├── psu-connectors.jpg │ │ ├── psu-eco-mode-switch.jpg │ │ ├── psu-post.jpg │ │ ├── psu-screws.jpg │ │ ├── ram-latches.jpg │ │ ├── ram-order.png │ │ ├── ram-slots.jpg │ │ ├── thelio-io-plugs.jpg │ │ ├── thelio-io-power-button-motherboard.jpg │ │ ├── thelio-io-sata-plugs.jpg │ │ ├── thelio-io-screws.jpg │ │ ├── thelio-io-usb-motherboard.jpg │ │ ├── thelio-io-usb.jpg │ │ ├── thelio-mira-r1.0.png │ │ ├── thermal-paste-applied.jpg │ │ ├── thermal-paste-clean.jpg │ │ ├── top-case-removal.jpg │ │ └── top-case-screws.jpg │ ├── internal-overview.md │ └── repairs.md │ ├── thelio-mira-r3 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── 25-drive-installation.webp │ │ ├── 25-drive-installed.webp │ │ ├── 25-drive-screws.webp │ │ ├── 25-slot-cover.webp │ │ ├── accent-strip-removal.webp │ │ ├── b0-button.webp │ │ ├── bottom-fan-connector.webp │ │ ├── bottom-fan-screws.webp │ │ ├── components-front.webp │ │ ├── components-left.webp │ │ ├── components-right.webp │ │ ├── components-top.webp │ │ ├── cpu-cooler-fan-clip.webp │ │ ├── cpu-cooler-mounting-bracket.webp │ │ ├── cpu-cooler-screws.webp │ │ ├── cpu-duct-fan-bracket-screws.webp │ │ ├── cpu-duct-fan-screws.webp │ │ ├── cpu-duct-screws.webp │ │ ├── cpu-fan-connectors.webp │ │ ├── cpu-holder-raised.webp │ │ ├── cpu-locking-pin.webp │ │ ├── cpu-removed.webp │ │ ├── gpu-brace-adjustment-screws.webp │ │ ├── gpu-brace-screws.webp │ │ ├── gpu-power.webp │ │ ├── gpu-slots.webp │ │ ├── m2-heatsink-screws.webp │ │ ├── m2-slots.webp │ │ ├── m2-thermal-tape.webp │ │ ├── motherboard-cpu-fan-header.webp │ │ ├── motherboard-power-sw-led-headers.webp │ │ ├── motherboard-sata-headers.webp │ │ ├── motherboard-usb-header.webp │ │ ├── pcie-bracket.webp │ │ ├── ports-back.webp │ │ ├── ports-front-sides.webp │ │ ├── ports-top-bottom.webp │ │ ├── power-button-receptacle.webp │ │ ├── power-button-wiring.jpg │ │ ├── psu-bracket-screws.webp │ │ ├── psu-cables.webp │ │ ├── psu-post.webp │ │ ├── psu-screws.webp │ │ ├── ram-order.webp │ │ ├── ram-slots.webp │ │ ├── thelio-io-cabling-cutouts.webp │ │ ├── thelio-io-screws.webp │ │ ├── thelio-io-wiring.webp │ │ ├── thelio-mira-r3.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ └── top-case-screws.webp │ ├── internal-overview.md │ └── repairs.md │ ├── thelio-r3-n1 │ ├── README.md │ ├── external-overview.md │ ├── img │ │ ├── 25-drive-installation.webp │ │ ├── 25-drive-installed.webp │ │ ├── 25-drive-screws.webp │ │ ├── accent-strip-removal.webp │ │ ├── bottom-fan-connector.webp │ │ ├── bottom-fan-screws.webp │ │ ├── cpu-cooler-mounting-bracket.webp │ │ ├── cpu-cooler-screws.webp │ │ ├── cpu-duct-fan-bracket-screws.webp │ │ ├── cpu-duct-screws-back.webp │ │ ├── cpu-duct-screws-top.webp │ │ ├── cpu-fan-connectors.webp │ │ ├── cpu-fan-screws.webp │ │ ├── cpu-holder-raised.webp │ │ ├── cpu-locking-pin.webp │ │ ├── cpu-removed.webp │ │ ├── crossbar-screws-back.webp │ │ ├── crossbar-screws-front.webp │ │ ├── gpu-brace-finger-screws-back.webp │ │ ├── gpu-brace-finger-screws-side.webp │ │ ├── gpu-power.webp │ │ ├── gpu-slot.webp │ │ ├── internal-front.webp │ │ ├── internal-left-chassis.webp │ │ ├── internal-left-electronics.webp │ │ ├── internal-right.webp │ │ ├── internal-top.webp │ │ ├── m2-heatsink-screws.webp │ │ ├── m2-slot-1.webp │ │ ├── m2-slot-2.webp │ │ ├── motherboard-fan-header.webp │ │ ├── motherboard-headers-audio.webp │ │ ├── motherboard-headers-usb.webp │ │ ├── motherboard-power-usb.webp │ │ ├── pcie-bracket.webp │ │ ├── ports-back.webp │ │ ├── ports-front-sides.webp │ │ ├── ports-top-bottom.webp │ │ ├── power-button-receptacle.webp │ │ ├── power-button-wiring.jpg │ │ ├── psu-cables.webp │ │ ├── psu-dust-filter.webp │ │ ├── psu-screws.webp │ │ ├── ram-slots.webp │ │ ├── sata-backplane-connectors.webp │ │ ├── sata-backplane-screws.webp │ │ ├── side-brace-screws.webp │ │ ├── thelio-io-board.webp │ │ ├── thelio-io-location.webp │ │ ├── thelio-io-power-button.webp │ │ ├── thelio-io-screws.webp │ │ ├── thelio-r3-n1.webp │ │ ├── thermal-paste-application.webp │ │ ├── thermal-paste-removal.webp │ │ ├── top-case-screws.webp │ │ └── top-io-screws.webp │ ├── internal-overview.md │ └── repairs.md │ └── thelio-spark-b1-n2 │ ├── README.md │ ├── external-overview.md │ ├── img │ ├── 25-drive-cage-screws.webp │ ├── 25-drive-installation.webp │ ├── 25-drive-installed.webp │ ├── 25-drive-screws.webp │ ├── 25-slot-cover.webp │ ├── accent-strip-removal.webp │ ├── bottom-fan-cable.webp │ ├── bottom-fan-connector.webp │ ├── bottom-fan-screws.webp │ ├── cmos-battery.webp │ ├── cpu-cooler-mounting-bracket-corner-sleeves.webp │ ├── cpu-cooler-mounting-bracket.webp │ ├── cpu-cooler-mounting-clips.webp │ ├── cpu-cooler-screws.webp │ ├── cpu-duct-fan-bracket-screws.webp │ ├── cpu-duct-fan-screws.webp │ ├── cpu-duct-screws-back.webp │ ├── cpu-duct-screws-top.webp │ ├── cpu-fan-connectors.webp │ ├── cpu-heatsink-fan.webp │ ├── cpu-holder-raised.webp │ ├── cpu-locking-lever.webp │ ├── cpu-removed.webp │ ├── gpu-brace-finger-screws-back.webp │ ├── gpu-brace-finger-screws-side.webp │ ├── gpu-power.webp │ ├── gpu-slot.webp │ ├── internal-front.webp │ ├── internal-left-chassis.webp │ ├── internal-left-electronics.webp │ ├── internal-right.webp │ ├── internal-top.webp │ ├── m2-slots.webp │ ├── m2-thermal-tape.webp │ ├── motherboard-fan-header.webp │ ├── motherboard-power-usb.webp │ ├── pcie-bracket.webp │ ├── ports-back.webp │ ├── ports-front-sides.webp │ ├── ports-top-bottom.webp │ ├── power-button-receptacle.webp │ ├── power-button-wiring.jpg │ ├── psu-bracket-screws.webp │ ├── psu-cables-motherboard.webp │ ├── psu-cables-sata.webp │ ├── psu-cables-source.webp │ ├── psu-cables-thelio-io.webp │ ├── psu-screws.webp │ ├── ram-order.webp │ ├── ram-slots.webp │ ├── sata-backplane-cabling-cutout.webp │ ├── sata-backplane-screws.webp │ ├── side-brace-screws.webp │ ├── thelio-io-board.webp │ ├── thelio-io-cabling-cutout.webp │ ├── thelio-io-power-button.webp │ ├── thelio-io-screws.webp │ ├── thelio-spark-b1-n2.webp │ ├── thermal-paste-application.webp │ ├── thermal-paste-removal.webp │ ├── top-case-screws.webp │ ├── top-io-headers-audio.webp │ ├── top-io-headers-usb.webp │ ├── top-io-screws.webp │ └── wireless-card.webp │ ├── internal-overview.md │ └── repairs.md └── theme ├── favicon.png └── variables.css /.gitignore: -------------------------------------------------------------------------------- 1 | /book 2 | /build 3 | *.swp 4 | -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- 1 | { pkgs ? import {} }: 2 | pkgs.mkShell { 3 | nativeBuildInputs = with pkgs; [ 4 | mdbook 5 | ]; 6 | } 7 | -------------------------------------------------------------------------------- /src/models/addw1/img/addw1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:65ea0113a37e85c1b3f8a07a02e39e64763a0c1235eb471eb5847fef0b6bb3c2 3 | size 947135 4 | -------------------------------------------------------------------------------- /src/models/addw1/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/addw1/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/addw1/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/addw1/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/addw1/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a01122348da9c570525106075c9404f34e6093071f431b21c13aa1154c3e9adb 3 | size 971 4 | -------------------------------------------------------------------------------- /src/models/addw1/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/addw1/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/addw1/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/addw1/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/addw1/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/addw1/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/addw1/img/fn-star.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74c92304ad9330ac5a7338efd17f70571211a0fbd490c204b7bfd8ccea88010a 3 | size 1035 4 | -------------------------------------------------------------------------------- /src/models/addw1/img/front-leds.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2d1af363bac21fa325d554ff8925a9dc5278407e6660a56efb553e0d39403cb4 3 | size 465123 4 | -------------------------------------------------------------------------------- /src/models/addw1/img/led-airplane.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:08ea82e946926fd51a286a98120792be58bbb0c166b5209d285a56e6931a11e2 3 | size 2780 4 | -------------------------------------------------------------------------------- /src/models/addw1/img/led-battery.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebfb5b1c67136df3bbf4a00d5b47f7c7d84d0e0f8f049ce685dd656099f65e11 3 | size 2633 4 | -------------------------------------------------------------------------------- /src/models/addw1/img/led-capslock.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b7b9d9a3ea8f5168e73f4996c8a094c958a9e5f01f0923e98771ca21967d6124 3 | size 2942 4 | -------------------------------------------------------------------------------- /src/models/addw1/img/led-gpu.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3d03135d24b100d42fd5c5e5728654c720ce0ce0f437a320b82fa7bbf6e61dac 3 | size 2684 4 | -------------------------------------------------------------------------------- /src/models/addw1/img/led-numlock.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9cc1cebb9a50f5866a048916ed541bf347108ae004fd81af29ae8c0a8cb548ac 3 | size 2290 4 | -------------------------------------------------------------------------------- /src/models/addw1/img/led-power.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7877ef81cc1039d68fc71d4c185c72b51b58e15f0329e5e4ca920da955935b4 3 | size 3498 4 | -------------------------------------------------------------------------------- /src/models/addw1/img/led-scroll.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a33ae66dbccf4c837b1a61b315ac6057a1431c3e1b1db20441f3de8ff5a8cf09 3 | size 2248 4 | -------------------------------------------------------------------------------- /src/models/addw1/img/led-storage.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31df2f761d7c0ff6621414586d0313b24ffc556a73d1b4c8ba2b6a895d5b250d 3 | size 3045 4 | -------------------------------------------------------------------------------- /src/models/addw1/img/m2-slots.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6e69e98dacfce0706907ccbfd588745130db442b3ade5f994488753f2988998a 3 | size 727863 4 | -------------------------------------------------------------------------------- /src/models/addw1/img/ports-back.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7446f76f11d83e45ac543c0c45e66fb493d7d414794ecd1dad886843cd58194e 3 | size 89927 4 | -------------------------------------------------------------------------------- /src/models/addw1/img/ports-front.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fed145eb13372a6bdd228b15ec62f1002212ac2e2d6eef6aa3c3aa6c4923f9b6 3 | size 49225 4 | -------------------------------------------------------------------------------- /src/models/addw1/img/ports-left.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:11e46685da0cc61906254c10d1fa98e668d9caa5398000f061dc87c9a1bb2c10 3 | size 109572 4 | -------------------------------------------------------------------------------- /src/models/addw1/img/ports-right.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:27448db63ac78ea5e167cfacdc81d1223c56f06c29d421991794e2ac75161bc3 3 | size 93169 4 | -------------------------------------------------------------------------------- /src/models/addw1/img/ram-tabs.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d28fe18eff0e472bd25c27344334793fc0c589067807e89c1f614e6834fbe975 3 | size 714859 4 | -------------------------------------------------------------------------------- /src/models/addw1/img/screws.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0dc93a8b73dec2df2bfd2482c1ece12db7e38553518a718b667614cce9249b3b 3 | size 1226921 4 | -------------------------------------------------------------------------------- /src/models/addw2/img/addw2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8b8819893077810e2e35390e8aac448a4ac8e8cc104d75c1e2a21401c8dc5a59 3 | size 345972 4 | -------------------------------------------------------------------------------- /src/models/addw2/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/addw2/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/addw2/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/addw2/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/addw2/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/addw2/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a01122348da9c570525106075c9404f34e6093071f431b21c13aa1154c3e9adb 3 | size 971 4 | -------------------------------------------------------------------------------- /src/models/addw2/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/addw2/img/fn-f4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74c92304ad9330ac5a7338efd17f70571211a0fbd490c204b7bfd8ccea88010a 3 | size 1035 4 | -------------------------------------------------------------------------------- /src/models/addw2/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/addw2/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/addw2/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/addw2/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/addw2/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/addw2/img/fn-star.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74c92304ad9330ac5a7338efd17f70571211a0fbd490c204b7bfd8ccea88010a 3 | size 1035 4 | -------------------------------------------------------------------------------- /src/models/addw2/img/front-leds.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2d1af363bac21fa325d554ff8925a9dc5278407e6660a56efb553e0d39403cb4 3 | size 465123 4 | -------------------------------------------------------------------------------- /src/models/addw2/img/led-airplane.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:08ea82e946926fd51a286a98120792be58bbb0c166b5209d285a56e6931a11e2 3 | size 2780 4 | -------------------------------------------------------------------------------- /src/models/addw2/img/led-battery.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebfb5b1c67136df3bbf4a00d5b47f7c7d84d0e0f8f049ce685dd656099f65e11 3 | size 2633 4 | -------------------------------------------------------------------------------- /src/models/addw2/img/led-capslock.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b7b9d9a3ea8f5168e73f4996c8a094c958a9e5f01f0923e98771ca21967d6124 3 | size 2942 4 | -------------------------------------------------------------------------------- /src/models/addw2/img/led-gpu.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3d03135d24b100d42fd5c5e5728654c720ce0ce0f437a320b82fa7bbf6e61dac 3 | size 2684 4 | -------------------------------------------------------------------------------- /src/models/addw2/img/led-numlock.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9cc1cebb9a50f5866a048916ed541bf347108ae004fd81af29ae8c0a8cb548ac 3 | size 2290 4 | -------------------------------------------------------------------------------- /src/models/addw2/img/led-power.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7877ef81cc1039d68fc71d4c185c72b51b58e15f0329e5e4ca920da955935b4 3 | size 3498 4 | -------------------------------------------------------------------------------- /src/models/addw2/img/led-scroll.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a33ae66dbccf4c837b1a61b315ac6057a1431c3e1b1db20441f3de8ff5a8cf09 3 | size 2248 4 | -------------------------------------------------------------------------------- /src/models/addw2/img/led-storage.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31df2f761d7c0ff6621414586d0313b24ffc556a73d1b4c8ba2b6a895d5b250d 3 | size 3045 4 | -------------------------------------------------------------------------------- /src/models/addw2/img/m2-slots.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dd600acdf8e344fa9f76af9f46672d946d0aa8b542e475bf24b6236fca9171ee 3 | size 452885 4 | -------------------------------------------------------------------------------- /src/models/addw2/img/ports-back.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:660063c9958f2b7781c4cc77ea99136012de829364f4bbac4bcbceb992b41bfa 3 | size 190483 4 | -------------------------------------------------------------------------------- /src/models/addw2/img/ports-left.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:00d2785f6ca70e18060aeffda8fa0c8aadc7253f6ccd750b2a7495c8330e0707 3 | size 230068 4 | -------------------------------------------------------------------------------- /src/models/addw2/img/ram-slots.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:77f4cb03ab08ee7c3015e4c77b7ccde0790671061d8c53eb84eb175fd0b73fd3 3 | size 328314 4 | -------------------------------------------------------------------------------- /src/models/addw3/img/addw3.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d065a9f3a335495c788b16d6b28867ec428c4133d7585e7b509e248aa73fd8fe 3 | size 147102 4 | -------------------------------------------------------------------------------- /src/models/addw3/img/battery.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6f8d6e25f6ee7d1ac3605eb48812816ebb4cc8ca4d6c1c8d3e71759930fdb20b 3 | size 928124 4 | -------------------------------------------------------------------------------- /src/models/addw3/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/addw3/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/addw3/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/addw3/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/addw3/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/addw3/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a01122348da9c570525106075c9404f34e6093071f431b21c13aa1154c3e9adb 3 | size 971 4 | -------------------------------------------------------------------------------- /src/models/addw3/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/addw3/img/fn-f4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74c92304ad9330ac5a7338efd17f70571211a0fbd490c204b7bfd8ccea88010a 3 | size 1035 4 | -------------------------------------------------------------------------------- /src/models/addw3/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/addw3/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/addw3/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/addw3/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/addw3/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/addw3/img/fn-minus.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fba5ac94f396df821227c2661fbfed2fd5a6459e9e888c053d7b7d6eb314312f 3 | size 996 4 | -------------------------------------------------------------------------------- /src/models/addw3/img/fn-plus.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6d1d4cad6dae0e59496455dcd4db34223a305c8b82a14c0657cb39847725c1c7 3 | size 1026 4 | -------------------------------------------------------------------------------- /src/models/addw3/img/fn-slash.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:21b29c62d33a70adb4c2297ee8e02cd449e8d3f62729b230cb605f96518f5488 3 | size 1304 4 | -------------------------------------------------------------------------------- /src/models/addw3/img/fn-star.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:49220aa3120f9a6b70b58af2df56da137444db554be0328d9c131914bc6ef899 3 | size 1303 4 | -------------------------------------------------------------------------------- /src/models/addw3/img/led-airplane.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:08ea82e946926fd51a286a98120792be58bbb0c166b5209d285a56e6931a11e2 3 | size 2780 4 | -------------------------------------------------------------------------------- /src/models/addw3/img/led-battery.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebfb5b1c67136df3bbf4a00d5b47f7c7d84d0e0f8f049ce685dd656099f65e11 3 | size 2633 4 | -------------------------------------------------------------------------------- /src/models/addw3/img/led-capslock.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b7b9d9a3ea8f5168e73f4996c8a094c958a9e5f01f0923e98771ca21967d6124 3 | size 2942 4 | -------------------------------------------------------------------------------- /src/models/addw3/img/led-gpu.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3d03135d24b100d42fd5c5e5728654c720ce0ce0f437a320b82fa7bbf6e61dac 3 | size 2684 4 | -------------------------------------------------------------------------------- /src/models/addw3/img/led-numlock.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9cc1cebb9a50f5866a048916ed541bf347108ae004fd81af29ae8c0a8cb548ac 3 | size 2290 4 | -------------------------------------------------------------------------------- /src/models/addw3/img/led-power.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7877ef81cc1039d68fc71d4c185c72b51b58e15f0329e5e4ca920da955935b4 3 | size 3498 4 | -------------------------------------------------------------------------------- /src/models/addw3/img/led-scroll.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a33ae66dbccf4c837b1a61b315ac6057a1431c3e1b1db20441f3de8ff5a8cf09 3 | size 2248 4 | -------------------------------------------------------------------------------- /src/models/addw3/img/led-storage.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31df2f761d7c0ff6621414586d0313b24ffc556a73d1b4c8ba2b6a895d5b250d 3 | size 3045 4 | -------------------------------------------------------------------------------- /src/models/addw3/img/m2-slots.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:482d0791bfb41c7fdc1e8b7a105c488285f4d19f909a7cf13a27c6a3f857b71e 3 | size 802432 4 | -------------------------------------------------------------------------------- /src/models/addw3/img/ram-slots.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9b574edd035fc75647b20d09ad0549105be6754a4773c2448c1b986165985dc8 3 | size 540128 4 | -------------------------------------------------------------------------------- /src/models/addw4/img/addw4.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:77890b2353cfb156a886d84b4b736f8efc35d39ad43154942a211ed92c2eac9b 3 | size 216792 4 | -------------------------------------------------------------------------------- /src/models/addw4/img/battery.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:911f747a742a2b3424e2ba33b21adf13f6beb102cd5cd7d8db15f83f15716496 3 | size 619664 4 | -------------------------------------------------------------------------------- /src/models/addw4/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/addw4/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/addw4/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/addw4/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/addw4/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/addw4/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b6e4ea5ef18c301f4cae75178556f26f0c95492d0dbef48a0aed529d4d587b51 3 | size 1653 4 | -------------------------------------------------------------------------------- /src/models/addw4/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/addw4/img/fn-f4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74c92304ad9330ac5a7338efd17f70571211a0fbd490c204b7bfd8ccea88010a 3 | size 1035 4 | -------------------------------------------------------------------------------- /src/models/addw4/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/addw4/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/addw4/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/addw4/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/addw4/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/addw4/img/fn-minus.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fba5ac94f396df821227c2661fbfed2fd5a6459e9e888c053d7b7d6eb314312f 3 | size 996 4 | -------------------------------------------------------------------------------- /src/models/addw4/img/fn-plus.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6d1d4cad6dae0e59496455dcd4db34223a305c8b82a14c0657cb39847725c1c7 3 | size 1026 4 | -------------------------------------------------------------------------------- /src/models/addw4/img/fn-slash.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:21b29c62d33a70adb4c2297ee8e02cd449e8d3f62729b230cb605f96518f5488 3 | size 1304 4 | -------------------------------------------------------------------------------- /src/models/addw4/img/fn-star.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:49220aa3120f9a6b70b58af2df56da137444db554be0328d9c131914bc6ef899 3 | size 1303 4 | -------------------------------------------------------------------------------- /src/models/addw4/img/led-airplane.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:08ea82e946926fd51a286a98120792be58bbb0c166b5209d285a56e6931a11e2 3 | size 2780 4 | -------------------------------------------------------------------------------- /src/models/addw4/img/led-battery.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebfb5b1c67136df3bbf4a00d5b47f7c7d84d0e0f8f049ce685dd656099f65e11 3 | size 2633 4 | -------------------------------------------------------------------------------- /src/models/addw4/img/led-capslock.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b7b9d9a3ea8f5168e73f4996c8a094c958a9e5f01f0923e98771ca21967d6124 3 | size 2942 4 | -------------------------------------------------------------------------------- /src/models/addw4/img/led-gpu.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3d03135d24b100d42fd5c5e5728654c720ce0ce0f437a320b82fa7bbf6e61dac 3 | size 2684 4 | -------------------------------------------------------------------------------- /src/models/addw4/img/led-numlock.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9cc1cebb9a50f5866a048916ed541bf347108ae004fd81af29ae8c0a8cb548ac 3 | size 2290 4 | -------------------------------------------------------------------------------- /src/models/addw4/img/led-power.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7877ef81cc1039d68fc71d4c185c72b51b58e15f0329e5e4ca920da955935b4 3 | size 3498 4 | -------------------------------------------------------------------------------- /src/models/addw4/img/led-scroll.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a33ae66dbccf4c837b1a61b315ac6057a1431c3e1b1db20441f3de8ff5a8cf09 3 | size 2248 4 | -------------------------------------------------------------------------------- /src/models/addw4/img/led-storage.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31df2f761d7c0ff6621414586d0313b24ffc556a73d1b4c8ba2b6a895d5b250d 3 | size 3045 4 | -------------------------------------------------------------------------------- /src/models/addw4/img/lid.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:af1c5089a3ee2c48212fdecbd0bb766c620dc2e7481ccddfa3611b12815ba25a 3 | size 809858 4 | -------------------------------------------------------------------------------- /src/models/addw4/img/m2-slots.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:927220259e980b25a3d6e4e51dc2c6efb64934638fc4c4864bf854a68746c503 3 | size 952204 4 | -------------------------------------------------------------------------------- /src/models/addw4/img/ram-slots.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:366a9daad84aff79e0d45dc14c2a1a241b7636d99fed1af7b634072b1df40f52 3 | size 604100 4 | -------------------------------------------------------------------------------- /src/models/addw4/img/speakers.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0434642c39da349516f78798786d540f8cb5e6d2135b0be6df7db6ab543813bd 3 | size 812612 4 | -------------------------------------------------------------------------------- /src/models/bonw14/img/bonw14.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:caeabb70e254383f0e3f4c7cf451785b86229c1fda8976c67507bd2b860d8ad9 3 | size 44048 4 | -------------------------------------------------------------------------------- /src/models/bonw14/img/cpu-cover.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f59bdcc708aec7e3d412d36a36d06dc02a5cbfeb84d24b50bd55a95fc1e77341 3 | size 179580 4 | -------------------------------------------------------------------------------- /src/models/bonw14/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/bonw14/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/bonw14/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/bonw14/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/bonw14/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/bonw14/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a01122348da9c570525106075c9404f34e6093071f431b21c13aa1154c3e9adb 3 | size 971 4 | -------------------------------------------------------------------------------- /src/models/bonw14/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/bonw14/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/bonw14/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/bonw14/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/bonw14/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/bonw14/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/bonw14/img/fn-star.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74c92304ad9330ac5a7338efd17f70571211a0fbd490c204b7bfd8ccea88010a 3 | size 1035 4 | -------------------------------------------------------------------------------- /src/models/bonw14/img/heatsink.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:57f23381705f21f0b32b6d5ed439c80ba1e039977303832b9919b88bfc8dbda3 3 | size 263472 4 | -------------------------------------------------------------------------------- /src/models/bonw14/img/led-battery.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebfb5b1c67136df3bbf4a00d5b47f7c7d84d0e0f8f049ce685dd656099f65e11 3 | size 2633 4 | -------------------------------------------------------------------------------- /src/models/bonw14/img/led-power.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7877ef81cc1039d68fc71d4c185c72b51b58e15f0329e5e4ca920da955935b4 3 | size 3498 4 | -------------------------------------------------------------------------------- /src/models/bonw14/img/led-storage.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31df2f761d7c0ff6621414586d0313b24ffc556a73d1b4c8ba2b6a895d5b250d 3 | size 3045 4 | -------------------------------------------------------------------------------- /src/models/bonw14/img/m2-cover.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e5e498abbbb62608b9135bb825a1824ac2f38fb5b5a8ff9c4843847882a5f2fd 3 | size 176748 4 | -------------------------------------------------------------------------------- /src/models/bonw14/img/m2-slots.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:65513163d3a744848d1c758479b9c9985f92c1d206b7e052d03ac8ee53115ae5 3 | size 143058 4 | -------------------------------------------------------------------------------- /src/models/bonw14/img/ram-slots.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e20fdd39aef8504371b6d0f07e99c34c3ef78b484158f04c0efe57ed89b591b8 3 | size 233959 4 | -------------------------------------------------------------------------------- /src/models/bonw15/img/battery.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ec29e631670fcfad86a03e00925132896a4c1bbf3a97e07975bdd2af3de70a6a 3 | size 356368 4 | -------------------------------------------------------------------------------- /src/models/bonw15/img/bonw15.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:da9cf7a9790994c2508a7ae8dd2b1cb958a76050b03b043b4b0147aedb065dc3 3 | size 174220 4 | -------------------------------------------------------------------------------- /src/models/bonw15/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/bonw15/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/bonw15/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/bonw15/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/bonw15/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/bonw15/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a01122348da9c570525106075c9404f34e6093071f431b21c13aa1154c3e9adb 3 | size 971 4 | -------------------------------------------------------------------------------- /src/models/bonw15/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/bonw15/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/bonw15/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/bonw15/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/bonw15/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/bonw15/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/bonw15/img/fn-minus.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fba5ac94f396df821227c2661fbfed2fd5a6459e9e888c053d7b7d6eb314312f 3 | size 996 4 | -------------------------------------------------------------------------------- /src/models/bonw15/img/fn-plus.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6d1d4cad6dae0e59496455dcd4db34223a305c8b82a14c0657cb39847725c1c7 3 | size 1026 4 | -------------------------------------------------------------------------------- /src/models/bonw15/img/fn-slash.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:21b29c62d33a70adb4c2297ee8e02cd449e8d3f62729b230cb605f96518f5488 3 | size 1304 4 | -------------------------------------------------------------------------------- /src/models/bonw15/img/fn-star.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74c92304ad9330ac5a7338efd17f70571211a0fbd490c204b7bfd8ccea88010a 3 | size 1035 4 | -------------------------------------------------------------------------------- /src/models/bonw15/img/led-battery.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebfb5b1c67136df3bbf4a00d5b47f7c7d84d0e0f8f049ce685dd656099f65e11 3 | size 2633 4 | -------------------------------------------------------------------------------- /src/models/bonw15/img/led-power.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7877ef81cc1039d68fc71d4c185c72b51b58e15f0329e5e4ca920da955935b4 3 | size 3498 4 | -------------------------------------------------------------------------------- /src/models/bonw15/img/led-storage.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31df2f761d7c0ff6621414586d0313b24ffc556a73d1b4c8ba2b6a895d5b250d 3 | size 3045 4 | -------------------------------------------------------------------------------- /src/models/bonw15/img/m2-slots.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:935ff386d06065659d0efed74c4713c2b73cd451f23ac75d6369e68f6a5d97b3 3 | size 274136 4 | -------------------------------------------------------------------------------- /src/models/darp10/img/battery.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:98bd33fa865c533eb50385f839194c17a65a95363c46f75052294985129c9f20 3 | size 592646 4 | -------------------------------------------------------------------------------- /src/models/darp10/img/darp10.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bceba3e5d613f98cfc2c79407631f730c3016e1f96e18232a7425bb20668a3c4 3 | size 638766 4 | -------------------------------------------------------------------------------- /src/models/darp10/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/darp10/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/darp10/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/darp10/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/darp10/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/darp10/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b6e4ea5ef18c301f4cae75178556f26f0c95492d0dbef48a0aed529d4d587b51 3 | size 1653 4 | -------------------------------------------------------------------------------- /src/models/darp10/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/darp10/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/darp10/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/darp10/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/darp10/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/darp10/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/darp10/img/fn-minus.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:94b99b89b5b98045809dcf00c725d09af574ab04364554cbdcbc013e8ab0875e 3 | size 1033 4 | -------------------------------------------------------------------------------- /src/models/darp10/img/fn-plus.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f0cd837223708d3bec7791c2d2be672b514085624811eb0c7bf079663657b96f 3 | size 1000 4 | -------------------------------------------------------------------------------- /src/models/darp10/img/fn-slash.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6becd6bee80bfd9c39f6bd2f2786829167a9d5e1df799c93ef8a4eee7d8b2a78 3 | size 1435 4 | -------------------------------------------------------------------------------- /src/models/darp10/img/fn-star.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2658956bc8c4c8ef8de258e0baba339e7d36e44a914c3814711ee95fa05dff08 3 | size 1347 4 | -------------------------------------------------------------------------------- /src/models/darp10/img/led-battery.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebfb5b1c67136df3bbf4a00d5b47f7c7d84d0e0f8f049ce685dd656099f65e11 3 | size 2633 4 | -------------------------------------------------------------------------------- /src/models/darp10/img/led-power.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7877ef81cc1039d68fc71d4c185c72b51b58e15f0329e5e4ca920da955935b4 3 | size 3498 4 | -------------------------------------------------------------------------------- /src/models/darp10/img/led-storage.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31df2f761d7c0ff6621414586d0313b24ffc556a73d1b4c8ba2b6a895d5b250d 3 | size 3045 4 | -------------------------------------------------------------------------------- /src/models/darp10/img/lid.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:932dbd5f727b8a15a8caf1449aadd40d985c880ad37ecc09bcd3580ae53ff662 3 | size 568688 4 | -------------------------------------------------------------------------------- /src/models/darp10/img/m2-slots.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:abadbdac3373c68f12c30be2205309629c8817ec02d8cad43781d50d50439fa9 3 | size 715958 4 | -------------------------------------------------------------------------------- /src/models/darp11/img/battery.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7362e0d7cba7814f82e4b69ecdca74f016dcebebc85727291a56a03be91dcb74 3 | size 999140 4 | -------------------------------------------------------------------------------- /src/models/darp11/img/darp11.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bceba3e5d613f98cfc2c79407631f730c3016e1f96e18232a7425bb20668a3c4 3 | size 638766 4 | -------------------------------------------------------------------------------- /src/models/darp11/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/darp11/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/darp11/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/darp11/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/darp11/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/darp11/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b6e4ea5ef18c301f4cae75178556f26f0c95492d0dbef48a0aed529d4d587b51 3 | size 1653 4 | -------------------------------------------------------------------------------- /src/models/darp11/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/darp11/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/darp11/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/darp11/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/darp11/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/darp11/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/darp11/img/fn-minus.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:94b99b89b5b98045809dcf00c725d09af574ab04364554cbdcbc013e8ab0875e 3 | size 1033 4 | -------------------------------------------------------------------------------- /src/models/darp11/img/fn-plus.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f0cd837223708d3bec7791c2d2be672b514085624811eb0c7bf079663657b96f 3 | size 1000 4 | -------------------------------------------------------------------------------- /src/models/darp11/img/fn-slash.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6becd6bee80bfd9c39f6bd2f2786829167a9d5e1df799c93ef8a4eee7d8b2a78 3 | size 1435 4 | -------------------------------------------------------------------------------- /src/models/darp11/img/fn-star.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2658956bc8c4c8ef8de258e0baba339e7d36e44a914c3814711ee95fa05dff08 3 | size 1347 4 | -------------------------------------------------------------------------------- /src/models/darp11/img/led-battery.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebfb5b1c67136df3bbf4a00d5b47f7c7d84d0e0f8f049ce685dd656099f65e11 3 | size 2633 4 | -------------------------------------------------------------------------------- /src/models/darp11/img/led-power.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7877ef81cc1039d68fc71d4c185c72b51b58e15f0329e5e4ca920da955935b4 3 | size 3498 4 | -------------------------------------------------------------------------------- /src/models/darp11/img/led-storage.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31df2f761d7c0ff6621414586d0313b24ffc556a73d1b4c8ba2b6a895d5b250d 3 | size 3045 4 | -------------------------------------------------------------------------------- /src/models/darp11/img/lid.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:932dbd5f727b8a15a8caf1449aadd40d985c880ad37ecc09bcd3580ae53ff662 3 | size 568688 4 | -------------------------------------------------------------------------------- /src/models/darp11/img/m2-slots.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5a6071a320cbf7bc0a8cbb9a933e3322cc1107fcf1b8c91c8b34e8655d3d2f9f 3 | size 832438 4 | -------------------------------------------------------------------------------- /src/models/darp6/img/battery.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c0192b78da379d991735079ddb0589a9a2c4ba06348c57ac5b35cb5c8cb56f42 3 | size 223412 4 | -------------------------------------------------------------------------------- /src/models/darp6/img/darp6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:43f76e3e10c711709baa8933a4428af9a3e34769488bcd15999e9c61a50d50f3 3 | size 897090 4 | -------------------------------------------------------------------------------- /src/models/darp6/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/darp6/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/darp6/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/darp6/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/darp6/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/darp6/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a01122348da9c570525106075c9404f34e6093071f431b21c13aa1154c3e9adb 3 | size 971 4 | -------------------------------------------------------------------------------- /src/models/darp6/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/darp6/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/darp6/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/darp6/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/darp6/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/darp6/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/darp6/img/fn-star.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74c92304ad9330ac5a7338efd17f70571211a0fbd490c204b7bfd8ccea88010a 3 | size 1035 4 | -------------------------------------------------------------------------------- /src/models/darp6/img/led-airplane.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:08ea82e946926fd51a286a98120792be58bbb0c166b5209d285a56e6931a11e2 3 | size 2780 4 | -------------------------------------------------------------------------------- /src/models/darp6/img/led-battery.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebfb5b1c67136df3bbf4a00d5b47f7c7d84d0e0f8f049ce685dd656099f65e11 3 | size 2633 4 | -------------------------------------------------------------------------------- /src/models/darp6/img/led-power.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7877ef81cc1039d68fc71d4c185c72b51b58e15f0329e5e4ca920da955935b4 3 | size 3498 4 | -------------------------------------------------------------------------------- /src/models/darp6/img/led-storage.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31df2f761d7c0ff6621414586d0313b24ffc556a73d1b4c8ba2b6a895d5b250d 3 | size 3045 4 | -------------------------------------------------------------------------------- /src/models/darp6/img/m2-slot.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:57aada25ebf650b79bea34de180b124752dbda8761c5383e79b986acd8b95f0d 3 | size 74239 4 | -------------------------------------------------------------------------------- /src/models/darp6/img/ports-back.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3267ae4acf6245e952dfcde4846f593d25b2e948eb83312aebee04803f95a602 3 | size 17255 4 | -------------------------------------------------------------------------------- /src/models/darp6/img/ports-front.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1b28fae032e78229116487d02a117f2886d9ee5e4656d3e742e559911ccb1894 3 | size 14285 4 | -------------------------------------------------------------------------------- /src/models/darp6/img/ports-left.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1bff3c383bd1f8037294bcf26789af7cdd68c77a00f2d34e8e20c97ffb98cc0a 3 | size 35038 4 | -------------------------------------------------------------------------------- /src/models/darp6/img/ports-right.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ab18bb6840563e56450100b6b952e6567c13477f61831ae2f949326e79213049 3 | size 37947 4 | -------------------------------------------------------------------------------- /src/models/darp6/img/ram-slots.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d0adbab18de1bdfcc5e6332d42bd109635fec6a04554459b7137350fe09c097a 3 | size 353312 4 | -------------------------------------------------------------------------------- /src/models/darp7/img/battery.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8471bfdc4ebbc344afe439e27118ee1f877e64e4f194c8c112c74b628acf933a 3 | size 221568 4 | -------------------------------------------------------------------------------- /src/models/darp7/img/darp7.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:588106efb556089cb453565c2486f00193f8ca294d2308576c2bb171e6111bcc 3 | size 95562 4 | -------------------------------------------------------------------------------- /src/models/darp7/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/darp7/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/darp7/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/darp7/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/darp7/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/darp7/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a01122348da9c570525106075c9404f34e6093071f431b21c13aa1154c3e9adb 3 | size 971 4 | -------------------------------------------------------------------------------- /src/models/darp7/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/darp7/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/darp7/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/darp7/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/darp7/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/darp7/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/darp7/img/fn-star.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74c92304ad9330ac5a7338efd17f70571211a0fbd490c204b7bfd8ccea88010a 3 | size 1035 4 | -------------------------------------------------------------------------------- /src/models/darp7/img/led-airplane.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:08ea82e946926fd51a286a98120792be58bbb0c166b5209d285a56e6931a11e2 3 | size 2780 4 | -------------------------------------------------------------------------------- /src/models/darp7/img/led-battery.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebfb5b1c67136df3bbf4a00d5b47f7c7d84d0e0f8f049ce685dd656099f65e11 3 | size 2633 4 | -------------------------------------------------------------------------------- /src/models/darp7/img/led-power.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7877ef81cc1039d68fc71d4c185c72b51b58e15f0329e5e4ca920da955935b4 3 | size 3498 4 | -------------------------------------------------------------------------------- /src/models/darp7/img/led-storage.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31df2f761d7c0ff6621414586d0313b24ffc556a73d1b4c8ba2b6a895d5b250d 3 | size 3045 4 | -------------------------------------------------------------------------------- /src/models/darp7/img/m2-slots.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b8b3526344c49c78b4ce085f803b6879903befa9ca4054619ec1c850e4ffc8c6 3 | size 329789 4 | -------------------------------------------------------------------------------- /src/models/darp7/img/ports-back.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ba6b6e6d01c4c983a28b8d2957a4fb6535fd3b0ec22d1777f6790c7d0025f5a4 3 | size 8278 4 | -------------------------------------------------------------------------------- /src/models/darp7/img/ports-front.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:57651b76e1175002675010728911345668a87d20993a921ce6e577f93810a497 3 | size 6646 4 | -------------------------------------------------------------------------------- /src/models/darp7/img/ports-left.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:90d37b81d284656c01e2a07f3ade45cc71aba1eb791b708ef5d5d4bb03039af2 3 | size 81096 4 | -------------------------------------------------------------------------------- /src/models/darp7/img/ports-right.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6ea9e3db62c397306700f31d682a78de7ad117485a14210d25363c64c4125015 3 | size 82312 4 | -------------------------------------------------------------------------------- /src/models/darp7/img/ram-slots.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:49a48c1d05665d4045a99845cf8fd8fc8ac42f5f02a803d1b3eee5c6306096ca 3 | size 358376 4 | -------------------------------------------------------------------------------- /src/models/darp8/img/battery.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:559b83f28654daafdf06b3c3488f02fadb34a8e4a846047b2702b94b9f84c1db 3 | size 286006 4 | -------------------------------------------------------------------------------- /src/models/darp8/img/darp8.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:45a3969e66e13424f2b59f3e2030d240d59629f3d3021a5ef3b0f8ad74ca0e0a 3 | size 61794 4 | -------------------------------------------------------------------------------- /src/models/darp8/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/darp8/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/darp8/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/darp8/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/darp8/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/darp8/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a01122348da9c570525106075c9404f34e6093071f431b21c13aa1154c3e9adb 3 | size 971 4 | -------------------------------------------------------------------------------- /src/models/darp8/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/darp8/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/darp8/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/darp8/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/darp8/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/darp8/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/darp8/img/fn-star.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74c92304ad9330ac5a7338efd17f70571211a0fbd490c204b7bfd8ccea88010a 3 | size 1035 4 | -------------------------------------------------------------------------------- /src/models/darp8/img/led-airplane.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:08ea82e946926fd51a286a98120792be58bbb0c166b5209d285a56e6931a11e2 3 | size 2780 4 | -------------------------------------------------------------------------------- /src/models/darp8/img/led-battery.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebfb5b1c67136df3bbf4a00d5b47f7c7d84d0e0f8f049ce685dd656099f65e11 3 | size 2633 4 | -------------------------------------------------------------------------------- /src/models/darp8/img/led-power.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7877ef81cc1039d68fc71d4c185c72b51b58e15f0329e5e4ca920da955935b4 3 | size 3498 4 | -------------------------------------------------------------------------------- /src/models/darp8/img/led-storage.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31df2f761d7c0ff6621414586d0313b24ffc556a73d1b4c8ba2b6a895d5b250d 3 | size 3045 4 | -------------------------------------------------------------------------------- /src/models/darp8/img/m2-slots.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:55193e95c1b62e0216e59bd8a2411fd762c9621ec7eae26faefb211ba6f6306d 3 | size 283664 4 | -------------------------------------------------------------------------------- /src/models/darp8/img/ports-back.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ba6b6e6d01c4c983a28b8d2957a4fb6535fd3b0ec22d1777f6790c7d0025f5a4 3 | size 8278 4 | -------------------------------------------------------------------------------- /src/models/darp8/img/ports-front.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:57651b76e1175002675010728911345668a87d20993a921ce6e577f93810a497 3 | size 6646 4 | -------------------------------------------------------------------------------- /src/models/darp8/img/ports-left.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3ccc3de20f244c47246b7da465c37b5eb9098bfd5681a672e76549963310be24 3 | size 28134 4 | -------------------------------------------------------------------------------- /src/models/darp8/img/ram-slots.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5632c57a77b7fe3486c3c35225fc3976a46f31b5a35358e67bfc9cd93c1f41a6 3 | size 327650 4 | -------------------------------------------------------------------------------- /src/models/darp9/img/battery.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bd9fd508e4364682b922702df38679d5a16f9909d05c66ef7a75ae969522fd8c 3 | size 472032 4 | -------------------------------------------------------------------------------- /src/models/darp9/img/darp9.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:45a3969e66e13424f2b59f3e2030d240d59629f3d3021a5ef3b0f8ad74ca0e0a 3 | size 61794 4 | -------------------------------------------------------------------------------- /src/models/darp9/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/darp9/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/darp9/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/darp9/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/darp9/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/darp9/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b6e4ea5ef18c301f4cae75178556f26f0c95492d0dbef48a0aed529d4d587b51 3 | size 1653 4 | -------------------------------------------------------------------------------- /src/models/darp9/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/darp9/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/darp9/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/darp9/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/darp9/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/darp9/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/darp9/img/fn-minus.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:94b99b89b5b98045809dcf00c725d09af574ab04364554cbdcbc013e8ab0875e 3 | size 1033 4 | -------------------------------------------------------------------------------- /src/models/darp9/img/fn-plus.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f0cd837223708d3bec7791c2d2be672b514085624811eb0c7bf079663657b96f 3 | size 1000 4 | -------------------------------------------------------------------------------- /src/models/darp9/img/fn-slash.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6becd6bee80bfd9c39f6bd2f2786829167a9d5e1df799c93ef8a4eee7d8b2a78 3 | size 1435 4 | -------------------------------------------------------------------------------- /src/models/darp9/img/fn-star.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2658956bc8c4c8ef8de258e0baba339e7d36e44a914c3814711ee95fa05dff08 3 | size 1347 4 | -------------------------------------------------------------------------------- /src/models/darp9/img/led-airplane.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:08ea82e946926fd51a286a98120792be58bbb0c166b5209d285a56e6931a11e2 3 | size 2780 4 | -------------------------------------------------------------------------------- /src/models/darp9/img/led-battery.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebfb5b1c67136df3bbf4a00d5b47f7c7d84d0e0f8f049ce685dd656099f65e11 3 | size 2633 4 | -------------------------------------------------------------------------------- /src/models/darp9/img/led-power.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7877ef81cc1039d68fc71d4c185c72b51b58e15f0329e5e4ca920da955935b4 3 | size 3498 4 | -------------------------------------------------------------------------------- /src/models/darp9/img/led-storage.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31df2f761d7c0ff6621414586d0313b24ffc556a73d1b4c8ba2b6a895d5b250d 3 | size 3045 4 | -------------------------------------------------------------------------------- /src/models/darp9/img/m2-slots.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:60f8410f7e53190a9531eafbed0b8841c7c5ea7aab7c714c75c00ef40426e0b7 3 | size 274064 4 | -------------------------------------------------------------------------------- /src/models/darp9/img/ports-back.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ba6b6e6d01c4c983a28b8d2957a4fb6535fd3b0ec22d1777f6790c7d0025f5a4 3 | size 8278 4 | -------------------------------------------------------------------------------- /src/models/darp9/img/ports-front.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:57651b76e1175002675010728911345668a87d20993a921ce6e577f93810a497 3 | size 6646 4 | -------------------------------------------------------------------------------- /src/models/darp9/img/ports-left.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3ccc3de20f244c47246b7da465c37b5eb9098bfd5681a672e76549963310be24 3 | size 28134 4 | -------------------------------------------------------------------------------- /src/models/darp9/img/ram-slots.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:42a8ac57613285e6db6cc55ef9a675343a0c51e1021578b9fbeb6f4e6d712b2e 3 | size 753282 4 | -------------------------------------------------------------------------------- /src/models/darp9/img/speakers.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c7105d38e80f7d2ac026c6cd42107708d01916b3508bfa9bea4cbbca68d3a905 3 | size 517592 4 | -------------------------------------------------------------------------------- /src/models/galp4/img/battery.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6fac2f43c1956c0bfc95a87380f30623a8706346104ef1d9abce848df928a06b 3 | size 221919 4 | -------------------------------------------------------------------------------- /src/models/galp4/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/galp4/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/galp4/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/galp4/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/galp4/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/galp4/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a01122348da9c570525106075c9404f34e6093071f431b21c13aa1154c3e9adb 3 | size 971 4 | -------------------------------------------------------------------------------- /src/models/galp4/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/galp4/img/fn-f4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74c92304ad9330ac5a7338efd17f70571211a0fbd490c204b7bfd8ccea88010a 3 | size 1035 4 | -------------------------------------------------------------------------------- /src/models/galp4/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/galp4/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/galp4/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/galp4/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/galp4/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/galp4/img/galp4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a26ec1b1c106e429c159bbe3d7b7492d21555c8f095cce49d881824234466f0f 3 | size 994102 4 | -------------------------------------------------------------------------------- /src/models/galp4/img/led-airplane.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:08ea82e946926fd51a286a98120792be58bbb0c166b5209d285a56e6931a11e2 3 | size 2780 4 | -------------------------------------------------------------------------------- /src/models/galp4/img/led-battery.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebfb5b1c67136df3bbf4a00d5b47f7c7d84d0e0f8f049ce685dd656099f65e11 3 | size 2633 4 | -------------------------------------------------------------------------------- /src/models/galp4/img/led-power.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7877ef81cc1039d68fc71d4c185c72b51b58e15f0329e5e4ca920da955935b4 3 | size 3498 4 | -------------------------------------------------------------------------------- /src/models/galp4/img/led-storage.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31df2f761d7c0ff6621414586d0313b24ffc556a73d1b4c8ba2b6a895d5b250d 3 | size 3045 4 | -------------------------------------------------------------------------------- /src/models/galp4/img/m2-slot.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0a16d3d719a427609b007f3587c8c57bf461a050065af7290b2984a6f297d964 3 | size 263992 4 | -------------------------------------------------------------------------------- /src/models/galp4/img/ports-back.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:29857acf4b75dc9e261cd605413990e291b6d28b7ce178989688219d62228cf6 3 | size 25623 4 | -------------------------------------------------------------------------------- /src/models/galp4/img/ports-front.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31ed60764fc76245064715d58a27e491160b6fc62f43e00a163ccea4dba0e0a0 3 | size 25721 4 | -------------------------------------------------------------------------------- /src/models/galp4/img/ports-left.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1cb92795ec232ce38600893bea56b9f76ffc300bc1bd0be0241f360df41cfa8a 3 | size 103113 4 | -------------------------------------------------------------------------------- /src/models/galp4/img/ram-slots.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8d0f0aec607b61c8a95ff6b02ed47f270a1d5fc44c56eac3527106882b7026bd 3 | size 481293 4 | -------------------------------------------------------------------------------- /src/models/galp5/img/battery.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0a7fb9818a79ba96a6d804563209b6d10734acf4a157cdddf2e8e01c30eec728 3 | size 239491 4 | -------------------------------------------------------------------------------- /src/models/galp5/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/galp5/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/galp5/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/galp5/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/galp5/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/galp5/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a01122348da9c570525106075c9404f34e6093071f431b21c13aa1154c3e9adb 3 | size 971 4 | -------------------------------------------------------------------------------- /src/models/galp5/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/galp5/img/fn-f4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74c92304ad9330ac5a7338efd17f70571211a0fbd490c204b7bfd8ccea88010a 3 | size 1035 4 | -------------------------------------------------------------------------------- /src/models/galp5/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/galp5/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/galp5/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/galp5/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/galp5/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/galp5/img/galp5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b4cea45ac6f40b28483baddc98d32828ad7955267c236cf8a20549701fab532f 3 | size 384725 4 | -------------------------------------------------------------------------------- /src/models/galp5/img/led-airplane.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:08ea82e946926fd51a286a98120792be58bbb0c166b5209d285a56e6931a11e2 3 | size 2780 4 | -------------------------------------------------------------------------------- /src/models/galp5/img/led-battery.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebfb5b1c67136df3bbf4a00d5b47f7c7d84d0e0f8f049ce685dd656099f65e11 3 | size 2633 4 | -------------------------------------------------------------------------------- /src/models/galp5/img/led-power.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7877ef81cc1039d68fc71d4c185c72b51b58e15f0329e5e4ca920da955935b4 3 | size 3498 4 | -------------------------------------------------------------------------------- /src/models/galp5/img/led-storage.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31df2f761d7c0ff6621414586d0313b24ffc556a73d1b4c8ba2b6a895d5b250d 3 | size 3045 4 | -------------------------------------------------------------------------------- /src/models/galp5/img/m2-slot.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8986ea262286aea0a02dbc16e7bcbe8dbbfb658b17fbace766e2508f4e73497c 3 | size 394488 4 | -------------------------------------------------------------------------------- /src/models/galp5/img/ports-back.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3651b464fca96bc5fa09bcb8b9715a6df8cb8269c43a1e19cd25137564ae90fc 3 | size 631512 4 | -------------------------------------------------------------------------------- /src/models/galp5/img/ports-left.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:754e0df362389ff8d1c60793027446dbd9d256dd036ef262a3ccb255c2aab1cf 3 | size 143307 4 | -------------------------------------------------------------------------------- /src/models/galp5/img/ram-slots.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c223048127aa20449048d3c3ca69a9e3daa49d3203d8b852cd5668e39b4749c9 3 | size 386816 4 | -------------------------------------------------------------------------------- /src/models/galp6/img/battery.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:53b692d7eb9bf16d2e3df831b1052013675c352c04a13546d6f3bd9f499d44af 3 | size 264558 4 | -------------------------------------------------------------------------------- /src/models/galp6/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/galp6/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/galp6/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/galp6/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/galp6/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/galp6/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a01122348da9c570525106075c9404f34e6093071f431b21c13aa1154c3e9adb 3 | size 971 4 | -------------------------------------------------------------------------------- /src/models/galp6/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/galp6/img/fn-f4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74c92304ad9330ac5a7338efd17f70571211a0fbd490c204b7bfd8ccea88010a 3 | size 1035 4 | -------------------------------------------------------------------------------- /src/models/galp6/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/galp6/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/galp6/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/galp6/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/galp6/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/galp6/img/galp6.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8865237fbcc1dbbd8936ef3be9c15e419b8077700323a01a28f9d4b109c1a49d 3 | size 61052 4 | -------------------------------------------------------------------------------- /src/models/galp6/img/led-airplane.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:08ea82e946926fd51a286a98120792be58bbb0c166b5209d285a56e6931a11e2 3 | size 2780 4 | -------------------------------------------------------------------------------- /src/models/galp6/img/led-battery.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebfb5b1c67136df3bbf4a00d5b47f7c7d84d0e0f8f049ce685dd656099f65e11 3 | size 2633 4 | -------------------------------------------------------------------------------- /src/models/galp6/img/led-power.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7877ef81cc1039d68fc71d4c185c72b51b58e15f0329e5e4ca920da955935b4 3 | size 3498 4 | -------------------------------------------------------------------------------- /src/models/galp6/img/led-storage.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31df2f761d7c0ff6621414586d0313b24ffc556a73d1b4c8ba2b6a895d5b250d 3 | size 3045 4 | -------------------------------------------------------------------------------- /src/models/galp6/img/m2-slot.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:33c87e8be813f8eddcf52d1db782959045999fe7f3bbd2fb7c952e2ecda85bf4 3 | size 389192 4 | -------------------------------------------------------------------------------- /src/models/galp6/img/ports-back.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2bb4e451a5b04172f675a81440f53dfc18b109c18a26bb8b070b9d069668286d 3 | size 42496 4 | -------------------------------------------------------------------------------- /src/models/galp6/img/ram-slots.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c585939fd770ce1f16a2737d78c3482521eb60e5adc87302fcb2e6a6274fdfad 3 | size 514118 4 | -------------------------------------------------------------------------------- /src/models/galp6/img/speakers.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:29c9052c87c9ddd856f0cd7444a68897628dddc2821018396e4d0b536bb3a1f9 3 | size 592854 4 | -------------------------------------------------------------------------------- /src/models/galp7/img/battery.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a079d7561f717d843e9645c04cb07f8742692430f8be17593b11a1995031f065 3 | size 311126 4 | -------------------------------------------------------------------------------- /src/models/galp7/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/galp7/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/galp7/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/galp7/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/galp7/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/galp7/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a01122348da9c570525106075c9404f34e6093071f431b21c13aa1154c3e9adb 3 | size 971 4 | -------------------------------------------------------------------------------- /src/models/galp7/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/galp7/img/fn-f4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74c92304ad9330ac5a7338efd17f70571211a0fbd490c204b7bfd8ccea88010a 3 | size 1035 4 | -------------------------------------------------------------------------------- /src/models/galp7/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/galp7/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/galp7/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/galp7/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/galp7/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/galp7/img/galp7.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8865237fbcc1dbbd8936ef3be9c15e419b8077700323a01a28f9d4b109c1a49d 3 | size 61052 4 | -------------------------------------------------------------------------------- /src/models/galp7/img/led-airplane.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:08ea82e946926fd51a286a98120792be58bbb0c166b5209d285a56e6931a11e2 3 | size 2780 4 | -------------------------------------------------------------------------------- /src/models/galp7/img/led-battery.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebfb5b1c67136df3bbf4a00d5b47f7c7d84d0e0f8f049ce685dd656099f65e11 3 | size 2633 4 | -------------------------------------------------------------------------------- /src/models/galp7/img/led-power.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7877ef81cc1039d68fc71d4c185c72b51b58e15f0329e5e4ca920da955935b4 3 | size 3498 4 | -------------------------------------------------------------------------------- /src/models/galp7/img/led-storage.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31df2f761d7c0ff6621414586d0313b24ffc556a73d1b4c8ba2b6a895d5b250d 3 | size 3045 4 | -------------------------------------------------------------------------------- /src/models/galp7/img/m2-slot.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9b21ebb62208fd4934dd0572d47fff2455efd47706daf3a15d4aa672d852d403 3 | size 395308 4 | -------------------------------------------------------------------------------- /src/models/galp7/img/ports-back.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2bb4e451a5b04172f675a81440f53dfc18b109c18a26bb8b070b9d069668286d 3 | size 42496 4 | -------------------------------------------------------------------------------- /src/models/galp7/img/ram-slots.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e9ec21988baa24c659d181c8da49776b647447119cb45af4623005b18db44007 3 | size 516818 4 | -------------------------------------------------------------------------------- /src/models/galp7/img/speakers.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:83ba1c4227d178ef25f633408aa36c6ce670dc0a511b85f93162de70444c2891 3 | size 813604 4 | -------------------------------------------------------------------------------- /src/models/gaze15/img/back-a.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d6e79fceab06c0f8c9688817f1311baafc7f6ed5f1763a91f208caf526876750 3 | size 94750 4 | -------------------------------------------------------------------------------- /src/models/gaze15/img/back-b.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dfc488645a5e79d1a4c7683ff3598d038c438289ac505de0a0de93649441c4e7 3 | size 110063 4 | -------------------------------------------------------------------------------- /src/models/gaze15/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/gaze15/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/gaze15/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/gaze15/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/gaze15/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/gaze15/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a01122348da9c570525106075c9404f34e6093071f431b21c13aa1154c3e9adb 3 | size 971 4 | -------------------------------------------------------------------------------- /src/models/gaze15/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/gaze15/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/gaze15/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/gaze15/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/gaze15/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/gaze15/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/gaze15/img/fn-star.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74c92304ad9330ac5a7338efd17f70571211a0fbd490c204b7bfd8ccea88010a 3 | size 1035 4 | -------------------------------------------------------------------------------- /src/models/gaze15/img/front.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ecdf30f7a80c314602db1e75f465c7e4a8ad4bd8dfadc1075f12c9bf72da6e48 3 | size 49690 4 | -------------------------------------------------------------------------------- /src/models/gaze15/img/gaze15.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e4c64b14c9da16e1ce6052dbc0486e0e93071f72c8b6b715f29659b7e7921353 3 | size 1963942 4 | -------------------------------------------------------------------------------- /src/models/gaze15/img/led-battery.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebfb5b1c67136df3bbf4a00d5b47f7c7d84d0e0f8f049ce685dd656099f65e11 3 | size 2633 4 | -------------------------------------------------------------------------------- /src/models/gaze15/img/led-power.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7877ef81cc1039d68fc71d4c185c72b51b58e15f0329e5e4ca920da955935b4 3 | size 3498 4 | -------------------------------------------------------------------------------- /src/models/gaze15/img/led-storage.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31df2f761d7c0ff6621414586d0313b24ffc556a73d1b4c8ba2b6a895d5b250d 3 | size 3045 4 | -------------------------------------------------------------------------------- /src/models/gaze15/img/left-a.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4156aa06b6cfdcbfac46f15c088c0699c24cf27b9b9860352783971b117cdb03 3 | size 144844 4 | -------------------------------------------------------------------------------- /src/models/gaze15/img/left-b.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c936ed5e3fd460eb6d4ba5f2d3ac12647d5517ec42e6a0aac943337e076315db 3 | size 144514 4 | -------------------------------------------------------------------------------- /src/models/gaze15/img/m2-slots.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:42e53398842cb41ba177cc081c0ad57bfbf0374a56cc6edc4ea5ce95f0f1a10a 3 | size 2131482 4 | -------------------------------------------------------------------------------- /src/models/gaze15/img/right-a.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cb2a11ebaff25974a91890fdb2aec60c69adbe2b7336af987cf763c21976c08e 3 | size 113860 4 | -------------------------------------------------------------------------------- /src/models/gaze15/img/right-b.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:80271eb5048c258f9a6b1e2c3cb9ff80fe87eb8508297178de0795f8648abb52 3 | size 110291 4 | -------------------------------------------------------------------------------- /src/models/gaze16/img/battery.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c0e5b1bc59ae4e48bdcc01560effe1425704e061ebfaff3c8808dd04e43e0abf 3 | size 396670 4 | -------------------------------------------------------------------------------- /src/models/gaze16/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/gaze16/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/gaze16/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/gaze16/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/gaze16/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/gaze16/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a01122348da9c570525106075c9404f34e6093071f431b21c13aa1154c3e9adb 3 | size 971 4 | -------------------------------------------------------------------------------- /src/models/gaze16/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/gaze16/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/gaze16/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/gaze16/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/gaze16/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/gaze16/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/gaze16/img/fn-star.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74c92304ad9330ac5a7338efd17f70571211a0fbd490c204b7bfd8ccea88010a 3 | size 1035 4 | -------------------------------------------------------------------------------- /src/models/gaze16/img/gaze16.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9a12025b75a3032782b9c545584b27176ed23811f0cc4f40866ba898273682a4 3 | size 35726 4 | -------------------------------------------------------------------------------- /src/models/gaze16/img/led-battery.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebfb5b1c67136df3bbf4a00d5b47f7c7d84d0e0f8f049ce685dd656099f65e11 3 | size 2633 4 | -------------------------------------------------------------------------------- /src/models/gaze16/img/led-power.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7877ef81cc1039d68fc71d4c185c72b51b58e15f0329e5e4ca920da955935b4 3 | size 3498 4 | -------------------------------------------------------------------------------- /src/models/gaze16/img/led-storage.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31df2f761d7c0ff6621414586d0313b24ffc556a73d1b4c8ba2b6a895d5b250d 3 | size 3045 4 | -------------------------------------------------------------------------------- /src/models/gaze16/img/m2-slots.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:348a803cdfbb01c01495a8e1b1f73baa202f58819a03b7192db6f725125504b2 3 | size 115082 4 | -------------------------------------------------------------------------------- /src/models/gaze16/img/ram-slots.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:109303c8955ca535a2c11319a65e3f4efb9fc40f33e2ebe0300fadc9806d9e00 3 | size 455111 4 | -------------------------------------------------------------------------------- /src/models/gaze17/img/battery.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3d268d76b1d8639e05b4241f0f82cc14f1fcabc6b02d7b078734958e5f45ec45 3 | size 562696 4 | -------------------------------------------------------------------------------- /src/models/gaze17/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/gaze17/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/gaze17/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/gaze17/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/gaze17/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/gaze17/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a01122348da9c570525106075c9404f34e6093071f431b21c13aa1154c3e9adb 3 | size 971 4 | -------------------------------------------------------------------------------- /src/models/gaze17/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/gaze17/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/gaze17/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/gaze17/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/gaze17/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/gaze17/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/gaze17/img/fn-star.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74c92304ad9330ac5a7338efd17f70571211a0fbd490c204b7bfd8ccea88010a 3 | size 1035 4 | -------------------------------------------------------------------------------- /src/models/gaze17/img/gaze17.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a20f8374fcdcc63f5f088f3b2df33e33bf624ec9bec011bccb588c27865b180b 3 | size 155370 4 | -------------------------------------------------------------------------------- /src/models/gaze17/img/led-battery.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebfb5b1c67136df3bbf4a00d5b47f7c7d84d0e0f8f049ce685dd656099f65e11 3 | size 2633 4 | -------------------------------------------------------------------------------- /src/models/gaze17/img/led-power.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7877ef81cc1039d68fc71d4c185c72b51b58e15f0329e5e4ca920da955935b4 3 | size 3498 4 | -------------------------------------------------------------------------------- /src/models/gaze17/img/led-storage.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31df2f761d7c0ff6621414586d0313b24ffc556a73d1b4c8ba2b6a895d5b250d 3 | size 3045 4 | -------------------------------------------------------------------------------- /src/models/gaze17/img/m2-slots.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:49090da83deda83018b1b7775310eef7f2fd42d8fbf952ba77d922ff3200c554 3 | size 568308 4 | -------------------------------------------------------------------------------- /src/models/gaze18/img/battery.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:44cb0a025739945098295e84fb44d2ccf820bc2b8f3ea772a40cf29b103bfb03 3 | size 713032 4 | -------------------------------------------------------------------------------- /src/models/gaze18/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/gaze18/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/gaze18/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/gaze18/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/gaze18/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/gaze18/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a01122348da9c570525106075c9404f34e6093071f431b21c13aa1154c3e9adb 3 | size 971 4 | -------------------------------------------------------------------------------- /src/models/gaze18/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/gaze18/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/gaze18/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/gaze18/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/gaze18/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/gaze18/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/gaze18/img/fn-minus.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fba5ac94f396df821227c2661fbfed2fd5a6459e9e888c053d7b7d6eb314312f 3 | size 996 4 | -------------------------------------------------------------------------------- /src/models/gaze18/img/fn-plus.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6d1d4cad6dae0e59496455dcd4db34223a305c8b82a14c0657cb39847725c1c7 3 | size 1026 4 | -------------------------------------------------------------------------------- /src/models/gaze18/img/fn-slash.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:21b29c62d33a70adb4c2297ee8e02cd449e8d3f62729b230cb605f96518f5488 3 | size 1304 4 | -------------------------------------------------------------------------------- /src/models/gaze18/img/fn-star.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:49220aa3120f9a6b70b58af2df56da137444db554be0328d9c131914bc6ef899 3 | size 1303 4 | -------------------------------------------------------------------------------- /src/models/gaze18/img/gaze18.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b5f17906cd884c6809e927d7491b6dca4207611f181d068883e68f9411fae0ba 3 | size 28536 4 | -------------------------------------------------------------------------------- /src/models/gaze18/img/led-battery.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebfb5b1c67136df3bbf4a00d5b47f7c7d84d0e0f8f049ce685dd656099f65e11 3 | size 2633 4 | -------------------------------------------------------------------------------- /src/models/gaze18/img/led-power.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7877ef81cc1039d68fc71d4c185c72b51b58e15f0329e5e4ca920da955935b4 3 | size 3498 4 | -------------------------------------------------------------------------------- /src/models/gaze18/img/led-storage.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31df2f761d7c0ff6621414586d0313b24ffc556a73d1b4c8ba2b6a895d5b250d 3 | size 3045 4 | -------------------------------------------------------------------------------- /src/models/gaze18/img/m2-slots.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:108d9d21435dcfddcc5091387cad65e84ef19a3a9eee885c3213037b14dd6665 3 | size 526248 4 | -------------------------------------------------------------------------------- /src/models/kudu6/img/battery.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bdc6e3da746af9d3804a8ef7b41ea5645c104f2346dd27ef4bd4a3502eb6ef76 3 | size 438908 4 | -------------------------------------------------------------------------------- /src/models/kudu6/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/kudu6/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/kudu6/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/kudu6/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/kudu6/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/kudu6/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a01122348da9c570525106075c9404f34e6093071f431b21c13aa1154c3e9adb 3 | size 971 4 | -------------------------------------------------------------------------------- /src/models/kudu6/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/kudu6/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/kudu6/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/kudu6/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/kudu6/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/kudu6/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/kudu6/img/fn-star.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74c92304ad9330ac5a7338efd17f70571211a0fbd490c204b7bfd8ccea88010a 3 | size 1035 4 | -------------------------------------------------------------------------------- /src/models/kudu6/img/kudu6.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3fb89a8f4631c9b33b2a47361814aba9711689c815d083e09dbb41c18d91e8e3 3 | size 86818 4 | -------------------------------------------------------------------------------- /src/models/kudu6/img/led-airplane.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:08ea82e946926fd51a286a98120792be58bbb0c166b5209d285a56e6931a11e2 3 | size 2780 4 | -------------------------------------------------------------------------------- /src/models/kudu6/img/led-battery.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebfb5b1c67136df3bbf4a00d5b47f7c7d84d0e0f8f049ce685dd656099f65e11 3 | size 2633 4 | -------------------------------------------------------------------------------- /src/models/kudu6/img/led-power.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7877ef81cc1039d68fc71d4c185c72b51b58e15f0329e5e4ca920da955935b4 3 | size 3498 4 | -------------------------------------------------------------------------------- /src/models/kudu6/img/led-storage.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31df2f761d7c0ff6621414586d0313b24ffc556a73d1b4c8ba2b6a895d5b250d 3 | size 3045 4 | -------------------------------------------------------------------------------- /src/models/kudu6/img/m2-slots.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cc746378b0067a26c2ee454faa900509d2cd4609bab6f633def9bb15e2241c1d 3 | size 492272 4 | -------------------------------------------------------------------------------- /src/models/lemp10/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/lemp10/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/lemp10/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/lemp10/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/lemp10/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/lemp10/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a01122348da9c570525106075c9404f34e6093071f431b21c13aa1154c3e9adb 3 | size 971 4 | -------------------------------------------------------------------------------- /src/models/lemp10/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/lemp10/img/fn-f4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74c92304ad9330ac5a7338efd17f70571211a0fbd490c204b7bfd8ccea88010a 3 | size 1035 4 | -------------------------------------------------------------------------------- /src/models/lemp10/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/lemp10/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/lemp10/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/lemp10/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/lemp10/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/lemp11/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/lemp11/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/lemp11/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/lemp11/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/lemp11/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/lemp11/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a01122348da9c570525106075c9404f34e6093071f431b21c13aa1154c3e9adb 3 | size 971 4 | -------------------------------------------------------------------------------- /src/models/lemp11/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/lemp11/img/fn-f4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74c92304ad9330ac5a7338efd17f70571211a0fbd490c204b7bfd8ccea88010a 3 | size 1035 4 | -------------------------------------------------------------------------------- /src/models/lemp11/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/lemp11/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/lemp11/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/lemp11/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/lemp11/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/lemp12/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/lemp12/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/lemp12/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/lemp12/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/lemp12/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/lemp12/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a01122348da9c570525106075c9404f34e6093071f431b21c13aa1154c3e9adb 3 | size 971 4 | -------------------------------------------------------------------------------- /src/models/lemp12/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/lemp12/img/fn-f4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74c92304ad9330ac5a7338efd17f70571211a0fbd490c204b7bfd8ccea88010a 3 | size 1035 4 | -------------------------------------------------------------------------------- /src/models/lemp12/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/lemp12/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/lemp12/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/lemp12/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/lemp12/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/lemp13/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/lemp13/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/lemp13/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/lemp13/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/lemp13/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/lemp13/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b6e4ea5ef18c301f4cae75178556f26f0c95492d0dbef48a0aed529d4d587b51 3 | size 1653 4 | -------------------------------------------------------------------------------- /src/models/lemp13/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/lemp13/img/fn-f4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74c92304ad9330ac5a7338efd17f70571211a0fbd490c204b7bfd8ccea88010a 3 | size 1035 4 | -------------------------------------------------------------------------------- /src/models/lemp13/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/lemp13/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/lemp13/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/lemp13/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/lemp13/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/lemp13/img/lid.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e37dc98efe62fde8e013f1c5b81ee149075dab085a733cc584cb98579181f767 3 | size 890798 4 | -------------------------------------------------------------------------------- /src/models/lemp9/img/cmos.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5b342f06086db953b7379cdc5cb7d3f3ec376bc8267bdf2bd0d903d665c9d2d4 3 | size 806036 4 | -------------------------------------------------------------------------------- /src/models/lemp9/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/lemp9/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/lemp9/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/lemp9/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/lemp9/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a01122348da9c570525106075c9404f34e6093071f431b21c13aa1154c3e9adb 3 | size 971 4 | -------------------------------------------------------------------------------- /src/models/lemp9/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/lemp9/img/fn-f4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74c92304ad9330ac5a7338efd17f70571211a0fbd490c204b7bfd8ccea88010a 3 | size 1035 4 | -------------------------------------------------------------------------------- /src/models/lemp9/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/lemp9/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/lemp9/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/lemp9/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/lemp9/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/lemp9/img/lemp9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5cd8110e4f0d2229bd8bf02ef84d15eeccb0f29197323518790be98cc40ab3b4 3 | size 395516 4 | -------------------------------------------------------------------------------- /src/models/meer9/img/fan.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e0462a2fbe0b4f7cff4a4303677a23515c2f9333a5e9798a53eceeaec6f38b6b 3 | size 278882 4 | -------------------------------------------------------------------------------- /src/models/meer9/img/meer9.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:02538519de16e5ce85059c34612ff73d6164b5e121bdaa96325441e1845d795d 3 | size 66234 4 | -------------------------------------------------------------------------------- /src/models/oryp10/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/oryp10/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/oryp10/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/oryp10/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/oryp10/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/oryp10/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a01122348da9c570525106075c9404f34e6093071f431b21c13aa1154c3e9adb 3 | size 971 4 | -------------------------------------------------------------------------------- /src/models/oryp10/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/oryp10/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/oryp10/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/oryp10/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/oryp10/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/oryp10/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/oryp11/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/oryp11/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/oryp11/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/oryp11/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/oryp11/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/oryp11/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b6e4ea5ef18c301f4cae75178556f26f0c95492d0dbef48a0aed529d4d587b51 3 | size 1653 4 | -------------------------------------------------------------------------------- /src/models/oryp11/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/oryp11/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/oryp11/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/oryp11/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/oryp11/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/oryp11/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/oryp12/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/oryp12/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/oryp12/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/oryp12/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/oryp12/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/oryp12/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b6e4ea5ef18c301f4cae75178556f26f0c95492d0dbef48a0aed529d4d587b51 3 | size 1653 4 | -------------------------------------------------------------------------------- /src/models/oryp12/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/oryp12/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/oryp12/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/oryp12/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/oryp12/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/oryp12/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/oryp12/img/lid.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e16430ea19a670d1872eb1f299e88f5ea8030344b76e749c8be4b5608ab97921 3 | size 756910 4 | -------------------------------------------------------------------------------- /src/models/oryp6/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/oryp6/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/oryp6/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/oryp6/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/oryp6/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/oryp6/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a01122348da9c570525106075c9404f34e6093071f431b21c13aa1154c3e9adb 3 | size 971 4 | -------------------------------------------------------------------------------- /src/models/oryp6/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/oryp6/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/oryp6/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/oryp6/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/oryp6/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/oryp6/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/oryp6/img/fn-star.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74c92304ad9330ac5a7338efd17f70571211a0fbd490c204b7bfd8ccea88010a 3 | size 1035 4 | -------------------------------------------------------------------------------- /src/models/oryp6/img/oryp6.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:96791367ec20df829d9e4cac9a4496d97a3e94708fc3f2501289018fb5d0160d 3 | size 40018 4 | -------------------------------------------------------------------------------- /src/models/oryp7/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/oryp7/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/oryp7/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/oryp7/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/oryp7/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/oryp7/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a01122348da9c570525106075c9404f34e6093071f431b21c13aa1154c3e9adb 3 | size 971 4 | -------------------------------------------------------------------------------- /src/models/oryp7/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/oryp7/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/oryp7/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/oryp7/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/oryp7/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/oryp7/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/oryp7/img/fn-star.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74c92304ad9330ac5a7338efd17f70571211a0fbd490c204b7bfd8ccea88010a 3 | size 1035 4 | -------------------------------------------------------------------------------- /src/models/oryp7/img/oryp7.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:96791367ec20df829d9e4cac9a4496d97a3e94708fc3f2501289018fb5d0160d 3 | size 40018 4 | -------------------------------------------------------------------------------- /src/models/oryp8/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/oryp8/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/oryp8/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/oryp8/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/oryp8/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/oryp8/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a01122348da9c570525106075c9404f34e6093071f431b21c13aa1154c3e9adb 3 | size 971 4 | -------------------------------------------------------------------------------- /src/models/oryp8/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/oryp8/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/oryp8/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/oryp8/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/oryp8/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/oryp8/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/oryp8/img/fn-star.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74c92304ad9330ac5a7338efd17f70571211a0fbd490c204b7bfd8ccea88010a 3 | size 1035 4 | -------------------------------------------------------------------------------- /src/models/oryp8/img/oryp8.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:707c5a13d2279074dc4fe166c829db521319f7d1d86eecf87bde728311c60608 3 | size 37888 4 | -------------------------------------------------------------------------------- /src/models/oryp9/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/oryp9/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/oryp9/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/oryp9/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/oryp9/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/oryp9/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a01122348da9c570525106075c9404f34e6093071f431b21c13aa1154c3e9adb 3 | size 971 4 | -------------------------------------------------------------------------------- /src/models/oryp9/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/oryp9/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/oryp9/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/oryp9/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/oryp9/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/oryp9/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/oryp9/img/fn-star.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74c92304ad9330ac5a7338efd17f70571211a0fbd490c204b7bfd8ccea88010a 3 | size 1035 4 | -------------------------------------------------------------------------------- /src/models/oryp9/img/oryp9.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2597de32070b9b17b437139003d6e77891273b978d8515d49f7c5e57c2bdbe1c 3 | size 52052 4 | -------------------------------------------------------------------------------- /src/models/pang10/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/pang10/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/pang10/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/pang10/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/pang10/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/pang10/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a01122348da9c570525106075c9404f34e6093071f431b21c13aa1154c3e9adb 3 | size 971 4 | -------------------------------------------------------------------------------- /src/models/pang10/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/pang10/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/pang10/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/pang10/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/pang10/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/pang10/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/pang11/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/pang11/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/pang11/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/pang11/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/pang11/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/pang11/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a01122348da9c570525106075c9404f34e6093071f431b21c13aa1154c3e9adb 3 | size 971 4 | -------------------------------------------------------------------------------- /src/models/pang11/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/pang11/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/pang11/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/pang11/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/pang11/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/pang11/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/serw12/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/serw12/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/serw12/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/serw12/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/serw12/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/serw12/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a01122348da9c570525106075c9404f34e6093071f431b21c13aa1154c3e9adb 3 | size 971 4 | -------------------------------------------------------------------------------- /src/models/serw12/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/serw12/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/serw12/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/serw12/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/serw12/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/serw12/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /src/models/serw13/img/fn-dia.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d82925430d49e2479de83103490b61a43e08e2e455142d52e184dbde2935a3b 3 | size 820 4 | -------------------------------------------------------------------------------- /src/models/serw13/img/fn-f1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d17a59a7a9ef0b23e92c9317ab414e3f90e9ba8239e18c6ded06364778d9d36f 3 | size 998 4 | -------------------------------------------------------------------------------- /src/models/serw13/img/fn-f10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8b6b140613288b84a5d687a484edc1c31a962f14f69a89528d7819e42d11cc 3 | size 650 4 | -------------------------------------------------------------------------------- /src/models/serw13/img/fn-f11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c1ad28024da356a5423da99d92439101635f040895970fc70f9004795c7386 3 | size 783 4 | -------------------------------------------------------------------------------- /src/models/serw13/img/fn-f12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe27e06755900e966eb44ecc5ed173cd5a9bc1b3be233138baecde53f6ff129 3 | size 1141 4 | -------------------------------------------------------------------------------- /src/models/serw13/img/fn-f2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a01122348da9c570525106075c9404f34e6093071f431b21c13aa1154c3e9adb 3 | size 971 4 | -------------------------------------------------------------------------------- /src/models/serw13/img/fn-f3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc180e350ec699931772797a9e2bc9d6a847a6892257690fd79ecbe90802fb3a 3 | size 1187 4 | -------------------------------------------------------------------------------- /src/models/serw13/img/fn-f5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:456571f7615d84254f76c663f1c1b507c9cf8517ece8833e167d52f7d334a9f9 3 | size 1044 4 | -------------------------------------------------------------------------------- /src/models/serw13/img/fn-f6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3554a1560a73fd843265459c5ab6d12c77628ec23bb1c9f94c9947d7a514e559 3 | size 1156 4 | -------------------------------------------------------------------------------- /src/models/serw13/img/fn-f7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb5bab13d71c66c70471ef4cdcc2b9485f575aca82c2b62bfc0a2093c19ab0 3 | size 354 4 | -------------------------------------------------------------------------------- /src/models/serw13/img/fn-f8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221af309ec9caaffd6e415121ba6c4816178972b2bc8d52faaed447192a17ed3 3 | size 843 4 | -------------------------------------------------------------------------------- /src/models/serw13/img/fn-f9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:866fd726774649349fabe4d88965c93ae6fafaa228afcb6ac0aaecba6f114e33 3 | size 870 4 | -------------------------------------------------------------------------------- /theme/favicon.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:12610a6e1632bc5e76ba9754a5dedd5f673fb0bf57c7e6b0a7e3917b4fd0f3e6 3 | size 7280 4 | --------------------------------------------------------------------------------